Class: Stripe::PaymentRecord::ReportPaymentAttemptFailedParams

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/resources/payment_record.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(expand: nil, failed_at: nil, metadata: nil) ⇒ ReportPaymentAttemptFailedParams

Returns a new instance of ReportPaymentAttemptFailedParams.



1225
1226
1227
1228
1229
# File 'lib/stripe/resources/payment_record.rb', line 1225

def initialize(expand: nil, failed_at: nil, metadata: nil)
  @expand = expand
  @failed_at = failed_at
  @metadata = 
end

Instance Attribute Details

#expandObject

Specifies which fields in the response should be expanded.



1219
1220
1221
# File 'lib/stripe/resources/payment_record.rb', line 1219

def expand
  @expand
end

#failed_atObject

When the reported payment failed. Measured in seconds since the Unix epoch.



1221
1222
1223
# File 'lib/stripe/resources/payment_record.rb', line 1221

def failed_at
  @failed_at
end

#metadataObject

Attribute for param field metadata



1223
1224
1225
# File 'lib/stripe/resources/payment_record.rb', line 1223

def 
  @metadata
end