/** * ChatGPT Function * Backend for Azure OpenAI integrations * * The version of the OpenAPI document: v1.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 InputChatMessage */ export interface InputChatMessage { /** * * @type {string} * @memberof InputChatMessage */ role?: string; /** * * @type {string} * @memberof InputChatMessage */ content?: string; /** * * @type {string} * @memberof InputChatMessage */ type?: string; } /** * Check if a given object implements the InputChatMessage interface. */ export declare function instanceOfInputChatMessage(value: object): value is InputChatMessage; export declare function InputChatMessageFromJSON(json: any): InputChatMessage; export declare function InputChatMessageFromJSONTyped(json: any, ignoreDiscriminator: boolean): InputChatMessage; export declare function InputChatMessageToJSON(json: any): InputChatMessage; export declare function InputChatMessageToJSONTyped(value?: InputChatMessage | null, ignoreDiscriminator?: boolean): any;