UNPKG

stripe

Version:
1,058 lines (1,057 loc) 303 kB
import { StripeResource } from '../../StripeResource.js'; import { LineItem } from './../LineItems.js'; import { Subscription } from './../Subscriptions.js'; import { Customer, DeletedCustomer } from './../Customers.js'; import { Invoice } from './../Invoices.js'; import { PaymentIntent } from './../PaymentIntents.js'; import { PaymentLink } from './../PaymentLinks.js'; import { SetupIntent } from './../SetupIntents.js'; import { Account } from './../Accounts.js'; import { TaxId, DeletedTaxId } from './../TaxIds.js'; import { Coupon } from './../Coupons.js'; import { PromotionCode } from './../PromotionCodes.js'; import { ShippingRate } from './../ShippingRates.js'; import { TaxRate } from './../TaxRates.js'; import { MetadataParam, Emptyable, Address, Decimal, ShippingAddressParam, PaginationParams, RangeQueryParam, Metadata } from '../../shared.js'; import { RequestOptions, ApiListPromise, Response, ApiList } from '../../lib.js'; export declare class SessionResource extends StripeResource { /** * Returns a list of Checkout Sessions. */ list(params?: Checkout.SessionListParams, options?: RequestOptions): ApiListPromise<Session>; /** * Creates a Checkout Session object. */ create(params?: Checkout.SessionCreateParams, options?: RequestOptions): Promise<Response<Session>>; /** * Retrieves a Checkout Session object. */ retrieve(id: string, params?: Checkout.SessionRetrieveParams, options?: RequestOptions): Promise<Response<Session>>; /** * Updates a Checkout Session object. * * Related guide: [Dynamically update a Checkout Session](https://docs.stripe.com/payments/advanced/dynamic-updates) */ update(id: string, params?: Checkout.SessionUpdateParams, options?: RequestOptions): Promise<Response<Session>>; /** * A Checkout Session can be expired when it is in one of these statuses: open * * After it expires, a customer can't complete a Checkout Session and customers loading the Checkout Session see a message saying the Checkout Session is expired. */ expire(id: string, params?: Checkout.SessionExpireParams, options?: RequestOptions): Promise<Response<Session>>; /** * When retrieving a Checkout Session, there is an includable line_items property containing 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?: Checkout.SessionListLineItemsParams, options?: RequestOptions): ApiListPromise<LineItem>; } export interface Session { /** * Unique identifier for the object. */ id: string; /** * String representing the object's type. Objects of the same type share the same value. */ object: 'checkout.session'; /** * Settings for price localization with [Adaptive Pricing](https://docs.stripe.com/payments/checkout/adaptive-pricing). */ adaptive_pricing: Checkout.Session.AdaptivePricing | null; /** * When set, provides configuration for actions to take if this Checkout Session expires. */ after_expiration: Checkout.Session.AfterExpiration | null; /** * Enables user redeemable promotion codes. */ allow_promotion_codes: boolean | null; /** * Total of all items before discounts or taxes are applied. */ amount_subtotal: number | null; /** * Total of all items after discounts and taxes are applied. */ amount_total: number | null; automatic_tax: Checkout.Session.AutomaticTax; /** * Describes whether Checkout should collect the customer's billing address. Defaults to `auto`. */ billing_address_collection: Checkout.Session.BillingAddressCollection | null; branding_settings?: Checkout.Session.BrandingSettings; /** * If set, Checkout displays a back button and customers will be directed to this URL if they decide to cancel payment and return to your website. */ cancel_url: string | null; /** * A unique string to reference the Checkout Session. This can be a * customer ID, a cart ID, or similar, and can be used to reconcile the * Session with your internal systems. */ client_reference_id: string | null; /** * The client secret of your Checkout Session. Applies to Checkout Sessions with `ui_mode: embedded` or `ui_mode: custom`. For `ui_mode: embedded`, the client secret is to be used when initializing Stripe.js embedded checkout. * For `ui_mode: custom`, use the client secret with [initCheckout](https://docs.stripe.com/js/custom_checkout/init) on your front end. */ client_secret: string | null; /** * Information about the customer collected within the Checkout Session. */ collected_information: Checkout.Session.CollectedInformation | null; /** * Results of `consent_collection` for this session. */ consent: Checkout.Session.Consent | null; /** * When set, provides configuration for the Checkout Session to gather active consent from customers. */ consent_collection: Checkout.Session.ConsentCollection | 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 | null; /** * Currency conversion details for [Adaptive Pricing](https://docs.stripe.com/payments/checkout/adaptive-pricing) sessions created before 2025-03-31. */ currency_conversion: Checkout.Session.CurrencyConversion | null; /** * Collect additional information from your customer using custom fields. Up to 3 fields are supported. You can't set this parameter if `ui_mode` is `custom`. */ custom_fields: Array<Checkout.Session.CustomField>; custom_text: Checkout.Session.CustomText; /** * The ID of the customer for this Session. * For Checkout Sessions in `subscription` mode or Checkout Sessions with `customer_creation` set as `always` in `payment` mode, Checkout * will create a new customer object based on information provided * during the payment flow unless an existing customer was provided when * the Session was created. */ customer: string | Customer | DeletedCustomer | null; /** * The ID of the account for this Session. */ customer_account: string | null; /** * Configure whether a Checkout Session creates a Customer when the Checkout Session completes. */ customer_creation: Checkout.Session.CustomerCreation | null; /** * The customer details including the customer's tax exempt status and the customer's tax IDs. Customer's address details are not present on Sessions in `setup` mode. */ customer_details: Checkout.Session.CustomerDetails | null; /** * If provided, this value will be used when the Customer object is created. * If not provided, customers will be asked to enter their email address. * Use this parameter to prefill customer data if you already have an email * on file. To access information about the customer once the payment flow is * complete, use the `customer` attribute. */ customer_email: string | null; /** * List of coupons and promotion codes attached to the Checkout Session. */ discounts: Array<Checkout.Session.Discount> | null; /** * A list of the types of payment methods (e.g., `card`) that should be excluded from this Checkout Session. This should only be used when payment methods for this Checkout Session are managed through the [Stripe Dashboard](https://dashboard.stripe.com/settings/payment_methods). */ excluded_payment_method_types?: Array<string>; /** * The timestamp at which the Checkout Session will expire. */ expires_at: number; /** * The integration identifier for this Checkout Session. Multiple Checkout Sessions can have the same integration identifier. */ integration_identifier: string | null; /** * ID of the invoice created by the Checkout Session, if it exists. */ invoice: string | Invoice | null; /** * Details on the state of invoice creation for the Checkout Session. */ invoice_creation: Checkout.Session.InvoiceCreation | null; /** * The line items purchased by the customer. */ line_items?: ApiList<LineItem>; /** * If the object exists in live mode, the value is `true`. If the object exists in test mode, the value is `false`. */ livemode: boolean; /** * The IETF language tag of the locale Checkout is displayed in. If blank or `auto`, the browser's locale is used. */ locale: Checkout.Session.Locale | null; /** * 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 mode of the Checkout Session. */ mode: Checkout.Session.Mode; name_collection?: Checkout.Session.NameCollection; /** * The optional items presented to the customer at checkout. */ optional_items?: Array<Checkout.Session.OptionalItem> | null; /** * Where the user is coming from. This informs the optimizations that are applied to the session. */ origin_context: Checkout.Session.OriginContext | null; /** * The ID of the PaymentIntent for Checkout Sessions in `payment` mode. You can't confirm or cancel the PaymentIntent for a Checkout Session. To cancel, [expire the Checkout Session](https://docs.stripe.com/api/checkout/sessions/expire) instead. */ payment_intent: string | PaymentIntent | null; /** * The ID of the Payment Link that created this Session. */ payment_link: string | PaymentLink | null; /** * Configure whether a Checkout Session should collect a payment method. Defaults to `always`. */ payment_method_collection: Checkout.Session.PaymentMethodCollection | null; /** * Information about the payment method configuration used for this Checkout session if using dynamic payment methods. */ payment_method_configuration_details: Checkout.Session.PaymentMethodConfigurationDetails | null; /** * Payment-method-specific configuration for the PaymentIntent or SetupIntent of this CheckoutSession. */ payment_method_options: Checkout.Session.PaymentMethodOptions | null; /** * A list of the types of payment methods (e.g. card) this Checkout * Session is allowed to accept. */ payment_method_types: Array<string>; /** * The payment status of the Checkout Session, one of `paid`, `unpaid`, or `no_payment_required`. * You can use this value to decide when to fulfill your customer's order. */ payment_status: Checkout.Session.PaymentStatus; /** * This property is used to set up permissions for various actions (e.g., update) on the CheckoutSession object. * * For specific permissions, please refer to their dedicated subsections, such as `permissions.update_shipping_details`. */ permissions: Checkout.Session.Permissions | null; phone_number_collection?: Checkout.Session.PhoneNumberCollection; presentment_details?: Checkout.Session.PresentmentDetails; /** * The ID of the original expired Checkout Session that triggered the recovery flow. */ recovered_from: string | null; /** * This parameter applies to `ui_mode: embedded`. Learn more about the [redirect behavior](https://docs.stripe.com/payments/checkout/custom-success-page?payment-ui=embedded-form) of embedded sessions. Defaults to `always`. */ redirect_on_completion?: Checkout.Session.RedirectOnCompletion; /** * Applies to Checkout Sessions with `ui_mode: embedded` or `ui_mode: custom`. The URL to redirect your customer back to after they authenticate or cancel their payment on the payment method's app or site. */ return_url?: string; /** * Controls saved payment method settings for the session. Only available in `payment` and `subscription` mode. */ saved_payment_method_options: Checkout.Session.SavedPaymentMethodOptions | null; /** * The ID of the SetupIntent for Checkout Sessions in `setup` mode. You can't confirm or cancel the SetupIntent for a Checkout Session. To cancel, [expire the Checkout Session](https://docs.stripe.com/api/checkout/sessions/expire) instead. */ setup_intent: string | SetupIntent | null; /** * When set, provides configuration for Checkout to collect a shipping address from a customer. */ shipping_address_collection: Checkout.Session.ShippingAddressCollection | null; /** * The details of the customer cost of shipping, including the customer chosen ShippingRate. */ shipping_cost: Checkout.Session.ShippingCost | null; /** * The shipping rate options applied to this Session. */ shipping_options: Array<Checkout.Session.ShippingOption>; /** * The status of the Checkout Session, one of `open`, `complete`, or `expired`. */ status: Checkout.Session.Status | null; /** * Describes the type of transaction being performed by Checkout in order to customize * relevant text on the page, such as the submit button. `submit_type` can only be * specified on Checkout Sessions in `payment` mode. If blank or `auto`, `pay` is used. */ submit_type: Checkout.Session.SubmitType | null; /** * The ID of the [Subscription](https://docs.stripe.com/api/subscriptions) for Checkout Sessions in `subscription` mode. */ subscription: string | Subscription | null; /** * The URL the customer will be directed to after the payment or * subscription creation is successful. */ success_url: string | null; tax_id_collection?: Checkout.Session.TaxIdCollection; /** * Tax and discount details for the computed total amount. */ total_details: Checkout.Session.TotalDetails | null; /** * The UI mode of the Session. Defaults to `hosted_page`. */ ui_mode: Checkout.Session.UiMode | null; /** * The URL to the Checkout Session. Applies to Checkout Sessions with `ui_mode: hosted`. Redirect customers to this URL to take them to Checkout. If you're using [Custom Domains](https://docs.stripe.com/payments/checkout/custom-domains), the URL will use your subdomain. Otherwise, it'll use `checkout.stripe.com.` * This value is only present when the session is active. */ url: string | null; /** * Wallet-specific configuration for this Checkout Session. */ wallet_options: Checkout.Session.WalletOptions | null; } export declare namespace Checkout { namespace Session { interface AdaptivePricing { /** * If enabled, Adaptive Pricing is available on [eligible sessions](https://docs.stripe.com/payments/currencies/localize-prices/adaptive-pricing?payment-ui=stripe-hosted#restrictions). */ enabled: boolean; } interface AfterExpiration { /** * When set, configuration used to recover the Checkout Session on expiry. */ recovery: AfterExpiration.Recovery | null; } interface AutomaticTax { /** * Indicates whether automatic tax is enabled for the session */ 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 session. */ status: AutomaticTax.Status | null; } type BillingAddressCollection = 'auto' | 'required'; interface BrandingSettings { /** * A hex color value starting with `#` representing the background color for the Checkout Session. */ background_color: string; /** * The border style for the Checkout Session. Must be one of `rounded`, `rectangular`, or `pill`. */ border_style: BrandingSettings.BorderStyle; /** * A hex color value starting with `#` representing the button color for the Checkout Session. */ button_color: string; /** * The display name shown on the Checkout Session. */ display_name: string; /** * The font family for the Checkout Session. Must be one of the [supported font families](https://docs.stripe.com/payments/checkout/customization/appearance?payment-ui=stripe-hosted#font-compatibility). */ font_family: string; /** * The icon for the Checkout Session. You cannot set both `logo` and `icon`. */ icon: BrandingSettings.Icon | null; /** * The logo for the Checkout Session. You cannot set both `logo` and `icon`. */ logo: BrandingSettings.Logo | null; } interface CollectedInformation { /** * Customer's business name for this Checkout Session */ business_name: string | null; /** * Customer's individual name for this Checkout Session */ individual_name: string | null; /** * Shipping information for this Checkout Session. */ shipping_details: CollectedInformation.ShippingDetails | null; } interface Consent { /** * If `opt_in`, the customer consents to receiving promotional communications * from the merchant about this Checkout Session. */ promotions: Consent.Promotions | null; /** * If `accepted`, the customer in this Checkout Session has agreed to the merchant's terms of service. */ terms_of_service: 'accepted' | null; } interface ConsentCollection { /** * If set to `hidden`, it will hide legal text related to the reuse of a payment method. */ payment_method_reuse_agreement: ConsentCollection.PaymentMethodReuseAgreement | null; /** * If set to `auto`, enables the collection of customer consent for promotional communications. The Checkout * Session will determine whether to display an option to opt into promotional communication * from the merchant depending on the customer's locale. Only available to US merchants. */ promotions: ConsentCollection.Promotions | null; /** * If set to `required`, it requires customers to accept the terms of service before being able to pay. */ terms_of_service: ConsentCollection.TermsOfService | null; } interface CurrencyConversion { /** * Total of all items in source currency before discounts or taxes are applied. */ amount_subtotal: number; /** * Total of all items in source currency after discounts and taxes are applied. */ amount_total: number; /** * Exchange rate used to convert source currency amounts to customer currency amounts */ fx_rate: Decimal; /** * Creation currency of the CheckoutSession before localization */ source_currency: string; } interface CustomField { dropdown?: CustomField.Dropdown; /** * String of your choice that your integration can use to reconcile this field. Must be unique to this field, alphanumeric, and up to 200 characters. */ key: string; label: CustomField.Label; numeric?: CustomField.Numeric; /** * Whether the customer is required to complete the field before completing the Checkout Session. Defaults to `false`. */ optional: boolean; text?: CustomField.Text; /** * The type of the field. */ type: CustomField.Type; } interface CustomText { /** * Custom text that should be displayed after the payment confirmation button. */ after_submit: CustomText.AfterSubmit | null; /** * Custom text that should be displayed alongside shipping address collection. */ shipping_address: CustomText.ShippingAddress | null; /** * Custom text that should be displayed alongside the payment confirmation button. */ submit: CustomText.Submit | null; /** * Custom text that should be displayed in place of the default terms of service agreement text. */ terms_of_service_acceptance: CustomText.TermsOfServiceAcceptance | null; } type CustomerCreation = 'always' | 'if_required'; interface CustomerDetails { /** * The customer's address after a completed Checkout Session. Note: This property is populated only for sessions on or after March 30, 2022. */ address: Address | null; /** * The customer's business name after a completed Checkout Session. */ business_name: string | null; /** * The email associated with the Customer, if one exists, on the Checkout Session after a completed Checkout Session or at time of session expiry. * Otherwise, if the customer has consented to promotional content, this value is the most recent valid email provided by the customer on the Checkout form. */ email: string | null; /** * The customer's individual name after a completed Checkout Session. */ individual_name: string | null; /** * The customer's name after a completed Checkout Session. Note: This property is populated only for sessions on or after March 30, 2022. */ name: string | null; /** * The customer's phone number after a completed Checkout Session. */ phone: string | null; /** * The customer's tax exempt status after a completed Checkout Session. */ tax_exempt: CustomerDetails.TaxExempt | null; /** * The customer's tax IDs after a completed Checkout Session. */ tax_ids: Array<CustomerDetails.TaxId> | null; } interface Discount { /** * Coupon attached to the Checkout Session. */ coupon: string | Coupon | null; /** * Promotion code attached to the Checkout Session. */ promotion_code: string | PromotionCode | null; } interface InvoiceCreation { /** * Indicates whether invoice creation is enabled for the Checkout Session. */ enabled: boolean; invoice_data: InvoiceCreation.InvoiceData; } type Locale = 'auto' | 'bg' | 'cs' | 'da' | 'de' | 'el' | 'en' | 'en-GB' | 'es' | 'es-419' | 'et' | 'fi' | 'fil' | 'fr' | 'fr-CA' | 'hr' | 'hu' | 'id' | 'it' | 'ja' | 'ko' | 'lt' | 'lv' | 'ms' | 'mt' | 'nb' | 'nl' | 'pl' | 'pt' | 'pt-BR' | 'ro' | 'ru' | 'sk' | 'sl' | 'sv' | 'th' | 'tr' | 'vi' | 'zh' | 'zh-HK' | 'zh-TW'; type Mode = 'payment' | 'setup' | 'subscription'; interface NameCollection { business?: NameCollection.Business; individual?: NameCollection.Individual; } interface OptionalItem { adjustable_quantity: OptionalItem.AdjustableQuantity | null; price: string; quantity: number; } type OriginContext = 'mobile_app' | 'web'; type PaymentMethodCollection = 'always' | 'if_required'; interface PaymentMethodConfigurationDetails { /** * ID of the payment method configuration used. */ id: string; /** * ID of the parent payment method configuration used. */ parent: string | null; } interface PaymentMethodOptions { acss_debit?: PaymentMethodOptions.AcssDebit; affirm?: PaymentMethodOptions.Affirm; afterpay_clearpay?: PaymentMethodOptions.AfterpayClearpay; alipay?: PaymentMethodOptions.Alipay; alma?: PaymentMethodOptions.Alma; amazon_pay?: PaymentMethodOptions.AmazonPay; au_becs_debit?: PaymentMethodOptions.AuBecsDebit; bacs_debit?: PaymentMethodOptions.BacsDebit; bancontact?: PaymentMethodOptions.Bancontact; billie?: PaymentMethodOptions.Billie; boleto?: PaymentMethodOptions.Boleto; card?: PaymentMethodOptions.Card; cashapp?: PaymentMethodOptions.Cashapp; customer_balance?: PaymentMethodOptions.CustomerBalance; eps?: PaymentMethodOptions.Eps; fpx?: PaymentMethodOptions.Fpx; giropay?: PaymentMethodOptions.Giropay; grabpay?: PaymentMethodOptions.Grabpay; ideal?: PaymentMethodOptions.Ideal; kakao_pay?: PaymentMethodOptions.KakaoPay; klarna?: PaymentMethodOptions.Klarna; konbini?: PaymentMethodOptions.Konbini; kr_card?: PaymentMethodOptions.KrCard; link?: PaymentMethodOptions.Link; mobilepay?: PaymentMethodOptions.Mobilepay; multibanco?: PaymentMethodOptions.Multibanco; naver_pay?: PaymentMethodOptions.NaverPay; oxxo?: PaymentMethodOptions.Oxxo; p24?: PaymentMethodOptions.P24; payco?: PaymentMethodOptions.Payco; paynow?: PaymentMethodOptions.Paynow; paypal?: PaymentMethodOptions.Paypal; payto?: PaymentMethodOptions.Payto; pix?: PaymentMethodOptions.Pix; revolut_pay?: PaymentMethodOptions.RevolutPay; samsung_pay?: PaymentMethodOptions.SamsungPay; satispay?: PaymentMethodOptions.Satispay; sepa_debit?: PaymentMethodOptions.SepaDebit; sofort?: PaymentMethodOptions.Sofort; swish?: PaymentMethodOptions.Swish; twint?: PaymentMethodOptions.Twint; upi?: PaymentMethodOptions.Upi; us_bank_account?: PaymentMethodOptions.UsBankAccount; } type PaymentStatus = 'no_payment_required' | 'paid' | 'unpaid'; interface Permissions { /** * Determines which entity is allowed to update the shipping details. * * Default is `client_only`. Stripe Checkout client will automatically update the shipping details. If set to `server_only`, only your server is allowed to update the shipping details. * * When set to `server_only`, you must add the onShippingDetailsChange event handler when initializing the Stripe Checkout client and manually update the shipping details from your server using the Stripe API. */ update_shipping_details: Permissions.UpdateShippingDetails | null; } interface PhoneNumberCollection { /** * Indicates whether phone number collection is enabled for the session */ enabled: boolean; } interface PresentmentDetails { /** * Amount intended to be collected by this payment, denominated in `presentment_currency`. */ presentment_amount: number; /** * Currency presented to the customer during payment. */ presentment_currency: string; } type RedirectOnCompletion = 'always' | 'if_required' | 'never'; interface SavedPaymentMethodOptions { /** * Uses the `allow_redisplay` value of each saved payment method to filter the set presented to a returning customer. By default, only saved payment methods with 'allow_redisplay: ‘always' are shown in Checkout. */ allow_redisplay_filters: Array<SavedPaymentMethodOptions.AllowRedisplayFilter> | null; /** * Enable customers to choose if they wish to remove their saved payment methods. Disabled by default. */ payment_method_remove: SavedPaymentMethodOptions.PaymentMethodRemove | null; /** * Enable customers to choose if they wish to save their payment method for future use. Disabled by default. */ payment_method_save: SavedPaymentMethodOptions.PaymentMethodSave | null; } interface ShippingAddressCollection { /** * An array of two-letter ISO country codes representing which countries Checkout should provide as options for * shipping locations. Unsupported country codes: `AS, CX, CC, CU, HM, IR, KP, MH, FM, NF, MP, PW, SY, UM, VI`. */ allowed_countries: Array<ShippingAddressCollection.AllowedCountry>; } interface ShippingCost { /** * Total shipping cost before any discounts or 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 discounts and taxes are applied. */ amount_total: number; /** * The ID of the ShippingRate for this order. */ shipping_rate: string | ShippingRate | null; /** * The taxes applied to the shipping rate. */ taxes?: Array<ShippingCost.Tax>; } interface ShippingOption { /** * A non-negative integer in cents representing how much to charge. */ shipping_amount: number; /** * The shipping rate. */ shipping_rate: string | ShippingRate; } type Status = 'complete' | 'expired' | 'open'; type SubmitType = 'auto' | 'book' | 'donate' | 'pay' | 'subscribe'; interface TaxIdCollection { /** * Indicates whether tax ID collection is enabled for the session */ enabled: boolean; /** * Indicates whether a tax ID is required on the payment page */ required: TaxIdCollection.Required; } interface TotalDetails { /** * This is the sum of all the discounts. */ amount_discount: number; /** * This is the sum of all the shipping amounts. */ amount_shipping: number | null; /** * This is the sum of all the tax amounts. */ amount_tax: number; breakdown?: TotalDetails.Breakdown; } type UiMode = 'elements' | 'embedded_page' | 'form' | 'hosted_page'; interface WalletOptions { link?: WalletOptions.Link; } namespace AfterExpiration { interface Recovery { /** * Enables user redeemable promotion codes on the recovered Checkout Sessions. Defaults to `false` */ allow_promotion_codes: boolean; /** * If `true`, a recovery url will be generated to recover this Checkout Session if it * expires before a transaction is completed. It will be attached to the * Checkout Session object upon expiration. */ enabled: boolean; /** * The timestamp at which the recovery URL will expire. */ expires_at: number | null; /** * URL that creates a new Checkout Session when clicked that is a copy of this expired Checkout Session */ url: string | null; } } namespace AutomaticTax { 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 BrandingSettings { type BorderStyle = 'pill' | 'rectangular' | 'rounded'; interface Icon { /** * The ID of a [File upload](https://stripe.com/docs/api/files) representing the icon. Purpose must be `business_icon`. Required if `type` is `file` and disallowed otherwise. */ file?: string; /** * The type of image for the icon. Must be one of `file` or `url`. */ type: Icon.Type; /** * The URL of the image. Present when `type` is `url`. */ url?: string; } interface Logo { /** * The ID of a [File upload](https://stripe.com/docs/api/files) representing the logo. Purpose must be `business_logo`. Required if `type` is `file` and disallowed otherwise. */ file?: string; /** * The type of image for the logo. Must be one of `file` or `url`. */ type: Logo.Type; /** * The URL of the image. Present when `type` is `url`. */ url?: string; } namespace Icon { type Type = 'file' | 'url'; } namespace Logo { type Type = 'file' | 'url'; } } namespace CollectedInformation { interface ShippingDetails { address: Address; /** * Customer name. */ name: string; } } namespace Consent { type Promotions = 'opt_in' | 'opt_out'; } namespace ConsentCollection { interface PaymentMethodReuseAgreement { /** * Determines the position and visibility of the payment method reuse agreement in the UI. When set to `auto`, Stripe's defaults will be used. * * When set to `hidden`, the payment method reuse agreement text will always be hidden in the UI. */ position: PaymentMethodReuseAgreement.Position; } type Promotions = 'auto' | 'none'; type TermsOfService = 'none' | 'required'; namespace PaymentMethodReuseAgreement { type Position = 'auto' | 'hidden'; } } namespace CustomerDetails { type TaxExempt = 'exempt' | 'none' | 'reverse'; interface TaxId { /** * 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: TaxId.Type; /** * The value of the tax ID. */ value: string | null; } namespace TaxId { 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 CustomField { interface Dropdown { /** * The value that pre-fills on the payment page. */ default_value: string | null; /** * The options available for the customer to select. Up to 200 options allowed. */ options: Array<Dropdown.Option>; /** * The option selected by the customer. This will be the `value` for the option. */ value: string | null; } interface Label { /** * Custom text for the label, displayed to the customer. Up to 50 characters. */ custom: string | null; /** * The type of the label. */ type: 'custom'; } interface Numeric { /** * The value that pre-fills the field on the payment page. */ default_value: string | null; /** * The maximum character length constraint for the customer's input. */ maximum_length: number | null; /** * The minimum character length requirement for the customer's input. */ minimum_length: number | null; /** * The value entered by the customer, containing only digits. */ value: string | null; } interface Text { /** * The value that pre-fills the field on the payment page. */ default_value: string | null; /** * The maximum character length constraint for the customer's input. */ maximum_length: number | null; /** * The minimum character length requirement for the customer's input. */ minimum_length: number | null; /** * The value entered by the customer. */ value: string | null; } type Type = 'dropdown' | 'numeric' | 'text'; namespace Dropdown { interface Option { /** * The label for the option, displayed to the customer. Up to 100 characters. */ label: string; /** * The value for this option, not displayed to the customer, used by your integration to reconcile the option selected by the customer. Must be unique to this option, alphanumeric, and up to 100 characters. */ value: string; } } } namespace CustomText { interface AfterSubmit { /** * Text can be up to 1200 characters in length. */ message: string; } interface ShippingAddress { /** * Text can be up to 1200 characters in length. */ message: string; } interface Submit { /** * Text can be up to 1200 characters in length. */ message: string; } interface TermsOfServiceAcceptance { /** * Text can be up to 1200 characters in length. */ message: string; } } namespace InvoiceCreation { interface InvoiceData { /** * The account tax IDs associated with the invoice. */ account_tax_ids: Array<string | TaxId | DeletedTaxId> | null; /** * Custom fields displayed on the invoice. */ custom_fields: Array<InvoiceData.CustomField> | null; /** * An arbitrary string attached to the object. Often useful for displaying to users. */ description: string | null; /** * Footer displayed on the invoice. */ footer: string | null; /** * The connected account that issues the invoice. The invoice is presented with the branding and support information of the specified account. */ issuer: InvoiceData.Issuer | null; /** * 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; /** * Options for invoice PDF rendering. */ rendering_options: InvoiceData.RenderingOptions | null; } namespace InvoiceData { interface CustomField { /** * The name of the custom field. */ name: string; /** * The value of the custom field. */ value: string; } interface Issuer { /** * The connected account being referenced when `type` is `account`. */ account?: string | Account; /** * Type of the account referenced. */ type: Issuer.Type; } interface RenderingOptions { /** * How line-item prices and amounts will be displayed with respect to tax on invoice PDFs. */ amount_tax_display: string | null; /** * ID of the invoice rendering template to be used for the generated invoice. */ template: string | null; } namespace Issuer { type Type = 'account' | 'self'; } } } namespace NameCollection { interface Business { /** * Indicates whether business name collection is enabled for the session */ enabled: boolean; /** * Whether the customer is required to complete the field before completing the Checkout Session. Defaults to `false`. */ optional: boolean; } interface Individual { /** * Indicates whether individual name collection is enabled for the session */ enabled: boolean; /** * Whether the customer is required to complete the field before completing the Checkout Session. Defaults to `false`. */ optional: boolean; } } namespace OptionalItem { interface AdjustableQuantity { /** * Set to true if the quantity can be adjusted to any non-negative integer. */ enabled: boolean; /** * The maximum quantity of this item the customer can purchase. By default this value is 99. You can specify a value up to 999999. */ maximum: number | null; /** * The minimum quantity of this item the customer must purchase, if they choose to purchase it. Because this item is optional, the customer will always be able to remove it from their order, even if the `minimum` configured here is greater than 0. By default this value is 0. */ minimum: number | null; } } namespace PaymentMethodOptions { interface AcssDebit { /** * Currency supported by the bank account. Returned when the Session is in `setup` mode. */ currency?: AcssDebit.Currency; mandate_options?: AcssDebit.MandateOptions; /** * Indicates that you intend to make future payments with this PaymentIntent's payment method. * * If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](https://docs.stripe.com/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](https://docs.stripe.com/api/payment_methods/attach) the payment method to a Customer after the transaction completes. * * If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](https://docs.stripe.com/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead. * * When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](https://docs.stripe.com/strong-customer-authentication). */ setup_future_usage?: AcssDebit.SetupFutureUsage; /** * Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now. */ target_date?: string; /** * Bank account verification method. The default value is `automatic`. */ verification_method?: AcssDebit.VerificationMethod; } interface Affirm { /**