You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# A cursor for use in pagination. `ending_before` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with `obj_bar`, your subsequent call can include `ending_before=obj_bar` in order to fetch the previous page of the list.
55
+
attr_accessor:ending_before
56
+
# Specifies which fields in the response should be expanded.
57
+
attr_accessor:expand
58
+
# The identifier of the invoice whose payments to return.
59
+
attr_accessor:invoice
60
+
# A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
61
+
attr_accessor:limit
62
+
# The payment details of the invoice payments to return.
63
+
attr_accessor:payment
64
+
# A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with `obj_foo`, your subsequent call can include `starting_after=obj_foo` in order to fetch the next page of the list.
65
+
attr_accessor:starting_after
66
+
# The status of the invoice payments to return.
67
+
attr_accessor:status
68
+
69
+
definitialize(
70
+
ending_before: nil,
71
+
expand: nil,
72
+
invoice: nil,
73
+
limit: nil,
74
+
payment: nil,
75
+
starting_after: nil,
76
+
status: nil
77
+
)
78
+
@ending_before=ending_before
79
+
@expand=expand
80
+
@invoice=invoice
81
+
@limit=limit
82
+
@payment=payment
83
+
@starting_after=starting_after
84
+
@status=status
85
+
end
86
+
end
36
87
# Amount that was actually paid for this invoice, in cents (or local equivalent). This field is null until the payment is `paid`. This amount can be less than the `amount_requested` if the PaymentIntent’s `amount_received` is not sufficient to pay all of the invoices that it is attached to.
37
88
attr_reader:amount_paid
38
89
# Amount intended to be paid toward this invoice, in cents (or local equivalent)
@@ -57,5 +108,10 @@ class StatusTransitions < Stripe::StripeObject
57
108
attr_reader:status
58
109
# Attribute for field status_transitions
59
110
attr_reader:status_transitions
111
+
112
+
# When retrieving an invoice, there is an includable payments property containing the first handful of those items. There is also a URL where you can retrieve the full (paginated) list of payments.
# A cursor for use in pagination. `ending_before` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with `obj_bar`, your subsequent call can include `ending_before=obj_bar` in order to fetch the previous page of the list.
22
+
attr_accessor:ending_before
23
+
# Specifies which fields in the response should be expanded.
24
+
attr_accessor:expand
25
+
# The identifier of the invoice whose payments to return.
26
+
attr_accessor:invoice
27
+
# A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
28
+
attr_accessor:limit
29
+
# The payment details of the invoice payments to return.
30
+
attr_accessor:payment
31
+
# A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with `obj_foo`, your subsequent call can include `starting_after=obj_foo` in order to fetch the next page of the list.
32
+
attr_accessor:starting_after
33
+
# The status of the invoice payments to return.
34
+
attr_accessor:status
35
+
36
+
definitialize(
37
+
ending_before: nil,
38
+
expand: nil,
39
+
invoice: nil,
40
+
limit: nil,
41
+
payment: nil,
42
+
starting_after: nil,
43
+
status: nil
44
+
)
45
+
@ending_before=ending_before
46
+
@expand=expand
47
+
@invoice=invoice
48
+
@limit=limit
49
+
@payment=payment
50
+
@starting_after=starting_after
51
+
@status=status
52
+
end
53
+
end
54
+
55
+
classRetrieveParams < Stripe::RequestParams
56
+
# Specifies which fields in the response should be expanded.
57
+
attr_accessor:expand
58
+
59
+
definitialize(expand: nil)
60
+
@expand=expand
61
+
end
62
+
end
63
+
64
+
# When retrieving an invoice, there is an includable payments property containing the first handful of those items. There is also a URL where you can retrieve the full (paginated) list of payments.
65
+
deflist(params={},opts={})
66
+
request(
67
+
method: :get,
68
+
path: "/v1/invoice_payments",
69
+
params: params,
70
+
opts: opts,
71
+
base_address: :api
72
+
)
73
+
end
74
+
75
+
# Retrieves the invoice payment with the given ID.
def initialize(payment_intent: nil, payment_record: nil, type: nil); end
33826
+
end
33827
+
# A cursor for use in pagination. `ending_before` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with `obj_bar`, your subsequent call can include `ending_before=obj_bar` in order to fetch the previous page of the list.
33828
+
sig { returns(T.nilable(String)) }
33829
+
attr_accessor :ending_before
33830
+
# Specifies which fields in the response should be expanded.
33831
+
sig { returns(T.nilable(T::Array[String])) }
33832
+
attr_accessor :expand
33833
+
# The identifier of the invoice whose payments to return.
33834
+
sig { returns(T.nilable(String)) }
33835
+
attr_accessor :invoice
33836
+
# A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
33837
+
sig { returns(T.nilable(Integer)) }
33838
+
attr_accessor :limit
33839
+
# The payment details of the invoice payments to return.
33840
+
sig { returns(T.nilable(::Stripe::InvoicePayment::ListParams::Payment)) }
33841
+
attr_accessor :payment
33842
+
# A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with `obj_foo`, your subsequent call can include `starting_after=obj_foo` in order to fetch the next page of the list.
# When retrieving an invoice, there is an includable payments property containing the first handful of those items. There is also a URL where you can retrieve the full (paginated) list of payments.
def initialize(payment_intent: nil, payment_record: nil, type: nil); end
140489
+
end
140490
+
# A cursor for use in pagination. `ending_before` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with `obj_bar`, your subsequent call can include `ending_before=obj_bar` in order to fetch the previous page of the list.
140491
+
sig { returns(T.nilable(String)) }
140492
+
attr_accessor :ending_before
140493
+
# Specifies which fields in the response should be expanded.
140494
+
sig { returns(T.nilable(T::Array[String])) }
140495
+
attr_accessor :expand
140496
+
# The identifier of the invoice whose payments to return.
140497
+
sig { returns(T.nilable(String)) }
140498
+
attr_accessor :invoice
140499
+
# A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
140500
+
sig { returns(T.nilable(Integer)) }
140501
+
attr_accessor :limit
140502
+
# The payment details of the invoice payments to return.
140503
+
sig { returns(T.nilable(::Stripe::InvoicePaymentService::ListParams::Payment)) }
140504
+
attr_accessor :payment
140505
+
# A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with `obj_foo`, your subsequent call can include `starting_after=obj_foo` in order to fetch the next page of the list.
# Specifies which fields in the response should be expanded.
140526
+
sig { returns(T.nilable(T::Array[String])) }
140527
+
attr_accessor :expand
140528
+
sig { params(expand: T.nilable(T::Array[String])).void }
140529
+
def initialize(expand: nil); end
140530
+
end
140531
+
# When retrieving an invoice, there is an includable payments property containing the first handful of those items. There is also a URL where you can retrieve the full (paginated) list of payments.
0 commit comments