@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
13 lines (12 loc) • 523 B
TypeScript
import { ShipFrom } from '../addresses/ship-from';
/** @description Location details for pickup */
export declare class PickupLocationDetails {
/** @description The address the pickup will take place */
pickup_address?: ShipFrom;
/** @description Any notes that may be helpful for a driver to find the pickup location */
location_notes?: string;
/** @description Custom options that are used by the carrier to determine pickup locations */
pickup_options?: {
[key: string]: string;
};
}