Class: Stripe::SubscriptionService::CreateParams::PaymentSettings::PaymentMethodOptions::AcssDebit

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



1078
1079
1080
1081
# File 'lib/stripe/services/subscription_service.rb', line 1078

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



1074
1075
1076
# File 'lib/stripe/services/subscription_service.rb', line 1074

def mandate_options
  @mandate_options
end

#verification_methodObject

Verification method for the intent



1076
1077
1078
# File 'lib/stripe/services/subscription_service.rb', line 1076

def verification_method
  @verification_method
end