Class: Stripe::PaymentRecordCreateParams::Closed
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentRecordCreateParams::Closed
- Defined in:
- lib/stripe/params/payment_record_create_params.rb
Instance Attribute Summary collapse
-
#closed_at ⇒ Object
When the dispute was closed.
Instance Method Summary collapse
-
#initialize(closed_at: nil) ⇒ Closed
constructor
A new instance of Closed.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(closed_at: nil) ⇒ Closed
Returns a new instance of Closed.
22 23 24 |
# File 'lib/stripe/params/payment_record_create_params.rb', line 22 def initialize(closed_at: nil) @closed_at = closed_at end |
Instance Attribute Details
#closed_at ⇒ Object
When the dispute was closed. Measured in seconds since the Unix epoch.
20 21 22 |
# File 'lib/stripe/params/payment_record_create_params.rb', line 20 def closed_at @closed_at end |