forked from stripe/stripe-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInvoices.d.ts
1321 lines (1133 loc) · 49.9 KB
/
Invoices.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
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
/**
* Invoices are statements of amounts owed by a customer, and are either
* generated one-off, or generated periodically from a subscription.
*
* They contain [invoice items](https://stripe.com/docs/api#invoiceitems), and proration adjustments
* that may be caused by subscription upgrades/downgrades (if necessary).
*
* If your invoice is configured to be billed through automatic charges,
* Stripe automatically finalizes your invoice and attempts payment. Note
* that finalizing the invoice,
* [when automatic](https://stripe.com/docs/invoicing/integration/automatic-advancement-collection), does
* not happen immediately as the invoice is created. Stripe waits
* until one hour after the last webhook was successfully sent (or the last
* webhook timed out after failing). If you (and the platforms you may have
* connected to) have no webhooks configured, Stripe waits one hour after
* creation to finalize the invoice.
*
* If your invoice is configured to be billed by sending an email, then based on your
* [email settings](https://dashboard.stripe.com/account/billing/automatic),
* Stripe will email the invoice to your customer and await payment. These
* emails can contain a link to a hosted page to pay the invoice.
*
* Stripe applies any customer credit on the account before determining the
* amount due for the invoice (i.e., the amount that will be actually
* charged). If the amount due for the invoice is less than Stripe's [minimum allowed charge
* per currency](https://stripe.com/docs/currencies#minimum-and-maximum-charge-amounts), the
* invoice is automatically marked paid, and we add the amount due to the
* customer's credit balance which is applied to the next invoice.
*
* More details on the customer's credit balance are
* [here](https://stripe.com/docs/billing/customer/balance).
*
* Related guide: [Send invoices to customers](https://stripe.com/docs/billing/invoices/sending)
*/
interface Invoice {
/**
* Unique identifier for the object. This property is always present unless the invoice is an upcoming invoice. See [Retrieve an upcoming invoice](https://stripe.com/docs/api/invoices/upcoming) for more details.
*/
id: string;
/**
* String representing the object's type. Objects of the same type share the same value.
*/
object: 'invoice';
/**
* The country of the business associated with this invoice, most often the business creating the invoice.
*/
account_country: string | null;
/**
* The public name of the business associated with this invoice, most often the business creating the invoice.
*/
account_name: string | null;
/**
* The account tax IDs associated with the invoice. Only editable when the invoice is a draft.
*/
account_tax_ids: Array<
string | Stripe.TaxId | Stripe.DeletedTaxId
> | null;
/**
* Final amount due at this time for this invoice. If the invoice's total is smaller than the minimum charge amount, for example, or if there is account credit that can be applied to the invoice, the `amount_due` may be 0. If there is a positive `starting_balance` for the invoice (the customer owes money), the `amount_due` will also take that into account. The charge that gets generated for the invoice will be for the amount specified in `amount_due`.
*/
amount_due: number;
/**
* The amount, in cents (or local equivalent), that was paid.
*/
amount_paid: number;
/**
* The difference between amount_due and amount_paid, in cents (or local equivalent).
*/
amount_remaining: number;
/**
* This is the sum of all the shipping amounts.
*/
amount_shipping: number;
/**
* ID of the Connect Application that created the invoice.
*/
application:
| string
| Stripe.Application
| Stripe.DeletedApplication
| null;
/**
* The fee in cents (or local equivalent) that will be applied to the invoice and transferred to the application owner's Stripe account when the invoice is paid.
*/
application_fee_amount: number | null;
/**
* Number of payment attempts made for this invoice, from the perspective of the payment retry schedule. Any payment attempt counts as the first attempt, and subsequently only automatic retries increment the attempt count. In other words, manual payment attempts after the first attempt do not affect the retry schedule.
*/
attempt_count: number;
/**
* Whether an attempt has been made to pay the invoice. An invoice is not attempted until 1 hour after the `invoice.created` webhook, for example, so you might not want to display that invoice as unpaid to your users.
*/
attempted: boolean;
/**
* Controls whether Stripe performs [automatic collection](https://stripe.com/docs/invoicing/integration/automatic-advancement-collection) of the invoice. If `false`, the invoice's state doesn't automatically advance without an explicit action.
*/
auto_advance?: boolean;
automatic_tax: Invoice.AutomaticTax;
/**
* Indicates the reason why the invoice was created. `subscription_cycle` indicates an invoice created by a subscription advancing into a new period. `subscription_create` indicates an invoice created due to creating a subscription. `subscription_update` indicates an invoice created due to updating a subscription. `subscription` is set for all old invoices to indicate either a change to a subscription or a period advancement. `manual` is set for all invoices unrelated to a subscription (for example: created via the invoice editor). The `upcoming` value is reserved for simulated invoices per the upcoming invoice endpoint. `subscription_threshold` indicates an invoice created due to a billing threshold being reached.
*/
billing_reason: Invoice.BillingReason | null;
/**
* ID of the latest charge generated for this invoice, if any.
*/
charge: string | Stripe.Charge | null;
/**
* Either `charge_automatically`, or `send_invoice`. When charging automatically, Stripe will attempt to pay this invoice using the default source attached to the customer. When sending an invoice, Stripe will email this invoice to the customer with payment instructions.
*/
collection_method: Invoice.CollectionMethod;
/**
* Time at which the object was created. Measured in seconds since the Unix epoch.
*/
created: number;
/**
* Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
*/
currency: string;
/**
* Custom fields displayed on the invoice.
*/
custom_fields: Array<Invoice.CustomField> | null;
/**
* The ID of the customer who will be billed.
*/
customer: string | Stripe.Customer | Stripe.DeletedCustomer | null;
/**
* The customer's address. Until the invoice is finalized, this field will equal `customer.address`. Once the invoice is finalized, this field will no longer be updated.
*/
customer_address: Stripe.Address | null;
/**
* The customer's email. Until the invoice is finalized, this field will equal `customer.email`. Once the invoice is finalized, this field will no longer be updated.
*/
customer_email: string | null;
/**
* The customer's name. Until the invoice is finalized, this field will equal `customer.name`. Once the invoice is finalized, this field will no longer be updated.
*/
customer_name: string | null;
/**
* The customer's phone number. Until the invoice is finalized, this field will equal `customer.phone`. Once the invoice is finalized, this field will no longer be updated.
*/
customer_phone: string | null;
/**
* The customer's shipping information. Until the invoice is finalized, this field will equal `customer.shipping`. Once the invoice is finalized, this field will no longer be updated.
*/
customer_shipping: Invoice.CustomerShipping | null;
/**
* The customer's tax exempt status. Until the invoice is finalized, this field will equal `customer.tax_exempt`. Once the invoice is finalized, this field will no longer be updated.
*/
customer_tax_exempt: Invoice.CustomerTaxExempt | null;
/**
* The customer's tax IDs. Until the invoice is finalized, this field will contain the same tax IDs as `customer.tax_ids`. Once the invoice is finalized, this field will no longer be updated.
*/
customer_tax_ids?: Array<Invoice.CustomerTaxId> | null;
/**
* ID of the default payment method for the invoice. It must belong to the customer associated with the invoice. If not set, defaults to the subscription's default payment method, if any, or to the default payment method in the customer's invoice settings.
*/
default_payment_method: string | Stripe.PaymentMethod | null;
/**
* ID of the default payment source for the invoice. It must belong to the customer associated with the invoice and be in a chargeable state. If not set, defaults to the subscription's default source, if any, or to the customer's default source.
*/
default_source: string | Stripe.CustomerSource | null;
/**
* The tax rates applied to this invoice, if any.
*/
default_tax_rates: Array<Stripe.TaxRate>;
deleted?: void;
/**
* An arbitrary string attached to the object. Often useful for displaying to users. Referenced as 'memo' in the Dashboard.
*/
description: string | null;
/**
* Describes the current discount applied to this invoice, if there is one. Not populated if there are multiple discounts.
*/
discount: Stripe.Discount | null;
/**
* The discounts applied to the invoice. Line item discounts are applied before invoice discounts. Use `expand[]=discounts` to expand each discount.
*/
discounts: Array<
string | Stripe.Discount | Stripe.DeletedDiscount
> | null;
/**
* The date on which payment for this invoice is due. This value will be `null` for invoices where `collection_method=charge_automatically`.
*/
due_date: number | null;
/**
* The date when this invoice is in effect. Same as `finalized_at` unless overwritten. When defined, this value replaces the system-generated 'Date of issue' printed on the invoice PDF and receipt.
*/
effective_at: number | null;
/**
* Ending customer balance after the invoice is finalized. Invoices are finalized approximately an hour after successful webhook delivery or when payment collection is attempted for the invoice. If the invoice has not been finalized yet, this will be null.
*/
ending_balance: number | null;
/**
* Footer displayed on the invoice.
*/
footer: string | null;
/**
* Details of the invoice that was cloned. See the [revision documentation](https://stripe.com/docs/invoicing/invoice-revisions) for more details.
*/
from_invoice: Invoice.FromInvoice | null;
/**
* The URL for the hosted invoice page, which allows customers to view and pay an invoice. If the invoice has not been finalized yet, this will be null.
*/
hosted_invoice_url?: string | null;
/**
* The link to download the PDF for the invoice. If the invoice has not been finalized yet, this will be null.
*/
invoice_pdf?: string | null;
/**
* The error encountered during the previous attempt to finalize the invoice. This field is cleared when the invoice is successfully finalized.
*/
last_finalization_error: Invoice.LastFinalizationError | null;
/**
* The ID of the most recent non-draft revision of this invoice
*/
latest_revision: string | Stripe.Invoice | null;
/**
* The individual line items that make up the invoice. `lines` is sorted as follows: (1) pending invoice items (including prorations) in reverse chronological order, (2) subscription items in reverse chronological order, and (3) invoice items added after invoice creation in chronological order.
*/
lines: ApiList<Stripe.InvoiceLineItem>;
/**
* 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 | null;
/**
* The time at which payment will next be attempted. This value will be `null` for invoices where `collection_method=send_invoice`.
*/
next_payment_attempt: number | null;
/**
* A unique, identifying string that appears on emails sent to the customer for this invoice. This starts with the customer's unique invoice_prefix if it is specified.
*/
number: string | null;
/**
* The account (if any) for which the funds of the invoice payment are intended. If set, the invoice will be presented with the branding and support information of the specified account. See the [Invoices with Connect](https://stripe.com/docs/billing/invoices/connect) documentation for details.
*/
on_behalf_of: string | Stripe.Account | null;
/**
* Whether payment was successfully collected for this invoice. An invoice can be paid (most commonly) with a charge or with credit from the customer's account balance.
*/
paid: boolean;
/**
* Returns true if the invoice was manually marked paid, returns false if the invoice hasn't been paid yet or was paid on Stripe.
*/
paid_out_of_band: boolean;
/**
* The PaymentIntent associated with this invoice. The PaymentIntent is generated when the invoice is finalized, and can then be used to pay the invoice. Note that voiding an invoice will cancel the PaymentIntent.
*/
payment_intent: string | Stripe.PaymentIntent | null;
payment_settings: Invoice.PaymentSettings;
/**
* End of the usage period during which invoice items were added to this invoice.
*/
period_end: number;
/**
* Start of the usage period during which invoice items were added to this invoice.
*/
period_start: number;
/**
* Total amount of all post-payment credit notes issued for this invoice.
*/
post_payment_credit_notes_amount: number;
/**
* Total amount of all pre-payment credit notes issued for this invoice.
*/
pre_payment_credit_notes_amount: number;
/**
* The quote this invoice was generated from.
*/
quote: string | Stripe.Quote | null;
/**
* This is the transaction number that appears on email receipts sent for this invoice.
*/
receipt_number: string | null;
/**
* Options for invoice PDF rendering.
*/
rendering_options: Invoice.RenderingOptions | null;
/**
* The details of the cost of shipping, including the ShippingRate applied on the invoice.
*/
shipping_cost: Invoice.ShippingCost | null;
/**
* Shipping details for the invoice. The Invoice PDF will use the `shipping_details` value if it is set, otherwise the PDF will render the shipping address from the customer.
*/
shipping_details: Invoice.ShippingDetails | null;
/**
* Starting customer balance before the invoice is finalized. If the invoice has not been finalized yet, this will be the current customer balance. For revision invoices, this also includes any customer balance that was applied to the original invoice.
*/
starting_balance: number;
/**
* Extra information about an invoice for the customer's credit card statement.
*/
statement_descriptor: string | null;
/**
* The status of the invoice, one of `draft`, `open`, `paid`, `uncollectible`, or `void`. [Learn more](https://stripe.com/docs/billing/invoices/workflow#workflow-overview)
*/
status: Invoice.Status | null;
status_transitions: Invoice.StatusTransitions;
/**
* The subscription that this invoice was prepared for, if any.
*/
subscription: string | Stripe.Subscription | null;
/**
* Details about the subscription that created this invoice.
*/
subscription_details: Invoice.SubscriptionDetails | null;
/**
* Only set for upcoming invoices that preview prorations. The time used to calculate prorations.
*/
subscription_proration_date?: number;
/**
* Total of all subscriptions, invoice items, and prorations on the invoice before any invoice level discount or exclusive tax is applied. Item discounts are already incorporated
*/
subtotal: number;
/**
* The integer amount in cents (or local equivalent) representing the subtotal of the invoice before any invoice level discount or tax is applied. Item discounts are already incorporated
*/
subtotal_excluding_tax: number | null;
/**
* The amount of tax on this invoice. This is the sum of all the tax amounts on this invoice.
*/
tax: number | null;
/**
* ID of the test clock this invoice belongs to.
*/
test_clock: string | Stripe.TestHelpers.TestClock | null;
threshold_reason?: Invoice.ThresholdReason;
/**
* Total after discounts and taxes.
*/
total: number;
/**
* The aggregate amounts calculated per discount across all line items.
*/
total_discount_amounts: Array<Invoice.TotalDiscountAmount> | null;
/**
* The integer amount in cents (or local equivalent) representing the total amount of the invoice including all discounts but excluding all tax.
*/
total_excluding_tax: number | null;
/**
* The aggregate amounts calculated per tax rate for all line items.
*/
total_tax_amounts: Array<Invoice.TotalTaxAmount>;
/**
* The account (if any) the payment will be attributed to for tax reporting, and where funds from the payment will be transferred to for the invoice.
*/
transfer_data: Invoice.TransferData | null;
/**
* Invoices are automatically paid or sent 1 hour after webhooks are delivered, or until all webhook delivery attempts have [been exhausted](https://stripe.com/docs/billing/webhooks#understand). This field tracks the time when webhooks for this invoice were successfully delivered. If the invoice had no webhooks to deliver, this will be set while the invoice is being created.
*/
webhooks_delivered_at: number | null;
}
namespace Invoice {
interface AutomaticTax {
/**
* Whether Stripe automatically computes tax on this invoice. Note that incompatible invoice items (invoice items with manually specified [tax rates](https://stripe.com/docs/api/tax_rates), negative amounts, or `tax_behavior=unspecified`) cannot be added to automatic tax invoices.
*/
enabled: boolean;
/**
* The status of the most recent automated tax calculation for this invoice.
*/
status: AutomaticTax.Status | null;
}
namespace AutomaticTax {
type Status = 'complete' | 'failed' | 'requires_location_inputs';
}
type BillingReason =
| 'automatic_pending_invoice_item_invoice'
| 'manual'
| 'quote_accept'
| 'subscription'
| 'subscription_create'
| 'subscription_cycle'
| 'subscription_threshold'
| 'subscription_update'
| 'upcoming';
type CollectionMethod = 'charge_automatically' | 'send_invoice';
interface CustomerShipping {
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;
}
type CustomerTaxExempt = 'exempt' | 'none' | 'reverse';
interface CustomerTaxId {
/**
* The type of the tax ID, one of `ad_nrt`, `ar_cuit`, `eu_vat`, `bo_tin`, `br_cnpj`, `br_cpf`, `cn_tin`, `co_nit`, `cr_tin`, `do_rcn`, `ec_ruc`, `eu_oss_vat`, `pe_ruc`, `ro_tin`, `rs_pib`, `sv_nit`, `uy_ruc`, `ve_rif`, `vn_tin`, `gb_vat`, `nz_gst`, `au_abn`, `au_arn`, `in_gst`, `no_vat`, `za_vat`, `ch_vat`, `mx_rfc`, `sg_uen`, `ru_inn`, `ru_kpp`, `ca_bn`, `hk_br`, `es_cif`, `tw_vat`, `th_vat`, `jp_cn`, `jp_rn`, `jp_trn`, `li_uid`, `my_itn`, `us_ein`, `kr_brn`, `ca_qst`, `ca_gst_hst`, `ca_pst_bc`, `ca_pst_mb`, `ca_pst_sk`, `my_sst`, `sg_gst`, `ae_trn`, `cl_tin`, `sa_vat`, `id_npwp`, `my_frp`, `il_vat`, `ge_vat`, `ua_vat`, `is_vat`, `bg_uic`, `hu_tin`, `si_tin`, `ke_pin`, `tr_tin`, `eg_tin`, `ph_tin`, or `unknown`
*/
type: CustomerTaxId.Type;
/**
* The value of the tax ID.
*/
value: string | null;
}
namespace CustomerTaxId {
type Type =
| 'ad_nrt'
| 'ae_trn'
| 'ar_cuit'
| 'au_abn'
| 'au_arn'
| 'bg_uic'
| 'bo_tin'
| 'br_cnpj'
| 'br_cpf'
| 'ca_bn'
| 'ca_gst_hst'
| 'ca_pst_bc'
| 'ca_pst_mb'
| 'ca_pst_sk'
| 'ca_qst'
| 'ch_vat'
| 'cl_tin'
| 'cn_tin'
| 'co_nit'
| 'cr_tin'
| 'do_rcn'
| 'ec_ruc'
| 'eg_tin'
| 'es_cif'
| 'eu_oss_vat'
| 'eu_vat'
| 'gb_vat'
| 'ge_vat'
| 'hk_br'
| 'hu_tin'
| 'id_npwp'
| 'il_vat'
| 'in_gst'
| 'is_vat'
| 'jp_cn'
| 'jp_rn'
| 'jp_trn'
| 'ke_pin'
| 'kr_brn'
| 'li_uid'
| 'mx_rfc'
| 'my_frp'
| 'my_itn'
| 'my_sst'
| 'no_vat'
| 'nz_gst'
| 'pe_ruc'
| 'ph_tin'
| 'ro_tin'
| 'rs_pib'
| 'ru_inn'
| 'ru_kpp'
| 'sa_vat'
| 'sg_gst'
| 'sg_uen'
| 'si_tin'
| 'sv_nit'
| 'th_vat'
| 'tr_tin'
| 'tw_vat'
| 'ua_vat'
| 'unknown'
| 'us_ein'
| 'uy_ruc'
| 've_rif'
| 'vn_tin'
| 'za_vat';
}
interface CustomField {
/**
* The name of the custom field.
*/
name: string;
/**
* The value of the custom field.
*/
value: string;
}
interface FromInvoice {
/**
* The relation between this invoice and the cloned invoice
*/
action: string;
/**
* The invoice that was cloned.
*/
invoice: string | Stripe.Invoice;
}
interface LastFinalizationError {
/**
* For card errors, the ID of the failed charge.
*/
charge?: string;
/**
* For some errors that could be handled programmatically, a short string indicating the [error code](https://stripe.com/docs/error-codes) reported.
*/
code?: LastFinalizationError.Code;
/**
* For card errors resulting from a card issuer decline, a short string indicating the [card issuer's reason for the decline](https://stripe.com/docs/declines#issuer-declines) if they provide one.
*/
decline_code?: string;
/**
* A URL to more information about the [error code](https://stripe.com/docs/error-codes) reported.
*/
doc_url?: string;
/**
* A human-readable message providing more details about the error. For card errors, these messages can be shown to your users.
*/
message?: string;
/**
* If the error is parameter-specific, the parameter related to the error. For example, you can use this to display a message near the correct form field.
*/
param?: string;
/**
* A PaymentIntent guides you through the process of collecting a payment from your customer.
* We recommend that you create exactly one PaymentIntent for each order or
* customer session in your system. You can reference the PaymentIntent later to
* see the history of payment attempts for a particular session.
*
* A PaymentIntent transitions through
* [multiple statuses](https://stripe.com/docs/payments/intents#intent-statuses)
* throughout its lifetime as it interfaces with Stripe.js to perform
* authentication flows and ultimately creates at most one successful charge.
*
* Related guide: [Payment Intents API](https://stripe.com/docs/payments/payment-intents)
*/
payment_intent?: Stripe.PaymentIntent;
/**
* PaymentMethod objects represent your customer's payment instruments.
* You can use them with [PaymentIntents](https://stripe.com/docs/payments/payment-intents) to collect payments or save them to
* Customer objects to store instrument details for future payments.
*
* Related guides: [Payment Methods](https://stripe.com/docs/payments/payment-methods) and [More Payment Scenarios](https://stripe.com/docs/payments/more-payment-scenarios).
*/
payment_method?: Stripe.PaymentMethod;
/**
* If the error is specific to the type of payment method, the payment method type that had a problem. This field is only populated for invoice-related errors.
*/
payment_method_type?: string;
/**
* A URL to the request log entry in your dashboard.
*/
request_log_url?: string;
/**
* A SetupIntent guides you through the process of setting up and saving a customer's payment credentials for future payments.
* For example, you could use a SetupIntent to set up and save your customer's card without immediately collecting a payment.
* Later, you can use [PaymentIntents](https://stripe.com/docs/api#payment_intents) to drive the payment flow.
*
* Create a SetupIntent as soon as you're ready to collect your customer's payment credentials.
* Do not maintain long-lived, unconfirmed SetupIntents as they may no longer be valid.
* The SetupIntent then transitions through multiple [statuses](https://stripe.com/docs/payments/intents#intent-statuses) as it guides
* you through the setup process.
*
* Successful SetupIntents result in payment credentials that are optimized for future payments.
* For example, cardholders in [certain regions](https://stripe.com/guides/strong-customer-authentication) may need to be run through
* [Strong Customer Authentication](https://stripe.com/docs/strong-customer-authentication) at the time of payment method collection
* in order to streamline later [off-session payments](https://stripe.com/docs/payments/setup-intents).
* If the SetupIntent is used with a [Customer](https://stripe.com/docs/api#setup_intent_object-customer), upon success,
* it will automatically attach the resulting payment method to that Customer.
* We recommend using SetupIntents or [setup_future_usage](https://stripe.com/docs/api#payment_intent_object-setup_future_usage) on
* PaymentIntents to save payment methods in order to prevent saving invalid or unoptimized payment methods.
*
* By using SetupIntents, you ensure that your customers experience the minimum set of required friction,
* even as regulations change over time.
*
* Related guide: [Setup Intents API](https://stripe.com/docs/payments/setup-intents)
*/
setup_intent?: Stripe.SetupIntent;
source?: Stripe.CustomerSource;
/**
* The type of error returned. One of `api_error`, `card_error`, `idempotency_error`, or `invalid_request_error`
*/
type: LastFinalizationError.Type;
}
namespace LastFinalizationError {
type Code =
| 'account_closed'
| 'account_country_invalid_address'
| 'account_error_country_change_requires_additional_steps'
| 'account_information_mismatch'
| 'account_invalid'
| 'account_number_invalid'
| 'acss_debit_session_incomplete'
| 'alipay_upgrade_required'
| 'amount_too_large'
| 'amount_too_small'
| 'api_key_expired'
| 'application_fees_not_allowed'
| 'authentication_required'
| 'balance_insufficient'
| 'bank_account_bad_routing_numbers'
| 'bank_account_declined'
| 'bank_account_exists'
| 'bank_account_restricted'
| 'bank_account_unusable'
| 'bank_account_unverified'
| 'bank_account_verification_failed'
| 'billing_invalid_mandate'
| 'bitcoin_upgrade_required'
| 'capture_charge_authorization_expired'
| 'capture_unauthorized_payment'
| 'card_decline_rate_limit_exceeded'
| 'card_declined'
| 'cardholder_phone_number_required'
| 'charge_already_captured'
| 'charge_already_refunded'
| 'charge_disputed'
| 'charge_exceeds_source_limit'
| 'charge_expired_for_capture'
| 'charge_invalid_parameter'
| 'charge_not_refundable'
| 'clearing_code_unsupported'
| 'country_code_invalid'
| 'country_unsupported'
| 'coupon_expired'
| 'customer_max_payment_methods'
| 'customer_max_subscriptions'
| 'debit_not_authorized'
| 'email_invalid'
| 'expired_card'
| 'idempotency_key_in_use'
| 'incorrect_address'
| 'incorrect_cvc'
| 'incorrect_number'
| 'incorrect_zip'
| 'instant_payouts_config_disabled'
| 'instant_payouts_currency_disabled'
| 'instant_payouts_limit_exceeded'
| 'instant_payouts_unsupported'
| 'insufficient_funds'
| 'intent_invalid_state'
| 'intent_verification_method_missing'
| 'invalid_card_type'
| 'invalid_characters'
| 'invalid_charge_amount'
| 'invalid_cvc'
| 'invalid_expiry_month'
| 'invalid_expiry_year'
| 'invalid_number'
| 'invalid_source_usage'
| 'invalid_tax_location'
| 'invoice_no_customer_line_items'
| 'invoice_no_payment_method_types'
| 'invoice_no_subscription_line_items'
| 'invoice_not_editable'
| 'invoice_on_behalf_of_not_editable'
| 'invoice_payment_intent_requires_action'
| 'invoice_upcoming_none'
| 'livemode_mismatch'
| 'lock_timeout'
| 'missing'
| 'no_account'
| 'not_allowed_on_standard_account'
| 'out_of_inventory'
| 'ownership_declaration_not_allowed'
| 'parameter_invalid_empty'
| 'parameter_invalid_integer'
| 'parameter_invalid_string_blank'
| 'parameter_invalid_string_empty'
| 'parameter_missing'
| 'parameter_unknown'
| 'parameters_exclusive'
| 'payment_intent_action_required'
| 'payment_intent_authentication_failure'
| 'payment_intent_incompatible_payment_method'
| 'payment_intent_invalid_parameter'
| 'payment_intent_konbini_rejected_confirmation_number'
| 'payment_intent_mandate_invalid'
| 'payment_intent_payment_attempt_expired'
| 'payment_intent_payment_attempt_failed'
| 'payment_intent_unexpected_state'
| 'payment_method_bank_account_already_verified'
| 'payment_method_bank_account_blocked'
| 'payment_method_billing_details_address_missing'
| 'payment_method_configuration_failures'
| 'payment_method_currency_mismatch'
| 'payment_method_customer_decline'
| 'payment_method_invalid_parameter'
| 'payment_method_invalid_parameter_testmode'
| 'payment_method_microdeposit_failed'
| 'payment_method_microdeposit_verification_amounts_invalid'
| 'payment_method_microdeposit_verification_amounts_mismatch'
| 'payment_method_microdeposit_verification_attempts_exceeded'
| 'payment_method_microdeposit_verification_descriptor_code_mismatch'
| 'payment_method_microdeposit_verification_timeout'
| 'payment_method_not_available'
| 'payment_method_provider_decline'
| 'payment_method_provider_timeout'
| 'payment_method_unactivated'
| 'payment_method_unexpected_state'
| 'payment_method_unsupported_type'
| 'payout_reconciliation_not_ready'
| 'payouts_limit_exceeded'
| 'payouts_not_allowed'
| 'platform_account_required'
| 'platform_api_key_expired'
| 'postal_code_invalid'
| 'processing_error'
| 'product_inactive'
| 'progressive_onboarding_limit_exceeded'
| 'rate_limit'
| 'refer_to_customer'
| 'refund_disputed_payment'
| 'resource_already_exists'
| 'resource_missing'
| 'return_intent_already_processed'
| 'routing_number_invalid'
| 'secret_key_required'
| 'sepa_unsupported_account'
| 'setup_attempt_failed'
| 'setup_intent_authentication_failure'
| 'setup_intent_invalid_parameter'
| 'setup_intent_mandate_invalid'
| 'setup_intent_setup_attempt_expired'
| 'setup_intent_unexpected_state'
| 'shipping_calculation_failed'
| 'sku_inactive'
| 'state_unsupported'
| 'status_transition_invalid'
| 'tax_id_invalid'
| 'taxes_calculation_failed'
| 'terminal_location_country_unsupported'
| 'terminal_reader_busy'
| 'terminal_reader_offline'
| 'terminal_reader_timeout'
| 'testmode_charges_only'
| 'tls_version_unsupported'
| 'token_already_used'
| 'token_in_use'
| 'transfer_source_balance_parameters_mismatch'
| 'transfers_not_allowed'
| 'url_invalid';
type Type =
| 'api_error'
| 'card_error'
| 'idempotency_error'
| 'invalid_request_error';
}
interface PaymentSettings {
/**
* ID of the mandate to be used for this invoice. It must correspond to the payment method used to pay the invoice, including the invoice's default_payment_method or default_source, if set.
*/
default_mandate: string | null;
/**
* Payment-method-specific configuration to provide to the invoice's PaymentIntent.
*/
payment_method_options: PaymentSettings.PaymentMethodOptions | null;
/**
* The list of payment method types (e.g. card) to provide to the invoice's PaymentIntent. If not set, Stripe attempts to automatically determine the types to use by looking at the invoice's default payment method, the subscription's default payment method, the customer's default payment method, and your [invoice template settings](https://dashboard.stripe.com/settings/billing/invoice).
*/
payment_method_types: Array<PaymentSettings.PaymentMethodType> | null;
}
namespace PaymentSettings {
interface PaymentMethodOptions {
/**
* If paying by `acss_debit`, this sub-hash contains details about the Canadian pre-authorized debit payment method options to pass to the invoice's PaymentIntent.
*/
acss_debit: PaymentMethodOptions.AcssDebit | null;
/**
* If paying by `bancontact`, this sub-hash contains details about the Bancontact payment method options to pass to the invoice's PaymentIntent.
*/
bancontact: PaymentMethodOptions.Bancontact | null;
/**
* If paying by `card`, this sub-hash contains details about the Card payment method options to pass to the invoice's PaymentIntent.
*/
card: PaymentMethodOptions.Card | null;
/**
* If paying by `customer_balance`, this sub-hash contains details about the Bank transfer payment method options to pass to the invoice's PaymentIntent.
*/
customer_balance: PaymentMethodOptions.CustomerBalance | null;
/**
* If paying by `konbini`, this sub-hash contains details about the Konbini payment method options to pass to the invoice's PaymentIntent.
*/
konbini: PaymentMethodOptions.Konbini | null;
/**
* If paying by `us_bank_account`, this sub-hash contains details about the ACH direct debit payment method options to pass to the invoice's PaymentIntent.
*/
us_bank_account: PaymentMethodOptions.UsBankAccount | null;
}
namespace PaymentMethodOptions {
interface AcssDebit {
mandate_options?: AcssDebit.MandateOptions;
/**
* Bank account verification method.
*/
verification_method?: AcssDebit.VerificationMethod;
}
namespace AcssDebit {
interface MandateOptions {
/**
* Transaction type of the mandate.
*/
transaction_type: MandateOptions.TransactionType | null;
}
namespace MandateOptions {
type TransactionType = 'business' | 'personal';
}
type VerificationMethod = 'automatic' | 'instant' | 'microdeposits';
}
interface Bancontact {
/**
* Preferred language of the Bancontact authorization page that the customer is redirected to.
*/
preferred_language: Bancontact.PreferredLanguage;
}
namespace Bancontact {
type PreferredLanguage = 'de' | 'en' | 'fr' | 'nl';
}
interface Card {
installments?: Card.Installments;
/**
* We strongly recommend that you rely on our SCA Engine to automatically prompt your customers for authentication based on risk level and [other requirements](https://stripe.com/docs/strong-customer-authentication). However, if you wish to request 3D Secure based on logic from your own fraud engine, provide this option. Read our guide on [manually requesting 3D Secure](https://stripe.com/docs/payments/3d-secure#manual-three-ds) for more information on how this configuration interacts with Radar and our SCA Engine.
*/
request_three_d_secure: Card.RequestThreeDSecure | null;
}
namespace Card {
interface Installments {
/**
* Whether Installments are enabled for this Invoice.
*/
enabled: boolean | null;
}
type RequestThreeDSecure = 'any' | 'automatic';
}
interface CustomerBalance {
bank_transfer?: CustomerBalance.BankTransfer;
/**
* The funding method type to be used when there are not enough funds in the customer balance. Permitted values include: `bank_transfer`.
*/
funding_type: 'bank_transfer' | null;
}
namespace CustomerBalance {
interface BankTransfer {
eu_bank_transfer?: BankTransfer.EuBankTransfer;
/**
* The bank transfer type that can be used for funding. Permitted values include: `eu_bank_transfer`, `gb_bank_transfer`, `jp_bank_transfer`, `mx_bank_transfer`, or `us_bank_transfer`.
*/
type: string | null;
}
namespace BankTransfer {
interface EuBankTransfer {
/**
* The desired country code of the bank account information. Permitted values include: `BE`, `DE`, `ES`, `FR`, `IE`, or `NL`.