This commit is contained in:
wangchuxiao 2023-03-17 17:18:50 +08:00
parent 2f6aa39824
commit 8e8270b090

View File

@ -31,7 +31,7 @@ message ModifyConversationFieldResp{
} }
message SetConversationReq{ message SetConversationReq{
Conversation Conversation = 1; Conversation conversation = 1;
int32 notificationType = 2; int32 notificationType = 2;
} }
@ -39,9 +39,9 @@ message SetConversationResp{
} }
message SetRecvMsgOptReq { message SetRecvMsgOptReq {
string OwnerUserID = 1; string ownerUserID = 1;
string ConversationID = 2; string conversationID = 2;
int32 RecvMsgOpt = 3; int32 recvMsgOpt = 3;
int32 notificationType = 4; int32 notificationType = 4;
} }
@ -49,40 +49,40 @@ message SetRecvMsgOptResp {
} }
message GetConversationReq{ message GetConversationReq{
string ConversationID = 1; string conversationID = 1;
string OwnerUserID = 2; string ownerUserID = 2;
} }
message GetConversationResp{ message GetConversationResp{
Conversation Conversation = 2; Conversation conversation = 2;
} }
message GetConversationsReq{ message GetConversationsReq{
string OwnerUserID = 1; string ownerUserID = 1;
repeated string ConversationIDs = 2; repeated string conversationIDs = 2;
} }
message GetConversationsResp{ message GetConversationsResp{
repeated Conversation Conversations = 2; repeated conversation conversations = 2;
} }
message GetAllConversationsReq{ message GetAllConversationsReq{
string OwnerUserID = 1; string ownerUserID = 1;
} }
message GetAllConversationsResp{ message GetAllConversationsResp{
repeated Conversation Conversations = 2; repeated Conversation conversations = 2;
} }
message BatchSetConversationsReq{ message BatchSetConversationsReq{
repeated Conversation Conversations = 1; repeated Conversation Conversations = 1;
string OwnerUserID = 2; string ownerUserID = 2;
int32 notificationType = 3; int32 notificationType = 3;
} }
message BatchSetConversationsResp{ message BatchSetConversationsResp{
repeated string Success = 1; repeated string success = 1;
repeated string Failed = 2; repeated string failed = 2;
} }
message GetRecvMsgNotNotifyUserIDsReq { message GetRecvMsgNotNotifyUserIDsReq {