Class: Stripe::PaymentRecordReportPaymentParams::Guaranteed

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

Defined Under Namespace

Classes: ProcessorDetails

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(guaranteed_at: nil, payment_evaluations: nil, processor_details: nil) ⇒ Guaranteed

Returns a new instance of Guaranteed.



105
106
107
108
109
# File 'lib/stripe/params/payment_record_report_payment_params.rb', line 105

def initialize(guaranteed_at: nil, payment_evaluations: nil, processor_details: nil)
  @guaranteed_at = guaranteed_at
  @payment_evaluations = payment_evaluations
  @processor_details = processor_details
end

Instance Attribute Details

#guaranteed_atObject

When the reported payment was guaranteed. Measured in seconds since the Unix epoch.



99
100
101
# File 'lib/stripe/params/payment_record_report_payment_params.rb', line 99

def guaranteed_at
  @guaranteed_at
end

#payment_evaluationsObject

Payment evaluations associated with this reported payment.



101
102
103
# File 'lib/stripe/params/payment_record_report_payment_params.rb', line 101

def payment_evaluations
  @payment_evaluations
end

#processor_detailsObject

Processor information for this payment.



103
104
105
# File 'lib/stripe/params/payment_record_report_payment_params.rb', line 103

def processor_details
  @processor_details
end