UNPKG

@shipengine/connect-fulfillment-provider-api

Version:

OpenAPI specification and TypeScript definitions for the Connect Fulfillment Provider API

9 lines (8 loc) 358 B
import { AddressBase } from './address-base'; /** @description Pickup/Dropoff location used by carriers */ export interface 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; }