Class: Stripe::PaymentIntentConfirmParams::PaymentMethodData::Ideal
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntentConfirmParams::PaymentMethodData::Ideal
- Defined in:
- lib/stripe/params/payment_intent_confirm_params.rb
Instance Attribute Summary collapse
-
#bank ⇒ Object
The customer’s bank.
Instance Method Summary collapse
-
#initialize(bank: nil) ⇒ Ideal
constructor
A new instance of Ideal.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(bank: nil) ⇒ Ideal
Returns a new instance of Ideal.
2065 2066 2067 |
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 2065 def initialize(bank: nil) @bank = bank end |
Instance Attribute Details
#bank ⇒ Object
The customer’s bank. Only use this parameter for existing customers. Don’t use it for new customers.
2063 2064 2065 |
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 2063 def bank @bank end |