Expand description
This crate provides Rust bindings to the Stripe HTTP API.
§Getting Started
To get started, we need to create a Client:
let client = stripe::Client::new("sk_test_YOUR_STRIPE_SECRET");
Then we can begin making requests as we’d like. Most Stripe requests accept
many optional parameters, so we usually get the ::new(...)
with any required
params and then set the ones we want from there.
Most requests for creating or updating a Stripe object use the same Rust struct, so you may frequently need to refer to the official API docs to determine which fields are required for either request.
Note: We have an extensive collection of examples which are interspersed in the documentation. Any time an API is used in an example it is highlighted in the docs for that item. You can also find all the raw examples in the
examples
directory. Please have a look at those for inspiration or ideas on how to get started.
§Idempotency / Request Strategies
This library provides a few basic request strategies for making requests to the Stripe API. This is currently implemented as an enum with the following variants:
RequestStrategy::Once
: This is the default strategy. It will make a request to the Stripe API and, whether the request fails or not, will simply return the response.RequestStrategy::Idempotent
: This strategy will make a request to stripe api, passing the provided key to Stripe as theIdempotency-Key
header, ensuring that the request is idempotent. If the request fails, you may retry it.RequestStrategy::Retry
: Make a request to the Stripe API and, if the request fails, retry it up to n times with a timeout. The idempotency key is generated automatically and is stable across retries.RequestStrategy::ExponentialBackoff
: Make a request to the Stripe API and, if the request fails, retry it up to n times with exponential backoff. The idempotency key is generated automatically and is stable across retries.
Want to implement your own? If it is a common strategy, please consider opening a PR to add it to the library. Otherwise, we are open to turning this into an open trait so that you can implement your own strategy.
Modules§
- generated module
Structs§
- The resource representing a Stripe “Account”.
- An id for the corresponding object type.
- The resource representing a Stripe “AccountLink”.
- The resource representing a Stripe “Address”.
- An id for the corresponding object type.
- The resource representing a Stripe “APIErrors”.
- The resource representing a Stripe “Application”.
- The resource representing a Stripe “PlatformFee”.
- An id for the corresponding object type.
- The resource representing a Stripe “FeeRefund”.
- An id for the corresponding object type.
- An id for the corresponding object type.
- The parameters for
PaymentMethod::attach
- The resource representing a Stripe “Balance”.
- The resource representing a Stripe “BalanceAmountBySourceType”.
- The resource representing a Stripe “BalanceTransaction”.
- An id for the corresponding object type.
- The resource representing a Stripe “BankAccount”.
- An id for the corresponding object type.
- An id for the corresponding object type.
- The resource representing a Stripe “billing_details”.
- The resource representing a Stripe “PortalConfiguration”.
- An id for the corresponding object type.
- The resource representing a Stripe “PortalSession”.
- An id for the corresponding object type.
- The set of parameters that can be used when canceling a payment_intent object.
- The set of parameters that can be used when canceling a setup_intent object.
- The set of parameters that can be used when capturing a charge object.
- The set of parameters that can be used when capturing a payment_intent object.
- The resource representing a Stripe “Card”.
- An id for the corresponding object type.
- An id for the corresponding object type.
- The resource representing a Stripe “cash_balance”.
- The resource representing a Stripe “Charge”.
- An id for the corresponding object type.
- The resource representing a Stripe “Session”.
- An id for the corresponding object type.
- The resource representing a Stripe “LineItem”.
- An id for the corresponding object type.
- The resource representing a Stripe “ConnectAccountReference”.
- The resource representing a Stripe “ConnectCollectionTransfer”.
- An id for the corresponding object type.
- An id for the corresponding object type.
- The resource representing a Stripe “Coupon”.
- The parameters for
Account::create
. - The parameters for
AccountLink::create
. - The parameters for
BillingPortalSession::create
. - The parameters for
Charge::create
. - The parameters for
CheckoutSession::create
. - The parameters for
Coupon::create
. - The parameters for
CreditNote::create
. - The parameters for
Customer::create
. - The parameters that can be used when creating or updating a
CustomerBalanceTransaction
. - The parameters for
EphemeralKey::create
. - The parameters for
FileLink::create
. - The parameters for
Invoice::create
. - The parameters for
InvoiceItem::create
. - The parameters for
PaymentIntent::create
. - The parameters for
PaymentLink::create
. - The parameters for
PaymentMethod::create
. - The parameters for
Payout::create
. - The parameters for
Price::create
. - The parameters for
Product::create
. - The parameters for
Refund::create
. - The parameters for
SetupIntent::create
. - The parameters for
ShippingRate::create
. - The parameters for
Source::create
. - The parameters for
Subscription::create
. - The parameters for
SubscriptionItem::create
. - The parameters for
SubscriptionSchedule::create
. - The parameters for
TaxRate::create
. - The parameters for
TerminalConfiguration::create
. - The parameters for
TerminalConnectionToken::create
. - The parameters for
TerminalLocation::create
. - The parameters for
TerminalReader::create
. - The parameters for
Token::create
. - The parameters for
Transfer::create
. - The set of parameters that can be used when doing transfer reversal.
- The parameters for
UsageRecord::create
. - The parameters for
WebhookEndpoint::create
. - The resource representing a Stripe “CreditNote”.
- An id for the corresponding object type.
- The resource representing a Stripe “CreditNoteLineItem”.
- An id for the corresponding object type.
- The resource representing a Stripe “CustomUnitAmount”.
- The resource representing a Stripe “Customer”.
- The resource representing a Stripe “CustomerBalanceTransaction”.
- An id for the corresponding object type.
- An id for the corresponding object type.
- The resource representing a Stripe “Discount”.
- An id for the corresponding object type.
- The resource representing a Stripe “Dispute”.
- An id for the corresponding object type.
- The resource representing a Stripe “EphemeralKey”.
- An id for the corresponding object type.
- The resource representing a Stripe “NotificationEvent”.
- An id for the corresponding object type.
- The resource representing a Stripe “File”.
- An id for the corresponding object type.
- The resource representing a Stripe “FileLink”.
- An id for the corresponding object type.
- The resource representing a Stripe “Invoice”.
- An id for the corresponding object type.
- The resource representing a Stripe “InvoiceItem”.
- An id for the corresponding object type.
- The resource representing a Stripe “InvoiceLineItem”.
- An id for the corresponding object type.
- The resource representing a Stripe “invoice_payment_method_options_acss_debit”.
- The resource representing a Stripe “invoice_payment_method_options_bancontact”.
- The resource representing a Stripe “invoice_payment_method_options_customer_balance”.
- The resource representing a Stripe “invoice_payment_method_options_konbini”.
- The resource representing a Stripe “invoice_payment_method_options_us_bank_account”.
- The resource representing a Stripe “InvoiceSettingRenderingOptions”.
- The resource representing a Stripe “InvoicesShippingCost”.
- The resource representing a Stripe “IssuingAuthorization”.
- An id for the corresponding object type.
- The resource representing a Stripe “IssuingCard”.
- An id for the corresponding object type.
- The resource representing a Stripe “IssuingCardholder”.
- An id for the corresponding object type.
- The resource representing a Stripe “IssuingDispute”.
- An id for the corresponding object type.
- The resource representing a Stripe “IssuingNetworkToken”.
- The resource representing a Stripe “IssuingTransaction”.
- An id for the corresponding object type.
- The resource representing a Stripe “linked_account_options_us_bank_account”.
- A single page of a cursor-paginated list of an object.
- The parameters for
Account::list
. - The parameters for
ApplicationFee::list
. - The parameters for
BalanceTransaction::list
. - The parameters for
Charge::list
. - The parameters for
CheckoutSession::list
. - The parameters for
Coupon::list
. - The parameters for
CreditNote::list
. - The parameters for
CustomerBalanceTransaction::list
. - The parameters for
Customer::list
. - The parameters for
Dispute::list
. - The parameters for
Event::list
. - The parameters for
FileLink::list
. - The parameters for
File::list
. - The parameters for
InvoiceItem::list
. - The parameters for
Invoice::list
. - The parameters for
PaymentIntent::list
. - The parameters for
PaymentLink::list
. - The parameters for
PaymentMethod::list
. - The parameters for
Payout::list
. - The parameters for
Plan::list
. - The parameters for
Price::list
. - The parameters for
Product::list
. - The parameters for
PromotionCode::list
. - The parameters for
Quote::list
. - The parameters for
Refund::list
. - The parameters for
Review::list
. - The parameters for
SetupAttempt::list
. - The parameters for
SetupIntent::list
. - The parameters for
ShippingRate::list
. - The parameters for
Source::list
. - The parameters for
SubscriptionItem::list
. - The parameters for
SubscriptionSchedule::list
. - The parameters for
Subscription::list
. - The parameters for
TaxCode::list
. - The parameters for
TaxRate::list
. - The parameters for
TerminalConfiguration::list
. - The parameters for
TerminalLocation::list
. - The parameters for
TerminalReader::list
. - The parameters for
Topup::list
. - The parameters for
Transfer::list
. - The parameters for
WebhookEndpoint::list
. - The resource representing a Stripe “LoginLink”.
- The resource representing a Stripe “Mandate”.
- An id for the corresponding object type.
- The resource representing a Stripe “IssuingAuthorizationMerchantData”.
- The resource representing a Stripe “NotificationEventData”.
- An id for the corresponding object type.
- An id for the corresponding object type.
- The resource representing a Stripe PaymentError object.
- The resource representing a Stripe “PaymentIntent”.
- The set of parameters that can be used when confirming a payment_intent object.
- An id for the corresponding object type.
- The resource representing a Stripe “PaymentIntentNextActionCashappHandleRedirectOrDisplayQrCode”.
- The set of parameters that can be used when updating a payment_intent object.
- The resource representing a Stripe “PaymentLink”.
- An id for the corresponding object type.
- The resource representing a Stripe “PaymentMethod”.
- The resource representing a Stripe “payment_method_card_present_networks”.
- The resource representing a Stripe “PaymentMethodConfigBizPaymentMethodConfigurationDetails”.
- The resource representing a Stripe “payment_method_details_card_wallet_apple_pay”.
- The resource representing a Stripe “payment_method_details_card_wallet_google_pay”.
- An id for the corresponding object type.
- The resource representing a Stripe “payment_method_options_customer_balance_eu_bank_account”.
- The resource representing a Stripe “payment_method_options_us_bank_account_mandate_options”.
- The resource representing a Stripe “Payout”.
- An id for the corresponding object type.
- The resource representing a Stripe “Person”.
- An id for the corresponding object type.
- The resource representing a Stripe “Plan”.
- The resource representing a Stripe “PlatformTax”.
- An id for the corresponding object type.
- The resource representing a Stripe “Price”.
- An id for the corresponding object type.
- The resource representing a Stripe “Product”.
- The resource representing a Stripe “PromotionCode”.
- An id for the corresponding object type.
- The resource representing a Stripe “Quote”.
- An id for the corresponding object type.
- The resource representing a Stripe “QuotesResourceTotalDetails”.
- The resource representing a Stripe “RadarRadarOptions”.
- The resource representing a Stripe “Refund”.
- An id for the corresponding object type.
- An error reported by stripe in a request’s response.
- The resource representing a Stripe “ReserveTransaction”.
- An id for the corresponding object type.
- The resource representing a Stripe “RadarReview”.
- An id for the corresponding object type.
- The resource representing a Stripe “ScheduledQueryRun”.
- An id for the corresponding object type.
- The resource representing a Stripe “PaymentFlowsSetupIntentSetupAttempt”.
- An id for the corresponding object type.
- The resource representing a Stripe “SetupIntent”.
- An id for the corresponding object type.
- The resource representing a Stripe “Shipping”.
- The resource representing a Stripe “ShippingRate”.
- An id for the corresponding object type.
- An id for the corresponding object type.
- The resource representing a Stripe “Source”.
- An id for the corresponding object type.
- The resource representing a Stripe “Subscription”.
- The resource representing a Stripe “SubscriptionBillingThresholds”.
- An id for the corresponding object type.
- The resource representing a Stripe “SubscriptionItem”.
- The resource representing a Stripe “SubscriptionItemBillingThresholds”.
- An id for the corresponding object type.
- An id for the corresponding object type.
- The resource representing a Stripe “SubscriptionSchedule”.
- An id for the corresponding object type.
- The resource representing a Stripe “SubscriptionsTrialsResourceTrialSettings”.
- The resource representing a Stripe “TaxProductResourceTaxCalculation”.
- The resource representing a Stripe “TaxProductResourceTaxCalculationLineItem”.
- The resource representing a Stripe “TaxProductResourceTaxCode”.
- An id for the corresponding object type.
- The resource representing a Stripe “TaxDeductedAtSource”.
- An id for the corresponding object type.
- The resource representing a Stripe “tax_id”.
- An id for the corresponding object type.
- The resource representing a Stripe “TaxProductResourceCustomerDetails”.
- The resource representing a Stripe “TaxRate”.
- An id for the corresponding object type.
- The resource representing a Stripe “TerminalConfigurationConfiguration”.
- An id for the corresponding object type.
- The resource representing a Stripe “TerminalConnectionToken”.
- The resource representing a Stripe “TerminalLocationLocation”.
- An id for the corresponding object type.
- The resource representing a Stripe “TerminalReaderReader”.
- An id for the corresponding object type.
- The resource representing a Stripe “TestClock”.
- An id for the corresponding object type.
- The resource representing a Stripe “Token”.
- The resource representing a Stripe “Topup”.
- An id for the corresponding object type.
- The resource representing a Stripe “Transfer”.
- An id for the corresponding object type.
- The resource representing a Stripe “TransferReversal”.
- An id for the corresponding object type.
- The parameters for
Account::update
. - If this is a
card
PaymentMethod, this hash contains the user’s card details. - The parameters for
Charge::update
. - The parameters for
Coupon::update
. - The parameters for
CreditNote::update
. - The parameters for
Customer::update
. - The parameters that can be used when creating or updating a
CustomerBalanceTransaction
. - The parameters for
FileLink::update
. - The parameters for
InvoiceItem::update
. - The parameters for
PaymentIntent::update
. - The parameters for
PaymentLink::update
. - The parameters for
PaymentMethod::update
. - The parameters for
Payout::update
. - The parameters for
Plan::update
. - The parameters for
Price::update
. - The parameters for
Product::update
. - The parameters for
PromotionCode::update
. - The parameters for
Refund::update
. - The parameters for
SetupIntent::update
. - The parameters for
ShippingRate::update
. - The parameters for
Source::update
. - The parameters for
Subscription::update
. - The parameters for
SubscriptionItem::update
. - The parameters for
SubscriptionSchedule::update
. - The parameters for
TaxRate::update
. - The parameters for
Topup::update
. - The parameters for
Transfer::update
. - The parameters for
WebhookEndpoint::update
. - The resource representing a Stripe “UsageRecord”.
- An id for the corresponding object type.
- The resource representing a Stripe “UsageRecordSummary”.
- An id for the corresponding object type.
- The set of parameters that can be used when verifying a Bank Account.
- The resource representing a Stripe “NotificationWebhookEndpoint”.
- An id for the corresponding object type.
Enums§
- An enum representing the possible values of an
Account
’sbusiness_type
field. - An enum representing the possible values of an
AccountCapabilities
’sacss_debit_payments
field. - An enum representing the possible values of an
AccountCapabilities
’saffirm_payments
field. - An enum representing the possible values of an
AccountCapabilities
’safterpay_clearpay_payments
field. - An enum representing the possible values of an
AccountCapabilities
’sbacs_debit_payments
field. - An enum representing the possible values of an
AccountCapabilities
’sbancontact_payments
field. - An enum representing the possible values of an
AccountCapabilities
’sbank_transfer_payments
field. - An enum representing the possible values of an
AccountCapabilities
’sblik_payments
field. - An enum representing the possible values of an
AccountCapabilities
’sboleto_payments
field. - An enum representing the possible values of an
AccountCapabilities
’scartes_bancaires_payments
field. - An enum representing the possible values of an
AccountCapabilities
’scashapp_payments
field. - An enum representing the possible values of an
AccountCapabilities
’seps_payments
field. - An enum representing the possible values of an
AccountCapabilities
’sfpx_payments
field. - An enum representing the possible values of an
AccountCapabilities
’sgiropay_payments
field. - An enum representing the possible values of an
AccountCapabilities
’sgrabpay_payments
field. - An enum representing the possible values of an
AccountCapabilities
’sideal_payments
field. - An enum representing the possible values of an
AccountCapabilities
’sindia_international_payments
field. - An enum representing the possible values of an
AccountCapabilities
’sklarna_payments
field. - An enum representing the possible values of an
AccountCapabilities
’skonbini_payments
field. - An enum representing the possible values of an
AccountCapabilities
’slink_payments
field. - An enum representing the possible values of an
AccountCapabilities
’soxxo_payments
field. - An enum representing the possible values of an
AccountCapabilities
’sp24_payments
field. - An enum representing the possible values of an
AccountCapabilities
’spaynow_payments
field. - An enum representing the possible values of an
AccountCapabilities
’spromptpay_payments
field. - An enum representing the possible values of an
AccountCapabilities
’srevolut_pay_payments
field. - An enum representing the possible values of an
AccountCapabilities
’ssepa_debit_payments
field. - An enum representing the possible values of an
AccountCapabilities
’ssofort_payments
field. - An enum representing the possible values of an
AccountCapabilities
’streasury
field. - An enum representing the possible values of an
AccountCapabilities
’sus_bank_account_ach_payments
field. - An enum representing the possible values of an
AccountCapabilities
’szip_payments
field. - An enum representing the possible values of an
CreateAccountLink
’scollect
field. - An enum representing the possible values of an
CreateAccountLink
’stype_
field. - An enum representing the possible values of an
AccountRequirementsError
’scode
field. - An enum representing the possible values of an
AccountRequirementsError
’scode
field. - An enum representing the possible values of an
AccountRequirementsError
’scode
field. - An enum representing the possible values of an
CreateAccount
’stype_
field. - An enum representing the possible values of an
AccountUnificationAccountController
’stype
field. - An enum representing the possible values of an
ApiErrors
’scode
field. - An enum representing the possible values of an
ApiErrors
’stype
field. - An enum representing the versions of the Stripe API.
- An enum representing the possible values of an
AutomaticTax
’sstatus
field. - An enum representing the possible values of an
BalanceTransaction
’sstatus
field. - An enum representing the possible values of an
BalanceTransaction
’stype
field. - An enum representing the possible values of an
BankAccount
’savailable_payout_methods
field. - An enum representing the possible values of an
BankAccount
’sstatus
field. - An enum representing the possible values of an
BillingPortalSession
’slocale
field. - An enum representing the possible values of an
CancellationDetails
’sfeedback
field. - An enum representing the possible values of an
CancellationDetails
’sreason
field. - An enum representing the possible values of an
AccountCapabilities
’sau_becs_debit_payments
field. - The resource representing a Stripe CaptureMethod object.
- An enum representing the possible values of an
Card
’savailable_payout_methods
field. - An enum representing the possible values of an
CardPresent
’sread_method
field. - The set of PaymentSource parameters that can be used to create a charge.
- An enum representing the possible values of an
Charge
’sstatus
field. - An enum representing the possible values of an
CheckoutAcssDebitMandateOptions
’sdefault_for
field. - An enum representing the possible values of an
CheckoutAcssDebitMandateOptions
’spayment_schedule
field. - An enum representing the possible values of an
CheckoutAcssDebitMandateOptions
’stransaction_type
field. - An enum representing the possible values of an
CheckoutAcssDebitPaymentMethodOptions
’ssetup_future_usage
field. - An enum representing the possible values of an
CheckoutAcssDebitPaymentMethodOptions
’sverification_method
field. - An enum representing the possible values of an
CheckoutAffirmPaymentMethodOptions
’ssetup_future_usage
field. - An enum representing the possible values of an
CheckoutAfterpayClearpayPaymentMethodOptions
’ssetup_future_usage
field. - An enum representing the possible values of an
CheckoutAlipayPaymentMethodOptions
’ssetup_future_usage
field. - An enum representing the possible values of an
CheckoutAuBecsDebitPaymentMethodOptions
’ssetup_future_usage
field. - An enum representing the possible values of an
CheckoutBacsDebitPaymentMethodOptions
’ssetup_future_usage
field. - An enum representing the possible values of an
CheckoutBancontactPaymentMethodOptions
’ssetup_future_usage
field. - An enum representing the possible values of an
CheckoutBoletoPaymentMethodOptions
’ssetup_future_usage
field. - An enum representing the possible values of an
CheckoutCardPaymentMethodOptions
’ssetup_future_usage
field. - An enum representing the possible values of an
CheckoutCashappPaymentMethodOptions
’ssetup_future_usage
field. - An enum representing the possible values of an
CheckoutCustomerBalanceBankTransferPaymentMethodOptions
’srequested_address_types
field. - An enum representing the possible values of an
CheckoutCustomerBalanceBankTransferPaymentMethodOptions
’stype
field. - An enum representing the possible values of an
CheckoutCustomerBalancePaymentMethodOptions
’sfunding_type
field. - An enum representing the possible values of an
CheckoutCustomerBalancePaymentMethodOptions
’ssetup_future_usage
field. - An enum representing the possible values of an
CheckoutEpsPaymentMethodOptions
’ssetup_future_usage
field. - An enum representing the possible values of an
CheckoutFpxPaymentMethodOptions
’ssetup_future_usage
field. - An enum representing the possible values of an
CheckoutGiropayPaymentMethodOptions
’ssetup_future_usage
field. - An enum representing the possible values of an
CheckoutGrabPayPaymentMethodOptions
’ssetup_future_usage
field. - An enum representing the possible values of an
CheckoutIdealPaymentMethodOptions
’ssetup_future_usage
field. - An enum representing the possible values of an
CheckoutKlarnaPaymentMethodOptions
’ssetup_future_usage
field. - An enum representing the possible values of an
CheckoutKonbiniPaymentMethodOptions
’ssetup_future_usage
field. - An enum representing the possible values of an
CheckoutLinkPaymentMethodOptions
’ssetup_future_usage
field. - An enum representing the possible values of an
CheckoutOxxoPaymentMethodOptions
’ssetup_future_usage
field. - An enum representing the possible values of an
CheckoutP24PaymentMethodOptions
’ssetup_future_usage
field. - An enum representing the possible values of an
CheckoutPaynowPaymentMethodOptions
’ssetup_future_usage
field. - An enum representing the possible values of an
CheckoutPaypalPaymentMethodOptions
’scapture_method
field. - An enum representing the possible values of an
CheckoutPaypalPaymentMethodOptions
’ssetup_future_usage
field. - An enum representing the possible values of an
CheckoutSepaDebitPaymentMethodOptions
’ssetup_future_usage
field. - An enum representing the possible values of an
CheckoutSession
’sbilling_address_collection
field. - An enum representing the possible values of an
CheckoutSession
’scustomer_creation
field. - An enum representing the possible values of an
CheckoutSession
’slocale
field. - An enum representing the possible values of an
CheckoutSession
’smode
field. - An enum representing the possible values of an
CheckoutSession
’spayment_method_collection
field. - An enum representing the possible values of an
CheckoutSession
’spayment_status
field. - An enum representing the possible values of an
CheckoutSession
’sredirect_on_completion
field. - An enum representing the possible values of an
CheckoutSession
’sstatus
field. - An enum representing the possible values of an
CheckoutSession
’ssubmit_type
field. - An enum representing the possible values of an
CheckoutSession
’sui_mode
field. - An enum representing the possible values of an
CheckoutSofortPaymentMethodOptions
’ssetup_future_usage
field. - An enum representing the possible values of an
CheckoutUsBankAccountPaymentMethodOptions
’ssetup_future_usage
field. - An enum representing the possible values of an
CheckoutUsBankAccountPaymentMethodOptions
’sverification_method
field. - An enum representing the possible values of an
Invoice
’scollection_method
field. - An enum representing the possible values of an
CompanyParams
’sstructure
field. - An enum representing the possible values of an
Company
’sstructure
field. - The resource representing a Stripe ConfirmationMethod object.
- An enum representing the possible values of an
ConnectAccountReference
’stype
field. - An enum representing the possible values of an
Coupon
’sduration
field. - An enum representing the possible values of an
CreateAccountLinkCollectionOptions
’sfields
field. - An enum representing the possible values of an
CreateAccountLinkCollectionOptions
’sfuture_requirements
field. - An enum representing the possible values of an
CreateBillingPortalSessionFlowDataAfterCompletion
’stype
field. - An enum representing the possible values of an
CreateBillingPortalSessionFlowDataSubscriptionCancelRetention
’stype
field. - An enum representing the possible values of an
CreateBillingPortalSessionFlowData
’stype
field. - An enum representing the possible values of an
CreateCheckoutSessionAutomaticTaxLiability
’stype
field. - An enum representing the possible values of an
CreateCheckoutSessionConsentCollectionPaymentMethodReuseAgreement
’sposition
field. - An enum representing the possible values of an
CreateCheckoutSessionConsentCollection
’spromotions
field. - An enum representing the possible values of an
CreateCheckoutSessionConsentCollection
’sterms_of_service
field. - An enum representing the possible values of an
CreateCheckoutSessionCustomFieldsLabel
’stype
field. - An enum representing the possible values of an
CreateCheckoutSessionCustomFields
’stype
field. - An enum representing the possible values of an
CreateCheckoutSessionCustomerUpdate
’saddress
field. - An enum representing the possible values of an
CreateCheckoutSessionCustomerUpdate
’sname
field. - An enum representing the possible values of an
CreateCheckoutSessionCustomerUpdate
’sshipping
field. - An enum representing the possible values of an
CreateCheckoutSessionInvoiceCreationInvoiceDataIssuer
’stype
field. - An enum representing the possible values of an
CreateCheckoutSessionInvoiceCreationInvoiceDataRenderingOptions
’samount_tax_display
field. - An enum representing the possible values of an
CreateCheckoutSessionLineItemsPriceDataRecurring
’sinterval
field. - An enum representing the possible values of an
CreateCheckoutSessionLineItemsPriceData
’stax_behavior
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentIntentData
’scapture_method
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentIntentData
’ssetup_future_usage
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsAcssDebitMandateOptions
’sdefault_for
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsAcssDebitMandateOptions
’spayment_schedule
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsAcssDebitMandateOptions
’stransaction_type
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsAcssDebit
’ssetup_future_usage
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsAcssDebit
’sverification_method
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsAffirm
’ssetup_future_usage
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsAfterpayClearpay
’ssetup_future_usage
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsAlipay
’ssetup_future_usage
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsAuBecsDebit
’ssetup_future_usage
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsBacsDebit
’ssetup_future_usage
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsBancontact
’ssetup_future_usage
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsBoleto
’ssetup_future_usage
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsCard
’ssetup_future_usage
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsCashapp
’ssetup_future_usage
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsCustomerBalanceBankTransfer
’srequested_address_types
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsCustomerBalanceBankTransfer
’stype
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsCustomerBalance
’sfunding_type
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsCustomerBalance
’ssetup_future_usage
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsEps
’ssetup_future_usage
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsFpx
’ssetup_future_usage
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsGiropay
’ssetup_future_usage
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsGrabpay
’ssetup_future_usage
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsIdeal
’ssetup_future_usage
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsKlarna
’ssetup_future_usage
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsKonbini
’ssetup_future_usage
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsLink
’ssetup_future_usage
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsOxxo
’ssetup_future_usage
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsP24
’ssetup_future_usage
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsPaynow
’ssetup_future_usage
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsPaypal
’scapture_method
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsPaypal
’spreferred_locale
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsPaypal
’ssetup_future_usage
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsRevolutPay
’ssetup_future_usage
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsSepaDebit
’ssetup_future_usage
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsSofort
’ssetup_future_usage
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsUsBankAccountFinancialConnections
’spermissions
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsUsBankAccountFinancialConnections
’sprefetch
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsUsBankAccount
’ssetup_future_usage
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsUsBankAccount
’sverification_method
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsWechatPay
’sclient
field. - An enum representing the possible values of an
CreateCheckoutSessionPaymentMethodOptionsWechatPay
’ssetup_future_usage
field. - An enum representing the possible values of an
CreateCheckoutSession
’spayment_method_types
field. - An enum representing the possible values of an
CreateCheckoutSessionShippingAddressCollection
’sallowed_countries
field. - An enum representing the possible values of an
CreateCheckoutSessionShippingOptionsShippingRateDataDeliveryEstimateMaximum
’sunit
field. - An enum representing the possible values of an
CreateCheckoutSessionShippingOptionsShippingRateDataDeliveryEstimateMinimum
’sunit
field. - An enum representing the possible values of an
CreateCheckoutSessionShippingOptionsShippingRateDataFixedAmountCurrencyOptions
’stax_behavior
field. - An enum representing the possible values of an
CreateCheckoutSessionShippingOptionsShippingRateData
’stax_behavior
field. - An enum representing the possible values of an
CreateCheckoutSessionShippingOptionsShippingRateData
’stype
field. - An enum representing the possible values of an
CreateCheckoutSessionSubscriptionDataInvoiceSettingsIssuer
’stype
field. - An enum representing the possible values of an
CreateCheckoutSessionSubscriptionData
’sproration_behavior
field. - An enum representing the possible values of an
CreateCheckoutSessionSubscriptionDataTrialSettingsEndBehavior
’smissing_payment_method
field. - An enum representing the possible values of an
CreateCreditNoteLines
’stype
field. - An enum representing the possible values of an
CreateCustomerCashBalanceSettings
’sreconciliation_mode
field. - An enum representing the possible values of an
CreateCustomerTax
’svalidate_location
field. - An enum representing the possible values of an
CreateInvoiceAutomaticTaxLiability
’stype
field. - An enum representing the possible values of an
CreateInvoiceFromInvoice
’saction
field. - An enum representing the possible values of an
CreateInvoiceIssuer
’stype
field. - An enum representing the possible values of an
CreateInvoicePaymentSettingsPaymentMethodOptionsAcssDebitMandateOptions
’stransaction_type
field. - An enum representing the possible values of an
CreateInvoicePaymentSettingsPaymentMethodOptionsAcssDebit
’sverification_method
field. - An enum representing the possible values of an
CreateInvoicePaymentSettingsPaymentMethodOptionsBancontact
’spreferred_language
field. - An enum representing the possible values of an
CreateInvoicePaymentSettingsPaymentMethodOptionsCardInstallmentsPlan
’sinterval
field. - An enum representing the possible values of an
CreateInvoicePaymentSettingsPaymentMethodOptionsCardInstallmentsPlan
’stype
field. - An enum representing the possible values of an
CreateInvoicePaymentSettingsPaymentMethodOptionsCard
’srequest_three_d_secure
field. - An enum representing the possible values of an
CreateInvoicePaymentSettingsPaymentMethodOptionsUsBankAccountFinancialConnections
’spermissions
field. - An enum representing the possible values of an
CreateInvoicePaymentSettingsPaymentMethodOptionsUsBankAccountFinancialConnections
’sprefetch
field. - An enum representing the possible values of an
CreateInvoicePaymentSettingsPaymentMethodOptionsUsBankAccount
’sverification_method
field. - An enum representing the possible values of an
CreateInvoicePaymentSettings
’spayment_method_types
field. - An enum representing the possible values of an
CreateInvoiceRendering
’samount_tax_display
field. - An enum representing the possible values of an
CreateInvoiceRenderingOptions
’samount_tax_display
field. - An enum representing the possible values of an
CreateInvoiceRenderingPdf
’spage_size
field. - An enum representing the possible values of an
CreateInvoiceShippingCostShippingRateDataDeliveryEstimateMaximum
’sunit
field. - An enum representing the possible values of an
CreateInvoiceShippingCostShippingRateDataDeliveryEstimateMinimum
’sunit
field. - An enum representing the possible values of an
CreateInvoiceShippingCostShippingRateDataFixedAmountCurrencyOptions
’stax_behavior
field. - An enum representing the possible values of an
CreateInvoiceShippingCostShippingRateData
’stax_behavior
field. - An enum representing the possible values of an
CreateInvoiceShippingCostShippingRateData
’stype
field. - An enum representing the possible values of an
CreatePaymentIntentAutomaticPaymentMethods
’sallow_redirects
field. - An enum representing the possible values of an
CreatePaymentIntentMandateDataCustomerAcceptance
’stype
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodDataEps
’sbank
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodDataFpx
’saccount_holder_type
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodDataFpx
’sbank
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodDataIdeal
’sbank
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodDataP24
’sbank
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodDataSofort
’scountry
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodData
’stype
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodDataUsBankAccount
’saccount_holder_type
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodDataUsBankAccount
’saccount_type
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsAcssDebitMandateOptions
’spayment_schedule
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsAcssDebitMandateOptions
’stransaction_type
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsAcssDebit
’ssetup_future_usage
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsAcssDebit
’sverification_method
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsAffirm
’scapture_method
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsAffirm
’ssetup_future_usage
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsAfterpayClearpay
’scapture_method
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsAfterpayClearpay
’ssetup_future_usage
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsAlipay
’ssetup_future_usage
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsAuBecsDebit
’ssetup_future_usage
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsBacsDebit
’ssetup_future_usage
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsBancontact
’spreferred_language
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsBancontact
’ssetup_future_usage
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsBoleto
’ssetup_future_usage
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsCard
’scapture_method
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsCardInstallmentsPlan
’sinterval
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsCardInstallmentsPlan
’stype
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsCardMandateOptions
’samount_type
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsCardMandateOptions
’sinterval
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsCardMandateOptions
’ssupported_types
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsCard
’snetwork
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsCard
’srequest_extended_authorization
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsCard
’srequest_incremental_authorization
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsCard
’srequest_multicapture
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsCard
’srequest_overcapture
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsCard
’srequest_three_d_secure
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsCard
’ssetup_future_usage
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsCardThreeDSecure
’sares_trans_status
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsCardThreeDSecure
’selectronic_commerce_indicator
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsCardThreeDSecure
’sexemption_indicator
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsCardThreeDSecureNetworkOptionsCartesBancaires
’scb_avalgo
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsCardThreeDSecure
’sversion
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsCashapp
’scapture_method
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsCashapp
’ssetup_future_usage
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsCustomerBalanceBankTransfer
’srequested_address_types
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsCustomerBalanceBankTransfer
’stype
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsCustomerBalance
’sfunding_type
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsCustomerBalance
’ssetup_future_usage
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsEps
’ssetup_future_usage
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsFpx
’ssetup_future_usage
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsGiropay
’ssetup_future_usage
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsGrabpay
’ssetup_future_usage
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsIdeal
’ssetup_future_usage
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsKlarna
’scapture_method
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsKlarna
’spreferred_locale
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsKlarna
’ssetup_future_usage
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsKonbini
’ssetup_future_usage
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsLink
’scapture_method
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsLink
’ssetup_future_usage
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsOxxo
’ssetup_future_usage
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsP24
’ssetup_future_usage
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsPaynow
’ssetup_future_usage
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsPaypal
’scapture_method
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsPaypal
’spreferred_locale
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsPaypal
’ssetup_future_usage
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsPix
’ssetup_future_usage
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsPromptpay
’ssetup_future_usage
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsRevolutPay
’ssetup_future_usage
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsSepaDebit
’ssetup_future_usage
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsSofort
’spreferred_language
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsSofort
’ssetup_future_usage
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsUsBankAccountFinancialConnections
’spermissions
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsUsBankAccountFinancialConnections
’sprefetch
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsUsBankAccountMandateOptions
’scollection_method
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsUsBankAccountNetworks
’srequested
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsUsBankAccount
’spreferred_settlement_speed
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsUsBankAccount
’ssetup_future_usage
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsUsBankAccount
’sverification_method
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsWechatPay
’sclient
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsWechatPay
’ssetup_future_usage
field. - An enum representing the possible values of an
CreatePaymentIntentPaymentMethodOptionsZip
’ssetup_future_usage
field. - An enum representing the possible values of an
CreatePaymentLinkAfterCompletion
’stype
field. - An enum representing the possible values of an
CreatePaymentLinkAutomaticTaxLiability
’stype
field. - An enum representing the possible values of an
CreatePaymentLinkConsentCollectionPaymentMethodReuseAgreement
’sposition
field. - An enum representing the possible values of an
CreatePaymentLinkConsentCollection
’spromotions
field. - An enum representing the possible values of an
CreatePaymentLinkConsentCollection
’sterms_of_service
field. - An enum representing the possible values of an
CreatePaymentLinkCustomFieldsLabel
’stype
field. - An enum representing the possible values of an
CreatePaymentLinkCustomFields
’stype
field. - An enum representing the possible values of an
CreatePaymentLinkInvoiceCreationInvoiceDataIssuer
’stype
field. - An enum representing the possible values of an
CreatePaymentLinkInvoiceCreationInvoiceDataRenderingOptions
’samount_tax_display
field. - An enum representing the possible values of an
CreatePaymentLinkPaymentIntentData
’scapture_method
field. - An enum representing the possible values of an
CreatePaymentLinkPaymentIntentData
’ssetup_future_usage
field. - An enum representing the possible values of an
CreatePaymentLink
’spayment_method_types
field. - An enum representing the possible values of an
CreatePaymentLinkShippingAddressCollection
’sallowed_countries
field. - An enum representing the possible values of an
CreatePaymentLinkSubscriptionDataInvoiceSettingsIssuer
’stype
field. - An enum representing the possible values of an
CreatePaymentLinkSubscriptionDataTrialSettingsEndBehavior
’smissing_payment_method
field. - If this is a
card
PaymentMethod, this hash contains the user’s card details. - An enum representing the possible values of an
CreatePaymentMethodEps
’sbank
field. - An enum representing the possible values of an
CreatePaymentMethodFpx
’saccount_holder_type
field. - An enum representing the possible values of an
CreatePaymentMethodFpx
’sbank
field. - An enum representing the possible values of an
CreatePaymentMethodIdeal
’sbank
field. - An enum representing the possible values of an
CreatePaymentMethodP24
’sbank
field. - An enum representing the possible values of an
CreatePaymentMethodSofort
’scountry
field. - An enum representing the possible values of an
CreatePaymentMethodUsBankAccount
’saccount_holder_type
field. - An enum representing the possible values of an
CreatePaymentMethodUsBankAccount
’saccount_type
field. - An enum representing the possible values of an
CreatePriceCurrencyOptions
’stax_behavior
field. - An enum representing the possible values of an
CreatePriceRecurring
’saggregate_usage
field. - An enum representing the possible values of an
CreatePriceRecurring
’sinterval
field. - An enum representing the possible values of an
CreatePriceRecurring
’susage_type
field. - An enum representing the possible values of an
CreatePriceTransformQuantity
’sround
field. - An enum representing the possible values of an
CreateProductDefaultPriceDataCurrencyOptions
’stax_behavior
field. - An enum representing the possible values of an
CreateProductDefaultPriceDataRecurring
’sinterval
field. - An enum representing the possible values of an
CreateProductDefaultPriceData
’stax_behavior
field. - An enum representing the possible values of an
CreateSetupIntentAutomaticPaymentMethods
’sallow_redirects
field. - An enum representing the possible values of an
CreateSetupIntent
’sflow_directions
field. - An enum representing the possible values of an
CreateSetupIntentMandateDataCustomerAcceptance
’stype
field. - An enum representing the possible values of an
CreateSetupIntentPaymentMethodDataEps
’sbank
field. - An enum representing the possible values of an
CreateSetupIntentPaymentMethodDataFpx
’saccount_holder_type
field. - An enum representing the possible values of an
CreateSetupIntentPaymentMethodDataFpx
’sbank
field. - An enum representing the possible values of an
CreateSetupIntentPaymentMethodDataIdeal
’sbank
field. - An enum representing the possible values of an
CreateSetupIntentPaymentMethodDataP24
’sbank
field. - An enum representing the possible values of an
CreateSetupIntentPaymentMethodDataSofort
’scountry
field. - An enum representing the possible values of an
CreateSetupIntentPaymentMethodData
’stype
field. - An enum representing the possible values of an
CreateSetupIntentPaymentMethodDataUsBankAccount
’saccount_holder_type
field. - An enum representing the possible values of an
CreateSetupIntentPaymentMethodDataUsBankAccount
’saccount_type
field. - An enum representing the possible values of an
CreateSetupIntentPaymentMethodOptionsAcssDebitMandateOptions
’sdefault_for
field. - An enum representing the possible values of an
CreateSetupIntentPaymentMethodOptionsAcssDebitMandateOptions
’spayment_schedule
field. - An enum representing the possible values of an
CreateSetupIntentPaymentMethodOptionsAcssDebitMandateOptions
’stransaction_type
field. - An enum representing the possible values of an
CreateSetupIntentPaymentMethodOptionsAcssDebit
’sverification_method
field. - An enum representing the possible values of an
CreateSetupIntentPaymentMethodOptionsCardMandateOptions
’samount_type
field. - An enum representing the possible values of an
CreateSetupIntentPaymentMethodOptionsCardMandateOptions
’sinterval
field. - An enum representing the possible values of an
CreateSetupIntentPaymentMethodOptionsCardMandateOptions
’ssupported_types
field. - An enum representing the possible values of an
CreateSetupIntentPaymentMethodOptionsCard
’snetwork
field. - An enum representing the possible values of an
CreateSetupIntentPaymentMethodOptionsCard
’srequest_three_d_secure
field. - An enum representing the possible values of an
CreateSetupIntentPaymentMethodOptionsCardThreeDSecure
’sares_trans_status
field. - An enum representing the possible values of an
CreateSetupIntentPaymentMethodOptionsCardThreeDSecure
’selectronic_commerce_indicator
field. - An enum representing the possible values of an
CreateSetupIntentPaymentMethodOptionsCardThreeDSecureNetworkOptionsCartesBancaires
’scb_avalgo
field. - An enum representing the possible values of an
CreateSetupIntentPaymentMethodOptionsCardThreeDSecure
’sversion
field. - An enum representing the possible values of an
CreateSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnections
’spermissions
field. - An enum representing the possible values of an
CreateSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnections
’sprefetch
field. - An enum representing the possible values of an
CreateSetupIntentPaymentMethodOptionsUsBankAccountMandateOptions
’scollection_method
field. - An enum representing the possible values of an
CreateSetupIntentPaymentMethodOptionsUsBankAccountNetworks
’srequested
field. - An enum representing the possible values of an
CreateSetupIntentPaymentMethodOptionsUsBankAccount
’sverification_method
field. - An enum representing the possible values of an
CreateShippingRateDeliveryEstimateMaximum
’sunit
field. - An enum representing the possible values of an
CreateShippingRateDeliveryEstimateMinimum
’sunit
field. - An enum representing the possible values of an
CreateShippingRateFixedAmountCurrencyOptions
’stax_behavior
field. - An enum representing the possible values of an
CreateSourceSourceOrderItems
’stype
field. - An enum representing the possible values of an
CreateSubscriptionAutomaticTaxLiability
’stype
field. - An enum representing the possible values of an
CreateSubscriptionInvoiceSettingsIssuer
’stype
field. - An enum representing the possible values of an
CreateSubscriptionPaymentSettingsPaymentMethodOptionsAcssDebitMandateOptions
’stransaction_type
field. - An enum representing the possible values of an
CreateSubscriptionPaymentSettingsPaymentMethodOptionsAcssDebit
’sverification_method
field. - An enum representing the possible values of an
CreateSubscriptionPaymentSettingsPaymentMethodOptionsBancontact
’spreferred_language
field. - An enum representing the possible values of an
CreateSubscriptionPaymentSettingsPaymentMethodOptionsCardMandateOptions
’samount_type
field. - An enum representing the possible values of an
CreateSubscriptionPaymentSettingsPaymentMethodOptionsCard
’snetwork
field. - An enum representing the possible values of an
CreateSubscriptionPaymentSettingsPaymentMethodOptionsCard
’srequest_three_d_secure
field. - An enum representing the possible values of an
CreateSubscriptionPaymentSettingsPaymentMethodOptionsUsBankAccountFinancialConnections
’spermissions
field. - An enum representing the possible values of an
CreateSubscriptionPaymentSettingsPaymentMethodOptionsUsBankAccountFinancialConnections
’sprefetch
field. - An enum representing the possible values of an
CreateSubscriptionPaymentSettingsPaymentMethodOptionsUsBankAccount
’sverification_method
field. - An enum representing the possible values of an
CreateSubscriptionPaymentSettings
’spayment_method_types
field. - An enum representing the possible values of an
CreateSubscriptionPaymentSettings
’ssave_default_payment_method
field. - An enum representing the possible values of an
CreateSubscriptionSchedulePhasesAutomaticTaxLiability
’stype
field. - An enum representing the possible values of an
CreateSubscriptionSchedulePhases
’sbilling_cycle_anchor
field. - An enum representing the possible values of an
CreateSubscriptionSchedulePhasesItemsPriceDataRecurring
’sinterval
field. - An enum representing the possible values of an
CreateSubscriptionSchedulePhasesItemsPriceData
’stax_behavior
field. - An enum representing the possible values of an
CreateSubscriptionTrialSettingsEndBehavior
’smissing_payment_method
field. - An enum representing the possible values of an
CreateTokenAccount
’sbusiness_type
field. - The card this token will represent.
- An enum representing the possible values of an
CreditNoteLineItem
’stype
field. - An enum representing the possible values of an
CreditNote
’sreason
field. - An enum representing the possible values of an
CreditNote
’sstatus
field. - An enum representing the possible values of an
CreditNoteTaxAmount
’staxability_reason
field. - An enum representing the possible values of an
CreditNoteTaxAmount
’staxability_reason
field. - An enum representing the possible values of an
CreditNote
’stype
field. - Currency is the list of supported currencies.
- An enum representing the possible values of an
CurrencyOption
’stax_behavior
field. - An enum representing the possible values of an
CustomerAcceptance
’stype
field. - An enum representing the possible values of an
CustomerBalanceCustomerBalanceSettings
’sreconciliation_mode
field. - An enum representing the possible values of an
CustomerBalanceTransaction
’stype
field. - An enum representing the possible values of an
CustomerInvoiceSettingsRenderingOptions
’samount_tax_display
field. - An enum representing the possible values of an
CustomerTax
’sautomatic_tax
field. - An enum representing the possible values of an
Customer
’stax_exempt
field. - An enum representing the possible values of an
CreateCustomer
’stax_exempt
field. - An enum representing the possible values of an
CustomerTaxLocation
’ssource
field. - An enum representing the possible values of an
DisputePaymentMethodDetails
’stype
field. - An enum representing the possible values of an
Dispute
’sstatus
field. - The list of possible values for a RequestError’s code.
- The list of possible values for a RequestError’s type.
- An enum representing the possible values of an
CreateWebhookEndpoint
’senabled_events
field. - An id or object.
- An enum representing the possible values of an
Fee
’stype
field. - An enum representing the possible values of an
ListFiles
’spurpose
field. - An enum representing the possible values of an
FraudDetailsParams
’suser_report
field. - An enum representing the possible values of an
FundingInstructionsBankTransferFinancialAddress
’ssupported_networks
field. - An enum representing the possible values of an
FundingInstructionsBankTransferFinancialAddress
’stype
field. - An enum representing the possible values of an
Invoice
’sbilling_reason
field. - An enum representing the possible values of an
Invoice
’scustomer_tax_exempt
field. - An enum representing the possible values of an
InvoiceItemPriceData
’stax_behavior
field. - An enum representing the possible values of an
InvoiceItemPriceData
’stax_behavior
field. - An enum representing the possible values of an
InvoiceItemPriceData
’stax_behavior
field. - An enum representing the possible values of an
CreateInvoiceItem
’stax_behavior
field. - An enum representing the possible values of an
InvoiceLineItem
’stype
field. - An enum representing the possible values of an
InvoiceMandateOptionsCard
’samount_type
field. - An enum representing the possible values of an
InvoicePaymentMethodOptionsAcssDebitMandateOptions
’stransaction_type
field. - An enum representing the possible values of an
InvoicePaymentMethodOptionsAcssDebit
’sverification_method
field. - An enum representing the possible values of an
InvoicePaymentMethodOptionsBancontact
’spreferred_language
field. - An enum representing the possible values of an
InvoicePaymentMethodOptionsCard
’srequest_three_d_secure
field. - An enum representing the possible values of an
InvoicePaymentMethodOptionsCustomerBalanceBankTransferEuBankTransfer
’scountry
field. - An enum representing the possible values of an
InvoicePaymentMethodOptionsCustomerBalance
’sfunding_type
field. - An enum representing the possible values of an
InvoicePaymentMethodOptionsUsBankAccountLinkedAccountOptions
’spermissions
field. - An enum representing the possible values of an
InvoicePaymentMethodOptionsUsBankAccountLinkedAccountOptions
’sprefetch
field. - An enum representing the possible values of an
InvoicePaymentMethodOptionsUsBankAccount
’sverification_method
field. - An enum representing the possible values of an
CreateInvoice
’spending_invoice_items_behavior
field. - An enum representing the possible values of an
InvoiceRenderingPdf
’spage_size
field. - An enum representing the possible values of an
Invoice
’sstatus
field. - An enum representing the possible values of an
InvoicesPaymentSettings
’spayment_method_types
field. - An enum representing the possible values of an
IssuingAuthorizationAuthenticationExemption
’sclaimed_by
field. - An enum representing the possible values of an
IssuingAuthorizationAuthenticationExemption
’stype
field. - An enum representing the possible values of the
IssuingAuthorizationVerificationData
fields. - An enum representing the possible values of the
IssuingAuthorization
’sauthorization_method
field. - An enum representing the possible values of the
IssuingAuthorizationRequest
’sreason
field. - An enum representing the possible values of an
IssuingAuthorization
’sstatus
field. - An enum representing the possible values of an
IssuingAuthorizationThreeDSecure
’sresult
field. - An enum representing the possible values of an
IssuingAuthorization
’swallet_provider
field. - An enum representing the possible values of an
IssuingCardApplePay
’sineligible_reason
field. - An enum representing the possible values of an
IssuingCard
’scancellation_reason
field. - An enum representing the possible values of an
IssuingCardGooglePay
’sineligible_reason
field. - An enum representing the possible values of an
IssuingCardPin
’sstatus
field. - An enum representing the possible values of an
IssuingCard
’sreplacement_reason
field. - An enum representing the possible values of an
IssuingCardShipping
’scarrier
field. - An enum representing the possible values of an
IssuingCardShipping
’sservice
field. - An enum representing the possible values of an
IssuingCardShipping
’sstatus
field. - An enum representing the possible values of an
IssuingCardShipping
’stype
field. - An enum representing the possible values of an
IssuingCardSpendingLimit
’scategories
field. - An enum representing the possible values of an
IssuingCardSpendingLimit
’sinterval
field. - An enum representing the possible values of an
IssuingCard
’sstatus
field. - An enum representing the possible values of an
IssuingCard
’stype
field. - An enum representing the possible values of an
IssuingCardholder
’spreferred_locales
field. - An enum representing the possible values of an
IssuingCardholderRequirements
’sdisabled_reason
field. - An enum representing the possible values of an
IssuingCardholderRequirements
’spast_due
field. - An enum representing the possible values of an
IssuingCardholderSpendingLimit
’scategories
field. - An enum representing the possible values of an
IssuingCardholderSpendingLimit
’sinterval
field. - An enum representing the possible values of an
IssuingCardholder
’sstatus
field. - An enum representing the possible values of an
IssuingCardholder
’stype
field. - An enum representing the possible values of an
IssuingDisputeCanceledEvidence
’sproduct_type
field. - An enum representing the possible values of an
IssuingDisputeCanceledEvidence
’sreturn_status
field. - An enum representing the possible values of an
IssuingDisputeEvidence
’sreason
field. - An enum representing the possible values of an
IssuingDisputeMerchandiseNotAsDescribedEvidence
’sreturn_status
field. - An enum representing the possible values of an
IssuingDisputeNotReceivedEvidence
’sproduct_type
field. - An enum representing the possible values of an
IssuingDisputeOtherEvidence
’sproduct_type
field. - An enum representing the possible values of an
IssuingDispute
’sreason
field. - An enum representing the possible values of an
IssuingDispute
’sstatus
field. - An enum representing the possible values of an
IssuingNetworkTokenDevice
’stype
field. - An enum representing the possible values of an
IssuingNetworkTokenNetworkData
’stype
field. - An enum representing the possible values of an
IssuingNetworkTokenWalletProvider
’scard_number_source
field. - An enum representing the possible values of an
IssuingNetworkTokenWalletProvider
’sreason_codes
field. - An enum representing the possible values of an
IssuingNetworkTokenWalletProvider
’ssuggested_decision
field. - An enum representing the possible values of an
IssuingToken
’snetwork
field. - An enum representing the possible values of an
IssuingToken
’sstatus
field. - An enum representing the possible values of an
IssuingToken
’swallet_provider
field. - An enum representing the possible values of an
IssuingTransaction
’stype
field. - An enum representing the possible values of an
IssuingTransaction
’swallet
field. - An enum representing the possible values of an
LineItemsTaxAmount
’staxability_reason
field. - An enum representing the possible values of an
LineItemsTaxAmount
’staxability_reason
field. - An enum representing the possible values of an
LineItemsTaxAmount
’staxability_reason
field. - An enum representing the possible values of an
LineItemsTaxAmount
’staxability_reason
field. - An enum representing the possible values of an
LinkedAccountOptionsUsBankAccount
’spermissions
field. - An enum representing the possible values of an
LinkedAccountOptionsUsBankAccount
’sprefetch
field. - An enum representing the possible values of an
ListPricesRecurring
’sinterval
field. - An enum representing the possible values of an
ListPricesRecurring
’susage_type
field. - An enum representing the possible values of an
MandateAcssDebit
’sdefault_for
field. - An enum representing the possible values of an
MandateAcssDebit
’spayment_schedule
field. - An enum representing the possible values of an
MandateAcssDebit
’stransaction_type
field. - An enum representing the possible values of an
MandateBacsDebit
’snetwork_status
field. - An enum representing the possible values of an
MandateBacsDebit
’srevocation_reason
field. - An enum representing the possible values of an
Mandate
’sstatus
field. - An enum representing the possible values of an
Mandate
’stype
field. - An enum representing the possible values of an
MandateUsBankAccount
’scollection_method
field. - An enum representing the industry of a merchant.
- An enum representing the possible values of an
ListOrders
’sstatus
field. - The resource representing a Stripe PaymentErrorType object.
- An enum representing the possible values of an
PaymentFlowsAutomaticPaymentMethodsPaymentIntent
’sallow_redirects
field. - An enum representing the possible values of an
PaymentFlowsAutomaticPaymentMethodsSetupIntent
’sallow_redirects
field. - An enum representing the possible values of an
PaymentFlowsPrivatePaymentMethodsCardDetailsApiResourceEnterpriseFeaturesExtendedAuthorizationExtendedAuthorization
’sstatus
field. - An enum representing the possible values of an
PaymentFlowsPrivatePaymentMethodsCardDetailsApiResourceEnterpriseFeaturesIncrementalAuthorizationIncrementalAuthorization
’sstatus
field. - An enum representing the possible values of an
PaymentFlowsPrivatePaymentMethodsCardDetailsApiResourceEnterpriseFeaturesOvercaptureOvercapture
’sstatus
field. - An enum representing the possible values of an
PaymentFlowsPrivatePaymentMethodsCardDetailsApiResourceMulticapture
’sstatus
field. - An enum representing the possible values of an
PaymentIntent
’scancellation_reason
field. - An enum representing the possible values of an
PaymentIntent
’scapture_method
field. - An enum representing the possible values of an
PaymentIntent
’sconfirmation_method
field. - Represents the way a
PaymentIntent
needs to be fulfilled. - An enum representing the possible values of an
PaymentIntentNextActionDisplayBankTransferInstructions
’stype
field. - An enum representing the possible values of an
PaymentIntentNextActionVerifyWithMicrodeposits
’smicrodeposit_type
field. - An enum representing the possible values of an
PaymentIntentPaymentMethodOptionsAcssDebit
’ssetup_future_usage
field. - An enum representing the possible values of an
PaymentIntentPaymentMethodOptionsAcssDebit
’sverification_method
field. - An enum representing the possible values of an
PaymentIntentPaymentMethodOptionsAuBecsDebit
’ssetup_future_usage
field. - An enum representing the possible values of an
PaymentIntentPaymentMethodOptionsCard
’scapture_method
field. - An enum representing the possible values of an
PaymentIntentPaymentMethodOptionsCard
’snetwork
field. - An enum representing the possible values of an
PaymentIntentPaymentMethodOptionsCard
’srequest_extended_authorization
field. - An enum representing the possible values of an
PaymentIntentPaymentMethodOptionsCard
’srequest_incremental_authorization
field. - An enum representing the possible values of an
PaymentIntentPaymentMethodOptionsCard
’srequest_multicapture
field. - An enum representing the possible values of an
PaymentIntentPaymentMethodOptionsCard
’srequest_overcapture
field. - An enum representing the possible values of an
PaymentIntentPaymentMethodOptionsCard
’srequest_three_d_secure
field. - An enum representing the possible values of an
PaymentIntentPaymentMethodOptionsCard
’ssetup_future_usage
field. - An enum representing the possible values of an
PaymentIntentPaymentMethodOptionsEps
’ssetup_future_usage
field. - An enum representing the possible values of an
PaymentIntentPaymentMethodOptionsLink
’scapture_method
field. - An enum representing the possible values of an
PaymentIntentPaymentMethodOptionsLink
’ssetup_future_usage
field. - An enum representing the possible values of an
PaymentIntentPaymentMethodOptionsMandateOptionsAcssDebit
’spayment_schedule
field. - An enum representing the possible values of an
PaymentIntentPaymentMethodOptionsMandateOptionsAcssDebit
’stransaction_type
field. - An enum representing the possible values of an
PaymentIntentPaymentMethodOptionsSepaDebit
’ssetup_future_usage
field. - An enum representing the possible values of an
PaymentIntentPaymentMethodOptionsUsBankAccount
’spreferred_settlement_speed
field. - An enum representing the possible values of an
PaymentIntentPaymentMethodOptionsUsBankAccount
’ssetup_future_usage
field. - An enum representing the possible values of an
PaymentIntentPaymentMethodOptionsUsBankAccount
’sverification_method
field. - An enum representing the possible values of an
PaymentIntentProcessing
’stype
field. - An enum representing the possible values of an
PaymentIntent
’ssetup_future_usage
field. - An enum representing the possible values of an
UpdatePaymentIntent
’ssetup_future_usage
field. - An enum representing the possible values of an
PaymentIntent
’sstatus
field. - An enum representing the possible values of an
PaymentLink
’sbilling_address_collection
field. - An enum representing the possible values of an
PaymentLink
’scustomer_creation
field. - An enum representing the possible values of an
PaymentLink
’spayment_method_collection
field. - An enum representing the possible values of an
PaymentLink
’spayment_method_types
field. - An enum representing the possible values of an
PaymentLink
’ssubmit_type
field. - An enum representing the possible values of an
PaymentLinksResourceAfterCompletion
’stype
field. - An enum representing the possible values of an
PaymentLinksResourceConsentCollection
’spromotions
field. - An enum representing the possible values of an
PaymentLinksResourceConsentCollection
’sterms_of_service
field. - An enum representing the possible values of an
PaymentLinksResourceCustomFieldsLabel
’stype
field. - An enum representing the possible values of an
PaymentLinksResourceCustomFields
’stype
field. - An enum representing the possible values of an
PaymentLinksResourcePaymentIntentData
’scapture_method
field. - An enum representing the possible values of an
PaymentLinksResourcePaymentIntentData
’ssetup_future_usage
field. - An enum representing the possible values of an
PaymentLinksResourcePaymentMethodReuseAgreement
’sposition
field. - An enum representing the possible values of an
PaymentLinksResourceShippingAddressCollection
’sallowed_countries
field. - An enum representing the possible values of an
PaymentMethodDetailsAchDebit
’saccount_holder_type
field. - An enum representing the possible values of an
PaymentMethodDetailsBancontact
’spreferred_language
field. - An enum representing the possible values of an
PaymentMethodDetailsCardPresent
’sread_method
field. - An enum representing the possible values of an
PaymentMethodDetailsCardPresentReceipt
’saccount_type
field. - An enum representing the possible values of an
PaymentMethodDetailsCardWallet
’stype
field. - An enum representing the possible values of an
PaymentMethodDetailsEps
’sbank
field. - An enum representing the possible values of an
PaymentMethodDetailsFpx
’saccount_holder_type
field. - An enum representing the possible values of an
PaymentMethodDetailsFpx
’sbank
field. - An enum representing the possible values of an
PaymentMethodDetailsIdeal
’sbank
field. - An enum representing the possible values of an
PaymentMethodDetailsIdeal
’sbic
field. - An enum representing the possible values of an
PaymentMethodDetailsInteracPresent
’sread_method
field. - An enum representing the possible values of an
PaymentMethodDetailsInteracPresentReceipt
’saccount_type
field. - An enum representing the possible values of an
PaymentMethodDetailsKonbiniStore
’schain
field. - An enum representing the possible values of an
PaymentMethodDetailsP24
’sbank
field. - An enum representing the possible values of an
PaymentMethodDetailsSofort
’spreferred_language
field. - An enum representing the possible values of an
PaymentMethodDetailsUsBankAccount
’saccount_holder_type
field. - An enum representing the possible values of an
PaymentMethodDetailsUsBankAccount
’saccount_type
field. - An enum representing the possible values of an
PaymentMethodEps
’sbank
field. - An enum representing the possible values of an
PaymentMethodFpx
’saccount_holder_type
field. - An enum representing the possible values of an
PaymentMethodFpx
’sbank
field. - An enum representing the possible values of an
PaymentMethodIdeal
’sbank
field. - An enum representing the possible values of an
PaymentMethodIdeal
’sbic
field. - An enum representing the possible values of an
PaymentMethodInteracPresent
’sread_method
field. - An enum representing the possible values of an
PaymentMethodOptionsAffirm
’scapture_method
field. - An enum representing the possible values of an
PaymentMethodOptionsAffirm
’ssetup_future_usage
field. - An enum representing the possible values of an
PaymentMethodOptionsAfterpayClearpay
’scapture_method
field. - An enum representing the possible values of an
PaymentMethodOptionsAfterpayClearpay
’ssetup_future_usage
field. - An enum representing the possible values of an
PaymentMethodOptionsAlipay
’ssetup_future_usage
field. - An enum representing the possible values of an
PaymentMethodOptionsBacsDebit
’ssetup_future_usage
field. - An enum representing the possible values of an
PaymentMethodOptionsBancontact
’spreferred_language
field. - An enum representing the possible values of an
PaymentMethodOptionsBancontact
’ssetup_future_usage
field. - An enum representing the possible values of an
PaymentMethodOptionsBoleto
’ssetup_future_usage
field. - An enum representing the possible values of an
PaymentMethodOptionsCardMandateOptions
’samount_type
field. - An enum representing the possible values of an
PaymentMethodOptionsCardMandateOptions
’sinterval
field. - An enum representing the possible values of an
PaymentMethodOptionsCardMandateOptions
’ssupported_types
field. - An enum representing the possible values of an
PaymentMethodOptionsCashapp
’scapture_method
field. - An enum representing the possible values of an
PaymentMethodOptionsCashapp
’ssetup_future_usage
field. - An enum representing the possible values of an
PaymentMethodOptionsCustomerBalanceBankTransfer
’srequested_address_types
field. - An enum representing the possible values of an
PaymentMethodOptionsCustomerBalanceBankTransfer
’stype
field. - An enum representing the possible values of an
PaymentMethodOptionsCustomerBalanceEuBankAccount
’scountry
field. - An enum representing the possible values of an
PaymentMethodOptionsCustomerBalance
’sfunding_type
field. - An enum representing the possible values of an
PaymentMethodOptionsCustomerBalance
’ssetup_future_usage
field. - An enum representing the possible values of an
PaymentMethodOptionsFpx
’ssetup_future_usage
field. - An enum representing the possible values of an
PaymentMethodOptionsGiropay
’ssetup_future_usage
field. - An enum representing the possible values of an
PaymentMethodOptionsGrabpay
’ssetup_future_usage
field. - An enum representing the possible values of an
PaymentMethodOptionsIdeal
’ssetup_future_usage
field. - An enum representing the possible values of an
PaymentMethodOptionsKlarna
’scapture_method
field. - An enum representing the possible values of an
PaymentMethodOptionsKlarna
’ssetup_future_usage
field. - An enum representing the possible values of an
PaymentMethodOptionsKonbini
’ssetup_future_usage
field. - An enum representing the possible values of an
PaymentMethodOptionsOxxo
’ssetup_future_usage
field. - An enum representing the possible values of an
PaymentMethodOptionsP24
’ssetup_future_usage
field. - An enum representing the possible values of an
PaymentMethodOptionsPaynow
’ssetup_future_usage
field. - An enum representing the possible values of an
PaymentMethodOptionsPaypal
’scapture_method
field. - An enum representing the possible values of an
PaymentMethodOptionsPaypal
’ssetup_future_usage
field. - An enum representing the possible values of an
PaymentMethodOptionsPix
’ssetup_future_usage
field. - An enum representing the possible values of an
PaymentMethodOptionsPromptpay
’ssetup_future_usage
field. - An enum representing the possible values of an
PaymentMethodOptionsSofort
’spreferred_language
field. - An enum representing the possible values of an
PaymentMethodOptionsSofort
’ssetup_future_usage
field. - An enum representing the possible values of an
PaymentMethodOptionsUsBankAccountMandateOptions
’scollection_method
field. - An enum representing the possible values of an
PaymentMethodOptionsWechatPay
’sclient
field. - An enum representing the possible values of an
PaymentMethodOptionsWechatPay
’ssetup_future_usage
field. - An enum representing the possible values of an
PaymentMethodOptionsZip
’ssetup_future_usage
field. - An enum representing the possible values of an
PaymentMethodP24
’sbank
field. - An enum representing the possible values of an
PaymentMethod
’stype
field. - An enum representing the possible values of an
ListPaymentMethods
’stype_
field. - An enum representing the possible values of an
PaymentMethodUsBankAccount
’saccount_holder_type
field. - An enum representing the possible values of an
PaymentMethodUsBankAccount
’saccount_type
field. - An enum representing the possible values of an
PaymentMethodUsBankAccountBlocked
’snetwork_code
field. - An enum representing the possible values of an
PaymentMethodUsBankAccountBlocked
’sreason
field. - An enum representing the possible values of an
PaymentPagesCheckoutSessionAutomaticTax
’sstatus
field. - An enum representing the possible values of an
PaymentPagesCheckoutSessionConsentCollection
’spromotions
field. - An enum representing the possible values of an
PaymentPagesCheckoutSessionConsentCollection
’sterms_of_service
field. - An enum representing the possible values of an
PaymentPagesCheckoutSessionConsent
’spromotions
field. - An enum representing the possible values of an
PaymentPagesCheckoutSessionConsent
’sterms_of_service
field. - An enum representing the possible values of an
PaymentPagesCheckoutSessionCustomFieldsLabel
’stype
field. - An enum representing the possible values of an
PaymentPagesCheckoutSessionCustomFields
’stype
field. - An enum representing the possible values of an
PaymentPagesCheckoutSessionCustomerDetails
’stax_exempt
field. - An enum representing the possible values of an
PaymentPagesCheckoutSessionPaymentMethodReuseAgreement
’sposition
field. - An enum representing the possible values of an
PaymentPagesCheckoutSessionShippingAddressCollection
’sallowed_countries
field. - An enum representing the possible values of an
PaymentPagesCheckoutSessionTaxId
’stype
field. - A PaymentSource represents a payment method associated with a customer or charge. This value is usually returned as a subresource on another request.
- A PaymentSourceParams represents all of the supported ways that can be used to creating a new customer with a payment method or creating a payment method directly for a customer via
Customer::attach_source
. - An enum representing the possible values of an
CreatePayout
’smethod
field. - An enum representing the possible values of an
Payout
’sreconciliation_status
field. - An enum representing the possible values of an
CreatePayout
’ssource_type
field. - An enum representing the possible values of an
Payout
’stype
field. - An enum representing the possible values of an
PaypalSellerProtection
’sdispute_categories
field. - An enum representing the possible values of an
PaypalSellerProtection
’sstatus
field. - An enum representing the possible values of an
PersonParams
’spolitical_exposure
field. - An enum representing the possible values of an
Person
’spolitical_exposure
field. - An enum representing the possible values of an
Plan
’saggregate_usage
field. - An enum representing the possible values of an
Plan
’sbilling_scheme
field. - An enum representing the possible values of an
Plan
’sinterval
field. - An enum representing the possible values of an
SubscriptionItemPriceDataRecurring
’sinterval
field. - An enum representing the possible values of an
SubscriptionPendingInvoiceItemInterval
’sinterval
field. - An enum representing the possible values of an
Plan
’stiers_mode
field. - An enum representing the possible values of an
Plan
’susage_type
field. - An enum representing the possible values of an
PortalCustomerUpdate
’sallowed_updates
field. - An enum representing the possible values of an
PortalFlowsFlowAfterCompletion
’stype
field. - An enum representing the possible values of an
PortalFlowsFlow
’stype
field. - An enum representing the possible values of an
PortalFlowsRetention
’stype
field. - An enum representing the possible values of an
PortalSubscriptionCancel
’smode
field. - An enum representing the possible values of an
PortalSubscriptionCancel
’sproration_behavior
field. - An enum representing the possible values of an
PortalSubscriptionCancellationReason
’soptions
field. - An enum representing the possible values of an
PortalSubscriptionUpdate
’sdefault_allowed_updates
field. - An enum representing the possible values of an
PortalSubscriptionUpdate
’sproration_behavior
field. - An enum representing the possible values of an
Price
’sbilling_scheme
field. - An enum representing the possible values of an
Price
’stax_behavior
field. - An enum representing the possible values of an
Price
’stiers_mode
field. - An enum representing the possible values of an
Price
’stype
field. - An enum representing the possible values of an
Product
’stype
field. - An enum representing the possible values of an
Quote
’scollection_method
field. - An enum representing the possible values of an
Quote
’sstatus
field. - An enum representing the possible values of an
QuotesResourceAutomaticTax
’sstatus
field. - An enum representing the possible values of an
QuotesResourceRecurring
’sinterval
field. - A set of generic request parameters that can be used on list endpoints to filter their results by some timestamp.
- An enum representing the possible values of an
Recurring
’saggregate_usage
field. - An enum representing the possible values of an
Recurring
’sinterval
field. - An enum representing the possible values of an
Recurring
’susage_type
field. - An enum representing the possible values of an
RefundDestinationDetailsCard
’stype
field. - An enum representing the possible values of an
CreateRefund
’sorigin
field. - An enum representing the possible values of an
Refund
’sreason
field. - An enum representing the possible values of an
CreateRefund
’sreason
field. - An enum representing the possible values of an
Review
’sclosed_reason
field. - An enum representing the possible values of an
Review
’sopened_reason
field. - An enum representing the possible values of an
Review
’sreason
field. - An enum representing the possible values of an
SetupAttempt
’sflow_directions
field. - An enum representing the possible values of an
SetupAttemptPaymentMethodDetailsBancontact
’spreferred_language
field. - An enum representing the possible values of an
SetupAttemptPaymentMethodDetailsCardWallet
’stype
field. - An enum representing the possible values of an
SetupAttemptPaymentMethodDetailsIdeal
’sbank
field. - An enum representing the possible values of an
SetupAttemptPaymentMethodDetailsIdeal
’sbic
field. - An enum representing the possible values of an
SetupAttemptPaymentMethodDetailsSofort
’spreferred_language
field. - An enum representing the possible values of an
SetupIntent
’scancellation_reason
field. - An enum representing the possible values of an
SetupIntent
’sflow_directions
field. - An enum representing the possible values of an
SetupIntentNextActionVerifyWithMicrodeposits
’smicrodeposit_type
field. - An enum representing the possible values of an
SetupIntentPaymentMethodOptionsAcssDebit
’sverification_method
field. - An enum representing the possible values of an
SetupIntentPaymentMethodOptionsCardMandateOptions
’samount_type
field. - An enum representing the possible values of an
SetupIntentPaymentMethodOptionsCardMandateOptions
’sinterval
field. - An enum representing the possible values of an
SetupIntentPaymentMethodOptionsCardMandateOptions
’ssupported_types
field. - An enum representing the possible values of an
SetupIntentPaymentMethodOptionsCard
’snetwork
field. - An enum representing the possible values of an
SetupIntentPaymentMethodOptionsCard
’srequest_three_d_secure
field. - An enum representing the possible values of an
SetupIntentPaymentMethodOptionsMandateOptionsAcssDebit
’sdefault_for
field. - An enum representing the possible values of an
SetupIntentPaymentMethodOptionsMandateOptionsAcssDebit
’spayment_schedule
field. - An enum representing the possible values of an
SetupIntentPaymentMethodOptionsMandateOptionsAcssDebit
’stransaction_type
field. - An enum representing the possible values of an
SetupIntentPaymentMethodOptionsUsBankAccount
’sverification_method
field. - An enum representing the possible values of an
SetupIntent
’sstatus
field. - An enum representing the possible values of an
ShippingRateCurrencyOption
’stax_behavior
field. - An enum representing the possible values of an
ShippingRateDeliveryEstimateBound
’sunit
field. - An enum representing the possible values of an
ShippingRate
’stax_behavior
field. - An enum representing the possible values of an
ShippingRate
’stype
field. - An enum representing the possible values of an
SourceAcceptanceParams
’sstatus
field. - An enum representing the possible values of an
SourceAcceptanceParams
’stype
field. - An enum representing the possible values of an
CreateSource
’sflow
field. - An enum representing the possible values of an
SourceMandateParams
’sinterval
field. - An enum representing the possible values of an
SourceMandateParams
’snotification_method
field. - An enum representing the possible values of an
SourceRedirectFlow
’sfailure_reason
field. - An enum representing the possible values of an
SourceRedirectFlow
’sstatus
field. - An enum representing the possible values of an
CreateSourceReceiver
’srefund_attributes_method
field. - An enum representing the possible values of an
Source
’sstatus
field. - An enum representing the possible values of an
Source
’stype
field. - An enum representing the possible values of an
Source
’susage
field. - An error encountered when communicating with the Stripe API.
- An enum representing the possible values of an
UpdateSubscription
’sbilling_cycle_anchor
field. - An enum representing the possible values of an
SubscriptionPendingInvoiceItemInterval
’sinterval
field. - An enum representing the possible values of an
SubscriptionItemPriceDataRecurring
’sinterval
field. - An enum representing the possible values of an
CreateSubscriptionItem
’spayment_behavior
field. - An enum representing the possible values of an
SubscriptionItemPriceData
’stax_behavior
field. - An enum representing the possible values of an
SubscriptionItemPriceData
’stax_behavior
field. - An enum representing the possible values of an
CreateSubscriptionItem
’spayment_behavior
field. - An enum representing the possible values of an
CreateSubscription
’spayment_behavior
field. - An enum representing the possible values of an
SubscriptionPaymentMethodOptionsCard
’snetwork
field. - An enum representing the possible values of an
SubscriptionPaymentMethodOptionsCard
’srequest_three_d_secure
field. - An enum representing the possible values of an
CreateSubscriptionItem
’sproration_behavior
field. - An enum representing the possible values of an
CreateSubscription
’sproration_behavior
field. - An enum representing the possible values of an
SubscriptionSchedulePhaseConfiguration
’sproration_behavior
field. - An enum representing the possible values of an
SubscriptionScheduleDefaultSettings
’sbilling_cycle_anchor
field. - An enum representing the possible values of an
SubscriptionScheduleDefaultSettings
’scollection_method
field. - An enum representing the possible values of an
SubscriptionScheduleDefaultSettingsParamsAutomaticTaxLiability
’stype
field. - An enum representing the possible values of an
SubscriptionScheduleDefaultSettingsParams
’sbilling_cycle_anchor
field. - An enum representing the possible values of an
SubscriptionSchedule
’send_behavior
field. - An enum representing the possible values of an
SubscriptionScheduleInvoiceSettingsIssuer
’stype
field. - An enum representing the possible values of an
SubscriptionSchedulePhaseConfiguration
’sbilling_cycle_anchor
field. - An enum representing the possible values of an
SubscriptionSchedule
’sstatus
field. - An enum representing the possible values of an
Subscription
’sstatus
field. - An enum representing the possible values of an
ListSubscriptions
’sstatus
field. - An enum representing the possible values of an
SubscriptionsResourcePauseCollection
’sbehavior
field. - An enum representing the possible values of an
SubscriptionsResourcePaymentSettings
’spayment_method_types
field. - An enum representing the possible values of an
SubscriptionsResourcePaymentSettings
’ssave_default_payment_method
field. - An enum representing the possible values of an
SubscriptionsTrialsResourceEndBehavior
’smissing_payment_method
field. - An enum representing the possible values of an
TaxAmount
’staxability_reason
field. - An enum representing the possible values of an
TaxAmount
’staxability_reason
field. - An enum representing the possible values of an
TaxCalculationLineItem
’stax_behavior
field. - An enum representing the possible values of an
TaxIdData
’stype
field. - An enum representing the possible values of an
InvoicesResourceInvoiceTaxId
’stype
field. - An enum representing the possible values of an
TaxId
’stype
field. - An enum representing the possible values of an
TaxIdVerification
’sstatus
field. - An enum representing the possible values of an
TaxProductResourceCustomerDetails
’saddress_source
field. - An enum representing the possible values of an
TaxProductResourceCustomerDetailsResourceTaxId
’stype
field. - An enum representing the possible values of an
TaxProductResourceCustomerDetails
’staxability_override
field. - An enum representing the possible values of an
TaxProductResourceJurisdiction
’slevel
field. - An enum representing the possible values of an
TaxProductResourceJurisdiction
’slevel
field. - An enum representing the possible values of an
TaxProductResourceLineItemTaxBreakdown
’ssourcing
field. - An enum representing the possible values of an
TaxProductResourceLineItemTaxBreakdown
’ssourcing
field. - An enum representing the possible values of an
TaxProductResourceLineItemTaxBreakdown
’staxability_reason
field. - An enum representing the possible values of an
TaxProductResourceLineItemTaxBreakdown
’staxability_reason
field. - An enum representing the possible values of an
TaxProductResourceLineItemTaxRateDetails
’stax_type
field. - An enum representing the possible values of an
TaxProductResourceLineItemTaxRateDetails
’stax_type
field. - An enum representing the possible values of an
TaxProductResourceTaxBreakdown
’staxability_reason
field. - An enum representing the possible values of an
TaxProductResourceTaxCalculationShippingCost
’stax_behavior
field. - An enum representing the possible values of an
TaxProductResourceTaxRateDetails
’stax_type
field. - An enum representing the possible values of an
TaxRate
’stax_type
field. - An enum representing the possible values of an
TerminalReader
’sdevice_type
field. - An enum representing the possible values of an
TerminalReaderReaderResourceReaderAction
’sstatus
field. - An enum representing the possible values of an
TerminalReaderReaderResourceReaderAction
’stype
field. - An enum representing the possible values of an
TerminalReaderReaderResourceRefundPaymentAction
’sreason
field. - An enum representing the possible values of an
TerminalReaderReaderResourceSetReaderDisplayAction
’stype
field. - An enum representing the possible values of an
ListTerminalReaders
’sstatus
field. - An enum representing the possible values of an
TestHelpersTestClock
’sstatus
field. - An enum representing the possible values of an
ThreeDSecureDetails
’sauthentication_flow
field. - An enum representing the possible values of an
ThreeDSecureDetailsCharge
’sauthentication_flow
field. - An enum representing the possible values of an
ThreeDSecureDetailsCharge
’selectronic_commerce_indicator
field. - An enum representing the possible values of an
ThreeDSecureDetailsCharge
’sexemption_indicator
field. - An enum representing the possible values of an
ThreeDSecureDetailsCharge
’sresult
field. - An enum representing the possible values of an
ThreeDSecureDetailsCharge
’sresult_reason
field. - An enum representing the possible values of an
ThreeDSecureDetailsCharge
’sversion
field. - An enum representing the possible values of an
ThreeDSecureDetails
’selectronic_commerce_indicator
field. - An enum representing the possible values of an
ThreeDSecureDetails
’sresult
field. - An enum representing the possible values of an
ThreeDSecureDetails
’sresult_reason
field. - An enum representing the possible values of an
ThreeDSecureDetails
’sversion
field. - An enum representing the possible values of an
Token
’stype
field. - An enum representing the possible values of an
Topup
’sstatus
field. - An enum representing the possible values of an
ListTopups
’sstatus
field. - An enum representing the possible values of an
TransferScheduleParams
’sinterval
field. - An enum representing the possible values of an
TransferScheduleParams
’sweekly_anchor
field. - An enum representing the possible values of an
CreateTransfer
’ssource_type
field. - An enum representing the possible values of an
TransformQuantity
’sround
field. - An enum representing the possible values of an
TransformUsage
’sround
field. - An enum representing the possible values of an
UpdateCustomerCashBalanceSettings
’sreconciliation_mode
field. - An enum representing the possible values of an
UpdateCustomerTax
’svalidate_location
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodDataEps
’sbank
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodDataFpx
’saccount_holder_type
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodDataFpx
’sbank
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodDataIdeal
’sbank
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodDataP24
’sbank
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodDataSofort
’scountry
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodData
’stype
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodDataUsBankAccount
’saccount_holder_type
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodDataUsBankAccount
’saccount_type
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsAcssDebitMandateOptions
’spayment_schedule
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsAcssDebitMandateOptions
’stransaction_type
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsAcssDebit
’ssetup_future_usage
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsAcssDebit
’sverification_method
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsAffirm
’scapture_method
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsAffirm
’ssetup_future_usage
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsAfterpayClearpay
’scapture_method
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsAfterpayClearpay
’ssetup_future_usage
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsAlipay
’ssetup_future_usage
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsAuBecsDebit
’ssetup_future_usage
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsBacsDebit
’ssetup_future_usage
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsBancontact
’spreferred_language
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsBancontact
’ssetup_future_usage
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsBoleto
’ssetup_future_usage
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsCard
’scapture_method
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsCardInstallmentsPlan
’sinterval
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsCardInstallmentsPlan
’stype
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsCardMandateOptions
’samount_type
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsCardMandateOptions
’sinterval
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsCardMandateOptions
’ssupported_types
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsCard
’snetwork
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsCard
’srequest_extended_authorization
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsCard
’srequest_incremental_authorization
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsCard
’srequest_multicapture
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsCard
’srequest_overcapture
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsCard
’srequest_three_d_secure
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsCard
’ssetup_future_usage
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsCardThreeDSecure
’sares_trans_status
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsCardThreeDSecure
’selectronic_commerce_indicator
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsCardThreeDSecure
’sexemption_indicator
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsCardThreeDSecureNetworkOptionsCartesBancaires
’scb_avalgo
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsCardThreeDSecure
’sversion
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsCashapp
’scapture_method
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsCashapp
’ssetup_future_usage
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsCustomerBalanceBankTransfer
’srequested_address_types
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsCustomerBalanceBankTransfer
’stype
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsCustomerBalance
’sfunding_type
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsCustomerBalance
’ssetup_future_usage
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsEps
’ssetup_future_usage
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsFpx
’ssetup_future_usage
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsGiropay
’ssetup_future_usage
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsGrabpay
’ssetup_future_usage
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsIdeal
’ssetup_future_usage
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsKlarna
’scapture_method
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsKlarna
’spreferred_locale
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsKlarna
’ssetup_future_usage
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsKonbini
’ssetup_future_usage
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsLink
’scapture_method
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsLink
’ssetup_future_usage
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsOxxo
’ssetup_future_usage
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsP24
’ssetup_future_usage
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsPaynow
’ssetup_future_usage
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsPaypal
’scapture_method
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsPaypal
’spreferred_locale
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsPaypal
’ssetup_future_usage
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsPix
’ssetup_future_usage
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsPromptpay
’ssetup_future_usage
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsRevolutPay
’ssetup_future_usage
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsSepaDebit
’ssetup_future_usage
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsSofort
’spreferred_language
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsSofort
’ssetup_future_usage
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsUsBankAccountFinancialConnections
’spermissions
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsUsBankAccountFinancialConnections
’sprefetch
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsUsBankAccountMandateOptions
’scollection_method
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsUsBankAccountNetworks
’srequested
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsUsBankAccount
’spreferred_settlement_speed
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsUsBankAccount
’ssetup_future_usage
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsUsBankAccount
’sverification_method
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsWechatPay
’sclient
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsWechatPay
’ssetup_future_usage
field. - An enum representing the possible values of an
UpdatePaymentIntentPaymentMethodOptionsZip
’ssetup_future_usage
field. - An enum representing the possible values of an
UpdatePaymentLinkAfterCompletion
’stype
field. - An enum representing the possible values of an
UpdatePaymentLinkAutomaticTaxLiability
’stype
field. - An enum representing the possible values of an
UpdatePaymentLinkCustomFieldsLabel
’stype
field. - An enum representing the possible values of an
UpdatePaymentLinkCustomFields
’stype
field. - An enum representing the possible values of an
UpdatePaymentLinkInvoiceCreationInvoiceDataIssuer
’stype
field. - An enum representing the possible values of an
UpdatePaymentLinkInvoiceCreationInvoiceDataRenderingOptions
’samount_tax_display
field. - An enum representing the possible values of an
UpdatePaymentLink
’spayment_method_types
field. - An enum representing the possible values of an
UpdatePaymentLinkShippingAddressCollection
’sallowed_countries
field. - An enum representing the possible values of an
UpdatePaymentLinkSubscriptionDataInvoiceSettingsIssuer
’stype
field. - An enum representing the possible values of an
UpdatePaymentLinkSubscriptionDataTrialSettingsEndBehavior
’smissing_payment_method
field. - An enum representing the possible values of an
UpdatePaymentMethodUsBankAccount
’saccount_holder_type
field. - An enum representing the possible values of an
UpdatePaymentMethodUsBankAccount
’saccount_type
field. - An enum representing the possible values of an
UpdatePriceCurrencyOptions
’stax_behavior
field. - An enum representing the possible values of an
UpdateSetupIntent
’sflow_directions
field. - An enum representing the possible values of an
UpdateSetupIntentPaymentMethodDataEps
’sbank
field. - An enum representing the possible values of an
UpdateSetupIntentPaymentMethodDataFpx
’saccount_holder_type
field. - An enum representing the possible values of an
UpdateSetupIntentPaymentMethodDataFpx
’sbank
field. - An enum representing the possible values of an
UpdateSetupIntentPaymentMethodDataIdeal
’sbank
field. - An enum representing the possible values of an
UpdateSetupIntentPaymentMethodDataP24
’sbank
field. - An enum representing the possible values of an
UpdateSetupIntentPaymentMethodDataSofort
’scountry
field. - An enum representing the possible values of an
UpdateSetupIntentPaymentMethodData
’stype
field. - An enum representing the possible values of an
UpdateSetupIntentPaymentMethodDataUsBankAccount
’saccount_holder_type
field. - An enum representing the possible values of an
UpdateSetupIntentPaymentMethodDataUsBankAccount
’saccount_type
field. - An enum representing the possible values of an
UpdateSetupIntentPaymentMethodOptionsAcssDebitMandateOptions
’sdefault_for
field. - An enum representing the possible values of an
UpdateSetupIntentPaymentMethodOptionsAcssDebitMandateOptions
’spayment_schedule
field. - An enum representing the possible values of an
UpdateSetupIntentPaymentMethodOptionsAcssDebitMandateOptions
’stransaction_type
field. - An enum representing the possible values of an
UpdateSetupIntentPaymentMethodOptionsAcssDebit
’sverification_method
field. - An enum representing the possible values of an
UpdateSetupIntentPaymentMethodOptionsCardMandateOptions
’samount_type
field. - An enum representing the possible values of an
UpdateSetupIntentPaymentMethodOptionsCardMandateOptions
’sinterval
field. - An enum representing the possible values of an
UpdateSetupIntentPaymentMethodOptionsCardMandateOptions
’ssupported_types
field. - An enum representing the possible values of an
UpdateSetupIntentPaymentMethodOptionsCard
’snetwork
field. - An enum representing the possible values of an
UpdateSetupIntentPaymentMethodOptionsCard
’srequest_three_d_secure
field. - An enum representing the possible values of an
UpdateSetupIntentPaymentMethodOptionsCardThreeDSecure
’sares_trans_status
field. - An enum representing the possible values of an
UpdateSetupIntentPaymentMethodOptionsCardThreeDSecure
’selectronic_commerce_indicator
field. - An enum representing the possible values of an
UpdateSetupIntentPaymentMethodOptionsCardThreeDSecureNetworkOptionsCartesBancaires
’scb_avalgo
field. - An enum representing the possible values of an
UpdateSetupIntentPaymentMethodOptionsCardThreeDSecure
’sversion
field. - An enum representing the possible values of an
UpdateSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnections
’spermissions
field. - An enum representing the possible values of an
UpdateSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnections
’sprefetch
field. - An enum representing the possible values of an
UpdateSetupIntentPaymentMethodOptionsUsBankAccountMandateOptions
’scollection_method
field. - An enum representing the possible values of an
UpdateSetupIntentPaymentMethodOptionsUsBankAccountNetworks
’srequested
field. - An enum representing the possible values of an
UpdateSetupIntentPaymentMethodOptionsUsBankAccount
’sverification_method
field. - An enum representing the possible values of an
UpdateShippingRateFixedAmountCurrencyOptions
’stax_behavior
field. - An enum representing the possible values of an
UpdateSourceSourceOrderItems
’stype
field. - An enum representing the possible values of an
UpdateSubscriptionAutomaticTaxLiability
’stype
field. - An enum representing the possible values of an
UpdateSubscriptionCancellationDetails
’sfeedback
field. - An enum representing the possible values of an
UpdateSubscriptionInvoiceSettingsIssuer
’stype
field. - An enum representing the possible values of an
UpdateSubscriptionPauseCollection
’sbehavior
field. - An enum representing the possible values of an
UpdateSubscriptionPaymentSettingsPaymentMethodOptionsAcssDebitMandateOptions
’stransaction_type
field. - An enum representing the possible values of an
UpdateSubscriptionPaymentSettingsPaymentMethodOptionsAcssDebit
’sverification_method
field. - An enum representing the possible values of an
UpdateSubscriptionPaymentSettingsPaymentMethodOptionsBancontact
’spreferred_language
field. - An enum representing the possible values of an
UpdateSubscriptionPaymentSettingsPaymentMethodOptionsCardMandateOptions
’samount_type
field. - An enum representing the possible values of an
UpdateSubscriptionPaymentSettingsPaymentMethodOptionsCard
’snetwork
field. - An enum representing the possible values of an
UpdateSubscriptionPaymentSettingsPaymentMethodOptionsCard
’srequest_three_d_secure
field. - An enum representing the possible values of an
UpdateSubscriptionPaymentSettingsPaymentMethodOptionsUsBankAccountFinancialConnections
’spermissions
field. - An enum representing the possible values of an
UpdateSubscriptionPaymentSettingsPaymentMethodOptionsUsBankAccountFinancialConnections
’sprefetch
field. - An enum representing the possible values of an
UpdateSubscriptionPaymentSettingsPaymentMethodOptionsUsBankAccount
’sverification_method
field. - An enum representing the possible values of an
UpdateSubscriptionPaymentSettings
’spayment_method_types
field. - An enum representing the possible values of an
UpdateSubscriptionPaymentSettings
’ssave_default_payment_method
field. - An enum representing the possible values of an
UpdateSubscriptionSchedulePhasesAutomaticTaxLiability
’stype
field. - An enum representing the possible values of an
UpdateSubscriptionSchedulePhases
’sbilling_cycle_anchor
field. - An enum representing the possible values of an
UpdateSubscriptionSchedulePhasesItemsPriceDataRecurring
’sinterval
field. - An enum representing the possible values of an
UpdateSubscriptionSchedulePhasesItemsPriceData
’stax_behavior
field. - An enum representing the possible values of an
UpdateSubscriptionTrialSettingsEndBehavior
’smissing_payment_method
field. - An enum representing the possible values of an
UsBankAccountNetworks
’ssupported
field. - An enum representing the possible values of a
UsageRecord
’saccount
field. - An enum representing the possible values of an
WalletDetails
’stype
field. - An enum representing the possible values of an
WebhookEndpoint
’sstatus
field. - An error encountered when communicating with the Stripe API webhooks.
Traits§
- Implemented by types which represent stripe objects.
Type Aliases§
- InvoiceCollectionMethodDeprecated
- An alias for
Result
.