Class: Stripe::PaymentIntentCreateParams::PaymentsOrchestration::PaymentDetails
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntentCreateParams::PaymentsOrchestration::PaymentDetails
- Defined in:
- lib/stripe/params/payment_intent_create_params.rb
Instance Attribute Summary collapse
-
#reference ⇒ Object
Merchant-provided reference for this payment, used for reconciliation.
Instance Method Summary collapse
-
#initialize(reference: nil) ⇒ PaymentDetails
constructor
A new instance of PaymentDetails.
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
#reference ⇒ Object
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 |