Class: Stripe::PaymentMethodUpdateParams::UsBankAccount
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentMethodUpdateParams::UsBankAccount
- Defined in:
- lib/stripe/params/payment_method_update_params.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
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(account_holder_type: nil, account_type: nil) ⇒ UsBankAccount
Returns a new instance of UsBankAccount.
113 114 115 116 |
# File 'lib/stripe/params/payment_method_update_params.rb', line 113 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.
109 110 111 |
# File 'lib/stripe/params/payment_method_update_params.rb', line 109 def account_holder_type @account_holder_type end |
#account_type ⇒ Object
Bank account type.
111 112 113 |
# File 'lib/stripe/params/payment_method_update_params.rb', line 111 def account_type @account_type end |