/** * 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. */ import type { Message } from './Message'; /** * * @export * @interface CreateChatMessages201Response */ export interface CreateChatMessages201Response { /** * * @type {Array} * @memberof CreateChatMessages201Response */ data?: Array; } /** * Check if a given object implements the CreateChatMessages201Response interface. */ export declare function instanceOfCreateChatMessages201Response(value: object): value is CreateChatMessages201Response; export declare function CreateChatMessages201ResponseFromJSON(json: any): CreateChatMessages201Response; export declare function CreateChatMessages201ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateChatMessages201Response; export declare function CreateChatMessages201ResponseToJSON(json: any): CreateChatMessages201Response; export declare function CreateChatMessages201ResponseToJSONTyped(value?: CreateChatMessages201Response | null, ignoreDiscriminator?: boolean): any;