/** * 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. */ /** * Stores the AI-generated assessment Linkbreakers produces for a visitor's engagement with a link, including reasoning signals * and user feedback to continuously refine scoring. * @export * @interface LeadScore */ export interface LeadScore { /** * * @type {number} * @memberof LeadScore */ brandSupportiveness?: number; /** * * @type {Date} * @memberof LeadScore */ createdAt?: Date; /** * * @type {number} * @memberof LeadScore */ engagementLevel?: number; /** * * @type {string} * @memberof LeadScore */ id?: string; /** * * @type {number} * @memberof LeadScore */ leadScore?: number; /** * * @type {string} * @memberof LeadScore */ linkId?: string; /** * * @type {number} * @memberof LeadScore */ profileFit?: number; /** * * @type {number} * @memberof LeadScore */ recurringInterest?: number; /** * * @type {number} * @memberof LeadScore */ recurringScans?: number; /** * * @type {number} * @memberof LeadScore */ technologicalAptitude?: number; /** * * @type {Date} * @memberof LeadScore */ updatedAt?: Date; /** * * @type {string} * @memberof LeadScore */ visitorId?: string; /** * * @type {string} * @memberof LeadScore */ workspaceId?: string; } /** * Check if a given object implements the LeadScore interface. */ export declare function instanceOfLeadScore(value: object): value is LeadScore; export declare function LeadScoreFromJSON(json: any): LeadScore; export declare function LeadScoreFromJSONTyped(json: any, ignoreDiscriminator: boolean): LeadScore; export declare function LeadScoreToJSON(json: any): LeadScore; export declare function LeadScoreToJSONTyped(value?: LeadScore | null, ignoreDiscriminator?: boolean): any;