import { ChatHistoryMessage } from './ChatHistoryMessage';
/**
 * Represents the request payload for a real-time threat protection check on a chat message.
 */
export interface ChatMessageRequest {
    /**
     * The unique identifier for the conversation.
     */
    conversationId: string;
    /**
     * The unique identifier for the message within the conversation.
     */
    messageId: string;
    /**
     * The content of the user's message.
     */
    userMessage: string;
    /**
     * The chat history messages.
     */
    chatHistory: ChatHistoryMessage[];
}
//# sourceMappingURL=ChatMessageRequest.d.ts.map