/** * 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. */ /** * Defines how aggressively Linkbreakers prompts visitors for identifying data before allowing the workflow to continue. * * - DATA_COLLECTION_UNSPECIFIED: Data collection preference not specified * - DATA_COLLECTION_NONE: No visitor data captured; Linkbreakers only logs the scan event. * - DATA_COLLECTION_BASIC: Minimal data prompts (e.g., email) enabled to keep friction low while identifying high-signal visitors. * - DATA_COLLECTION_ADVANCED: Full lead capture flows, including custom forms and required fields, before continuing the workflow. * @export */ export declare const DataCollection: { readonly DataCollectionUnspecified: "DATA_COLLECTION_UNSPECIFIED"; readonly DataCollectionNone: "DATA_COLLECTION_NONE"; readonly DataCollectionBasic: "DATA_COLLECTION_BASIC"; readonly DataCollectionAdvanced: "DATA_COLLECTION_ADVANCED"; }; export type DataCollection = typeof DataCollection[keyof typeof DataCollection]; export declare function instanceOfDataCollection(value: any): boolean; export declare function DataCollectionFromJSON(json: any): DataCollection; export declare function DataCollectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): DataCollection; export declare function DataCollectionToJSON(value?: DataCollection | null): any; export declare function DataCollectionToJSONTyped(value: any, ignoreDiscriminator: boolean): DataCollection;