@@ -29,32 +29,30 @@ defmodule Stripe.Invoice do
29
29
attempt_count: non_neg_integer ,
30
30
attempted: boolean ,
31
31
auto_advance: boolean ,
32
- collection_method: String . t ( ) | nil ,
33
32
billing_reason: String . t ( ) | nil ,
34
33
charge: Stripe . id ( ) | Stripe.Charge . t ( ) | nil ,
35
34
closed: boolean ,
36
- collection_method: String . t ( ) ,
35
+ collection_method: String . t ( ) | nil ,
36
+ created: Stripe . timestamp ( ) ,
37
37
currency: String . t ( ) ,
38
+ custom_fields: custom_fields ( ) | nil ,
39
+ customer: Stripe . id ( ) | Stripe.Customer . t ( ) ,
38
40
customer_address: Stripe.Types . address ( ) | nil ,
39
41
customer_email: String . t ( ) | nil ,
40
42
customer_name: String . t ( ) | nil ,
41
43
customer_phone: String . t ( ) | nil ,
42
44
customer_shipping: Stripe.Types . shipping ( ) | nil ,
43
45
customer_tax_exempt: String . t ( ) | nil ,
44
46
customer_tax_ids: Stripe.List . t ( map ) | nil ,
45
- custom_fields: custom_fields ( ) | nil ,
46
- customer: Stripe . id ( ) | Stripe.Customer . t ( ) ,
47
- created: Stripe . timestamp ( ) ,
48
47
default_payment_method: String . t ( ) | nil ,
49
48
default_source: String . t ( ) | nil ,
50
49
default_tax_rates: Stripe.List . t ( map ) | nil ,
50
+ deleted: boolean | nil ,
51
51
description: String . t ( ) | nil ,
52
52
discount: Stripe.Discount . t ( ) | nil ,
53
53
due_date: Stripe . timestamp ( ) | nil ,
54
54
ending_balance: integer | nil ,
55
- finalized_at: Stripe . timestamp ( ) | nil ,
56
55
footer: String . t ( ) | nil ,
57
- forgiven: boolean ,
58
56
hosted_invoice_url: String . t ( ) | nil ,
59
57
invoice_pdf: String . t ( ) | nil ,
60
58
lines: Stripe.List . t ( Stripe.LineItem . t ( ) ) ,
@@ -74,12 +72,23 @@ defmodule Stripe.Invoice do
74
72
status: String . t ( ) | nil ,
75
73
status_transitions: status_transitions ( ) | nil ,
76
74
subscription: Stripe . id ( ) | Stripe.Subscription . t ( ) | nil ,
77
- subscription_proration_date: Stripe . timestamp ( ) ,
75
+ subscription_proration_date: Stripe . timestamp ( ) | nil ,
78
76
subtotal: integer ,
79
77
tax: integer | nil ,
80
78
tax_percent: number | nil ,
81
- total_tax_amounts: Stripe.List . t ( map ) | nil ,
79
+ threshold_reason:
80
+ nil
81
+ | % {
82
+ amount_gte: integer ,
83
+ item_reasons: [
84
+ % {
85
+ line_item_ids: [ String . t ( ) ] ,
86
+ usage_gte: integer
87
+ }
88
+ ]
89
+ } ,
82
90
total: integer ,
91
+ total_tax_amounts: Stripe.List . t ( map ) | nil ,
83
92
webhooks_delivered_at: Stripe . timestamp ( ) | nil
84
93
}
85
94
@@ -115,32 +124,30 @@ defmodule Stripe.Invoice do
115
124
:attempt_count ,
116
125
:attempted ,
117
126
:auto_advance ,
118
- :collection_method ,
119
127
:billing_reason ,
120
128
:charge ,
121
129
:closed ,
122
- :created ,
123
130
:collection_method ,
131
+ :created ,
132
+ :currency ,
133
+ :custom_fields ,
134
+ :customer ,
124
135
:customer_address ,
125
136
:customer_email ,
126
137
:customer_name ,
127
138
:customer_phone ,
128
139
:customer_shipping ,
129
140
:customer_tax_exempt ,
130
141
:customer_tax_ids ,
131
- :currency ,
132
- :custom_fields ,
133
- :customer ,
134
142
:default_payment_method ,
135
143
:default_source ,
136
144
:default_tax_rates ,
145
+ :deleted ,
137
146
:description ,
138
147
:discount ,
139
148
:due_date ,
140
149
:ending_balance ,
141
- :finalized_at ,
142
150
:footer ,
143
- :forgiven ,
144
151
:hosted_invoice_url ,
145
152
:invoice_pdf ,
146
153
:lines ,
@@ -155,17 +162,18 @@ defmodule Stripe.Invoice do
155
162
:post_payment_credit_notes_amount ,
156
163
:pre_payment_credit_notes_amount ,
157
164
:receipt_number ,
158
- :status ,
159
- :status_transitions ,
160
165
:starting_balance ,
161
166
:statement_descriptor ,
167
+ :status ,
168
+ :status_transitions ,
162
169
:subscription ,
163
170
:subscription_proration_date ,
164
171
:subtotal ,
165
172
:tax ,
166
173
:tax_percent ,
167
- :total_tax_amounts ,
174
+ :threshold_reason ,
168
175
:total ,
176
+ :total_tax_amounts ,
169
177
:webhooks_delivered_at
170
178
]
171
179
0 commit comments