UNPKG

@shipengine/connect-carrier-api

Version:

This is the typescript/javascript definitions for carrier api

14 lines (12 loc) 438 B
/** @description Geolocation additional information for an address. */ export class GeolocationItem { /** @description Specifies the supported geolocation types. */ type?: GeolocationType; /** @description The geolocation value. */ value?: string; } /** @description Supported geolocation types. */ export enum GeolocationType { /** @description what3words field to help identify the location */ what3words = 'what3words', }