/** * 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. */ /** * Input payload for identifying/updating a visitor * - Reserved keys (system fields) have a "$" prefix, e.g. "$email", "$phone", "$firstName", "$lastName". * - All other keys are treated as custom attributes and stored in `attributes`. * @export * @interface VisitorInput */ export interface VisitorInput { /** * * @type {object} * @memberof VisitorInput */ data?: object; } /** * Check if a given object implements the VisitorInput interface. */ export declare function instanceOfVisitorInput(value: object): value is VisitorInput; export declare function VisitorInputFromJSON(json: any): VisitorInput; export declare function VisitorInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): VisitorInput; export declare function VisitorInputToJSON(json: any): VisitorInput; export declare function VisitorInputToJSONTyped(value?: VisitorInput | null, ignoreDiscriminator?: boolean): any;