/** * 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 AdminExchangeMessage */ export interface AdminExchangeMessage { /** * * @type {string} * @memberof AdminExchangeMessage */ id: string; /** * * @type {Date} * @memberof AdminExchangeMessage */ createdAt: Date; /** * Concatenated text parts of the message. Empty when the message carried no text (for example a file-only turn or a tool-only assistant step). * @type {string} * @memberof AdminExchangeMessage */ text: string; /** * Distinct `type` values of the stored message parts, in first-seen order (e.g. text, file, tool-generateQuiz). Lets callers spot non-text turns without loading the full parts payload. * @type {Array} * @memberof AdminExchangeMessage */ partTypes: Array; /** * Originating client for this turn, when the client declared one * @type {string} * @memberof AdminExchangeMessage */ source: string | null; } /** * Check if a given object implements the AdminExchangeMessage interface. */ export declare function instanceOfAdminExchangeMessage(value: object): value is AdminExchangeMessage; export declare function AdminExchangeMessageFromJSON(json: any): AdminExchangeMessage; export declare function AdminExchangeMessageFromJSONTyped(json: any, ignoreDiscriminator: boolean): AdminExchangeMessage; export declare function AdminExchangeMessageToJSON(json: any): AdminExchangeMessage; export declare function AdminExchangeMessageToJSONTyped(value?: AdminExchangeMessage | null, ignoreDiscriminator?: boolean): any;