UNPKG

stripe

Version:
833 lines 221 kB
import { StripeResource } from '../StripeResource.js'; import { InvoiceLineItem } from './InvoiceLineItems.js'; import { Discount, DeletedDiscount } from './Discounts.js'; import { TaxId, DeletedTaxId } from './TaxIds.js'; import { Application, DeletedApplication } from './Applications.js'; import { Customer, DeletedCustomer } from './Customers.js'; import { PaymentMethod } from './PaymentMethods.js'; import { CustomerSource } from './CustomerSources.js'; import { TaxRate } from './TaxRates.js'; import { Account } from './Accounts.js'; import { InvoicePayment } from './InvoicePayments.js'; import { PaymentIntent } from './PaymentIntents.js'; import { SetupIntent } from './SetupIntents.js'; import { Subscription } from './Subscriptions.js'; import { ShippingRate } from './ShippingRates.js'; import * as TestHelpers from './TestHelpers/index.js'; import * as Billing from './Billing/index.js'; import { Emptyable, MetadataParam, AddressParam, PaginationParams, RangeQueryParam, Decimal, Address, Metadata } from '../shared.js'; import { RequestOptions, Response, ApiListPromise, ApiList, ApiSearchResultPromise } from '../lib.js'; export declare class InvoiceResource extends StripeResource { /** * Permanently deletes a one-off invoice draft. This cannot be undone. Attempts to delete invoices that are no longer in a draft state will fail; once an invoice has been finalized or if an invoice is for a subscription, it must be [voided](https://docs.stripe.com/api/invoices/void). */ del(id: string, params?: InvoiceDeleteParams, options?: RequestOptions): Promise<Response<DeletedInvoice>>; /** * Retrieves the invoice with the given ID. */ retrieve(id: string, params?: InvoiceRetrieveParams, options?: RequestOptions): Promise<Response<Invoice>>; /** * Draft invoices are fully editable. Once an invoice is [finalized](https://docs.stripe.com/docs/billing/invoices/workflow#finalized), * monetary values, as well as collection_method, become uneditable. * * If you would like to stop the Stripe Billing engine from automatically finalizing, reattempting payments on, * sending reminders for, or [automatically reconciling](https://docs.stripe.com/docs/billing/invoices/reconciliation) invoices, pass * auto_advance=false. */ update(id: string, params?: InvoiceUpdateParams, options?: RequestOptions): Promise<Response<Invoice>>; /** * You can list all invoices, or list the invoices for a specific customer. The invoices are returned sorted by creation date, with the most recently created invoices appearing first. */ list(params?: InvoiceListParams, options?: RequestOptions): ApiListPromise<Invoice>; /** * This endpoint creates a draft invoice for a given customer. The invoice remains a draft until you [finalize the invoice, which allows you to [pay](/api/invoices/pay) or <a href="/api/invoices/send">send](https://docs.stripe.com/api/invoices/finalize) the invoice to your customers. */ create(params?: InvoiceCreateParams, options?: RequestOptions): Promise<Response<Invoice>>; /** * Search for invoices you've previously created using Stripe's [Search Query Language](https://docs.stripe.com/docs/search#search-query-language). * Don't use search in read-after-write flows where strict consistency is necessary. Under normal operating * conditions, data is searchable in less than a minute. Occasionally, propagation of new or updated data can be up * to an hour behind during outages. Search functionality is not available to merchants in India. */ search(params: InvoiceSearchParams, options?: RequestOptions): ApiSearchResultPromise<Invoice>; /** * Adds multiple line items to an invoice. This is only possible when an invoice is still a draft. */ addLines(id: string, params: InvoiceAddLinesParams, options?: RequestOptions): Promise<Response<Invoice>>; /** * Attaches a PaymentIntent or an Out of Band Payment to the invoice, adding it to the list of payments. * * For the PaymentIntent, when the PaymentIntent's status changes to succeeded, the payment is credited * to the invoice, increasing its amount_paid. When the invoice is fully paid, the * invoice's status becomes paid. * * If the PaymentIntent's status is already succeeded when it's attached, it's * credited to the invoice immediately. * * See: [Partial payments](https://docs.stripe.com/docs/invoicing/partial-payments) to learn more. */ attachPayment(id: string, params?: InvoiceAttachPaymentParams, options?: RequestOptions): Promise<Response<Invoice>>; /** * Stripe automatically finalizes drafts before sending and attempting payment on invoices. However, if you'd like to finalize a draft invoice manually, you can do so using this method. */ finalizeInvoice(id: string, params?: InvoiceFinalizeInvoiceParams, options?: RequestOptions): Promise<Response<Invoice>>; /** * Marking an invoice as uncollectible is useful for keeping track of bad debts that can be written off for accounting purposes. */ markUncollectible(id: string, params?: InvoiceMarkUncollectibleParams, options?: RequestOptions): Promise<Response<Invoice>>; /** * Stripe automatically creates and then attempts to collect payment on invoices for customers on subscriptions according to your [subscriptions settings](https://dashboard.stripe.com/account/billing/automatic). However, if you'd like to attempt payment on an invoice out of the normal collection schedule or for some other reason, you can do so. */ pay(id: string, params?: InvoicePayParams, options?: RequestOptions): Promise<Response<Invoice>>; /** * Removes multiple line items from an invoice. This is only possible when an invoice is still a draft. */ removeLines(id: string, params: InvoiceRemoveLinesParams, options?: RequestOptions): Promise<Response<Invoice>>; /** * Stripe will automatically send invoices to customers according to your [subscriptions settings](https://dashboard.stripe.com/account/billing/automatic). However, if you'd like to manually send an invoice to your customer out of the normal schedule, you can do so. When sending invoices that have already been paid, there will be no reference to the payment in the email. * * Requests made in test-mode result in no emails being sent, despite sending an invoice.sent event. */ sendInvoice(id: string, params?: InvoiceSendInvoiceParams, options?: RequestOptions): Promise<Response<Invoice>>; /** * Updates multiple line items on an invoice. This is only possible when an invoice is still a draft. */ updateLines(id: string, params: InvoiceUpdateLinesParams, options?: RequestOptions): Promise<Response<Invoice>>; /** * Mark a finalized invoice as void. This cannot be undone. Voiding an invoice is similar to [deletion](https://docs.stripe.com/api/invoices/delete), however it only applies to finalized invoices and maintains a papertrail where the invoice can still be found. * * Consult with local regulations to determine whether and how an invoice might be amended, canceled, or voided in the jurisdiction you're doing business in. You might need to [issue another invoice or <a href="/api/credit_notes/create">credit note](https://docs.stripe.com/api/invoices/create) instead. Stripe recommends that you consult with your legal counsel for advice specific to your business. */ voidInvoice(id: string, params?: InvoiceVoidInvoiceParams, options?: RequestOptions): Promise<Response<Invoice>>; /** * At any time, you can preview the upcoming invoice for a subscription or subscription schedule. This will show you all the charges that are pending, including subscription renewal charges, invoice item charges, etc. It will also show you any discounts that are applicable to the invoice. * * You can also preview the effects of creating or updating a subscription or subscription schedule, including a preview of any prorations that will take place. To ensure that the actual proration is calculated exactly the same as the previewed proration, you should pass the subscription_details.proration_date parameter when doing the actual subscription update. * * The recommended way to get only the prorations being previewed on the invoice is to consider line items where parent.subscription_item_details.proration is true. * * Note that when you are viewing an upcoming invoice, you are simply viewing a preview – the invoice has not yet been created. As such, the upcoming invoice will not show up in invoice listing calls, and you cannot use the API to pay or edit the invoice. If you want to change the amount that your customer will be billed, you can add, remove, or update pending invoice items, or update the customer's discount. * * Note: Currency conversion calculations use the latest exchange rates. Exchange rates may vary between the time of the preview and the time of the actual invoice creation. [Learn more](https://docs.stripe.com/currencies/conversions) */ createPreview(params?: InvoiceCreatePreviewParams, options?: RequestOptions): Promise<Response<Invoice>>; /** * When retrieving an invoice, you'll get a lines property containing the total count of line items and 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?: InvoiceListLineItemsParams, options?: RequestOptions): ApiListPromise<InvoiceLineItem>; /** * Updates an invoice's line item. Some fields, such as tax_amounts, only live on the invoice line item, * so they can only be updated through this endpoint. Other fields, such as amount, live on both the invoice * item and the invoice line item, so updates on this endpoint will propagate to the invoice item as well. * Updating an invoice's line item is only possible before the invoice is finalized. */ updateLineItem(invoiceId: string, id: string, params?: InvoiceUpdateLineItemParams, options?: RequestOptions): Promise<Response<InvoiceLineItem>>; } export interface Invoice { /** * Unique identifier for the object. For preview invoices created using the [create preview](https://stripe.com/docs/api/invoices/create_preview) endpoint, this id will be prefixed with `upcoming_in`. */ 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 | TaxId | 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; /** * Amount that was overpaid on the invoice. The amount overpaid is credited to the customer's credit balance. */ amount_overpaid: 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 | Application | DeletedApplication | 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. If a failure is returned with a non-retryable return code, the invoice can no longer be retried unless a new payment method is obtained. Retries will continue to be scheduled, and attempt_count will continue to increment, but retries will only be executed if a new payment method is obtained. */ 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://docs.stripe.com/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; /** * The time when this invoice is currently scheduled to be automatically finalized. The field will be `null` if the invoice is not scheduled to finalize in the future. If the invoice is not in the draft state, this field will always be `null` - see `finalized_at` for the time when an already-finalized invoice was finalized. */ automatically_finalizes_at: number | null; /** * Indicates the reason why the invoice was created. * * * `manual`: Unrelated to a subscription, for example, created via the invoice editor. * * `subscription`: No longer in use. Applies to subscriptions from before May 2018 where no distinction was made between updates, cycles, and thresholds. * * `subscription_create`: A new subscription was created. * * `subscription_cycle`: A subscription advanced into a new period. * * `subscription_threshold`: A subscription reached a billing threshold. * * `subscription_update`: A subscription was updated. * * `upcoming`: Reserved for upcoming invoices created through the Create Preview Invoice API or when an `invoice.upcoming` event is generated for an upcoming invoice on a subscription. */ billing_reason: Invoice.BillingReason | 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; /** * The confirmation secret associated with this invoice. Currently, this contains the client_secret of the PaymentIntent that Stripe creates during invoice finalization. */ confirmation_secret?: Invoice.ConfirmationSecret | null; /** * 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 to bill. */ customer: string | Customer | DeletedCustomer | null; /** * The ID of the account representing the customer to bill. */ customer_account: string | 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: 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 | 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 | CustomerSource | null; /** * The tax rates applied to this invoice, if any. */ default_tax_rates: Array<TaxRate>; /** * Always true for a deleted object */ deleted?: void; /** * An arbitrary string attached to the object. Often useful for displaying to users. Referenced as 'memo' in the Dashboard. */ description: string | 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 | Discount | DeletedDiscount>; /** * 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://docs.stripe.com/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; issuer: Invoice.Issuer; /** * 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 | 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<InvoiceLineItem>; /** * If the object exists in live mode, the value is `true`. If the object exists in test mode, the value is `false`. */ livemode: boolean; /** * Set of [key-value pairs](https://docs.stripe.com/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: 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://docs.stripe.com/billing/invoices/connect) documentation for details. */ on_behalf_of: string | Account | null; /** * The parent that generated this invoice */ parent: Invoice.Parent | null; payment_settings: Invoice.PaymentSettings; /** * Payments for this invoice. Use [invoice payment](https://docs.stripe.com/api/invoice-payment) to get more details. */ payments?: ApiList<InvoicePayment>; /** * End of the usage period during which invoice items were added to this invoice. This looks back one period for a subscription invoice. Use the [line item period](https://docs.stripe.com/api/invoices/line_item#invoice_line_item_object-period) to get the service period for each price. */ period_end: number; /** * Start of the usage period during which invoice items were added to this invoice. This looks back one period for a subscription invoice. Use the [line item period](https://docs.stripe.com/api/invoices/line_item#invoice_line_item_object-period) to get the service period for each price. */ 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; /** * This is the transaction number that appears on email receipts sent for this invoice. */ receipt_number: string | null; /** * The rendering-related settings that control how the invoice is displayed on customer-facing surfaces such as PDF and Hosted Invoice Page. */ rendering: Invoice.Rendering | 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://docs.stripe.com/billing/invoices/workflow#workflow-overview) */ status: Invoice.Status | null; status_transitions: Invoice.StatusTransitions; /** * 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; /** * ID of the test clock this invoice belongs to. */ test_clock: string | 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; /** * Contains pretax credit amounts (ex: discount, credit grants, etc) that apply to this invoice. This is a combined list of total_pretax_credit_amounts across all invoice line items. */ total_pretax_credit_amounts: Array<Invoice.TotalPretaxCreditAmount> | null; /** * The aggregate tax information of all line items. */ total_taxes: Array<Invoice.TotalTax> | null; /** * Invoices are automatically paid or sent 1 hour after webhooks are delivered, or until all webhook delivery attempts have [been exhausted](https://docs.stripe.com/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; } export interface DeletedInvoice { /** * Unique identifier for the object. */ id: string; /** * String representing the object's type. Objects of the same type share the same value. */ object: 'invoice'; /** * Always true for a deleted object */ deleted: true; } export declare namespace Invoice { interface AutomaticTax { /** * If Stripe disabled automatic tax, this enum describes why. */ disabled_reason: AutomaticTax.DisabledReason | null; /** * Whether Stripe automatically computes tax on this invoice. Note that incompatible invoice items (invoice items with manually specified [tax rates](https://docs.stripe.com/api/tax_rates), negative amounts, or `tax_behavior=unspecified`) cannot be added to automatic tax invoices. */ enabled: boolean; /** * The account that's liable for tax. If set, the business address and tax registrations required to perform the tax calculation are loaded from this account. The tax transaction is returned in the report of the connected account. */ liability: AutomaticTax.Liability | null; /** * The tax provider powering automatic tax. */ provider: string | null; /** * The status of the most recent automated tax calculation for this invoice. */ status: AutomaticTax.Status | null; } 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 ConfirmationSecret { /** * The client_secret of the payment that Stripe creates for the invoice after finalization. */ client_secret: string; /** * The type of client_secret. Currently this is always payment_intent, referencing the default payment_intent that Stripe creates during invoice finalization */ type: string; } interface CustomField { /** * The name of the custom field. */ name: string; /** * The value of the custom field. */ value: string; } interface CustomerShipping { address?: 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`, `hr_oib`, `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`, `no_voec`, `za_vat`, `ch_vat`, `mx_rfc`, `sg_uen`, `ru_inn`, `ru_kpp`, `ca_bn`, `hk_br`, `es_cif`, `pl_nip`, `tw_vat`, `th_vat`, `jp_cn`, `jp_rn`, `jp_trn`, `li_uid`, `li_vat`, `lk_vat`, `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`, `al_tin`, `bh_vat`, `kz_bin`, `ng_tin`, `om_vat`, `de_stn`, `ch_uid`, `tz_vat`, `uz_vat`, `uz_tin`, `md_vat`, `ma_vat`, `by_tin`, `ao_tin`, `bs_tin`, `bb_tin`, `cd_nif`, `mr_nif`, `me_pib`, `zw_tin`, `ba_tin`, `gn_nif`, `mk_vat`, `sr_fin`, `sn_ninea`, `am_tin`, `np_pan`, `tj_tin`, `ug_tin`, `zm_tin`, `kh_tin`, `aw_tin`, `az_tin`, `bd_bin`, `bj_ifu`, `et_tin`, `kg_tin`, `la_tin`, `cm_niu`, `cv_nif`, `bf_ifu`, or `unknown` */ type: CustomerTaxId.Type; /** * The value of the tax ID. */ value: string | null; } interface FromInvoice { /** * The relation between this invoice and the cloned invoice */ action: string; /** * The invoice that was cloned. */ invoice: string | Invoice; } interface Issuer { /** * The connected account being referenced when `type` is `account`. */ account?: string | Account; /** * Type of the account referenced. */ type: Issuer.Type; } interface LastFinalizationError { /** * For card errors resulting from a card issuer decline, a short string indicating [how to proceed with an error](https://docs.stripe.com/declines#retrying-issuer-declines) if they provide one. */ advice_code?: string; /** * 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://docs.stripe.com/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://docs.stripe.com/declines#issuer-declines) if they provide one. */ decline_code?: string; /** * A URL to more information about the [error code](https://docs.stripe.com/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; /** * For card errors resulting from a card issuer decline, a 2 digit code which indicates the advice given to merchant by the card network on how to proceed with an error. */ network_advice_code?: string; /** * For payments declined by the network, an alphanumeric code which indicates the reason the payment failed. */ network_decline_code?: 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://docs.stripe.com/payments/paymentintents/lifecycle) * 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://docs.stripe.com/payments/payment-intents) */ payment_intent?: PaymentIntent; /** * PaymentMethod objects represent your customer's payment instruments. * You can use them with [PaymentIntents](https://docs.stripe.com/payments/payment-intents) to collect payments or save them to * Customer objects to store instrument details for future payments. * * Related guides: [Payment Methods](https://docs.stripe.com/payments/payment-methods) and [More Payment Scenarios](https://docs.stripe.com/payments/more-payment-scenarios). */ payment_method?: 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 can use a SetupIntent to set up and save your customer's card without immediately collecting a payment. * Later, you can use [PaymentIntents](https://api.stripe.com#payment_intents) to drive the payment flow. * * Create a SetupIntent when you're ready to collect your customer's payment credentials. * Don't maintain long-lived, unconfirmed SetupIntents because they might not be valid. * The SetupIntent transitions through multiple [statuses](https://docs.stripe.com/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) might need to be run through * [Strong Customer Authentication](https://docs.stripe.com/strong-customer-authentication) during payment method collection * to streamline later [off-session payments](https://docs.stripe.com/payments/setup-intents). * If you use the SetupIntent with a [Customer](https://api.stripe.com#setup_intent_object-customer), * it automatically attaches the resulting payment method to that Customer after successful setup. * We recommend using SetupIntents or [setup_future_usage](https://api.stripe.com#payment_intent_object-setup_future_usage) on * PaymentIntents to save payment methods to prevent saving invalid or unoptimized payment methods. * * By using SetupIntents, you can reduce friction for your customers, even as regulations change over time. * * Related guide: [Setup Intents API](https://docs.stripe.com/payments/setup-intents) */ setup_intent?: SetupIntent; source?: CustomerSource; /** * The type of error returned. One of `api_error`, `card_error`, `idempotency_error`, or `invalid_request_error` */ type: LastFinalizationError.Type; } interface Parent { /** * Details about the quote that generated this invoice */ quote_details: Parent.QuoteDetails | null; /** * Details about the subscription that generated this invoice */ subscription_details: Parent.SubscriptionDetails | null; /** * The type of parent that generated this invoice */ type: Parent.Type; } 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; } interface Rendering { /** * How line-item prices and amounts will be displayed with respect to tax on invoice PDFs. */ amount_tax_display: string | null; /** * Invoice pdf rendering options */ pdf: Rendering.Pdf | null; /** * ID of the rendering template that the invoice is formatted by. */ template: string | null; /** * Version of the rendering template that the invoice is using. */ template_version: number | null; } interface ShippingCost { /** * Total shipping cost before any taxes are applied. */ amount_subtotal: number; /** * Total tax amount applied due to shipping costs. If no tax was applied, defaults to 0. */ amount_tax: number; /** * Total shipping cost after taxes are applied. */ amount_total: number; /** * The ID of the ShippingRate for this invoice. */ shipping_rate: string | ShippingRate | null; /** * The taxes applied to the shipping rate. */ taxes?: Array<ShippingCost.Tax>; } interface ShippingDetails { address?: 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 Status = 'draft' | 'open' | 'paid' | 'uncollectible' | 'void'; interface StatusTransitions { /** * The time that the invoice draft was finalized. */ finalized_at: number | null; /** * The time that the invoice was marked uncollectible. */ marked_uncollectible_at: number | null; /** * The time that the invoice was paid. */ paid_at: number | null; /** * The time that the invoice was voided. */ voided_at: number | null; } interface ThresholdReason { /** * The total invoice amount threshold boundary if it triggered the threshold invoice. */ amount_gte: number | null; /** * Indicates which line items triggered a threshold invoice. */ item_reasons: Array<ThresholdReason.ItemReason>; } interface TotalDiscountAmount { /** * The amount, in cents (or local equivalent), of the discount. */ amount: number; /** * The discount that was applied to get this discount amount. */ discount: string | Discount | DeletedDiscount; } interface TotalPretaxCreditAmount { /** * The amount, in cents (or local equivalent), of the pretax credit amount. */ amount: number; /** * The credit balance transaction that was applied to get this pretax credit amount. */ credit_balance_transaction?: string | Billing.CreditBalanceTransaction | null; /** * The discount that was applied to get this pretax credit amount. */ discount?: string | Discount | DeletedDiscount; /** * Type of the pretax credit amount referenced. */ type: TotalPretaxCreditAmount.Type; } interface TotalTax { /** * The amount of the tax, in cents (or local equivalent). */ amount: number; /** * Whether this tax is inclusive or exclusive. */ tax_behavior: TotalTax.TaxBehavior; /** * Additional details about the tax rate. Only present when `type` is `tax_rate_details`. */ tax_rate_details: TotalTax.TaxRateDetails | null; /** * The reasoning behind this tax, for example, if the product is tax exempt. The possible values for this field may be extended as new tax rules are supported. */ taxability_reason: TotalTax.TaxabilityReason; /** * The amount on which tax is calculated, in cents (or local equivalent). */ taxable_amount: number | null; /** * The type of tax information. */ type: 'tax_rate_details'; } namespace AutomaticTax { type DisabledReason = 'finalization_requires_location_inputs' | 'finalization_system_error'; interface Liability { /** * The connected account being referenced when `type` is `account`. */ account?: string | Account; /** * Type of the account referenced. */ type: Liability.Type; } type Status = 'complete' | 'failed' | 'requires_location_inputs'; namespace Liability { type Type = 'account' | 'self'; } } namespace CustomerTaxId { type Type = 'ad_nrt' | 'ae_trn' | 'al_tin' | 'am_tin' | 'ao_tin' | 'ar_cuit' | 'au_abn' | 'au_arn' | 'aw_tin' | 'az_tin' | 'ba_tin' | 'bb_tin' | 'bd_bin' | 'bf_ifu' | 'bg_uic' | 'bh_vat' | 'bj_ifu' | 'bo_tin' | 'br_cnpj' | 'br_cpf' | 'bs_tin' | 'by_tin' | 'ca_bn' | 'ca_gst_hst' | 'ca_pst_bc' | 'ca_pst_mb' | 'ca_pst_sk' | 'ca_qst' | 'cd_nif' | 'ch_uid' | 'ch_vat' | 'cl_tin' | 'cm_niu' | 'cn_tin' | 'co_nit' | 'cr_tin' | 'cv_nif' | 'de_stn' | 'do_rcn' | 'ec_ruc' | 'eg_tin' | 'es_cif' | 'et_tin' | 'eu_oss_vat' | 'eu_vat' | 'gb_vat' | 'ge_vat' | 'gn_nif' | 'hk_br' | 'hr_oib' | 'hu_tin' | 'id_npwp' | 'il_vat' | 'in_gst' | 'is_vat' | 'jp_cn' | 'jp_rn' | 'jp_trn' | 'ke_pin' | 'kg_tin' | 'kh_tin' | 'kr_brn' | 'kz_bin' | 'la_tin' | 'li_uid' | 'li_vat' | 'lk_vat' | 'ma_vat' | 'md_vat' | 'me_pib' | 'mk_vat' | 'mr_nif' | 'mx_rfc' | 'my_frp' | 'my_itn' | 'my_sst' | 'ng_tin' | 'no_vat' | 'no_voec' | 'np_pan' | 'nz_gst' | 'om_vat' | 'pe_ruc' | 'ph_tin' | 'pl_nip' | 'ro_tin' | 'rs_pib' | 'ru_inn' | 'ru_kpp' | 'sa_vat' | 'sg_gst' | 'sg_uen' | 'si_tin' | 'sn_ninea' | 'sr_fin' | 'sv_nit' | 'th_vat' | 'tj_tin' | 'tr_tin' | 'tw_vat' | 'tz_vat' | 'ua_vat' | 'ug_tin' | 'unknown' | 'us_ein' | 'uy_ruc' | 'uz_tin' | 'uz_vat' | 've_rif' | 'vn_tin' | 'za_vat' | 'zm_tin' | 'zw_tin'; } namespace Issuer { type Type = 'account' | 'self'; } 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' | 'account_token_required_for_v2_account' | 'acss_debit_session_incomplete' | 'alipay_upgrade_required' | 'amount_too_large' | 'amount_too_small' | 'api_key_expired' | 'application_fees_not_allowed' | 'authentication_required' | 'balance_insufficient' | 'balance_invalid_parameter' | '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_exceeds_transaction_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' | 'customer_session_expired' | 'customer_tax_location_invalid' | 'debit_not_authorized' | 'email_invalid' | 'expired_card' | 'financial_connections_account_inactive' | 'financial_connections_account_pending_account_numbers' | 'financial_connections_account_unavailable_account_numbers' | 'financial_connections_no_successful_transaction_refresh' | 'forwarding_api_inactive' | 'forwarding_api_invalid_parameter' | 'forwarding_api_retryable_upstream_error' | 'forwarding_api_upstream_connection_error' | 'forwarding_api_upstream_connection_timeout' | 'forwarding_api_upstream_error' | 'idempotency_key_in_use' | 'incorrect_address' | 'incorrect_cvc' | 'incorrect_number' | 'incorrect_zip' | 'india_recurring_payment_mandate_canceled' | '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_mandate_reference_prefix_format' | '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_rate_limit_exceeded' | '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_veri