Class: Stripe::PaymentIntentService::CreateParams::MandateData
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntentService::CreateParams::MandateData
- Defined in:
- lib/stripe/services/payment_intent_service.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.
104 105 106 |
# File 'lib/stripe/services/payment_intent_service.rb', line 104 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.
102 103 104 |
# File 'lib/stripe/services/payment_intent_service.rb', line 102 def customer_acceptance @customer_acceptance end |