Class: Stripe::PaymentRecordService::ReportPaymentAttemptFailedParams

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/services/payment_record_service.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.



220
221
222
223
224
# File 'lib/stripe/services/payment_record_service.rb', line 220

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.



214
215
216
# File 'lib/stripe/services/payment_record_service.rb', line 214

def expand
  @expand
end

#failed_atObject

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



216
217
218
# File 'lib/stripe/services/payment_record_service.rb', line 216

def failed_at
  @failed_at
end

#metadataObject

Attribute for param field metadata



218
219
220
# File 'lib/stripe/services/payment_record_service.rb', line 218

def 
  @metadata
end