Class: Stripe::PaymentRecordReportPaymentParams::Guaranteed
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentRecordReportPaymentParams::Guaranteed
- Defined in:
- lib/stripe/params/payment_record_report_payment_params.rb
Defined Under Namespace
Classes: ProcessorDetails
Instance Attribute Summary collapse
-
#guaranteed_at ⇒ Object
When the reported payment was guaranteed.
-
#processor_details ⇒ Object
Processor information for this payment.
Instance Method Summary collapse
-
#initialize(guaranteed_at: 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, processor_details: nil) ⇒ Guaranteed
Returns a new instance of Guaranteed.
95 96 97 98 |
# File 'lib/stripe/params/payment_record_report_payment_params.rb', line 95 def initialize(guaranteed_at: nil, processor_details: nil) @guaranteed_at = guaranteed_at @processor_details = processor_details end |
Instance Attribute Details
#guaranteed_at ⇒ Object
When the reported payment was guaranteed. Measured in seconds since the Unix epoch.
91 92 93 |
# File 'lib/stripe/params/payment_record_report_payment_params.rb', line 91 def guaranteed_at @guaranteed_at end |
#processor_details ⇒ Object
Processor information for this payment.
93 94 95 |
# File 'lib/stripe/params/payment_record_report_payment_params.rb', line 93 def processor_details @processor_details end |