/** * 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 CreateMessagesResponse */ export interface CreateMessagesResponse { /** * * @type {Array} * @memberof CreateMessagesResponse */ data: Array; } /** * Check if a given object implements the CreateMessagesResponse interface. */ export declare function instanceOfCreateMessagesResponse(value: object): value is CreateMessagesResponse; export declare function CreateMessagesResponseFromJSON(json: any): CreateMessagesResponse; export declare function CreateMessagesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateMessagesResponse; export declare function CreateMessagesResponseToJSON(json: any): CreateMessagesResponse; export declare function CreateMessagesResponseToJSONTyped(value?: CreateMessagesResponse | null, ignoreDiscriminator?: boolean): any;