You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.0 KiB
31 lines
1.0 KiB
package base_info
|
|
|
|
import "Open_IM/pkg/proto/user"
|
|
|
|
type GetAllConversationMessageOptReq struct {
|
|
OperationID string `json:"operationID" binding:"required"`
|
|
FromUserID string `json:"fromUserID" binding:"required"`
|
|
}
|
|
type GetAllConversationMessageOptResp struct {
|
|
CommResp
|
|
ConversationOptResultList []*user.OptResult `json:"data"`
|
|
}
|
|
type GetReceiveMessageOptReq struct {
|
|
ConversationIdList []string `json:"conversationIdList" binding:"required"`
|
|
OperationID string `json:"operationID" binding:"required"`
|
|
FromUserID string `json:"fromUserID" binding:"required"`
|
|
}
|
|
type GetReceiveMessageOptResp struct {
|
|
CommResp
|
|
ConversationOptResultList []*user.OptResult `json:"data"`
|
|
}
|
|
type SetReceiveMessageOptReq struct {
|
|
OperationID string `json:"operationID" binding:"required"`
|
|
Opt *int32 `json:"opt" binding:"required"`
|
|
ConversationIdList []string `json:"conversationIdList" binding:"required"`
|
|
}
|
|
type SetReceiveMessageOptResp struct {
|
|
CommResp
|
|
OptResultList []*user.OptResult `json:"data"`
|
|
}
|