UNPKG

stripe

Version:
771 lines 693 kB
import { StripeResource } from '../StripeResource.js'; import { PaymentIntentAmountDetailsLineItem } from './PaymentIntentAmountDetailsLineItems.js'; import { Application } from './Applications.js'; import { Customer, DeletedCustomer } from './Customers.js'; import { Charge } from './Charges.js'; import { Account } from './Accounts.js'; import { PaymentMethod } from './PaymentMethods.js'; import { Review } from './Reviews.js'; import { CustomerSource, DeletedCustomerSource } from './CustomerSources.js'; import { SetupIntent } from './SetupIntents.js'; import { Emptyable, MetadataParam, AddressParam, PaginationParams, RangeQueryParam, Metadata, Address } from '../shared.js'; import { RequestOptions, ApiListPromise, Response, ApiList, ApiSearchResultPromise } from '../lib.js'; export declare class PaymentIntentResource extends StripeResource { /** * Returns a list of PaymentIntents. */ list(params?: PaymentIntentListParams, options?: RequestOptions): ApiListPromise<PaymentIntent>; /** * Creates a PaymentIntent object. * * After the PaymentIntent is created, attach a payment method and [confirm](https://docs.stripe.com/docs/api/payment_intents/confirm) * to continue the payment. Learn more about <a href="/docs/payments/payment-intents">the available payment flows * with the Payment Intents API. * * When you use confirm=true during creation, it's equivalent to creating * and confirming the PaymentIntent in the same call. You can use any parameters * available in the [confirm API](https://docs.stripe.com/docs/api/payment_intents/confirm) when you supply * confirm=true. */ create(params: PaymentIntentCreateParams, options?: RequestOptions): Promise<Response<PaymentIntent>>; /** * Retrieves the details of a PaymentIntent that has previously been created. * * You can retrieve a PaymentIntent client-side using a publishable key when the client_secret is in the query string. * * If you retrieve a PaymentIntent with a publishable key, it only returns a subset of properties. Refer to the [payment intent](https://docs.stripe.com/api#payment_intent_object) object reference for more details. */ retrieve(id: string, params?: PaymentIntentRetrieveParams, options?: RequestOptions): Promise<Response<PaymentIntent>>; /** * Updates properties on a PaymentIntent object without confirming. * * Depending on which properties you update, you might need to confirm the * PaymentIntent again. For example, updating the payment_method * always requires you to confirm the PaymentIntent again. If you prefer to * update and confirm at the same time, we recommend updating properties through * the [confirm API](https://docs.stripe.com/docs/api/payment_intents/confirm) instead. */ update(id: string, params?: PaymentIntentUpdateParams, options?: RequestOptions): Promise<Response<PaymentIntent>>; /** * Search for PaymentIntents 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: PaymentIntentSearchParams, options?: RequestOptions): ApiSearchResultPromise<PaymentIntent>; /** * Manually reconcile the remaining amount for a customer_balance PaymentIntent. */ applyCustomerBalance(id: string, params?: PaymentIntentApplyCustomerBalanceParams, options?: RequestOptions): Promise<Response<PaymentIntent>>; /** * You can cancel a PaymentIntent object when it's in one of these statuses: requires_payment_method, requires_capture, requires_confirmation, requires_action or, [in rare cases](https://docs.stripe.com/docs/payments/intents), processing. * * After it's canceled, no additional charges are made by the PaymentIntent and any operations on the PaymentIntent fail with an error. For PaymentIntents with a status of requires_capture, the remaining amount_capturable is automatically refunded. * * You can directly cancel the PaymentIntent for a Checkout Session only when the PaymentIntent has a status of requires_capture. Otherwise, you must [expire the Checkout Session](https://docs.stripe.com/docs/api/checkout/sessions/expire). */ cancel(id: string, params?: PaymentIntentCancelParams, options?: RequestOptions): Promise<Response<PaymentIntent>>; /** * Capture the funds of an existing uncaptured PaymentIntent when its status is requires_capture. * * Uncaptured PaymentIntents are cancelled a set number of days (7 by default) after their creation. * * Learn more about [separate authorization and capture](https://docs.stripe.com/docs/payments/capture-later). */ capture(id: string, params?: PaymentIntentCaptureParams, options?: RequestOptions): Promise<Response<PaymentIntent>>; /** * Confirm that your customer intends to pay with current or provided * payment method. Upon confirmation, the PaymentIntent will attempt to initiate * a payment. * * If the selected payment method requires additional authentication steps, the * PaymentIntent will transition to the requires_action status and * suggest additional actions via next_action. If payment fails, * the PaymentIntent transitions to the requires_payment_method status or the * canceled status if the confirmation limit is reached. If * payment succeeds, the PaymentIntent will transition to the succeeded * status (or requires_capture, if capture_method is set to manual). * * If the confirmation_method is automatic, payment may be attempted * using our [client SDKs](https://docs.stripe.com/docs/stripe-js/reference#stripe-handle-card-payment) * and the PaymentIntent's [client_secret](https://docs.stripe.com/api#payment_intent_object-client_secret). * After next_actions are handled by the client, no additional * confirmation is required to complete the payment. * * If the confirmation_method is manual, all payment attempts must be * initiated using a secret key. * * If any actions are required for the payment, the PaymentIntent will * return to the requires_confirmation state * after those actions are completed. Your server needs to then * explicitly re-confirm the PaymentIntent to initiate the next payment * attempt. * * There is a variable upper limit on how many times a PaymentIntent can be confirmed. * After this limit is reached, any further calls to this endpoint will * transition the PaymentIntent to the canceled state. */ confirm(id: string, params?: PaymentIntentConfirmParams, options?: RequestOptions): Promise<Response<PaymentIntent>>; /** * Perform an incremental authorization on an eligible * [PaymentIntent](https://docs.stripe.com/docs/api/payment_intents/object). To be eligible, the * PaymentIntent's status must be requires_capture and * [incremental_authorization_supported](https://docs.stripe.com/docs/api/charges/object#charge_object-payment_method_details-card_present-incremental_authorization_supported) * must be true. * * Incremental authorizations attempt to increase the authorized amount on * your customer's card to the new, higher amount provided. Similar to the * initial authorization, incremental authorizations can be declined. A * single PaymentIntent can call this endpoint multiple times to further * increase the authorized amount. * * If the incremental authorization succeeds, the PaymentIntent object * returns with the updated * [amount](https://docs.stripe.com/docs/api/payment_intents/object#payment_intent_object-amount). * If the incremental authorization fails, a * [card_declined](https://docs.stripe.com/docs/error-codes#card-declined) error returns, and no other * fields on the PaymentIntent or Charge update. The PaymentIntent * object remains capturable for the previously authorized amount. * * Each PaymentIntent can have a maximum of 10 incremental authorization attempts, including declines. * After it's captured, a PaymentIntent can no longer be incremented. * * Learn more about [incremental authorizations](https://docs.stripe.com/docs/terminal/features/incremental-authorizations). */ incrementAuthorization(id: string, params: PaymentIntentIncrementAuthorizationParams, options?: RequestOptions): Promise<Response<PaymentIntent>>; /** * Verifies microdeposits on a PaymentIntent object. */ verifyMicrodeposits(id: string, params?: PaymentIntentVerifyMicrodepositsParams, options?: RequestOptions): Promise<Response<PaymentIntent>>; /** * Lists all LineItems of a given PaymentIntent. */ listAmountDetailsLineItems(id: string, params?: PaymentIntentListAmountDetailsLineItemsParams, options?: RequestOptions): ApiListPromise<PaymentIntentAmountDetailsLineItem>; } export interface PaymentIntent { /** * Unique identifier for the object. */ id: string; /** * String representing the object's type. Objects of the same type share the same value. */ object: 'payment_intent'; /** * Amount intended to be collected by this PaymentIntent. A positive integer representing how much to charge in the [smallest currency unit](https://docs.stripe.com/currencies#zero-decimal) (e.g., 100 cents to charge $1.00 or 100 to charge ¥100, a zero-decimal currency). The minimum amount is $0.50 US or [equivalent in charge currency](https://docs.stripe.com/currencies#minimum-and-maximum-charge-amounts). The amount value supports up to eight digits (e.g., a value of 99999999 for a USD charge of $999,999.99). */ amount: number; /** * Amount that can be captured from this PaymentIntent. */ amount_capturable: number; amount_details?: PaymentIntent.AmountDetails; /** * Amount that this PaymentIntent collects. */ amount_received: number; /** * ID of the Connect application that created the PaymentIntent. */ application: string | Application | null; /** * The amount of the application fee (if any) that will be requested to be applied to the payment and transferred to the application owner's Stripe account. The amount of the application fee collected will be capped at the total amount captured. For more information, see the PaymentIntents [use case for connected accounts](https://docs.stripe.com/payments/connected-accounts). */ application_fee_amount: number | null; /** * Settings to configure compatible payment methods from the [Stripe Dashboard](https://dashboard.stripe.com/settings/payment_methods) */ automatic_payment_methods: PaymentIntent.AutomaticPaymentMethods | null; /** * Populated when `status` is `canceled`, this is the time at which the PaymentIntent was canceled. Measured in seconds since the Unix epoch. */ canceled_at: number | null; /** * Reason for cancellation of this PaymentIntent, either user-provided (`duplicate`, `fraudulent`, `requested_by_customer`, or `abandoned`) or generated by Stripe internally (`failed_invoice`, `void_invoice`, `automatic`, or `expired`). */ cancellation_reason: PaymentIntent.CancellationReason | null; /** * Controls when the funds will be captured from the customer's account. */ capture_method: PaymentIntent.CaptureMethod; /** * The client secret of this PaymentIntent. Used for client-side retrieval using a publishable key. * * The client secret can be used to complete a payment from your frontend. It should not be stored, logged, or exposed to anyone other than the customer. Make sure that you have TLS enabled on any page that includes the client secret. * * Refer to our docs to [accept a payment](https://docs.stripe.com/payments/accept-a-payment?ui=elements) and learn about how `client_secret` should be handled. */ client_secret: string | null; /** * Describes whether we can confirm this PaymentIntent automatically, or if it requires customer action to confirm the payment. */ confirmation_method: PaymentIntent.ConfirmationMethod; /** * 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; /** * ID of the Customer this PaymentIntent belongs to, if one exists. * * Payment methods attached to other Customers cannot be used with this PaymentIntent. * * If [setup_future_usage](https://api.stripe.com#payment_intent_object-setup_future_usage) is set and this PaymentIntent's payment method is not `card_present`, then the payment method attaches to the Customer after the PaymentIntent has been confirmed and any required actions from the user are complete. If the payment method is `card_present` and isn't a digital wallet, then a [generated_card](https://docs.stripe.com/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card is created and attached to the Customer instead. */ customer: string | Customer | DeletedCustomer | null; /** * ID of the Account representing the customer that this PaymentIntent belongs to, if one exists. * * Payment methods attached to other Accounts cannot be used with this PaymentIntent. * * If [setup_future_usage](https://api.stripe.com#payment_intent_object-setup_future_usage) is set and this PaymentIntent's payment method is not `card_present`, then the payment method attaches to the Account after the PaymentIntent has been confirmed and any required actions from the user are complete. If the payment method is `card_present` and isn't a digital wallet, then a [generated_card](https://docs.stripe.com/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card is created and attached to the Account instead. */ customer_account: string | null; /** * An arbitrary string attached to the object. Often useful for displaying to users. */ description: string | null; /** * The list of payment method types to exclude from use with this payment. */ excluded_payment_method_types: Array<PaymentIntent.ExcludedPaymentMethodType> | null; hooks?: PaymentIntent.Hooks; /** * The payment error encountered in the previous PaymentIntent confirmation. It will be cleared if the PaymentIntent is later updated for any reason. */ last_payment_error: PaymentIntent.LastPaymentError | null; /** * ID of the latest [Charge object](https://docs.stripe.com/api/charges) created by this PaymentIntent. This property is `null` until PaymentIntent confirmation is attempted. */ latest_charge: string | Charge | null; /** * 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. Learn more about [storing information in metadata](https://docs.stripe.com/payments/payment-intents/creating-payment-intents#storing-information-in-metadata). */ metadata: Metadata; /** * If present, this property tells you what actions you need to take in order for your customer to fulfill a payment using the provided source. */ next_action: PaymentIntent.NextAction | null; /** * You can specify the settlement merchant as the * connected account using the `on_behalf_of` attribute on the charge. See the PaymentIntents [use case for connected accounts](https://docs.stripe.com/payments/connected-accounts) for details. */ on_behalf_of: string | Account | null; payment_details?: PaymentIntent.PaymentDetails; /** * ID of the payment method used in this PaymentIntent. */ payment_method: string | PaymentMethod | null; /** * Information about the [payment method configuration](https://docs.stripe.com/api/payment_method_configurations) used for this PaymentIntent. */ payment_method_configuration_details: PaymentIntent.PaymentMethodConfigurationDetails | null; /** * Payment-method-specific configuration for this PaymentIntent. */ payment_method_options: PaymentIntent.PaymentMethodOptions | null; /** * The list of payment method types (e.g. card) that this PaymentIntent is allowed to use. A comprehensive list of valid payment method types can be found [here](https://docs.stripe.com/api/payment_methods/object#payment_method_object-type). */ payment_method_types: Array<string>; presentment_details?: PaymentIntent.PresentmentDetails; /** * If present, this property tells you about the processing state of the payment. */ processing: PaymentIntent.Processing | null; /** * Email address that the receipt for the resulting payment will be sent to. If `receipt_email` is specified for a payment in live mode, a receipt will be sent regardless of your [email settings](https://dashboard.stripe.com/account/emails). */ receipt_email: string | null; /** * ID of the review associated with this PaymentIntent, if any. */ review: string | Review | null; /** * 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: PaymentIntent.SetupFutureUsage | null; /** * Shipping information for this PaymentIntent. */ shipping: PaymentIntent.Shipping | null; /** * This is a legacy field that will be removed in the future. It is the ID of the Source object that is associated with this PaymentIntent, if one was supplied. */ source: string | CustomerSource | DeletedCustomerSource | null; /** * Text that appears on the customer's statement as the statement descriptor for a non-card charge. This value overrides the account's default statement descriptor. For information about requirements, including the 22-character limit, see [the Statement Descriptor docs](https://docs.stripe.com/get-started/account/statement-descriptors). * * Setting this value for a card charge returns an error. For card charges, set the [statement_descriptor_suffix](https://docs.stripe.com/get-started/account/statement-descriptors#dynamic) instead. */ statement_descriptor: string | null; /** * Provides information about a card charge. Concatenated to the account's [statement descriptor prefix](https://docs.stripe.com/get-started/account/statement-descriptors#static) to form the complete statement descriptor that appears on the customer's statement. */ statement_descriptor_suffix: string | null; /** * Status of this PaymentIntent, one of `requires_payment_method`, `requires_confirmation`, `requires_action`, `processing`, `requires_capture`, `canceled`, or `succeeded`. Read more about each PaymentIntent [status](https://docs.stripe.com/payments/intents#intent-statuses). */ status: PaymentIntent.Status; /** * The data that automatically creates a Transfer after the payment finalizes. Learn more about the [use case for connected accounts](https://docs.stripe.com/payments/connected-accounts). */ transfer_data?: PaymentIntent.TransferData | null; /** * A string that identifies the resulting payment as part of a group. Learn more about the [use case for connected accounts](https://docs.stripe.com/connect/separate-charges-and-transfers). */ transfer_group: string | null; } export declare namespace PaymentIntent { interface AmountDetails { /** * The total discount applied on the transaction represented in the [smallest currency unit](https://docs.stripe.com/currencies#zero-decimal). An integer greater than 0. * * This field is mutually exclusive with the `amount_details[line_items][#][discount_amount]` field. */ discount_amount?: number; error?: AmountDetails.Error; /** * A list of line items, each containing information about a product in the PaymentIntent. There is a maximum of 200 line items. */ line_items?: ApiList<PaymentIntentAmountDetailsLineItem>; shipping?: AmountDetails.Shipping; tax?: AmountDetails.Tax; tip?: AmountDetails.Tip; } interface AutomaticPaymentMethods { /** * Controls whether this PaymentIntent will accept redirect-based payment methods. * * Redirect-based payment methods may require your customer to be redirected to a payment method's app or site for authentication or additional steps. To [confirm](https://docs.stripe.com/api/payment_intents/confirm) this PaymentIntent, you may be required to provide a `return_url` to redirect customers back to your site after they authenticate or complete the payment. */ allow_redirects?: AutomaticPaymentMethods.AllowRedirects; /** * Automatically calculates compatible payment methods */ enabled: boolean; } type CancellationReason = 'abandoned' | 'automatic' | 'duplicate' | 'expired' | 'failed_invoice' | 'fraudulent' | 'requested_by_customer' | 'void_invoice'; type CaptureMethod = 'automatic' | 'automatic_async' | 'manual'; type ConfirmationMethod = 'automatic' | 'manual'; type ExcludedPaymentMethodType = 'acss_debit' | 'affirm' | 'afterpay_clearpay' | 'alipay' | 'alma' | 'amazon_pay' | 'au_becs_debit' | 'bacs_debit' | 'bancontact' | 'billie' | 'blik' | 'boleto' | 'card' | 'cashapp' | 'crypto' | 'customer_balance' | 'eps' | 'fpx' | 'giropay' | 'grabpay' | 'ideal' | 'kakao_pay' | 'klarna' | 'konbini' | 'kr_card' | 'mb_way' | 'mobilepay' | 'multibanco' | 'naver_pay' | 'nz_bank_account' | 'oxxo' | 'p24' | 'pay_by_bank' | 'payco' | 'paynow' | 'paypal' | 'payto' | 'pix' | 'promptpay' | 'revolut_pay' | 'samsung_pay' | 'satispay' | 'sepa_debit' | 'sofort' | 'swish' | 'twint' | 'upi' | 'us_bank_account' | 'wechat_pay' | 'zip'; interface Hooks { inputs?: Hooks.Inputs; } interface LastPaymentError { /** * 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?: LastPaymentError.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: LastPaymentError.Type; } interface NextAction { alipay_handle_redirect?: NextAction.AlipayHandleRedirect; boleto_display_details?: NextAction.BoletoDisplayDetails; card_await_notification?: NextAction.CardAwaitNotification; cashapp_handle_redirect_or_display_qr_code?: NextAction.CashappHandleRedirectOrDisplayQrCode; display_bank_transfer_instructions?: NextAction.DisplayBankTransferInstructions; konbini_display_details?: NextAction.KonbiniDisplayDetails; multibanco_display_details?: NextAction.MultibancoDisplayDetails; oxxo_display_details?: NextAction.OxxoDisplayDetails; paynow_display_qr_code?: NextAction.PaynowDisplayQrCode; pix_display_qr_code?: NextAction.PixDisplayQrCode; promptpay_display_qr_code?: NextAction.PromptpayDisplayQrCode; redirect_to_url?: NextAction.RedirectToUrl; swish_handle_redirect_or_display_qr_code?: NextAction.SwishHandleRedirectOrDisplayQrCode; /** * Type of the next action to perform. Refer to the other child attributes under `next_action` for available values. Examples include: `redirect_to_url`, `use_stripe_sdk`, `alipay_handle_redirect`, `oxxo_display_details`, or `verify_with_microdeposits`. */ type: string; upi_handle_redirect_or_display_qr_code?: NextAction.UpiHandleRedirectOrDisplayQrCode; /** * When confirming a PaymentIntent with Stripe.js, Stripe.js depends on the contents of this dictionary to invoke authentication flows. The shape of the contents is subject to change and is only intended to be used by Stripe.js. */ use_stripe_sdk?: NextAction.UseStripeSdk; verify_with_microdeposits?: NextAction.VerifyWithMicrodeposits; wechat_pay_display_qr_code?: NextAction.WechatPayDisplayQrCode; wechat_pay_redirect_to_android_app?: NextAction.WechatPayRedirectToAndroidApp; wechat_pay_redirect_to_ios_app?: NextAction.WechatPayRedirectToIosApp; } interface PaymentDetails { /** * A unique value to identify the customer. This field is available only for card payments. * * This field is truncated to 25 alphanumeric characters, excluding spaces, before being sent to card networks. */ customer_reference: string | null; /** * A unique value assigned by the business to identify the transaction. Required for L2 and L3 rates. * * For Cards, this field is truncated to 25 alphanumeric characters, excluding spaces, before being sent to card networks. For Klarna, this field is truncated to 255 characters and is visible to customers when they view the order in the Klarna app. */ order_reference: string | null; } 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; blik?: PaymentMethodOptions.Blik; boleto?: PaymentMethodOptions.Boleto; card?: PaymentMethodOptions.Card; card_present?: PaymentMethodOptions.CardPresent; cashapp?: PaymentMethodOptions.Cashapp; crypto?: PaymentMethodOptions.Crypto; customer_balance?: PaymentMethodOptions.CustomerBalance; eps?: PaymentMethodOptions.Eps; fpx?: PaymentMethodOptions.Fpx; giropay?: PaymentMethodOptions.Giropay; grabpay?: PaymentMethodOptions.Grabpay; ideal?: PaymentMethodOptions.Ideal; interac_present?: PaymentMethodOptions.InteracPresent; kakao_pay?: PaymentMethodOptions.KakaoPay; klarna?: PaymentMethodOptions.Klarna; konbini?: PaymentMethodOptions.Konbini; kr_card?: PaymentMethodOptions.KrCard; link?: PaymentMethodOptions.Link; mb_way?: PaymentMethodOptions.MbWay; mobilepay?: PaymentMethodOptions.Mobilepay; multibanco?: PaymentMethodOptions.Multibanco; naver_pay?: PaymentMethodOptions.NaverPay; nz_bank_account?: PaymentMethodOptions.NzBankAccount; oxxo?: PaymentMethodOptions.Oxxo; p24?: PaymentMethodOptions.P24; pay_by_bank?: PaymentMethodOptions.PayByBank; payco?: PaymentMethodOptions.Payco; paynow?: PaymentMethodOptions.Paynow; paypal?: PaymentMethodOptions.Paypal; payto?: PaymentMethodOptions.Payto; pix?: PaymentMethodOptions.Pix; promptpay?: PaymentMethodOptions.Promptpay; 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; wechat_pay?: PaymentMethodOptions.WechatPay; zip?: PaymentMethodOptions.Zip; } 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; } interface Processing { card?: Processing.Card; /** * Type of the payment method for which payment is in `processing` state, one of `card`. */ type: 'card'; } type SetupFutureUsage = 'off_session' | 'on_session'; interface Shipping { 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 = 'canceled' | 'processing' | 'requires_action' | 'requires_capture' | 'requires_confirmation' | 'requires_payment_method' | 'succeeded'; interface TransferData { /** * The amount transferred to the destination account. This transfer will occur automatically after the payment succeeds. If no amount is specified, by default the entire payment amount is transferred to the destination account. * The amount must be less than or equal to the [amount](https://docs.stripe.com/api/payment_intents/object#payment_intent_object-amount), and must be a positive integer * representing how much to transfer in the smallest currency unit (e.g., 100 cents to charge $1.00). */ amount?: number; /** * The account (if any) that the payment is attributed to for tax reporting, and where funds from the payment are transferred to after payment success. */ destination: string | Account; } namespace AmountDetails { interface Error { /** * The code of the error that occurred when validating the current amount details. */ code: Error.Code | null; /** * A message providing more details about the error. */ message: string | null; } interface Shipping { /** * If a physical good is being shipped, the cost of shipping represented in the [smallest currency unit](https://docs.stripe.com/currencies#zero-decimal). An integer greater than or equal to 0. */ amount: number | null; /** * If a physical good is being shipped, the postal code of where it is being shipped from. At most 10 alphanumeric characters long, hyphens are allowed. */ from_postal_code: string | null; /** * If a physical good is being shipped, the postal code of where it is being shipped to. At most 10 alphanumeric characters long, hyphens are allowed. */ to_postal_code: string | null; } interface Tax { /** * The total amount of tax on the transaction represented in the [smallest currency unit](https://docs.stripe.com/currencies#zero-decimal). Required for L2 rates. An integer greater than or equal to 0. * * This field is mutually exclusive with the `amount_details[line_items][#][tax][total_tax_amount]` field. */ total_tax_amount: number | null; } interface Tip { /** * Portion of the amount that corresponds to a tip. */ amount?: number; } namespace Error { type Code = 'amount_details_amount_mismatch' | 'amount_details_tax_shipping_discount_greater_than_amount'; } } namespace AutomaticPaymentMethods { type AllowRedirects = 'always' | 'never'; } namespace Hooks { interface Inputs { tax?: Inputs.Tax; } namespace Inputs { interface Tax { /** * The [TaxCalculation](https://docs.stripe.com/api/tax/calculations) id */ calculation: string; } } } namespace LastPaymentError { 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_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' | 'request_blocked' | 'resource_already_exists' | 'resource_missing' | 'return_intent_already_processed' | 'routing_number_invalid' | 'secret_key_required' | 'sepa_unsupported_account' | 'service_period_coupon_with_metered_tiered_item_unsupported' | 'setup_attempt_failed' | 'setup_intent_authentication_failure' | 'setup_intent_invalid_parameter' | 'setup_intent_mandate_invalid' | 'setup_intent_mobile_wallet_unsupported' | 'setup_intent_setup_attempt_expired' | 'setup_intent_unexpected_state' | 'shipping_address_invalid' | 'shipping_calculation_failed' | 'sku_inactive' | 'state_unsupported' | 'status_transition_invalid' | 'storer_capability_missing' | 'storer_capability_not_active' | 'stripe_tax_inactive' | 'tax_id_invalid' | 'tax_id_prohibited' | 'taxes_calculation_failed' | 'terminal_location_country_unsupported' | 'terminal_reader_busy' | 'terminal_reader_hardware_fault' | 'terminal_reader_invalid_location_for_activation' | 'terminal_reader_invalid_location_for_payment' | 'terminal_reader_offline' | 'terminal_reader_timeout' | 'testmode_charges_only' | 'tls_version_unsupported' | 'token_already_used' | 'token_card_network_invalid' | 'token_in_use' | 'transfer_source_balance_parameters_mismatch' | 'transfers_not_allowed' | 'url_invalid'; type Type = 'api_error' | 'card_error' | 'idempotency_error' | 'invalid_request_error'; } namespace NextAction { interface AlipayHandleRedirect { /** * The native data to be used with Alipay SDK you must redirect your customer to in order to authenticate the payment in an Android App. */ native_data: string | null; /** * The native URL you must redirect your customer to in order to authenticate the payment in an iOS App. */ native_url: string | null; /** * If the customer does not exit their browser while authenticating, they will be redirected to this specified URL after completion. */ return_url: string | null; /** * The URL you must redirect your customer to in order to authenticate the payment. */ url: string | null; } interface BoletoDisplayDetails { /** * The timestamp after which the boleto expires. */ expires_at: number | null; /** * The URL to the hosted boleto voucher page, which allows customers to view the boleto voucher. */ hosted_voucher_url: string | null; /** * The boleto number. */ number: string | null; /** * The URL to the downloadable boleto voucher PDF. */ pdf: string | null; } interface CardAwaitNotification { /** * The time that payment will be attempted. If customer approval is required, they need to provide approval before this time. */ charge_attempt_at: number | null; /** * For payments greater than INR 15000, the customer must provide explicit approval of the payment with their bank. For payments of lower amount, no customer action is required. */ customer_approval_required: boolean | null; } interface CashappHandleRedirectOrDisplayQrCode { /** * The URL to the hosted Cash App Pay instructions page, which allows customers to view the QR code, and supports QR code refreshing on expiration. */ hosted_instructions_url: string; /** * The url for mobile redirect based auth */ mobile_auth_url: string; qr_code: CashappHandleRedirectOrDisplayQrCode.QrCode; } interface DisplayBankTransferInstructions { /** * The remaining amount that needs to be transferred to complete the payment. */ amount_remaining: number | null; /** * 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; /** * A list of financial addresses that can be used to fund the customer balance */ financial_addresses?: Array<DisplayBankTransferInstructions.FinancialAddress>; /** * A link to a hosted page that guides your customer through completing the transfer. */ hosted_instructions_url: string | null; /** * A string identifying this payment. Instruct your customer to include this code in the reference or memo field of their bank transfer. */ reference: string | null; /** * Type of bank transfer */ type: DisplayBankTransferInstructions.Type; } interface KonbiniDisplayDetails { /** * The timest