shipstation-client
Version:
ShipStation V2 SDK
43 lines (34 loc) • 1.9 kB
text/typescript
/* tslint:disable */
/* eslint-disable */
/**
* 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 const IdentifierType = {
Vat: 'vat',
Eori: 'eori',
Ssn: 'ssn',
Ein: 'ein',
Tin: 'tin',
Ioss: 'ioss',
Pan: 'pan',
Voec: 'voec',
Pccc: 'pccc',
Oss: 'oss',
Passport: 'passport',
Abn: 'abn',
Ukims: 'ukims'
} as const;
export type IdentifierType = typeof IdentifierType[keyof typeof IdentifierType];