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.



235
236
237
238
239
# File 'lib/stripe/services/payment_record_service.rb', line 235

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.



229
230
231
# File 'lib/stripe/services/payment_record_service.rb', line 229

def expand
  @expand
end

#guaranteed_atObject

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



231
232
233
# File 'lib/stripe/services/payment_record_service.rb', line 231

def guaranteed_at
  @guaranteed_at
end

#metadataObject

Attribute for param field metadata



233
234
235
# File 'lib/stripe/services/payment_record_service.rb', line 233

def 
  @metadata
end