/** * 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 MessagePart */ export interface MessagePart { /** * * @type {string} * @memberof MessagePart */ type?: string; /** * * @type {string} * @memberof MessagePart */ text?: string; } /** * Check if a given object implements the MessagePart interface. */ export declare function instanceOfMessagePart(value: object): value is MessagePart; export declare function MessagePartFromJSON(json: any): MessagePart; export declare function MessagePartFromJSONTyped(json: any, ignoreDiscriminator: boolean): MessagePart; export declare function MessagePartToJSON(json: any): MessagePart; export declare function MessagePartToJSONTyped(value?: MessagePart | null, ignoreDiscriminator?: boolean): any;