/** * 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. */ import type { Visitor } from './Visitor'; /** * * @export * @interface IdentifyResponse */ export interface IdentifyResponse { /** * * @type {boolean} * @memberof IdentifyResponse */ created?: boolean; /** * * @type {Visitor} * @memberof IdentifyResponse */ visitor?: Visitor; } /** * Check if a given object implements the IdentifyResponse interface. */ export declare function instanceOfIdentifyResponse(value: object): value is IdentifyResponse; export declare function IdentifyResponseFromJSON(json: any): IdentifyResponse; export declare function IdentifyResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): IdentifyResponse; export declare function IdentifyResponseToJSON(json: any): IdentifyResponse; export declare function IdentifyResponseToJSONTyped(value?: IdentifyResponse | null, ignoreDiscriminator?: boolean): any;