/** * 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 GetGeoBreakdownRequest */ export interface GetGeoBreakdownRequest { /** * * @type {Date} * @memberof GetGeoBreakdownRequest */ endDate?: Date; /** * * @type {string} * @memberof GetGeoBreakdownRequest */ groupBy?: string; /** * * @type {number} * @memberof GetGeoBreakdownRequest */ limit?: number; /** * * @type {string} * @memberof GetGeoBreakdownRequest */ linkId?: string; /** * * @type {Date} * @memberof GetGeoBreakdownRequest */ startDate?: Date; } /** * Check if a given object implements the GetGeoBreakdownRequest interface. */ export declare function instanceOfGetGeoBreakdownRequest(value: object): value is GetGeoBreakdownRequest; export declare function GetGeoBreakdownRequestFromJSON(json: any): GetGeoBreakdownRequest; export declare function GetGeoBreakdownRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetGeoBreakdownRequest; export declare function GetGeoBreakdownRequestToJSON(json: any): GetGeoBreakdownRequest; export declare function GetGeoBreakdownRequestToJSONTyped(value?: GetGeoBreakdownRequest | null, ignoreDiscriminator?: boolean): any;