/** * 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 { ChatDisplayMessage } from './ChatDisplayMessage'; import type { DashboardConfig } from './DashboardConfig'; /** * * @export * @interface AnalyticsDashboard */ export interface AnalyticsDashboard { /** * * @type {Array} * @memberof AnalyticsDashboard */ chatMessages?: Array; /** * * @type {DashboardConfig} * @memberof AnalyticsDashboard */ config?: DashboardConfig; /** * * @type {Date} * @memberof AnalyticsDashboard */ createdAt?: Date; /** * * @type {string} * @memberof AnalyticsDashboard */ id?: string; /** * Link this dashboard is scoped to. Empty for the workspace-wide dashboard. * @type {string} * @memberof AnalyticsDashboard */ linkId?: string; /** * * @type {string} * @memberof AnalyticsDashboard */ name?: string; /** * * @type {Date} * @memberof AnalyticsDashboard */ updatedAt?: Date; } /** * Check if a given object implements the AnalyticsDashboard interface. */ export declare function instanceOfAnalyticsDashboard(value: object): value is AnalyticsDashboard; export declare function AnalyticsDashboardFromJSON(json: any): AnalyticsDashboard; export declare function AnalyticsDashboardFromJSONTyped(json: any, ignoreDiscriminator: boolean): AnalyticsDashboard; export declare function AnalyticsDashboardToJSON(json: any): AnalyticsDashboard; export declare function AnalyticsDashboardToJSONTyped(value?: AnalyticsDashboard | null, ignoreDiscriminator?: boolean): any;