Class: Stripe::Subscription::CreateParams::PaymentSettings::PaymentMethodOptions::AcssDebit

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



1294
1295
1296
1297
# File 'lib/stripe/resources/subscription.rb', line 1294

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



1290
1291
1292
# File 'lib/stripe/resources/subscription.rb', line 1290

def mandate_options
  @mandate_options
end

#verification_methodObject

Verification method for the intent



1292
1293
1294
# File 'lib/stripe/resources/subscription.rb', line 1292

def verification_method
  @verification_method
end