Class: Stripe::PaymentIntentConfirmParams::MandateData

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/payment_intent_confirm_params.rb

Defined Under Namespace

Classes: CustomerAcceptance

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(customer_acceptance: nil) ⇒ MandateData

Returns a new instance of MandateData.



236
237
238
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 236

def initialize(customer_acceptance: nil)
  @customer_acceptance = customer_acceptance
end

Instance Attribute Details

#customer_acceptanceObject

This hash contains details about the customer acceptance of the Mandate.



234
235
236
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 234

def customer_acceptance
  @customer_acceptance
end