/** * 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 GetTopLinksRequest */ export interface GetTopLinksRequest { /** * * @type {Date} * @memberof GetTopLinksRequest */ endDate?: Date; /** * * @type {number} * @memberof GetTopLinksRequest */ limit?: number; /** * * @type {string} * @memberof GetTopLinksRequest */ linkId?: string; /** * * @type {Date} * @memberof GetTopLinksRequest */ startDate?: Date; } /** * Check if a given object implements the GetTopLinksRequest interface. */ export declare function instanceOfGetTopLinksRequest(value: object): value is GetTopLinksRequest; export declare function GetTopLinksRequestFromJSON(json: any): GetTopLinksRequest; export declare function GetTopLinksRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetTopLinksRequest; export declare function GetTopLinksRequestToJSON(json: any): GetTopLinksRequest; export declare function GetTopLinksRequestToJSONTyped(value?: GetTopLinksRequest | null, ignoreDiscriminator?: boolean): any;