/** * 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 VisitorTrendDataPoint */ export interface VisitorTrendDataPoint { /** * * @type {number} * @memberof VisitorTrendDataPoint */ newVisitorCount?: number; /** * * @type {number} * @memberof VisitorTrendDataPoint */ returningVisitorCount?: number; /** * * @type {Date} * @memberof VisitorTrendDataPoint */ timestamp?: Date; } /** * Check if a given object implements the VisitorTrendDataPoint interface. */ export declare function instanceOfVisitorTrendDataPoint(value: object): value is VisitorTrendDataPoint; export declare function VisitorTrendDataPointFromJSON(json: any): VisitorTrendDataPoint; export declare function VisitorTrendDataPointFromJSONTyped(json: any, ignoreDiscriminator: boolean): VisitorTrendDataPoint; export declare function VisitorTrendDataPointToJSON(json: any): VisitorTrendDataPoint; export declare function VisitorTrendDataPointToJSONTyped(value?: VisitorTrendDataPoint | null, ignoreDiscriminator?: boolean): any;