Class: Stripe::PaymentIntent::CreateParams::MandateData
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntent::CreateParams::MandateData
- Defined in:
- lib/stripe/resources/payment_intent.rb
Defined Under Namespace
Classes: CustomerAcceptance
Instance Attribute Summary collapse
-
#customer_acceptance ⇒ Object
This hash contains details about the customer acceptance of the Mandate.
Instance Method Summary collapse
-
#initialize(customer_acceptance: nil) ⇒ MandateData
constructor
A new instance of MandateData.
Methods inherited from RequestParams
Constructor Details
#initialize(customer_acceptance: nil) ⇒ MandateData
Returns a new instance of MandateData.
1637 1638 1639 |
# File 'lib/stripe/resources/payment_intent.rb', line 1637 def initialize(customer_acceptance: nil) @customer_acceptance = customer_acceptance end |
Instance Attribute Details
#customer_acceptance ⇒ Object
This hash contains details about the customer acceptance of the Mandate.
1635 1636 1637 |
# File 'lib/stripe/resources/payment_intent.rb', line 1635 def customer_acceptance @customer_acceptance end |