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.



1036
1037
1038
1039
# File 'lib/stripe/resources/payment_attempt_record.rb', line 1036

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.



1032
1033
1034
# File 'lib/stripe/resources/payment_attempt_record.rb', line 1032

def expand
  @expand
end

#payment_recordObject

The ID of the Payment Record.



1034
1035
1036
# File 'lib/stripe/resources/payment_attempt_record.rb', line 1034

def payment_record
  @payment_record
end