Class: Stripe::PaymentIntentCreateParams::MandateData

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

Defined Under Namespace

Classes: CustomerAcceptance

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h

Constructor Details

#initialize(customer_acceptance: nil) ⇒ MandateData

Returns a new instance of MandateData.



306
307
308
# File 'lib/stripe/params/payment_intent_create_params.rb', line 306

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.



304
305
306
# File 'lib/stripe/params/payment_intent_create_params.rb', line 304

def customer_acceptance
  @customer_acceptance
end