Class: Stripe::PaymentRecordReportPaymentParams::Failed
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentRecordReportPaymentParams::Failed
- Defined in:
- lib/stripe/params/payment_record_report_payment_params.rb
Instance Attribute Summary collapse
-
#failed_at ⇒ Object
When the reported payment failed.
Instance Method Summary collapse
-
#initialize(failed_at: nil) ⇒ Failed
constructor
A new instance of Failed.
Methods inherited from RequestParams
Constructor Details
#initialize(failed_at: nil) ⇒ Failed
Returns a new instance of Failed.
40 41 42 |
# File 'lib/stripe/params/payment_record_report_payment_params.rb', line 40 def initialize(failed_at: nil) @failed_at = failed_at end |
Instance Attribute Details
#failed_at ⇒ Object
When the reported payment failed. Measured in seconds since the Unix epoch.
38 39 40 |
# File 'lib/stripe/params/payment_record_report_payment_params.rb', line 38 def failed_at @failed_at end |