/** * 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 GetVisitorTrendsRequest */ export interface GetVisitorTrendsRequest { /** * * @type {Date} * @memberof GetVisitorTrendsRequest */ endDate?: Date; /** * * @type {number} * @memberof GetVisitorTrendsRequest */ intervalInMinutes?: number; /** * * @type {string} * @memberof GetVisitorTrendsRequest */ linkId?: string; /** * * @type {Date} * @memberof GetVisitorTrendsRequest */ startDate?: Date; } /** * Check if a given object implements the GetVisitorTrendsRequest interface. */ export declare function instanceOfGetVisitorTrendsRequest(value: object): value is GetVisitorTrendsRequest; export declare function GetVisitorTrendsRequestFromJSON(json: any): GetVisitorTrendsRequest; export declare function GetVisitorTrendsRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetVisitorTrendsRequest; export declare function GetVisitorTrendsRequestToJSON(json: any): GetVisitorTrendsRequest; export declare function GetVisitorTrendsRequestToJSONTyped(value?: GetVisitorTrendsRequest | null, ignoreDiscriminator?: boolean): any;