Class: Stripe::PaymentMethodService::UpdateParams::UsBankAccount
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentMethodService::UpdateParams::UsBankAccount
- Defined in:
- lib/stripe/services/payment_method_service.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.
812 813 814 815 |
# File 'lib/stripe/services/payment_method_service.rb', line 812 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.
808 809 810 |
# File 'lib/stripe/services/payment_method_service.rb', line 808 def account_holder_type @account_holder_type end |
#account_type ⇒ Object
Bank account type.
810 811 812 |
# File 'lib/stripe/services/payment_method_service.rb', line 810 def account_type @account_type end |