Class: Stripe::TokenCreateParams::Account::Individual::SelfReportedMonthlyHousingPayment

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/token_create_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(amount: nil, currency: nil) ⇒ SelfReportedMonthlyHousingPayment

Returns a new instance of SelfReportedMonthlyHousingPayment.



483
484
485
486
# File 'lib/stripe/params/token_create_params.rb', line 483

def initialize(amount: nil, currency: nil)
  @amount = amount
  @currency = currency
end

Instance Attribute Details

#amountObject

Attribute for param field amount



479
480
481
# File 'lib/stripe/params/token_create_params.rb', line 479

def amount
  @amount
end

#currencyObject

Attribute for param field currency



481
482
483
# File 'lib/stripe/params/token_create_params.rb', line 481

def currency
  @currency
end