Class: Stripe::PaymentRecordCreateParams::ProcessorDetails::Custom
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentRecordCreateParams::ProcessorDetails::Custom
- Defined in:
- lib/stripe/params/payment_record_create_params.rb
Instance Attribute Summary collapse
-
#dispute_reference ⇒ Object
A reference to the external dispute.
Instance Method Summary collapse
-
#initialize(dispute_reference: nil) ⇒ Custom
constructor
A new instance of Custom.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(dispute_reference: nil) ⇒ Custom
Returns a new instance of Custom.
58 59 60 |
# File 'lib/stripe/params/payment_record_create_params.rb', line 58 def initialize(dispute_reference: nil) @dispute_reference = dispute_reference end |
Instance Attribute Details
#dispute_reference ⇒ Object
A reference to the external dispute. This field must be unique across all disputes.
56 57 58 |
# File 'lib/stripe/params/payment_record_create_params.rb', line 56 def dispute_reference @dispute_reference end |