Class: Stripe::SetupIntentUpdateParams::PaymentMethodOptions::AcssDebit

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/setup_intent_update_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.



567
568
569
570
571
# File 'lib/stripe/params/setup_intent_update_params.rb', line 567

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).



561
562
563
# File 'lib/stripe/params/setup_intent_update_params.rb', line 561

def currency
  @currency
end

#mandate_optionsObject

Additional fields for Mandate creation



563
564
565
# File 'lib/stripe/params/setup_intent_update_params.rb', line 563

def mandate_options
  @mandate_options
end

#verification_methodObject

Bank account verification method.



565
566
567
# File 'lib/stripe/params/setup_intent_update_params.rb', line 565

def verification_method
  @verification_method
end