Class: Stripe::PaymentAttemptRecord::ListParams

Inherits:
RequestParams show all
Defined in:
lib/stripe/resources/payment_attempt_record.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(expand: nil, payment_record: nil) ⇒ ListParams

Returns a new instance of ListParams.



127
128
129
130
# File 'lib/stripe/resources/payment_attempt_record.rb', line 127

def initialize(expand: nil, payment_record: nil)
  @expand = expand
  @payment_record = payment_record
end

Instance Attribute Details

#expandObject

Specifies which fields in the response should be expanded.



123
124
125
# File 'lib/stripe/resources/payment_attempt_record.rb', line 123

def expand
  @expand
end

#payment_recordObject

The ID of the Payment Record.



125
126
127
# File 'lib/stripe/resources/payment_attempt_record.rb', line 125

def payment_record
  @payment_record
end