Class: Stripe::PaymentMethod::UpdateParams::UsBankAccount
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentMethod::UpdateParams::UsBankAccount
- Defined in:
- lib/stripe/resources/payment_method.rb
Instance Attribute Summary collapse
-
#account_holder_type ⇒ Object
Bank account holder type.
-
#account_type ⇒ Object
Bank account type.
Instance Method Summary collapse
-
#initialize(account_holder_type: nil, account_type: nil) ⇒ UsBankAccount
constructor
A new instance of UsBankAccount.
Methods inherited from RequestParams
Constructor Details
#initialize(account_holder_type: nil, account_type: nil) ⇒ UsBankAccount
Returns a new instance of UsBankAccount.
1331 1332 1333 1334 |
# File 'lib/stripe/resources/payment_method.rb', line 1331 def initialize(account_holder_type: nil, account_type: nil) @account_holder_type = account_holder_type @account_type = account_type end |
Instance Attribute Details
#account_holder_type ⇒ Object
Bank account holder type.
1327 1328 1329 |
# File 'lib/stripe/resources/payment_method.rb', line 1327 def account_holder_type @account_holder_type end |
#account_type ⇒ Object
Bank account type.
1329 1330 1331 |
# File 'lib/stripe/resources/payment_method.rb', line 1329 def account_type @account_type end |