package request import "code.tczkiot.com/wlw/ai-agent/internal/pkg/enums" type MessageListRequest struct { ConversationID int64 `json:"conversation_id"` SenderType string `json:"sender_type"` MessageType string `json:"message_type"` } type SendConversationMessageRequest struct { ConversationID int64 `json:"conversation_id"` MessageType enums.IMMessageType `json:"message_type"` Content string `json:"content"` Payload string `json:"payload"` ClientMsgID string `json:"client_msg_id"` } type RecallConversationMessageRequest struct { MessageID int64 `json:"message_id"` }