Class: Stripe::PaymentRecordReportRefundParams::Refunded

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/payment_record_report_refund_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(refunded_at: nil) ⇒ Refunded

Returns a new instance of Refunded.



42
43
44
# File 'lib/stripe/params/payment_record_report_refund_params.rb', line 42

def initialize(refunded_at: nil)
  @refunded_at = refunded_at
end

Instance Attribute Details

#refunded_atObject

When the reported refund completed. Measured in seconds since the Unix epoch.



40
41
42
# File 'lib/stripe/params/payment_record_report_refund_params.rb', line 40

def refunded_at
  @refunded_at
end