Class: Stripe::PaymentRecordService::ReportPaymentAttemptGuaranteedParams

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, guaranteed_at: nil, metadata: nil) ⇒ ReportPaymentAttemptGuaranteedParams

Returns a new instance of ReportPaymentAttemptGuaranteedParams.



268
269
270
271
272
# File 'lib/stripe/services/payment_record_service.rb', line 268

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

Instance Attribute Details

#expandObject

Specifies which fields in the response should be expanded.



260
261
262
# File 'lib/stripe/services/payment_record_service.rb', line 260

def expand
  @expand
end

#guaranteed_atObject

When the reported payment was guaranteed. Measured in seconds since the Unix epoch.



263
264
265
# File 'lib/stripe/services/payment_record_service.rb', line 263

def guaranteed_at
  @guaranteed_at
end

#metadataObject

Attribute for param field metadata



266
267
268
# File 'lib/stripe/services/payment_record_service.rb', line 266

def 
  @metadata
end