Class: Stripe::PaymentRecordService::ReportPaymentParams::Failed
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentRecordService::ReportPaymentParams::Failed
- Defined in:
- lib/stripe/services/payment_record_service.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.
277 278 279 |
# File 'lib/stripe/services/payment_record_service.rb', line 277 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.
275 276 277 |
# File 'lib/stripe/services/payment_record_service.rb', line 275 def failed_at @failed_at end |