Class: Stripe::V2::MoneyManagement::OutboundPaymentCreateParams::To::PayoutMethodOptions
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::MoneyManagement::OutboundPaymentCreateParams::To::PayoutMethodOptions
- Defined in:
- lib/stripe/params/v2/money_management/outbound_payment_create_params.rb
Defined Under Namespace
Classes: BankAccount
Instance Attribute Summary collapse
-
#bank_account ⇒ Object
Options for bank account payout methods.
Instance Method Summary collapse
-
#initialize(bank_account: nil) ⇒ PayoutMethodOptions
constructor
A new instance of PayoutMethodOptions.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(bank_account: nil) ⇒ PayoutMethodOptions
Returns a new instance of PayoutMethodOptions.
97 98 99 |
# File 'lib/stripe/params/v2/money_management/outbound_payment_create_params.rb', line 97 def initialize(bank_account: nil) @bank_account = bank_account end |
Instance Attribute Details
#bank_account ⇒ Object
Options for bank account payout methods.
95 96 97 |
# File 'lib/stripe/params/v2/money_management/outbound_payment_create_params.rb', line 95 def bank_account @bank_account end |