/** * 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. */ /** * VisitorAttributeType is what a value was captured as. It decides how the * value is parsed and which analytics the key can support, which the value * alone cannot tell you: "8" from a rating field and "8" typed into a text box * are different facts. * @export */ export declare const VisitorAttributeType: { readonly VisitorAttributeTypeUnspecified: "VISITOR_ATTRIBUTE_TYPE_UNSPECIFIED"; readonly VisitorAttributeTypeString: "VISITOR_ATTRIBUTE_TYPE_STRING"; readonly VisitorAttributeTypeNumber: "VISITOR_ATTRIBUTE_TYPE_NUMBER"; readonly VisitorAttributeTypeBoolean: "VISITOR_ATTRIBUTE_TYPE_BOOLEAN"; readonly VisitorAttributeTypeDate: "VISITOR_ATTRIBUTE_TYPE_DATE"; readonly VisitorAttributeTypeEnum: "VISITOR_ATTRIBUTE_TYPE_ENUM"; }; export type VisitorAttributeType = typeof VisitorAttributeType[keyof typeof VisitorAttributeType]; export declare function instanceOfVisitorAttributeType(value: any): boolean; export declare function VisitorAttributeTypeFromJSON(json: any): VisitorAttributeType; export declare function VisitorAttributeTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): VisitorAttributeType; export declare function VisitorAttributeTypeToJSON(value?: VisitorAttributeType | null): any; export declare function VisitorAttributeTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): VisitorAttributeType;