UNPKG

@shipengine/connect-carrier-api

Version:

This is the typescript/javascript definitions for carrier api

11 lines (10 loc) 507 B
import { AddressBase } from './address-base'; import { TaxIdentifier } from '../taxes/tax-identifier'; import { GeolocationItem } from './geolocation-item'; /** @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[]; /** @description List of Geolocation objects to help identify the location. */ geolocation?: GeolocationItem[]; }