Class: Stripe::AccountCreateParams::Settings::BankBcaOnboarding
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountCreateParams::Settings::BankBcaOnboarding
- Defined in:
- lib/stripe/params/account_create_params.rb
Instance Attribute Summary collapse
-
#account_holder_name ⇒ Object
Bank BCA business account holder name.
-
#business_account_number ⇒ Object
Bank BCA business account number.
Instance Method Summary collapse
-
#initialize(account_holder_name: nil, business_account_number: nil) ⇒ BankBcaOnboarding
constructor
A new instance of BankBcaOnboarding.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(account_holder_name: nil, business_account_number: nil) ⇒ BankBcaOnboarding
Returns a new instance of BankBcaOnboarding.
2140 2141 2142 2143 |
# File 'lib/stripe/params/account_create_params.rb', line 2140 def initialize(account_holder_name: nil, business_account_number: nil) @account_holder_name = account_holder_name @business_account_number = business_account_number end |
Instance Attribute Details
#account_holder_name ⇒ Object
Bank BCA business account holder name
2136 2137 2138 |
# File 'lib/stripe/params/account_create_params.rb', line 2136 def account_holder_name @account_holder_name end |
#business_account_number ⇒ Object
Bank BCA business account number
2138 2139 2140 |
# File 'lib/stripe/params/account_create_params.rb', line 2138 def business_account_number @business_account_number end |