Class: Stripe::PaymentIntentCreateParams::PaymentMethodData::Ideal
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntentCreateParams::PaymentMethodData::Ideal
- Defined in:
- lib/stripe/params/payment_intent_create_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.
2079 2080 2081 |
# File 'lib/stripe/params/payment_intent_create_params.rb', line 2079 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.
2077 2078 2079 |
# File 'lib/stripe/params/payment_intent_create_params.rb', line 2077 def bank @bank end |