UNPKG

@shipengine/connect-carrier-api

Version:

This is the typescript/javascript definitions for carrier api

12 lines (10 loc) 491 B
import { ShipFrom } from '../addresses/ship-from'; /** @description Location details for pickup */ export 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 }; }