Class: Stripe::InvoiceCreateParams::PaymentSettings::PaymentMethodOptions::AcssDebit::MandateOptions
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::InvoiceCreateParams::PaymentSettings::PaymentMethodOptions::AcssDebit::MandateOptions
- Defined in:
- lib/stripe/params/invoice_create_params.rb
Instance Attribute Summary collapse
-
#transaction_type ⇒ Object
Transaction type of the mandate.
Instance Method Summary collapse
-
#initialize(transaction_type: nil) ⇒ MandateOptions
constructor
A new instance of MandateOptions.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(transaction_type: nil) ⇒ MandateOptions
Returns a new instance of MandateOptions.
133 134 135 |
# File 'lib/stripe/params/invoice_create_params.rb', line 133 def initialize(transaction_type: nil) @transaction_type = transaction_type end |
Instance Attribute Details
#transaction_type ⇒ Object
Transaction type of the mandate.
131 132 133 |
# File 'lib/stripe/params/invoice_create_params.rb', line 131 def transaction_type @transaction_type end |