Class: Stripe::PaymentMethodCreateParams::Fpx
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentMethodCreateParams::Fpx
- Defined in:
- lib/stripe/params/payment_method_create_params.rb
Instance Attribute Summary collapse
-
#account_holder_type ⇒ Object
Account holder type for FPX transaction.
-
#bank ⇒ Object
The customer’s bank.
Instance Method Summary collapse
-
#initialize(account_holder_type: nil, bank: nil) ⇒ Fpx
constructor
A new instance of Fpx.
Methods inherited from RequestParams
Constructor Details
#initialize(account_holder_type: nil, bank: nil) ⇒ Fpx
Returns a new instance of Fpx.
174 175 176 177 |
# File 'lib/stripe/params/payment_method_create_params.rb', line 174 def initialize(account_holder_type: nil, bank: nil) @account_holder_type = account_holder_type @bank = bank end |
Instance Attribute Details
#account_holder_type ⇒ Object
Account holder type for FPX transaction
170 171 172 |
# File 'lib/stripe/params/payment_method_create_params.rb', line 170 def account_holder_type @account_holder_type end |
#bank ⇒ Object
The customer’s bank.
172 173 174 |
# File 'lib/stripe/params/payment_method_create_params.rb', line 172 def bank @bank end |