/**
 * AskNews API
 * AskNews API [![status](https://status.asknews.app/api/badge/2/status?style=for-the-badge)](https://status.asknews.app/status/prod)
 *
 * The version of the OpenAPI document: 0.24.66
 * Contact: contact@emergentmethods.ai
 *
 * 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 CreateChatCompletionRequestMessage
 */
export interface CreateChatCompletionRequestMessage {
    /**
     *
     * @type {string}
     * @memberof CreateChatCompletionRequestMessage
     */
    role: string;
    /**
     *
     * @type {string}
     * @memberof CreateChatCompletionRequestMessage
     */
    content: string;
    /**
     *
     * @type {string}
     * @memberof CreateChatCompletionRequestMessage
     */
    name?: string | null;
    /**
     *
     * @type {{ [key: string]: any; }}
     * @memberof CreateChatCompletionRequestMessage
     */
    functionCall?: {
        [key: string]: any;
    } | null;
}
/**
 * Check if a given object implements the CreateChatCompletionRequestMessage interface.
 */
export declare function instanceOfCreateChatCompletionRequestMessage(value: object): value is CreateChatCompletionRequestMessage;
export declare function CreateChatCompletionRequestMessageFromJSON(json: any): CreateChatCompletionRequestMessage;
export declare function CreateChatCompletionRequestMessageFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateChatCompletionRequestMessage;
export declare function CreateChatCompletionRequestMessageToJSON(json: any): CreateChatCompletionRequestMessage;
export declare function CreateChatCompletionRequestMessageToJSONTyped(value?: CreateChatCompletionRequestMessage | null, ignoreDiscriminator?: boolean): any;
