@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
13 lines (12 loc) • 464 B
TypeScript
/** @description Geolocation additional information for an address. */
export declare class GeolocationItem {
/** @description Specifies the supported geolocation types. */
type?: GeolocationType;
/** @description The geolocation value. */
value?: string;
}
/** @description Supported geolocation types. */
export declare enum GeolocationType {
/** @description what3words field to help identify the location */
what3words = "what3words"
}