@shipengine/connect-fulfillment-provider-api
Version:
OpenAPI specification and TypeScript definitions for the Connect Fulfillment Provider API
13 lines (12 loc) • 556 B
TypeScript
import { TaxIdentifierType } from './tax-identifier-type';
/** @description Entity representing a Tax Identification number, type, and country of registration. */
export interface TaxIdentifier {
/** @description Identification number */
id: string;
/** @description The Tax ID type */
type: TaxIdentifierType;
/** @description The country where the Tax ID is registered with */
registration_county?: string;
/** @description Description of the tax ID that may give the customs agent more context */
description?: string;
}