import { TaxIdentifierType } from './tax-identifier-type';

/** @description Entity representing a Tax Identification number, type, and country of registration */
export 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;
}
