/** * 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 { VisitorInput } from './VisitorInput'; /** * * @export * @interface IdentifyRequest */ export interface IdentifyRequest { /** * * @type {string} * @memberof IdentifyRequest */ lbid?: string; /** * * @type {boolean} * @memberof IdentifyRequest */ setOnce?: boolean; /** * * @type {VisitorInput} * @memberof IdentifyRequest */ visitor?: VisitorInput; } /** * Check if a given object implements the IdentifyRequest interface. */ export declare function instanceOfIdentifyRequest(value: object): value is IdentifyRequest; export declare function IdentifyRequestFromJSON(json: any): IdentifyRequest; export declare function IdentifyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): IdentifyRequest; export declare function IdentifyRequestToJSON(json: any): IdentifyRequest; export declare function IdentifyRequestToJSONTyped(value?: IdentifyRequest | null, ignoreDiscriminator?: boolean): any;