/** * This field signifies the precise geographical coordinates denoting the location of the activity. */ export declare class Coordinates { /** * The latitude in degrees. It must be in the range [-90.0, +90.0]. */ latitude: number; /** * The longitude in degrees. It must be in the range [-180.0, +180.0]. */ longitude: number; constructor(coordinates: CoordinatesProperties); } export interface CoordinatesProperties { latitude: number; longitude: number; }