Class: Stripe::PaymentIntentCreateParams::PaymentMethodData::IdBankTransfer

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(bank: nil) ⇒ IdBankTransfer

Returns a new instance of IdBankTransfer.



2086
2087
2088
# File 'lib/stripe/params/payment_intent_create_params.rb', line 2086

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

Instance Attribute Details

#bankObject

Bank where the account is held.



2084
2085
2086
# File 'lib/stripe/params/payment_intent_create_params.rb', line 2084

def bank
  @bank
end