/** * 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 GetBreakdownRequest */ export interface GetBreakdownRequest { /** * * @type {string} * @memberof GetBreakdownRequest */ dimension?: string; /** * * @type {Date} * @memberof GetBreakdownRequest */ endDate?: Date; /** * * @type {number} * @memberof GetBreakdownRequest */ limit?: number; /** * * @type {string} * @memberof GetBreakdownRequest */ linkId?: string; /** * * @type {Date} * @memberof GetBreakdownRequest */ startDate?: Date; } /** * Check if a given object implements the GetBreakdownRequest interface. */ export declare function instanceOfGetBreakdownRequest(value: object): value is GetBreakdownRequest; export declare function GetBreakdownRequestFromJSON(json: any): GetBreakdownRequest; export declare function GetBreakdownRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetBreakdownRequest; export declare function GetBreakdownRequestToJSON(json: any): GetBreakdownRequest; export declare function GetBreakdownRequestToJSONTyped(value?: GetBreakdownRequest | null, ignoreDiscriminator?: boolean): any;