Class: Stripe::PaymentIntentCreateParams::PaymentMethodOptions::Card::PaymentDetails::MoneyServices
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntentCreateParams::PaymentMethodOptions::Card::PaymentDetails::MoneyServices
- Defined in:
- lib/stripe/params/payment_intent_create_params.rb
Defined Under Namespace
Classes: AccountFunding
Instance Attribute Summary collapse
-
#account_funding ⇒ Object
Payment method specific account funding transaction details.
Instance Method Summary collapse
-
#initialize(account_funding: nil) ⇒ MoneyServices
constructor
A new instance of MoneyServices.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(account_funding: nil) ⇒ MoneyServices
Returns a new instance of MoneyServices.
3330 3331 3332 |
# File 'lib/stripe/params/payment_intent_create_params.rb', line 3330 def initialize(account_funding: nil) @account_funding = account_funding end |
Instance Attribute Details
#account_funding ⇒ Object
Payment method specific account funding transaction details.
3328 3329 3330 |
# File 'lib/stripe/params/payment_intent_create_params.rb', line 3328 def account_funding @account_funding end |