/** * 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 TopLinkDataPoint */ export interface TopLinkDataPoint { /** * * @type {number} * @memberof TopLinkDataPoint */ eventCount?: number; /** * * @type {string} * @memberof TopLinkDataPoint */ name?: string; /** * * @type {string} * @memberof TopLinkDataPoint */ shortlink?: string; } /** * Check if a given object implements the TopLinkDataPoint interface. */ export declare function instanceOfTopLinkDataPoint(value: object): value is TopLinkDataPoint; export declare function TopLinkDataPointFromJSON(json: any): TopLinkDataPoint; export declare function TopLinkDataPointFromJSONTyped(json: any, ignoreDiscriminator: boolean): TopLinkDataPoint; export declare function TopLinkDataPointToJSON(json: any): TopLinkDataPoint; export declare function TopLinkDataPointToJSONTyped(value?: TopLinkDataPoint | null, ignoreDiscriminator?: boolean): any;