UNPKG

shipstation-client

Version:
33 lines (32 loc) 1.97 kB
/** * ShipStation API v2 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Tax identifier type for customs declaration |Pickup Type | Description |---------------|----------------------------------------- |`vat` | The tax identifier is a Value Added Tax. |`eori` | The tax identifier is an Economic Operators Registration and Identification Number (EORI). |`ssn` | The tax identifier is a Social Security Number. |`ein` | The tax identifier is an Employer Identification Number (EIN). |`tin` | The tax identifier is a Tax Identification Number (TIN). |`ioss` | The tax identifier is an Import One-Stop Shop (IOSS). |`pan` | The tax identifier is a Permanent Account Number (PAN). |`voec` | The tax identifier is a Norwegian VAT On E-Commerce(VOEC). |`pccc` | The tax identifier is a Personal Customs Clearance Code (PCCC). |`oss` | The tax identifier is an One-Stop Shop (OSS). |`passport` | The tax identifier is a Passport Number. |`abn` | The tax identifier is an Australian Business Number. |`ukims` | The tax identifier is an UK Internal Market Scheme number. * @export * @enum {string} */ export declare const IdentifierType: { readonly Vat: "vat"; readonly Eori: "eori"; readonly Ssn: "ssn"; readonly Ein: "ein"; readonly Tin: "tin"; readonly Ioss: "ioss"; readonly Pan: "pan"; readonly Voec: "voec"; readonly Pccc: "pccc"; readonly Oss: "oss"; readonly Passport: "passport"; readonly Abn: "abn"; readonly Ukims: "ukims"; }; export type IdentifierType = typeof IdentifierType[keyof typeof IdentifierType];