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.
Open-IM-Server/pkg/proto/conversation/conversation.proto

104 lines
2.4 KiB

syntax = "proto3";
package OpenIMServer.conversation;
2 years ago
option go_package = "github.com/OpenIMSDK/Open-IM-Server/pkg/proto/conversation";
message Conversation{
string ownerUserID = 1;
string conversationID = 2;
int32 recvMsgOpt = 3;
int32 conversationType = 4;
string userID = 5;
string groupID = 6;
int32 unreadCount = 7;
int64 draftTextTime = 8;
bool isPinned = 9;
string attachedInfo = 10;
bool isPrivateChat = 11;
int32 groupAtType = 12;
bool isNotInGroup = 13;
string ex = 14;
2 years ago
int64 updateUnreadCountTime = 15;
int32 burnDuration = 16;
2 years ago
}
message ModifyConversationFieldReq{
Conversation conversation = 1;
int32 fieldType = 2;
repeated string userIDList = 3;
}
message ModifyConversationFieldResp{
}
2 years ago
message SetConversationReq{
2 years ago
Conversation conversation = 1;
2 years ago
}
message SetConversationResp{
}
message SetRecvMsgOptReq {
2 years ago
string ownerUserID = 1;
string conversationID = 2;
int32 recvMsgOpt = 3;
2 years ago
}
message SetRecvMsgOptResp {
}
message GetConversationReq{
2 years ago
string conversationID = 1;
string ownerUserID = 2;
2 years ago
}
message GetConversationResp{
2 years ago
Conversation conversation = 2;
2 years ago
}
message GetConversationsReq{
2 years ago
string ownerUserID = 1;
repeated string conversationIDs = 2;
2 years ago
}
message GetConversationsResp{
2 years ago
repeated Conversation conversations = 2;
2 years ago
}
message GetAllConversationsReq{
2 years ago
string ownerUserID = 1;
2 years ago
}
message GetAllConversationsResp{
2 years ago
repeated Conversation conversations = 2;
2 years ago
}
message BatchSetConversationsReq{
repeated Conversation Conversations = 1;
2 years ago
string ownerUserID = 2;
2 years ago
}
message BatchSetConversationsResp{
2 years ago
repeated string success = 1;
repeated string failed = 2;
2 years ago
}
2 years ago
message GetRecvMsgNotNotifyUserIDsReq {
string groupID = 1;
}
2 years ago
message GetRecvMsgNotNotifyUserIDsResp {
repeated string userIDs = 1;
}
service conversation {
rpc ModifyConversationField(ModifyConversationFieldReq)returns(ModifyConversationFieldResp);
2 years ago
rpc GetConversation(GetConversationReq)returns(GetConversationResp);
rpc GetAllConversations(GetAllConversationsReq)returns(GetAllConversationsResp);
rpc GetConversations(GetConversationsReq)returns(GetConversationsResp);
rpc BatchSetConversations(BatchSetConversationsReq)returns(BatchSetConversationsResp);
rpc SetConversation(SetConversationReq)returns(SetConversationResp);
rpc SetRecvMsgOpt(SetRecvMsgOptReq)returns(SetRecvMsgOptResp);
rpc GetRecvMsgNotNotifyUserIDs(GetRecvMsgNotNotifyUserIDsReq) returns (GetRecvMsgNotNotifyUserIDsResp);
}