class Hypofriend::Offer

Attributes

borrowing_rate[R]
institution_name[R]

Public Class Methods

new(institution_name:, borrowing_rate:) click to toggle source
# File lib/hypofriend/offer.rb, line 7
def initialize(institution_name:, borrowing_rate:)
  @institution_name = institution_name
  @borrowing_rate = borrowing_rate
end