forked from stripe/stripe-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CreditNotesResource.d.ts
540 lines (451 loc) · 18 KB
/
CreditNotesResource.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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
interface CreditNoteCreateParams {
/**
* ID of the invoice.
*/
invoice: string;
/**
* The integer amount in cents (or local equivalent) representing the total amount of the credit note.
*/
amount?: number;
/**
* The integer amount in cents (or local equivalent) representing the amount to credit the customer's balance, which will be automatically applied to their next invoice.
*/
credit_amount?: number;
/**
* The date when this credit note is in effect. Same as `created` unless overwritten. When defined, this value replaces the system-generated 'Date of issue' printed on the credit note PDF.
*/
effective_at?: number;
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
/**
* Line items that make up the credit note.
*/
lines?: Array<CreditNoteCreateParams.Line>;
/**
* The credit note's memo appears on the credit note PDF.
*/
memo?: string;
/**
* 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. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
*/
metadata?: Stripe.MetadataParam;
/**
* The integer amount in cents (or local equivalent) representing the amount that is credited outside of Stripe.
*/
out_of_band_amount?: number;
/**
* Reason for issuing this credit note, one of `duplicate`, `fraudulent`, `order_change`, or `product_unsatisfactory`
*/
reason?: CreditNoteCreateParams.Reason;
/**
* ID of an existing refund to link this credit note to.
*/
refund?: string;
/**
* The integer amount in cents (or local equivalent) representing the amount to refund. If set, a refund will be created for the charge associated with the invoice.
*/
refund_amount?: number;
/**
* When shipping_cost contains the shipping_rate from the invoice, the shipping_cost is included in the credit note.
*/
shipping_cost?: CreditNoteCreateParams.ShippingCost;
}
namespace CreditNoteCreateParams {
interface Line {
/**
* The line item amount to credit. Only valid when `type` is `invoice_line_item`.
*/
amount?: number;
/**
* The description of the credit note line item. Only valid when the `type` is `custom_line_item`.
*/
description?: string;
/**
* The invoice line item to credit. Only valid when the `type` is `invoice_line_item`.
*/
invoice_line_item?: string;
/**
* The line item quantity to credit.
*/
quantity?: number;
/**
* The tax rates which apply to the credit note line item. Only valid when the `type` is `custom_line_item`.
*/
tax_rates?: Stripe.Emptyable<Array<string>>;
/**
* Type of the credit note line item, one of `invoice_line_item` or `custom_line_item`
*/
type: Line.Type;
/**
* The integer unit amount in cents (or local equivalent) of the credit note line item. This `unit_amount` will be multiplied by the quantity to get the full amount to credit for this line item. Only valid when `type` is `custom_line_item`.
*/
unit_amount?: number;
/**
* Same as `unit_amount`, but accepts a decimal value in cents (or local equivalent) with at most 12 decimal places. Only one of `unit_amount` and `unit_amount_decimal` can be set.
*/
unit_amount_decimal?: string;
}
namespace Line {
type Type = 'custom_line_item' | 'invoice_line_item';
}
type Reason =
| 'duplicate'
| 'fraudulent'
| 'order_change'
| 'product_unsatisfactory';
interface ShippingCost {
/**
* The ID of the shipping rate to use for this order.
*/
shipping_rate?: string;
}
}
interface CreditNoteRetrieveParams {
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
}
interface CreditNoteUpdateParams {
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
/**
* Credit note memo.
*/
memo?: string;
/**
* 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. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
*/
metadata?: Stripe.MetadataParam;
}
interface CreditNoteListParams extends PaginationParams {
/**
* Only return credit notes for the customer specified by this customer ID.
*/
customer?: string;
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
/**
* Only return credit notes for the invoice specified by this invoice ID.
*/
invoice?: string;
}
interface CreditNoteLineItemListParams extends PaginationParams {
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
}
interface CreditNoteListPreviewLineItemsParams extends PaginationParams {
/**
* ID of the invoice.
*/
invoice: string;
/**
* The integer amount in cents (or local equivalent) representing the total amount of the credit note.
*/
amount?: number;
/**
* The integer amount in cents (or local equivalent) representing the amount to credit the customer's balance, which will be automatically applied to their next invoice.
*/
credit_amount?: number;
/**
* The date when this credit note is in effect. Same as `created` unless overwritten. When defined, this value replaces the system-generated 'Date of issue' printed on the credit note PDF.
*/
effective_at?: number;
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
/**
* Line items that make up the credit note.
*/
lines?: Array<CreditNoteListPreviewLineItemsParams.Line>;
/**
* The credit note's memo appears on the credit note PDF.
*/
memo?: string;
/**
* 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. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
*/
metadata?: Stripe.MetadataParam;
/**
* The integer amount in cents (or local equivalent) representing the amount that is credited outside of Stripe.
*/
out_of_band_amount?: number;
/**
* Reason for issuing this credit note, one of `duplicate`, `fraudulent`, `order_change`, or `product_unsatisfactory`
*/
reason?: CreditNoteListPreviewLineItemsParams.Reason;
/**
* ID of an existing refund to link this credit note to.
*/
refund?: string;
/**
* The integer amount in cents (or local equivalent) representing the amount to refund. If set, a refund will be created for the charge associated with the invoice.
*/
refund_amount?: number;
/**
* When shipping_cost contains the shipping_rate from the invoice, the shipping_cost is included in the credit note.
*/
shipping_cost?: CreditNoteListPreviewLineItemsParams.ShippingCost;
}
namespace CreditNoteListPreviewLineItemsParams {
interface Line {
/**
* The line item amount to credit. Only valid when `type` is `invoice_line_item`.
*/
amount?: number;
/**
* The description of the credit note line item. Only valid when the `type` is `custom_line_item`.
*/
description?: string;
/**
* The invoice line item to credit. Only valid when the `type` is `invoice_line_item`.
*/
invoice_line_item?: string;
/**
* The line item quantity to credit.
*/
quantity?: number;
/**
* The tax rates which apply to the credit note line item. Only valid when the `type` is `custom_line_item`.
*/
tax_rates?: Stripe.Emptyable<Array<string>>;
/**
* Type of the credit note line item, one of `invoice_line_item` or `custom_line_item`
*/
type: Line.Type;
/**
* The integer unit amount in cents (or local equivalent) of the credit note line item. This `unit_amount` will be multiplied by the quantity to get the full amount to credit for this line item. Only valid when `type` is `custom_line_item`.
*/
unit_amount?: number;
/**
* Same as `unit_amount`, but accepts a decimal value in cents (or local equivalent) with at most 12 decimal places. Only one of `unit_amount` and `unit_amount_decimal` can be set.
*/
unit_amount_decimal?: string;
}
namespace Line {
type Type = 'custom_line_item' | 'invoice_line_item';
}
type Reason =
| 'duplicate'
| 'fraudulent'
| 'order_change'
| 'product_unsatisfactory';
interface ShippingCost {
/**
* The ID of the shipping rate to use for this order.
*/
shipping_rate?: string;
}
}
interface CreditNotePreviewParams {
/**
* ID of the invoice.
*/
invoice: string;
/**
* The integer amount in cents (or local equivalent) representing the total amount of the credit note.
*/
amount?: number;
/**
* The integer amount in cents (or local equivalent) representing the amount to credit the customer's balance, which will be automatically applied to their next invoice.
*/
credit_amount?: number;
/**
* The date when this credit note is in effect. Same as `created` unless overwritten. When defined, this value replaces the system-generated 'Date of issue' printed on the credit note PDF.
*/
effective_at?: number;
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
/**
* Line items that make up the credit note.
*/
lines?: Array<CreditNotePreviewParams.Line>;
/**
* The credit note's memo appears on the credit note PDF.
*/
memo?: string;
/**
* 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. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
*/
metadata?: Stripe.MetadataParam;
/**
* The integer amount in cents (or local equivalent) representing the amount that is credited outside of Stripe.
*/
out_of_band_amount?: number;
/**
* Reason for issuing this credit note, one of `duplicate`, `fraudulent`, `order_change`, or `product_unsatisfactory`
*/
reason?: CreditNotePreviewParams.Reason;
/**
* ID of an existing refund to link this credit note to.
*/
refund?: string;
/**
* The integer amount in cents (or local equivalent) representing the amount to refund. If set, a refund will be created for the charge associated with the invoice.
*/
refund_amount?: number;
/**
* When shipping_cost contains the shipping_rate from the invoice, the shipping_cost is included in the credit note.
*/
shipping_cost?: CreditNotePreviewParams.ShippingCost;
}
namespace CreditNotePreviewParams {
interface Line {
/**
* The line item amount to credit. Only valid when `type` is `invoice_line_item`.
*/
amount?: number;
/**
* The description of the credit note line item. Only valid when the `type` is `custom_line_item`.
*/
description?: string;
/**
* The invoice line item to credit. Only valid when the `type` is `invoice_line_item`.
*/
invoice_line_item?: string;
/**
* The line item quantity to credit.
*/
quantity?: number;
/**
* The tax rates which apply to the credit note line item. Only valid when the `type` is `custom_line_item`.
*/
tax_rates?: Stripe.Emptyable<Array<string>>;
/**
* Type of the credit note line item, one of `invoice_line_item` or `custom_line_item`
*/
type: Line.Type;
/**
* The integer unit amount in cents (or local equivalent) of the credit note line item. This `unit_amount` will be multiplied by the quantity to get the full amount to credit for this line item. Only valid when `type` is `custom_line_item`.
*/
unit_amount?: number;
/**
* Same as `unit_amount`, but accepts a decimal value in cents (or local equivalent) with at most 12 decimal places. Only one of `unit_amount` and `unit_amount_decimal` can be set.
*/
unit_amount_decimal?: string;
}
namespace Line {
type Type = 'custom_line_item' | 'invoice_line_item';
}
type Reason =
| 'duplicate'
| 'fraudulent'
| 'order_change'
| 'product_unsatisfactory';
interface ShippingCost {
/**
* The ID of the shipping rate to use for this order.
*/
shipping_rate?: string;
}
}
interface CreditNoteVoidCreditNoteParams {
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
}
class CreditNotesResource {
/**
* Issue a credit note to adjust the amount of a finalized invoice. For a status=open invoice, a credit note reduces
* its amount_due. For a status=paid invoice, a credit note does not affect its amount_due. Instead, it can result
* in any combination of the following:
*
*
* Refund: create a new refund (using refund_amount) or link an existing refund (using refund).
* Customer balance credit: credit the customer's balance (using credit_amount) which will be automatically applied to their next invoice when it's finalized.
* Outside of Stripe credit: record the amount that is or will be credited outside of Stripe (using out_of_band_amount).
*
*
* For post-payment credit notes the sum of the refund, credit and outside of Stripe amounts must equal the credit note total.
*
* You may issue multiple credit notes for an invoice. Each credit note will increment the invoice's pre_payment_credit_notes_amount
* or post_payment_credit_notes_amount depending on its status at the time of credit note creation.
*/
create(
params: CreditNoteCreateParams,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.CreditNote>>;
/**
* Retrieves the credit note object with the given identifier.
*/
retrieve(
id: string,
params?: CreditNoteRetrieveParams,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.CreditNote>>;
retrieve(
id: string,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.CreditNote>>;
/**
* Updates an existing credit note.
*/
update(
id: string,
params?: CreditNoteUpdateParams,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.CreditNote>>;
/**
* Returns a list of credit notes.
*/
list(
params?: CreditNoteListParams,
options?: RequestOptions
): ApiListPromise<Stripe.CreditNote>;
list(options?: RequestOptions): ApiListPromise<Stripe.CreditNote>;
/**
* When retrieving a credit note, you'll get a lines property containing the the first handful of those items. There is also a URL where you can retrieve the full (paginated) list of line items.
*/
listLineItems(
id: string,
params?: CreditNoteLineItemListParams,
options?: RequestOptions
): ApiListPromise<Stripe.CreditNoteLineItem>;
listLineItems(
id: string,
options?: RequestOptions
): ApiListPromise<Stripe.CreditNoteLineItem>;
/**
* When retrieving a credit note preview, you'll get a lines property containing the first handful of those items. This URL you can retrieve the full (paginated) list of line items.
*/
listPreviewLineItems(
params: CreditNoteListPreviewLineItemsParams,
options?: RequestOptions
): ApiListPromise<Stripe.CreditNoteLineItem>;
/**
* Get a preview of a credit note without creating it.
*/
preview(
params: CreditNotePreviewParams,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.CreditNote>>;
/**
* Marks a credit note as void. Learn more about [voiding credit notes](https://stripe.com/docs/billing/invoices/credit-notes#voiding).
*/
voidCreditNote(
id: string,
params?: CreditNoteVoidCreditNoteParams,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.CreditNote>>;
voidCreditNote(
id: string,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.CreditNote>>;
}
}
}