/** * 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 AdminChatWithStats */ export interface AdminChatWithStats { /** * * @type {string} * @memberof AdminChatWithStats */ id: string; /** * * @type {string} * @memberof AdminChatWithStats */ title: string; /** * * @type {Date} * @memberof AdminChatWithStats */ createdAt: Date; /** * * @type {number} * @memberof AdminChatWithStats */ messageCount: number; /** * * @type {Date} * @memberof AdminChatWithStats */ lastMessageAt: Date | null; /** * * @type {string} * @memberof AdminChatWithStats */ subject: string | null; /** * * @type {boolean} * @memberof AdminChatWithStats */ goalAchieved: boolean | null; } /** * Check if a given object implements the AdminChatWithStats interface. */ export declare function instanceOfAdminChatWithStats(value: object): value is AdminChatWithStats; export declare function AdminChatWithStatsFromJSON(json: any): AdminChatWithStats; export declare function AdminChatWithStatsFromJSONTyped(json: any, ignoreDiscriminator: boolean): AdminChatWithStats; export declare function AdminChatWithStatsToJSON(json: any): AdminChatWithStats; export declare function AdminChatWithStatsToJSONTyped(value?: AdminChatWithStats | null, ignoreDiscriminator?: boolean): any;