/** * 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 AdminExchangeChat */ export interface AdminExchangeChat { /** * * @type {string} * @memberof AdminExchangeChat */ id: string; /** * * @type {string} * @memberof AdminExchangeChat */ title: string; /** * * @type {string} * @memberof AdminExchangeChat */ chatType: string | null; /** * * @type {Date} * @memberof AdminExchangeChat */ createdAt: Date; } /** * Check if a given object implements the AdminExchangeChat interface. */ export declare function instanceOfAdminExchangeChat(value: object): value is AdminExchangeChat; export declare function AdminExchangeChatFromJSON(json: any): AdminExchangeChat; export declare function AdminExchangeChatFromJSONTyped(json: any, ignoreDiscriminator: boolean): AdminExchangeChat; export declare function AdminExchangeChatToJSON(json: any): AdminExchangeChat; export declare function AdminExchangeChatToJSONTyped(value?: AdminExchangeChat | null, ignoreDiscriminator?: boolean): any;