Class: Stripe::PaymentRecordCreateParams::ProcessorDetails::Custom

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/payment_record_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(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_referenceObject

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