Class: Stripe::PaymentMethodCreateParams::IdBankTransfer

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/payment_method_create_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h

Constructor Details

#initialize(bank: nil) ⇒ IdBankTransfer

Returns a new instance of IdBankTransfer.



198
199
200
# File 'lib/stripe/params/payment_method_create_params.rb', line 198

def initialize(bank: nil)
  @bank = bank
end

Instance Attribute Details

#bankObject

Bank where the account is held.



196
197
198
# File 'lib/stripe/params/payment_method_create_params.rb', line 196

def bank
  @bank
end