/** * 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. */ import type { PreferredLinkType } from './PreferredLinkType'; /** * Derived workspace usage insight that helps the UI pre-select the right link type when creating new links. * Results are cached in Redis and refreshed on every successful link creation. * @export * @interface WorkspaceInsight */ export interface WorkspaceInsight { /** * * @type {PreferredLinkType} * @memberof WorkspaceInsight */ preferredLinkType?: PreferredLinkType; } /** * Check if a given object implements the WorkspaceInsight interface. */ export declare function instanceOfWorkspaceInsight(value: object): value is WorkspaceInsight; export declare function WorkspaceInsightFromJSON(json: any): WorkspaceInsight; export declare function WorkspaceInsightFromJSONTyped(json: any, ignoreDiscriminator: boolean): WorkspaceInsight; export declare function WorkspaceInsightToJSON(json: any): WorkspaceInsight; export declare function WorkspaceInsightToJSONTyped(value?: WorkspaceInsight | null, ignoreDiscriminator?: boolean): any;