Class: Stripe::PaymentRecordReportPaymentAttemptCanceledParams
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentRecordReportPaymentAttemptCanceledParams
- Defined in:
- lib/stripe/params/payment_record_report_payment_attempt_canceled_params.rb
Instance Attribute Summary collapse
-
#canceled_at ⇒ Object
When the reported payment was canceled.
-
#expand ⇒ Object
Specifies which fields in the response should be expanded.
-
#metadata ⇒ Object
Attribute for param field metadata.
Instance Method Summary collapse
-
#initialize(canceled_at: nil, expand: nil, metadata: nil) ⇒ PaymentRecordReportPaymentAttemptCanceledParams
constructor
A new instance of PaymentRecordReportPaymentAttemptCanceledParams.
Methods inherited from RequestParams
Constructor Details
#initialize(canceled_at: nil, expand: nil, metadata: nil) ⇒ PaymentRecordReportPaymentAttemptCanceledParams
Returns a new instance of PaymentRecordReportPaymentAttemptCanceledParams.
13 14 15 16 17 |
# File 'lib/stripe/params/payment_record_report_payment_attempt_canceled_params.rb', line 13 def initialize(canceled_at: nil, expand: nil, metadata: nil) @canceled_at = canceled_at @expand = @metadata = end |
Instance Attribute Details
#canceled_at ⇒ Object
When the reported payment was canceled. Measured in seconds since the Unix epoch.
7 8 9 |
# File 'lib/stripe/params/payment_record_report_payment_attempt_canceled_params.rb', line 7 def canceled_at @canceled_at end |
#expand ⇒ Object
Specifies which fields in the response should be expanded.
9 10 11 |
# File 'lib/stripe/params/payment_record_report_payment_attempt_canceled_params.rb', line 9 def @expand end |
#metadata ⇒ Object
Attribute for param field metadata
11 12 13 |
# File 'lib/stripe/params/payment_record_report_payment_attempt_canceled_params.rb', line 11 def @metadata end |