/** * Athena API * REST API for the Athena system * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface AdminChatAnalysis */ export interface AdminChatAnalysis { /** * * @type {string} * @memberof AdminChatAnalysis */ id: string; /** * * @type {string} * @memberof AdminChatAnalysis */ title: string; /** * * @type {string} * @memberof AdminChatAnalysis */ goal: string | null; /** * * @type {boolean} * @memberof AdminChatAnalysis */ goalAchieved: boolean | null; /** * * @type {string} * @memberof AdminChatAnalysis */ subject: string | null; /** * * @type {string} * @memberof AdminChatAnalysis */ summary: string | null; /** * * @type {Array} * @memberof AdminChatAnalysis */ concepts: Array; } /** * Check if a given object implements the AdminChatAnalysis interface. */ export declare function instanceOfAdminChatAnalysis(value: object): value is AdminChatAnalysis; export declare function AdminChatAnalysisFromJSON(json: any): AdminChatAnalysis; export declare function AdminChatAnalysisFromJSONTyped(json: any, ignoreDiscriminator: boolean): AdminChatAnalysis; export declare function AdminChatAnalysisToJSON(json: any): AdminChatAnalysis; export declare function AdminChatAnalysisToJSONTyped(value?: AdminChatAnalysis | null, ignoreDiscriminator?: boolean): any;