Class: Stripe::TestHelpers::Issuing::AuthorizationCreateParams::AmountDetails
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::TestHelpers::Issuing::AuthorizationCreateParams::AmountDetails
- Defined in:
- lib/stripe/params/test_helpers/issuing/authorization_create_params.rb
Instance Attribute Summary collapse
-
#atm_fee ⇒ Object
The ATM withdrawal fee.
-
#cashback_amount ⇒ Object
The amount of cash requested by the cardholder.
Instance Method Summary collapse
-
#initialize(atm_fee: nil, cashback_amount: nil) ⇒ AmountDetails
constructor
A new instance of AmountDetails.
Methods inherited from RequestParams
Constructor Details
#initialize(atm_fee: nil, cashback_amount: nil) ⇒ AmountDetails
Returns a new instance of AmountDetails.
14 15 16 17 |
# File 'lib/stripe/params/test_helpers/issuing/authorization_create_params.rb', line 14 def initialize(atm_fee: nil, cashback_amount: nil) @atm_fee = atm_fee @cashback_amount = cashback_amount end |
Instance Attribute Details
#atm_fee ⇒ Object
The ATM withdrawal fee.
10 11 12 |
# File 'lib/stripe/params/test_helpers/issuing/authorization_create_params.rb', line 10 def atm_fee @atm_fee end |
#cashback_amount ⇒ Object
The amount of cash requested by the cardholder.
12 13 14 |
# File 'lib/stripe/params/test_helpers/issuing/authorization_create_params.rb', line 12 def cashback_amount @cashback_amount end |