Class: Stripe::SetupIntentCreateParams::PaymentMethodOptions::AcssDebit

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

Defined Under Namespace

Classes: MandateOptions

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(currency: nil, mandate_options: nil, verification_method: nil) ⇒ AcssDebit

Returns a new instance of AcssDebit.



640
641
642
643
644
# File 'lib/stripe/params/setup_intent_create_params.rb', line 640

def initialize(currency: nil, mandate_options: nil, verification_method: nil)
  @currency = currency
  @mandate_options = mandate_options
  @verification_method = verification_method
end

Instance Attribute Details

#currencyObject

Three-letter [ISO currency code](www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](stripe.com/docs/currencies).



634
635
636
# File 'lib/stripe/params/setup_intent_create_params.rb', line 634

def currency
  @currency
end

#mandate_optionsObject

Additional fields for Mandate creation



636
637
638
# File 'lib/stripe/params/setup_intent_create_params.rb', line 636

def mandate_options
  @mandate_options
end

#verification_methodObject

Bank account verification method.



638
639
640
# File 'lib/stripe/params/setup_intent_create_params.rb', line 638

def verification_method
  @verification_method
end