Class: Stripe::PaymentRecordReportPaymentAttemptParams::Guaranteed
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentRecordReportPaymentAttemptParams::Guaranteed
- Defined in:
- lib/stripe/params/payment_record_report_payment_attempt_params.rb
Defined Under Namespace
Classes: ProcessorDetails
Instance Attribute Summary collapse
-
#guaranteed_at ⇒ Object
When the reported payment was guaranteed.
-
#payment_evaluations ⇒ Object
Payment evaluations associated with this reported payment.
-
#processor_details ⇒ Object
Processor information for this payment.
Instance Method Summary collapse
-
#initialize(guaranteed_at: nil, payment_evaluations: nil, processor_details: nil) ⇒ Guaranteed
constructor
A new instance of Guaranteed.
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.
75 76 77 78 79 |
# File 'lib/stripe/params/payment_record_report_payment_attempt_params.rb', line 75 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_at ⇒ Object
When the reported payment was guaranteed. Measured in seconds since the Unix epoch.
69 70 71 |
# File 'lib/stripe/params/payment_record_report_payment_attempt_params.rb', line 69 def guaranteed_at @guaranteed_at end |
#payment_evaluations ⇒ Object
Payment evaluations associated with this reported payment.
71 72 73 |
# File 'lib/stripe/params/payment_record_report_payment_attempt_params.rb', line 71 def payment_evaluations @payment_evaluations end |
#processor_details ⇒ Object
Processor information for this payment.
73 74 75 |
# File 'lib/stripe/params/payment_record_report_payment_attempt_params.rb', line 73 def processor_details @processor_details end |