Class: Stripe::CustomerFundingInstructionsCreateParams::BankTransfer::EuBankTransfer

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(country: nil) ⇒ EuBankTransfer

Returns a new instance of EuBankTransfer.



11
12
13
# File 'lib/stripe/params/customer_funding_instructions_create_params.rb', line 11

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

Instance Attribute Details

#countryObject

The desired country code of the bank account information. Permitted values include: ‘BE`, `DE`, `ES`, `FR`, `IE`, or `NL`.



9
10
11
# File 'lib/stripe/params/customer_funding_instructions_create_params.rb', line 9

def country
  @country
end