Class: Stripe::PaymentIntentCreateParams::PaymentsOrchestration::PaymentDetails

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

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(reference: nil) ⇒ PaymentDetails

Returns a new instance of PaymentDetails.



6171
6172
6173
# File 'lib/stripe/params/payment_intent_create_params.rb', line 6171

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

Instance Attribute Details

#referenceObject

Merchant-provided reference for this payment, used for reconciliation.



6169
6170
6171
# File 'lib/stripe/params/payment_intent_create_params.rb', line 6169

def reference
  @reference
end