/** * 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. */ /** * IdentifyVisitorTraceData stores visitor identification enrichment metadata. * @export * @interface IdentifyVisitorTraceData */ export interface IdentifyVisitorTraceData { /** * * @type {number} * @memberof IdentifyVisitorTraceData */ customAttributes?: number; /** * * @type {number} * @memberof IdentifyVisitorTraceData */ fieldsUpdated?: number; /** * * @type {boolean} * @memberof IdentifyVisitorTraceData */ setOnce?: boolean; /** * * @type {Array} * @memberof IdentifyVisitorTraceData */ systemFields?: Array; } /** * Check if a given object implements the IdentifyVisitorTraceData interface. */ export declare function instanceOfIdentifyVisitorTraceData(value: object): value is IdentifyVisitorTraceData; export declare function IdentifyVisitorTraceDataFromJSON(json: any): IdentifyVisitorTraceData; export declare function IdentifyVisitorTraceDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): IdentifyVisitorTraceData; export declare function IdentifyVisitorTraceDataToJSON(json: any): IdentifyVisitorTraceData; export declare function IdentifyVisitorTraceDataToJSONTyped(value?: IdentifyVisitorTraceData | null, ignoreDiscriminator?: boolean): any;