Class: Stripe::InvoiceUpdateParams::PaymentSettings::PaymentMethodOptions::AcssDebit

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/invoice_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(mandate_options: nil, verification_method: nil) ⇒ AcssDebit

Returns a new instance of AcssDebit.



84
85
86
87
# File 'lib/stripe/params/invoice_update_params.rb', line 84

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

Instance Attribute Details

#mandate_optionsObject

Additional fields for Mandate creation



80
81
82
# File 'lib/stripe/params/invoice_update_params.rb', line 80

def mandate_options
  @mandate_options
end

#verification_methodObject

Verification method for the intent



82
83
84
# File 'lib/stripe/params/invoice_update_params.rb', line 82

def verification_method
  @verification_method
end