Class: Stripe::V2::MoneyManagement::PayoutIntentUpdateParams::To::PayoutMethodOptions
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::MoneyManagement::PayoutIntentUpdateParams::To::PayoutMethodOptions
- Defined in:
- lib/stripe/params/v2/money_management/payout_intent_update_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.
74 75 76 |
# File 'lib/stripe/params/v2/money_management/payout_intent_update_params.rb', line 74 def initialize(bank_account: nil) @bank_account = bank_account end |
Instance Attribute Details
#bank_account ⇒ Object
Options for bank account payout methods.
72 73 74 |
# File 'lib/stripe/params/v2/money_management/payout_intent_update_params.rb', line 72 def bank_account @bank_account end |