/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface GeoDataPoint */ export interface GeoDataPoint { /** * * @type {number} * @memberof GeoDataPoint */ eventCount?: number; /** * * @type {string} * @memberof GeoDataPoint */ location?: string; /** * * @type {number} * @memberof GeoDataPoint */ percentage?: number; } /** * Check if a given object implements the GeoDataPoint interface. */ export declare function instanceOfGeoDataPoint(value: object): value is GeoDataPoint; export declare function GeoDataPointFromJSON(json: any): GeoDataPoint; export declare function GeoDataPointFromJSONTyped(json: any, ignoreDiscriminator: boolean): GeoDataPoint; export declare function GeoDataPointToJSON(json: any): GeoDataPoint; export declare function GeoDataPointToJSONTyped(value?: GeoDataPoint | null, ignoreDiscriminator?: boolean): any;