/** * 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. */ import type { TopLinkDataPoint } from './TopLinkDataPoint'; /** * * @export * @interface GetTopLinksResponse */ export interface GetTopLinksResponse { /** * * @type {Array} * @memberof GetTopLinksResponse */ data?: Array; /** * * @type {number} * @memberof GetTopLinksResponse */ totalEvents?: number; } /** * Check if a given object implements the GetTopLinksResponse interface. */ export declare function instanceOfGetTopLinksResponse(value: object): value is GetTopLinksResponse; export declare function GetTopLinksResponseFromJSON(json: any): GetTopLinksResponse; export declare function GetTopLinksResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetTopLinksResponse; export declare function GetTopLinksResponseToJSON(json: any): GetTopLinksResponse; export declare function GetTopLinksResponseToJSONTyped(value?: GetTopLinksResponse | null, ignoreDiscriminator?: boolean): any;