/** @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',
}
