/** * 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 AdminChat */ export interface AdminChat { /** * * @type {string} * @memberof AdminChat */ id: string; /** * * @type {Date} * @memberof AdminChat */ createdAt: Date; /** * * @type {string} * @memberof AdminChat */ title: string; /** * * @type {string} * @memberof AdminChat */ chatType: string | null; /** * * @type {Date} * @memberof AdminChat */ lastViewedAt: Date | null; /** * External user ID (externalId), null if not set * @type {string} * @memberof AdminChat */ userId: string | null; /** * * @type {string} * @memberof AdminChat */ visibility: AdminChatVisibilityEnum; /** * * @type {string} * @memberof AdminChat */ subjectId: string | null; /** * * @type {string} * @memberof AdminChat */ latestJobId: string | null; /** * * @type {Date} * @memberof AdminChat */ analysisScheduledFor: Date | null; /** * * @type {string} * @memberof AdminChat */ goal: string | null; /** * * @type {boolean} * @memberof AdminChat */ goalAchieved: boolean | null; /** * * @type {boolean} * @memberof AdminChat */ forReview: boolean; } /** * @export */ export declare const AdminChatVisibilityEnum: { readonly Public: "public"; readonly Private: "private"; }; export type AdminChatVisibilityEnum = typeof AdminChatVisibilityEnum[keyof typeof AdminChatVisibilityEnum]; /** * Check if a given object implements the AdminChat interface. */ export declare function instanceOfAdminChat(value: object): value is AdminChat; export declare function AdminChatFromJSON(json: any): AdminChat; export declare function AdminChatFromJSONTyped(json: any, ignoreDiscriminator: boolean): AdminChat; export declare function AdminChatToJSON(json: any): AdminChat; export declare function AdminChatToJSONTyped(value?: AdminChat | null, ignoreDiscriminator?: boolean): any;