forked from stripe/stripe-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Customers.d.ts
295 lines (242 loc) · 9.3 KB
/
Customers.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
/**
* This object represents a customer of your business. It lets you create recurring charges and track payments that belong to the same customer.
*
* Related guide: [Save a card during payment](https://stripe.com/docs/payments/save-during-payment)
*/
interface Customer {
/**
* Unique identifier for the object.
*/
id: string;
/**
* String representing the object's type. Objects of the same type share the same value.
*/
object: 'customer';
/**
* The customer's address.
*/
address?: Stripe.Address | null;
/**
* Current balance, if any, being stored on the customer. If negative, the customer has credit to apply to their next invoice. If positive, the customer has an amount owed that will be added to their next invoice. The balance does not refer to any unpaid invoices; it solely takes into account amounts that have yet to be successfully applied to any invoice. This balance is only taken into account as invoices are finalized.
*/
balance: number;
/**
* The current funds being held by Stripe on behalf of the customer. These funds can be applied towards payment intents with source "cash_balance". The settings[reconciliation_mode] field describes whether these funds are applied to such payment intents manually or automatically.
*/
cash_balance?: Stripe.CashBalance | null;
/**
* Time at which the object was created. Measured in seconds since the Unix epoch.
*/
created: number;
/**
* Three-letter [ISO code for the currency](https://stripe.com/docs/currencies) the customer can be charged in for recurring billing purposes.
*/
currency?: string | null;
/**
* ID of the default payment source for the customer.
*
* If you are using payment methods created via the PaymentMethods API, see the [invoice_settings.default_payment_method](https://stripe.com/docs/api/customers/object#customer_object-invoice_settings-default_payment_method) field instead.
*/
default_source: string | Stripe.CustomerSource | null;
deleted?: void;
/**
* When the customer's latest invoice is billed by charging automatically, `delinquent` is `true` if the invoice's latest charge failed. When the customer's latest invoice is billed by sending an invoice, `delinquent` is `true` if the invoice isn't paid by its due date.
*
* If an invoice is marked uncollectible by [dunning](https://stripe.com/docs/billing/automatic-collection), `delinquent` doesn't get reset to `false`.
*/
delinquent?: boolean | null;
/**
* An arbitrary string attached to the object. Often useful for displaying to users.
*/
description: string | null;
/**
* Describes the current discount active on the customer, if there is one.
*/
discount?: Stripe.Discount | null;
/**
* The customer's email address.
*/
email: string | null;
/**
* The current multi-currency balances, if any, being stored on the customer. If positive in a currency, the customer has a credit to apply to their next invoice denominated in that currency. If negative, the customer has an amount owed that will be added to their next invoice denominated in that currency. These balances do not refer to any unpaid invoices. They solely track amounts that have yet to be successfully applied to any invoice. A balance in a particular currency is only applied to any invoice as an invoice in that currency is finalized.
*/
invoice_credit_balance?: {
[key: string]: number;
};
/**
* The prefix for the customer used to generate unique invoice numbers.
*/
invoice_prefix?: string | null;
invoice_settings: Customer.InvoiceSettings;
/**
* Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
*/
livemode: boolean;
/**
* Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
*/
metadata: Stripe.Metadata;
/**
* The customer's full name or business name.
*/
name?: string | null;
/**
* The suffix of the customer's next invoice number, e.g., 0001.
*/
next_invoice_sequence?: number;
/**
* The customer's phone number.
*/
phone?: string | null;
/**
* The customer's preferred locales (languages), ordered by preference.
*/
preferred_locales?: Array<string> | null;
/**
* Mailing and shipping address for the customer. Appears on invoices emailed to this customer.
*/
shipping: Customer.Shipping | null;
/**
* The customer's payment sources, if any.
*/
sources?: ApiList<Stripe.CustomerSource>;
/**
* The customer's current subscriptions, if any.
*/
subscriptions?: ApiList<Stripe.Subscription>;
tax?: Customer.Tax;
/**
* Describes the customer's tax exemption status. One of `none`, `exempt`, or `reverse`. When set to `reverse`, invoice and receipt PDFs include the text **"Reverse charge"**.
*/
tax_exempt?: Customer.TaxExempt | null;
/**
* The customer's tax IDs.
*/
tax_ids?: ApiList<Stripe.TaxId>;
/**
* ID of the test clock this customer belongs to.
*/
test_clock?: string | Stripe.TestHelpers.TestClock | null;
}
namespace Customer {
interface InvoiceSettings {
/**
* Default custom fields to be displayed on invoices for this customer.
*/
custom_fields: Array<InvoiceSettings.CustomField> | null;
/**
* ID of a payment method that's attached to the customer, to be used as the customer's default payment method for subscriptions and invoices.
*/
default_payment_method: string | Stripe.PaymentMethod | null;
/**
* Default footer to be displayed on invoices for this customer.
*/
footer: string | null;
/**
* Default options for invoice PDF rendering for this customer.
*/
rendering_options: InvoiceSettings.RenderingOptions | null;
}
namespace InvoiceSettings {
interface CustomField {
/**
* The name of the custom field.
*/
name: string;
/**
* The value of the custom field.
*/
value: string;
}
interface RenderingOptions {
/**
* How line-item prices and amounts will be displayed with respect to tax on invoice PDFs.
*/
amount_tax_display: string | null;
}
}
interface Shipping {
address?: Stripe.Address;
/**
* The delivery service that shipped a physical product, such as Fedex, UPS, USPS, etc.
*/
carrier?: string | null;
/**
* Recipient name.
*/
name?: string;
/**
* Recipient phone (including extension).
*/
phone?: string | null;
/**
* The tracking number for a physical product, obtained from the delivery service. If multiple tracking numbers were generated for this purchase, please separate them with commas.
*/
tracking_number?: string | null;
}
interface Tax {
/**
* Surfaces if automatic tax computation is possible given the current customer location information.
*/
automatic_tax: Tax.AutomaticTax;
/**
* A recent IP address of the customer used for tax reporting and tax location inference.
*/
ip_address: string | null;
/**
* The customer's location as identified by Stripe Tax.
*/
location: Tax.Location | null;
}
namespace Tax {
type AutomaticTax =
| 'failed'
| 'not_collecting'
| 'supported'
| 'unrecognized_location';
interface Location {
/**
* The customer's country as identified by Stripe Tax.
*/
country: string;
/**
* The data source used to infer the customer's location.
*/
source: Location.Source;
/**
* The customer's state, county, province, or region as identified by Stripe Tax.
*/
state: string | null;
}
namespace Location {
type Source =
| 'billing_address'
| 'ip_address'
| 'payment_method'
| 'shipping_destination';
}
}
type TaxExempt = 'exempt' | 'none' | 'reverse';
}
/**
* The DeletedCustomer object.
*/
interface DeletedCustomer {
/**
* Unique identifier for the object.
*/
id: string;
/**
* String representing the object's type. Objects of the same type share the same value.
*/
object: 'customer';
/**
* Always true for a deleted object
*/
deleted: true;
}
}
}