Class: Stripe::InvoiceCreateParams::PaymentSettings::PaymentMethodOptions::AcssDebit

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

Returns a new instance of AcssDebit.



96
97
98
99
# File 'lib/stripe/params/invoice_create_params.rb', line 96

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



92
93
94
# File 'lib/stripe/params/invoice_create_params.rb', line 92

def mandate_options
  @mandate_options
end

#verification_methodObject

Verification method for the intent



94
95
96
# File 'lib/stripe/params/invoice_create_params.rb', line 94

def verification_method
  @verification_method
end