mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-25 02:58:26 +08:00
pb
This commit is contained in:
parent
2f6aa39824
commit
8e8270b090
@ -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 {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user