@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
8 lines (7 loc) • 333 B
TypeScript
import { AddressBase } from './address-base';
import { TaxIdentifier } from '../taxes/tax-identifier';
/** @description The address for where the shipment will be shipped from */
export declare class ShipFrom extends AddressBase {
/** @description Tax IDs associated with the exporter */
tax_identifiers?: TaxIdentifier[];
}