101577f163
- Updated import paths in multiple service files to reflect the new agent-desk module. - Added a new configuration file for agent-desk in the Docker setup.
22 lines
640 B
Go
22 lines
640 B
Go
package request
|
|
|
|
import "agent-desk/internal/pkg/enums"
|
|
|
|
type MessageListRequest struct {
|
|
ConversationID int64 `json:"conversationId"`
|
|
SenderType string `json:"senderType"`
|
|
MessageType string `json:"messageType"`
|
|
}
|
|
|
|
type SendConversationMessageRequest struct {
|
|
ConversationID int64 `json:"conversationId"`
|
|
MessageType enums.IMMessageType `json:"messageType"`
|
|
Content string `json:"content"`
|
|
Payload string `json:"payload"`
|
|
ClientMsgID string `json:"clientMsgId"`
|
|
}
|
|
|
|
type RecallConversationMessageRequest struct {
|
|
MessageID int64 `json:"messageId"`
|
|
}
|