Class: Stripe::PaymentIntentIncrementAuthorizationParams::TransferData
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntentIncrementAuthorizationParams::TransferData
- Defined in:
- lib/stripe/params/payment_intent_increment_authorization_params.rb
Instance Attribute Summary collapse
-
#amount ⇒ Object
The amount that will be transferred automatically when a charge succeeds.
Instance Method Summary collapse
-
#initialize(amount: nil) ⇒ TransferData
constructor
A new instance of TransferData.
Methods inherited from RequestParams
Constructor Details
#initialize(amount: nil) ⇒ TransferData
224 225 226 |
# File 'lib/stripe/params/payment_intent_increment_authorization_params.rb', line 224 def initialize(amount: nil) @amount = amount end |
Instance Attribute Details
#amount ⇒ Object
The amount that will be transferred automatically when a charge succeeds.
222 223 224 |
# File 'lib/stripe/params/payment_intent_increment_authorization_params.rb', line 222 def amount @amount end |