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.



1028
1029
1030
1031
# File 'lib/stripe/resources/payment_attempt_record.rb', line 1028

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.



1024
1025
1026
# File 'lib/stripe/resources/payment_attempt_record.rb', line 1024

def expand
  @expand
end

#payment_recordObject

The ID of the Payment Record.



1026
1027
1028
# File 'lib/stripe/resources/payment_attempt_record.rb', line 1026

def payment_record
  @payment_record
end