/** * 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 GetHourOfDayDistributionRequest */ export interface GetHourOfDayDistributionRequest { /** * * @type {Date} * @memberof GetHourOfDayDistributionRequest */ endDate?: Date; /** * * @type {string} * @memberof GetHourOfDayDistributionRequest */ linkId?: string; /** * * @type {Date} * @memberof GetHourOfDayDistributionRequest */ startDate?: Date; } /** * Check if a given object implements the GetHourOfDayDistributionRequest interface. */ export declare function instanceOfGetHourOfDayDistributionRequest(value: object): value is GetHourOfDayDistributionRequest; export declare function GetHourOfDayDistributionRequestFromJSON(json: any): GetHourOfDayDistributionRequest; export declare function GetHourOfDayDistributionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetHourOfDayDistributionRequest; export declare function GetHourOfDayDistributionRequestToJSON(json: any): GetHourOfDayDistributionRequest; export declare function GetHourOfDayDistributionRequestToJSONTyped(value?: GetHourOfDayDistributionRequest | null, ignoreDiscriminator?: boolean): any;