UNPKG

stripe

Version:
87 lines (69 loc) 2.88 kB
// File generated from our OpenAPI spec declare module 'stripe' { namespace Stripe { namespace Tax { /** * You can use Tax `Settings` to manage configurations used by Stripe Tax calculations. * * Related guide: [Using the Settings API](https://docs.stripe.com/tax/settings-api) */ interface Settings { /** * String representing the object's type. Objects of the same type share the same value. */ object: 'tax.settings'; defaults: Settings.Defaults; /** * The place where your business is located. */ head_office: Settings.HeadOffice | null; /** * Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode. */ livemode: boolean; /** * The status of the Tax `Settings`. */ status: Settings.Status; status_details: Settings.StatusDetails; } namespace Settings { interface Defaults { /** * The tax calculation provider this account uses. Defaults to `stripe` when not using a [third-party provider](https://docs.stripe.com/tax/third-party-apps). */ provider: Defaults.Provider; /** * Default [tax behavior](https://stripe.com/docs/tax/products-prices-tax-categories-tax-behavior#tax-behavior) used to specify whether the price is considered inclusive of taxes or exclusive of taxes. If the item's price has a tax behavior set, it will take precedence over the default tax behavior. */ tax_behavior: Defaults.TaxBehavior | null; /** * Default [tax code](https://stripe.com/docs/tax/tax-categories) used to classify your products and prices. */ tax_code: string | null; } namespace Defaults { type Provider = 'anrok' | 'avalara' | 'sphere' | 'stripe'; type TaxBehavior = 'exclusive' | 'inclusive' | 'inferred_by_currency'; } interface HeadOffice { address: Stripe.Address; } type Status = 'active' | 'pending'; interface StatusDetails { active?: StatusDetails.Active; pending?: StatusDetails.Pending; } namespace StatusDetails { interface Active {} interface Pending { /** * The list of missing fields that are required to perform calculations. It includes the entry `head_office` when the status is `pending`. It is recommended to set the optional values even if they aren't listed as required for calculating taxes. Calculations can fail if missing fields aren't explicitly provided on every call. */ missing_fields: Array<string> | null; } } } } } }