@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
9 lines (7 loc) • 322 B
text/typescript
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[];
}