import { AddressBase } from './address-base';
import { TaxIdentifier } from '../taxes/tax-identifier';

/** @description The address for where the shipment will be shipped from */
export class ShipFrom extends AddressBase {
  /** @description Tax IDs associated with the exporter */
  tax_identifiers?: TaxIdentifier[];
}
