Class: Stripe::InvoiceService::UpdateParams::PaymentSettings::PaymentMethodOptions::AcssDebit

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



151
152
153
154
# File 'lib/stripe/services/invoice_service.rb', line 151

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



147
148
149
# File 'lib/stripe/services/invoice_service.rb', line 147

def mandate_options
  @mandate_options
end

#verification_methodObject

Verification method for the intent



149
150
151
# File 'lib/stripe/services/invoice_service.rb', line 149

def verification_method
  @verification_method
end