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

attr_accessor, new, #to_h

Constructor Details

#initialize(customer_acceptance: nil) ⇒ MandateData

Returns a new instance of MandateData.



258
259
260
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 258

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.



256
257
258
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 256

def customer_acceptance
  @customer_acceptance
end