@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
12 lines (10 loc) • 484 B
text/typescript
import { AddressBase } from './address-base';
import { TaxIdentifier } from '../taxes/tax-identifier';
import { GeolocationItem } from './geolocation-item';
/** @description The address that a shipment will be delivered to */
export class ShipTo extends AddressBase {
/** @description Tax IDs associated with the consignee */
tax_identifiers?: TaxIdentifier[];
/** @description List of Geolocation objects to help identify the location. */
geolocation?: GeolocationItem[];
}