@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
15 lines (14 loc) • 692 B
TypeScript
import { TaxIdentifierType } from './tax-identifier-type';
/** @description Entity representing a Tax Identification number, type, and country of registration */
export declare class TaxIdentifier {
/** @description Identification number */
id: string;
/** @description The Tax ID type */
type: TaxIdentifierType;
/** @deprecated This property has been deprecated, please use registration_country instead */
registration_county?: string;
/** @description The country where the Tax ID is registered with */
registration_country?: string;
/** @description Description of the tax ID that may give the customs agent more context */
description?: string;
}