@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
10 lines (8 loc) • 347 B
text/typescript
import { AddressBase } from './address-base';
/** @description Pickup/Dropoff location used by carriers */
export class PudoLocation extends AddressBase {
/** @description Standardized carrier code the location id belongs to */
carrier_code?: string;
/** @description Location id needed to look up the location */
location_id?: string;
}