/** * 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 VisitorEvent */ export interface VisitorEvent { /** * * @type {string} * @memberof VisitorEvent */ action?: string; /** * * @type {Date} * @memberof VisitorEvent */ createdAt?: Date; /** * * @type {string} * @memberof VisitorEvent */ id?: string; /** * * @type {string} * @memberof VisitorEvent */ linkId?: string; /** * * @type {Date} * @memberof VisitorEvent */ scannedAt?: Date; /** * * @type {string} * @memberof VisitorEvent */ visitType?: string; } /** * Check if a given object implements the VisitorEvent interface. */ export declare function instanceOfVisitorEvent(value: object): value is VisitorEvent; export declare function VisitorEventFromJSON(json: any): VisitorEvent; export declare function VisitorEventFromJSONTyped(json: any, ignoreDiscriminator: boolean): VisitorEvent; export declare function VisitorEventToJSON(json: any): VisitorEvent; export declare function VisitorEventToJSONTyped(value?: VisitorEvent | null, ignoreDiscriminator?: boolean): any;