Class: Stripe::CustomerCreateFundingInstructionsParams::BankTransfer

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

Defined Under Namespace

Classes: EuBankTransfer

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(eu_bank_transfer: nil, requested_address_types: nil, type: nil) ⇒ BankTransfer

Returns a new instance of BankTransfer.



24
25
26
27
28
# File 'lib/stripe/params/customer_create_funding_instructions_params.rb', line 24

def initialize(eu_bank_transfer: nil, requested_address_types: nil, type: nil)
  @eu_bank_transfer = eu_bank_transfer
  @requested_address_types = requested_address_types
  @type = type
end

Instance Attribute Details

#eu_bank_transferObject

Configuration for eu_bank_transfer funding type.



16
17
18
# File 'lib/stripe/params/customer_create_funding_instructions_params.rb', line 16

def eu_bank_transfer
  @eu_bank_transfer
end

#requested_address_typesObject

List of address types that should be returned in the financial_addresses response. If not specified, all valid types will be returned.

Permitted values include: ‘sort_code`, `zengin`, `iban`, or `spei`.



20
21
22
# File 'lib/stripe/params/customer_create_funding_instructions_params.rb', line 20

def requested_address_types
  @requested_address_types
end

#typeObject

The type of the ‘bank_transfer`



22
23
24
# File 'lib/stripe/params/customer_create_funding_instructions_params.rb', line 22

def type
  @type
end