Class: Stripe::PaymentRecordCreateParams::Closed

Inherits:
RequestParams show all
Defined in:
lib/stripe/params/payment_record_create_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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_atObject

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