diff --git a/internal/rpc/group/group.go b/internal/rpc/group/group.go index 4f41591ff..d6d48a0ee 100644 --- a/internal/rpc/group/group.go +++ b/internal/rpc/group/group.go @@ -817,18 +817,18 @@ func SetErrorForResp(err error, errCode *int32, errMsg *string) { } func (s *groupServer) GetGroupApplicationList(ctx context.Context, req *pbGroup.GetGroupApplicationListReq) (*pbGroup.GetGroupApplicationListResp, error) { - nCtx := trace_log.NewRpcCtx(ctx, utils.GetSelfFuncName(), req.OperationID) - trace_log.SetRpcReqInfo(nCtx, utils.GetSelfFuncName(), req.String()) - defer trace_log.ShowLog(nCtx) + ctx = trace_log.NewRpcCtx(ctx, utils.GetSelfFuncName(), req.OperationID) + trace_log.SetRpcReqInfo(ctx, utils.GetSelfFuncName(), req.String()) + defer trace_log.ShowLog(ctx) resp := pbGroup.GetGroupApplicationListResp{} reply, err := imdb.GetRecvGroupApplicationList(req.FromUserID) if err != nil { - SetErr(nCtx, "", err, &resp.ErrCode, &resp.ErrMsg, "userID ", req.FromUserID) + SetErr(ctx, "", err, &resp.ErrCode, &resp.ErrMsg, "userID ", req.FromUserID) return &resp, nil } var errResult error - trace_log.SetContextInfo(nCtx, "GetRecvGroupApplicationList", nil, " FromUserID: ", req.FromUserID, "GroupApplicationList: ", reply) + trace_log.SetContextInfo(ctx, "GetRecvGroupApplicationList", nil, " FromUserID: ", req.FromUserID, "GroupApplicationList: ", reply) for _, v := range reply { node := open_im_sdk.GroupRequest{UserInfo: &open_im_sdk.PublicUserInfo{}, GroupInfo: &open_im_sdk.GroupInfo{}} @@ -839,7 +839,7 @@ func (s *groupServer) GetGroupApplicationList(ctx context.Context, req *pbGroup. } continue } - trace_log.SetContextInfo(nCtx, "FillGroupInfoByGroupID ", nil, " groupID: ", v.GroupID, " groupInfo: ", node.GroupInfo) + trace_log.SetContextInfo(ctx, "FillGroupInfoByGroupID ", nil, " groupID: ", v.GroupID, " groupInfo: ", node.GroupInfo) err = FillPublicUserInfoByUserID(req.OperationID, v.UserID, node.UserInfo) if err != nil { errResult = err @@ -849,24 +849,24 @@ func (s *groupServer) GetGroupApplicationList(ctx context.Context, req *pbGroup. resp.GroupRequestList = append(resp.GroupRequestList, &node) } if errResult != nil && len(resp.GroupRequestList) == 0 { - SetErr(nCtx, "", errResult, &resp.ErrCode, &resp.ErrMsg) + SetErr(ctx, "", errResult, &resp.ErrCode, &resp.ErrMsg) return &resp, nil } - trace_log.SetRpcRespInfo(nCtx, utils.GetSelfFuncName(), resp.String()) + trace_log.SetRpcRespInfo(ctx, utils.GetSelfFuncName(), resp.String()) return &resp, nil } func (s *groupServer) GetGroupsInfo(ctx context.Context, req *pbGroup.GetGroupsInfoReq) (*pbGroup.GetGroupsInfoResp, error) { - nCtx := trace_log.NewRpcCtx(ctx, utils.GetSelfFuncName(), req.OperationID) - trace_log.SetRpcReqInfo(nCtx, utils.GetSelfFuncName(), req.String()) - defer trace_log.ShowLog(nCtx) + trace_log.SetRpcReqInfo(trace_log.NewRpcCtx(ctx, utils.GetSelfFuncName(), req.OperationID), utils.GetSelfFuncName(), req.String()) + defer trace_log.ShowLog(ctx) resp := pbGroup.GetGroupsInfoResp{} groupsInfoList := make([]*open_im_sdk.GroupInfo, 0) for _, groupID := range req.GroupIDList { - groupInfoFromRedis, err := rocksCache.GetGroupInfoFromCache(groupID) + groupInfoFromRedis, err := rocksCache.GetGroupInfoFromCache(ctx, groupID) if err != nil { - SetErr(nCtx, "", err, &resp.ErrCode, &resp.ErrMsg, "groupID ", groupID) + SetErrorForResp(err, &resp.CommonResp.ErrCode, &resp.CommonResp.ErrMsg) + SetErr(ctx, "", err, &resp.ErrCode, &resp.ErrMsg, "groupID ", groupID) continue } var groupInfo open_im_sdk.GroupInfo @@ -876,7 +876,7 @@ func (s *groupServer) GetGroupsInfo(ctx context.Context, req *pbGroup.GetGroupsI } resp.GroupInfoList = groupsInfoList - trace_log.SetRpcRespInfo(nCtx, utils.GetSelfFuncName(), resp.String()) + trace_log.SetRpcRespInfo(ctx, utils.GetSelfFuncName(), resp.String()) return &resp, nil } @@ -885,7 +885,7 @@ func CheckPermission(ctx context.Context, groupID string, userID string) (err er trace_log.SetContextInfo(ctx, utils.GetSelfFuncName(), err, "groupID", groupID, "userID", userID) }() if !token_verify.IsManagerUserID(userID) && !imdb.IsGroupOwnerAdmin(groupID, userID) { - return constant.ErrNoPermission + return utils.Wrap(constant.ErrNoPermission, utils.GetSelfFuncName()) } return nil } diff --git a/pkg/proto/group/group.pb.go b/pkg/proto/group/group.pb.go index d366ec960..c448891b9 100644 --- a/pkg/proto/group/group.pb.go +++ b/pkg/proto/group/group.pb.go @@ -25,55 +25,9 @@ var _ = math.Inf // proto package needs to be updated. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package -type CommonResp struct { - ErrCode int32 `protobuf:"varint,1,opt,name=ErrCode" json:"ErrCode,omitempty"` - ErrMsg string `protobuf:"bytes,2,opt,name=ErrMsg" json:"ErrMsg,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` -} - -func (m *CommonResp) Reset() { *m = CommonResp{} } -func (m *CommonResp) String() string { return proto.CompactTextString(m) } -func (*CommonResp) ProtoMessage() {} -func (*CommonResp) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{0} -} -func (m *CommonResp) XXX_Unmarshal(b []byte) error { - return xxx_messageInfo_CommonResp.Unmarshal(m, b) -} -func (m *CommonResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - return xxx_messageInfo_CommonResp.Marshal(b, m, deterministic) -} -func (dst *CommonResp) XXX_Merge(src proto.Message) { - xxx_messageInfo_CommonResp.Merge(dst, src) -} -func (m *CommonResp) XXX_Size() int { - return xxx_messageInfo_CommonResp.Size(m) -} -func (m *CommonResp) XXX_DiscardUnknown() { - xxx_messageInfo_CommonResp.DiscardUnknown(m) -} - -var xxx_messageInfo_CommonResp proto.InternalMessageInfo - -func (m *CommonResp) GetErrCode() int32 { - if m != nil { - return m.ErrCode - } - return 0 -} - -func (m *CommonResp) GetErrMsg() string { - if m != nil { - return m.ErrMsg - } - return "" -} - type GroupAddMemberInfo struct { - UserID string `protobuf:"bytes,1,opt,name=UserID" json:"UserID,omitempty"` - RoleLevel int32 `protobuf:"varint,2,opt,name=RoleLevel" json:"RoleLevel,omitempty"` + UserID string `protobuf:"bytes,1,opt,name=userID" json:"userID,omitempty"` + RoleLevel int32 `protobuf:"varint,2,opt,name=roleLevel" json:"roleLevel,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -83,7 +37,7 @@ func (m *GroupAddMemberInfo) Reset() { *m = GroupAddMemberInfo{} } func (m *GroupAddMemberInfo) String() string { return proto.CompactTextString(m) } func (*GroupAddMemberInfo) ProtoMessage() {} func (*GroupAddMemberInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{1} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{0} } func (m *GroupAddMemberInfo) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GroupAddMemberInfo.Unmarshal(m, b) @@ -118,11 +72,11 @@ func (m *GroupAddMemberInfo) GetRoleLevel() int32 { } type CreateGroupReq struct { - InitMemberList []*GroupAddMemberInfo `protobuf:"bytes,1,rep,name=InitMemberList" json:"InitMemberList,omitempty"` - GroupInfo *sdk_ws.GroupInfo `protobuf:"bytes,2,opt,name=GroupInfo" json:"GroupInfo,omitempty"` - OperationID string `protobuf:"bytes,3,opt,name=OperationID" json:"OperationID,omitempty"` - OpUserID string `protobuf:"bytes,4,opt,name=OpUserID" json:"OpUserID,omitempty"` - OwnerUserID string `protobuf:"bytes,5,opt,name=OwnerUserID" json:"OwnerUserID,omitempty"` + InitMemberList []*GroupAddMemberInfo `protobuf:"bytes,1,rep,name=initMemberList" json:"initMemberList,omitempty"` + GroupInfo *sdk_ws.GroupInfo `protobuf:"bytes,2,opt,name=groupInfo" json:"groupInfo,omitempty"` + OperationID string `protobuf:"bytes,3,opt,name=operationID" json:"operationID,omitempty"` + OpUserID string `protobuf:"bytes,4,opt,name=opUserID" json:"opUserID,omitempty"` + OwnerUserID string `protobuf:"bytes,5,opt,name=ownerUserID" json:"ownerUserID,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -132,7 +86,7 @@ func (m *CreateGroupReq) Reset() { *m = CreateGroupReq{} } func (m *CreateGroupReq) String() string { return proto.CompactTextString(m) } func (*CreateGroupReq) ProtoMessage() {} func (*CreateGroupReq) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{2} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{1} } func (m *CreateGroupReq) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_CreateGroupReq.Unmarshal(m, b) @@ -188,19 +142,18 @@ func (m *CreateGroupReq) GetOwnerUserID() string { } type CreateGroupResp struct { - ErrCode int32 `protobuf:"varint,1,opt,name=ErrCode" json:"ErrCode,omitempty"` - ErrMsg string `protobuf:"bytes,2,opt,name=ErrMsg" json:"ErrMsg,omitempty"` - GroupInfo *sdk_ws.GroupInfo `protobuf:"bytes,3,opt,name=GroupInfo" json:"GroupInfo,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + CommonResp *sdk_ws.CommonResp `protobuf:"bytes,1,opt,name=commonResp" json:"commonResp,omitempty"` + GroupInfo *sdk_ws.GroupInfo `protobuf:"bytes,3,opt,name=groupInfo" json:"groupInfo,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *CreateGroupResp) Reset() { *m = CreateGroupResp{} } func (m *CreateGroupResp) String() string { return proto.CompactTextString(m) } func (*CreateGroupResp) ProtoMessage() {} func (*CreateGroupResp) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{3} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{2} } func (m *CreateGroupResp) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_CreateGroupResp.Unmarshal(m, b) @@ -220,18 +173,11 @@ func (m *CreateGroupResp) XXX_DiscardUnknown() { var xxx_messageInfo_CreateGroupResp proto.InternalMessageInfo -func (m *CreateGroupResp) GetErrCode() int32 { +func (m *CreateGroupResp) GetCommonResp() *sdk_ws.CommonResp { if m != nil { - return m.ErrCode - } - return 0 -} - -func (m *CreateGroupResp) GetErrMsg() string { - if m != nil { - return m.ErrMsg + return m.CommonResp } - return "" + return nil } func (m *CreateGroupResp) GetGroupInfo() *sdk_ws.GroupInfo { @@ -242,9 +188,9 @@ func (m *CreateGroupResp) GetGroupInfo() *sdk_ws.GroupInfo { } type GetGroupsInfoReq struct { - GroupIDList []string `protobuf:"bytes,1,rep,name=GroupIDList" json:"GroupIDList,omitempty"` - OperationID string `protobuf:"bytes,2,opt,name=OperationID" json:"OperationID,omitempty"` - OpUserID string `protobuf:"bytes,3,opt,name=OpUserID" json:"OpUserID,omitempty"` + GroupIDList []string `protobuf:"bytes,1,rep,name=groupIDList" json:"groupIDList,omitempty"` + OperationID string `protobuf:"bytes,2,opt,name=operationID" json:"operationID,omitempty"` + OpUserID string `protobuf:"bytes,3,opt,name=opUserID" json:"opUserID,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -254,7 +200,7 @@ func (m *GetGroupsInfoReq) Reset() { *m = GetGroupsInfoReq{} } func (m *GetGroupsInfoReq) String() string { return proto.CompactTextString(m) } func (*GetGroupsInfoReq) ProtoMessage() {} func (*GetGroupsInfoReq) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{4} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{3} } func (m *GetGroupsInfoReq) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GetGroupsInfoReq.Unmarshal(m, b) @@ -296,9 +242,8 @@ func (m *GetGroupsInfoReq) GetOpUserID() string { } type GetGroupsInfoResp struct { - ErrCode int32 `protobuf:"varint,1,opt,name=ErrCode" json:"ErrCode,omitempty"` - ErrMsg string `protobuf:"bytes,2,opt,name=ErrMsg" json:"ErrMsg,omitempty"` - GroupInfoList []*sdk_ws.GroupInfo `protobuf:"bytes,3,rep,name=GroupInfoList" json:"GroupInfoList,omitempty"` + CommonResp *sdk_ws.CommonResp `protobuf:"bytes,1,opt,name=commonResp" json:"commonResp,omitempty"` + GroupInfoList []*sdk_ws.GroupInfo `protobuf:"bytes,3,rep,name=groupInfoList" json:"groupInfoList,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -308,7 +253,7 @@ func (m *GetGroupsInfoResp) Reset() { *m = GetGroupsInfoResp{} } func (m *GetGroupsInfoResp) String() string { return proto.CompactTextString(m) } func (*GetGroupsInfoResp) ProtoMessage() {} func (*GetGroupsInfoResp) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{5} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{4} } func (m *GetGroupsInfoResp) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GetGroupsInfoResp.Unmarshal(m, b) @@ -328,18 +273,11 @@ func (m *GetGroupsInfoResp) XXX_DiscardUnknown() { var xxx_messageInfo_GetGroupsInfoResp proto.InternalMessageInfo -func (m *GetGroupsInfoResp) GetErrCode() int32 { - if m != nil { - return m.ErrCode - } - return 0 -} - -func (m *GetGroupsInfoResp) GetErrMsg() string { +func (m *GetGroupsInfoResp) GetCommonResp() *sdk_ws.CommonResp { if m != nil { - return m.ErrMsg + return m.CommonResp } - return "" + return nil } func (m *GetGroupsInfoResp) GetGroupInfoList() []*sdk_ws.GroupInfo { @@ -351,8 +289,8 @@ func (m *GetGroupsInfoResp) GetGroupInfoList() []*sdk_ws.GroupInfo { type SetGroupInfoReq struct { GroupInfoForSet *sdk_ws.GroupInfoForSet `protobuf:"bytes,1,opt,name=groupInfoForSet" json:"groupInfoForSet,omitempty"` - OpUserID string `protobuf:"bytes,2,opt,name=OpUserID" json:"OpUserID,omitempty"` - OperationID string `protobuf:"bytes,3,opt,name=OperationID" json:"OperationID,omitempty"` + OpUserID string `protobuf:"bytes,2,opt,name=opUserID" json:"opUserID,omitempty"` + OperationID string `protobuf:"bytes,3,opt,name=operationID" json:"operationID,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -362,7 +300,7 @@ func (m *SetGroupInfoReq) Reset() { *m = SetGroupInfoReq{} } func (m *SetGroupInfoReq) String() string { return proto.CompactTextString(m) } func (*SetGroupInfoReq) ProtoMessage() {} func (*SetGroupInfoReq) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{6} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{5} } func (m *SetGroupInfoReq) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_SetGroupInfoReq.Unmarshal(m, b) @@ -414,7 +352,7 @@ func (m *SetGroupInfoResp) Reset() { *m = SetGroupInfoResp{} } func (m *SetGroupInfoResp) String() string { return proto.CompactTextString(m) } func (*SetGroupInfoResp) ProtoMessage() {} func (*SetGroupInfoResp) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{7} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{6} } func (m *SetGroupInfoResp) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_SetGroupInfoResp.Unmarshal(m, b) @@ -442,9 +380,9 @@ func (m *SetGroupInfoResp) GetCommonResp() *sdk_ws.CommonResp { } type GetGroupApplicationListReq struct { - OpUserID string `protobuf:"bytes,1,opt,name=OpUserID" json:"OpUserID,omitempty"` - OperationID string `protobuf:"bytes,2,opt,name=OperationID" json:"OperationID,omitempty"` - FromUserID string `protobuf:"bytes,3,opt,name=FromUserID" json:"FromUserID,omitempty"` + OpUserID string `protobuf:"bytes,1,opt,name=opUserID" json:"opUserID,omitempty"` + OperationID string `protobuf:"bytes,2,opt,name=operationID" json:"operationID,omitempty"` + FromUserID string `protobuf:"bytes,3,opt,name=fromUserID" json:"fromUserID,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -454,7 +392,7 @@ func (m *GetGroupApplicationListReq) Reset() { *m = GetGroupApplicationL func (m *GetGroupApplicationListReq) String() string { return proto.CompactTextString(m) } func (*GetGroupApplicationListReq) ProtoMessage() {} func (*GetGroupApplicationListReq) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{8} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{7} } func (m *GetGroupApplicationListReq) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GetGroupApplicationListReq.Unmarshal(m, b) @@ -496,9 +434,8 @@ func (m *GetGroupApplicationListReq) GetFromUserID() string { } type GetGroupApplicationListResp struct { - ErrCode int32 `protobuf:"varint,1,opt,name=ErrCode" json:"ErrCode,omitempty"` - ErrMsg string `protobuf:"bytes,2,opt,name=ErrMsg" json:"ErrMsg,omitempty"` - GroupRequestList []*sdk_ws.GroupRequest `protobuf:"bytes,3,rep,name=GroupRequestList" json:"GroupRequestList,omitempty"` + CommonResp *sdk_ws.CommonResp `protobuf:"bytes,1,opt,name=commonResp" json:"commonResp,omitempty"` + GroupRequestList []*sdk_ws.GroupRequest `protobuf:"bytes,3,rep,name=groupRequestList" json:"groupRequestList,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -508,7 +445,7 @@ func (m *GetGroupApplicationListResp) Reset() { *m = GetGroupApplication func (m *GetGroupApplicationListResp) String() string { return proto.CompactTextString(m) } func (*GetGroupApplicationListResp) ProtoMessage() {} func (*GetGroupApplicationListResp) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{9} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{8} } func (m *GetGroupApplicationListResp) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GetGroupApplicationListResp.Unmarshal(m, b) @@ -528,18 +465,11 @@ func (m *GetGroupApplicationListResp) XXX_DiscardUnknown() { var xxx_messageInfo_GetGroupApplicationListResp proto.InternalMessageInfo -func (m *GetGroupApplicationListResp) GetErrCode() int32 { +func (m *GetGroupApplicationListResp) GetCommonResp() *sdk_ws.CommonResp { if m != nil { - return m.ErrCode - } - return 0 -} - -func (m *GetGroupApplicationListResp) GetErrMsg() string { - if m != nil { - return m.ErrMsg + return m.CommonResp } - return "" + return nil } func (m *GetGroupApplicationListResp) GetGroupRequestList() []*sdk_ws.GroupRequest { @@ -550,9 +480,9 @@ func (m *GetGroupApplicationListResp) GetGroupRequestList() []*sdk_ws.GroupReque } type GetUserReqApplicationListReq struct { - UserID string `protobuf:"bytes,1,opt,name=UserID" json:"UserID,omitempty"` - OpUserID string `protobuf:"bytes,2,opt,name=OpUserID" json:"OpUserID,omitempty"` - OperationID string `protobuf:"bytes,3,opt,name=OperationID" json:"OperationID,omitempty"` + UserID string `protobuf:"bytes,1,opt,name=userID" json:"userID,omitempty"` + OpUserID string `protobuf:"bytes,2,opt,name=opUserID" json:"opUserID,omitempty"` + OperationID string `protobuf:"bytes,3,opt,name=operationID" json:"operationID,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -562,7 +492,7 @@ func (m *GetUserReqApplicationListReq) Reset() { *m = GetUserReqApplicat func (m *GetUserReqApplicationListReq) String() string { return proto.CompactTextString(m) } func (*GetUserReqApplicationListReq) ProtoMessage() {} func (*GetUserReqApplicationListReq) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{10} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{9} } func (m *GetUserReqApplicationListReq) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GetUserReqApplicationListReq.Unmarshal(m, b) @@ -605,7 +535,7 @@ func (m *GetUserReqApplicationListReq) GetOperationID() string { type GetUserReqApplicationListResp struct { CommonResp *sdk_ws.CommonResp `protobuf:"bytes,1,opt,name=commonResp" json:"commonResp,omitempty"` - GroupRequestList []*sdk_ws.GroupRequest `protobuf:"bytes,2,rep,name=GroupRequestList" json:"GroupRequestList,omitempty"` + GroupRequestList []*sdk_ws.GroupRequest `protobuf:"bytes,2,rep,name=groupRequestList" json:"groupRequestList,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -615,7 +545,7 @@ func (m *GetUserReqApplicationListResp) Reset() { *m = GetUserReqApplica func (m *GetUserReqApplicationListResp) String() string { return proto.CompactTextString(m) } func (*GetUserReqApplicationListResp) ProtoMessage() {} func (*GetUserReqApplicationListResp) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{11} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{10} } func (m *GetUserReqApplicationListResp) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GetUserReqApplicationListResp.Unmarshal(m, b) @@ -650,11 +580,11 @@ func (m *GetUserReqApplicationListResp) GetGroupRequestList() []*sdk_ws.GroupReq } type TransferGroupOwnerReq struct { - GroupID string `protobuf:"bytes,1,opt,name=GroupID" json:"GroupID,omitempty"` - OldOwnerUserID string `protobuf:"bytes,2,opt,name=OldOwnerUserID" json:"OldOwnerUserID,omitempty"` - NewOwnerUserID string `protobuf:"bytes,3,opt,name=NewOwnerUserID" json:"NewOwnerUserID,omitempty"` - OperationID string `protobuf:"bytes,4,opt,name=OperationID" json:"OperationID,omitempty"` - OpUserID string `protobuf:"bytes,5,opt,name=OpUserID" json:"OpUserID,omitempty"` + GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"` + OldOwnerUserID string `protobuf:"bytes,2,opt,name=oldOwnerUserID" json:"oldOwnerUserID,omitempty"` + NewOwnerUserID string `protobuf:"bytes,3,opt,name=newOwnerUserID" json:"newOwnerUserID,omitempty"` + OperationID string `protobuf:"bytes,4,opt,name=operationID" json:"operationID,omitempty"` + OpUserID string `protobuf:"bytes,5,opt,name=opUserID" json:"opUserID,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -664,7 +594,7 @@ func (m *TransferGroupOwnerReq) Reset() { *m = TransferGroupOwnerReq{} } func (m *TransferGroupOwnerReq) String() string { return proto.CompactTextString(m) } func (*TransferGroupOwnerReq) ProtoMessage() {} func (*TransferGroupOwnerReq) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{12} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{11} } func (m *TransferGroupOwnerReq) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_TransferGroupOwnerReq.Unmarshal(m, b) @@ -730,7 +660,7 @@ func (m *TransferGroupOwnerResp) Reset() { *m = TransferGroupOwnerResp{} func (m *TransferGroupOwnerResp) String() string { return proto.CompactTextString(m) } func (*TransferGroupOwnerResp) ProtoMessage() {} func (*TransferGroupOwnerResp) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{13} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{12} } func (m *TransferGroupOwnerResp) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_TransferGroupOwnerResp.Unmarshal(m, b) @@ -758,12 +688,12 @@ func (m *TransferGroupOwnerResp) GetCommonResp() *sdk_ws.CommonResp { } type JoinGroupReq struct { - GroupID string `protobuf:"bytes,1,opt,name=GroupID" json:"GroupID,omitempty"` - ReqMessage string `protobuf:"bytes,2,opt,name=ReqMessage" json:"ReqMessage,omitempty"` - OpUserID string `protobuf:"bytes,3,opt,name=OpUserID" json:"OpUserID,omitempty"` - OperationID string `protobuf:"bytes,4,opt,name=OperationID" json:"OperationID,omitempty"` - JoinSource int32 `protobuf:"varint,5,opt,name=JoinSource" json:"JoinSource,omitempty"` - InviterUserID string `protobuf:"bytes,6,opt,name=InviterUserID" json:"InviterUserID,omitempty"` + GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"` + ReqMessage string `protobuf:"bytes,2,opt,name=reqMessage" json:"reqMessage,omitempty"` + OpUserID string `protobuf:"bytes,3,opt,name=opUserID" json:"opUserID,omitempty"` + OperationID string `protobuf:"bytes,4,opt,name=operationID" json:"operationID,omitempty"` + JoinSource int32 `protobuf:"varint,5,opt,name=joinSource" json:"joinSource,omitempty"` + InviterUserID string `protobuf:"bytes,6,opt,name=inviterUserID" json:"inviterUserID,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -773,7 +703,7 @@ func (m *JoinGroupReq) Reset() { *m = JoinGroupReq{} } func (m *JoinGroupReq) String() string { return proto.CompactTextString(m) } func (*JoinGroupReq) ProtoMessage() {} func (*JoinGroupReq) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{14} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{13} } func (m *JoinGroupReq) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_JoinGroupReq.Unmarshal(m, b) @@ -846,7 +776,7 @@ func (m *JoinGroupResp) Reset() { *m = JoinGroupResp{} } func (m *JoinGroupResp) String() string { return proto.CompactTextString(m) } func (*JoinGroupResp) ProtoMessage() {} func (*JoinGroupResp) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{15} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{14} } func (m *JoinGroupResp) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_JoinGroupResp.Unmarshal(m, b) @@ -874,12 +804,12 @@ func (m *JoinGroupResp) GetCommonResp() *sdk_ws.CommonResp { } type GroupApplicationResponseReq struct { - OperationID string `protobuf:"bytes,1,opt,name=OperationID" json:"OperationID,omitempty"` - OpUserID string `protobuf:"bytes,2,opt,name=OpUserID" json:"OpUserID,omitempty"` - GroupID string `protobuf:"bytes,3,opt,name=GroupID" json:"GroupID,omitempty"` - FromUserID string `protobuf:"bytes,4,opt,name=FromUserID" json:"FromUserID,omitempty"` - HandledMsg string `protobuf:"bytes,5,opt,name=HandledMsg" json:"HandledMsg,omitempty"` - HandleResult int32 `protobuf:"varint,6,opt,name=HandleResult" json:"HandleResult,omitempty"` + OperationID string `protobuf:"bytes,1,opt,name=operationID" json:"operationID,omitempty"` + OpUserID string `protobuf:"bytes,2,opt,name=opUserID" json:"opUserID,omitempty"` + GroupID string `protobuf:"bytes,3,opt,name=groupID" json:"groupID,omitempty"` + FromUserID string `protobuf:"bytes,4,opt,name=fromUserID" json:"fromUserID,omitempty"` + HandledMsg string `protobuf:"bytes,5,opt,name=handledMsg" json:"handledMsg,omitempty"` + HandleResult int32 `protobuf:"varint,6,opt,name=handleResult" json:"handleResult,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -889,7 +819,7 @@ func (m *GroupApplicationResponseReq) Reset() { *m = GroupApplicationRes func (m *GroupApplicationResponseReq) String() string { return proto.CompactTextString(m) } func (*GroupApplicationResponseReq) ProtoMessage() {} func (*GroupApplicationResponseReq) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{16} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{15} } func (m *GroupApplicationResponseReq) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GroupApplicationResponseReq.Unmarshal(m, b) @@ -962,7 +892,7 @@ func (m *GroupApplicationResponseResp) Reset() { *m = GroupApplicationRe func (m *GroupApplicationResponseResp) String() string { return proto.CompactTextString(m) } func (*GroupApplicationResponseResp) ProtoMessage() {} func (*GroupApplicationResponseResp) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{17} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{16} } func (m *GroupApplicationResponseResp) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GroupApplicationResponseResp.Unmarshal(m, b) @@ -990,9 +920,9 @@ func (m *GroupApplicationResponseResp) GetCommonResp() *sdk_ws.CommonResp { } type QuitGroupReq struct { - GroupID string `protobuf:"bytes,1,opt,name=GroupID" json:"GroupID,omitempty"` - OperationID string `protobuf:"bytes,2,opt,name=OperationID" json:"OperationID,omitempty"` - OpUserID string `protobuf:"bytes,3,opt,name=OpUserID" json:"OpUserID,omitempty"` + GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"` + OperationID string `protobuf:"bytes,2,opt,name=operationID" json:"operationID,omitempty"` + OpUserID string `protobuf:"bytes,3,opt,name=opUserID" json:"opUserID,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -1002,7 +932,7 @@ func (m *QuitGroupReq) Reset() { *m = QuitGroupReq{} } func (m *QuitGroupReq) String() string { return proto.CompactTextString(m) } func (*QuitGroupReq) ProtoMessage() {} func (*QuitGroupReq) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{18} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{17} } func (m *QuitGroupReq) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_QuitGroupReq.Unmarshal(m, b) @@ -1054,7 +984,7 @@ func (m *QuitGroupResp) Reset() { *m = QuitGroupResp{} } func (m *QuitGroupResp) String() string { return proto.CompactTextString(m) } func (*QuitGroupResp) ProtoMessage() {} func (*QuitGroupResp) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{19} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{18} } func (m *QuitGroupResp) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_QuitGroupResp.Unmarshal(m, b) @@ -1082,11 +1012,11 @@ func (m *QuitGroupResp) GetCommonResp() *sdk_ws.CommonResp { } type GetGroupMemberListReq struct { - GroupID string `protobuf:"bytes,1,opt,name=GroupID" json:"GroupID,omitempty"` - OpUserID string `protobuf:"bytes,2,opt,name=OpUserID" json:"OpUserID,omitempty"` - OperationID string `protobuf:"bytes,3,opt,name=OperationID" json:"OperationID,omitempty"` - Filter int32 `protobuf:"varint,4,opt,name=Filter" json:"Filter,omitempty"` - NextSeq int32 `protobuf:"varint,5,opt,name=NextSeq" json:"NextSeq,omitempty"` + GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"` + OpUserID string `protobuf:"bytes,2,opt,name=opUserID" json:"opUserID,omitempty"` + OperationID string `protobuf:"bytes,3,opt,name=operationID" json:"operationID,omitempty"` + Filter int32 `protobuf:"varint,4,opt,name=filter" json:"filter,omitempty"` + NextSeq int32 `protobuf:"varint,5,opt,name=nextSeq" json:"nextSeq,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -1096,7 +1026,7 @@ func (m *GetGroupMemberListReq) Reset() { *m = GetGroupMemberListReq{} } func (m *GetGroupMemberListReq) String() string { return proto.CompactTextString(m) } func (*GetGroupMemberListReq) ProtoMessage() {} func (*GetGroupMemberListReq) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{20} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{19} } func (m *GetGroupMemberListReq) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GetGroupMemberListReq.Unmarshal(m, b) @@ -1152,8 +1082,7 @@ func (m *GetGroupMemberListReq) GetNextSeq() int32 { } type GetGroupMemberListResp struct { - ErrCode int32 `protobuf:"varint,1,opt,name=ErrCode" json:"ErrCode,omitempty"` - ErrMsg string `protobuf:"bytes,2,opt,name=ErrMsg" json:"ErrMsg,omitempty"` + CommonResp *sdk_ws.CommonResp `protobuf:"bytes,1,opt,name=commonResp" json:"commonResp,omitempty"` MemberList []*sdk_ws.GroupMemberFullInfo `protobuf:"bytes,3,rep,name=memberList" json:"memberList,omitempty"` NextSeq int32 `protobuf:"varint,4,opt,name=nextSeq" json:"nextSeq,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -1165,7 +1094,7 @@ func (m *GetGroupMemberListResp) Reset() { *m = GetGroupMemberListResp{} func (m *GetGroupMemberListResp) String() string { return proto.CompactTextString(m) } func (*GetGroupMemberListResp) ProtoMessage() {} func (*GetGroupMemberListResp) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{21} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{20} } func (m *GetGroupMemberListResp) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GetGroupMemberListResp.Unmarshal(m, b) @@ -1185,18 +1114,11 @@ func (m *GetGroupMemberListResp) XXX_DiscardUnknown() { var xxx_messageInfo_GetGroupMemberListResp proto.InternalMessageInfo -func (m *GetGroupMemberListResp) GetErrCode() int32 { - if m != nil { - return m.ErrCode - } - return 0 -} - -func (m *GetGroupMemberListResp) GetErrMsg() string { +func (m *GetGroupMemberListResp) GetCommonResp() *sdk_ws.CommonResp { if m != nil { - return m.ErrMsg + return m.CommonResp } - return "" + return nil } func (m *GetGroupMemberListResp) GetMemberList() []*sdk_ws.GroupMemberFullInfo { @@ -1214,10 +1136,10 @@ func (m *GetGroupMemberListResp) GetNextSeq() int32 { } type GetGroupMembersInfoReq struct { - GroupID string `protobuf:"bytes,1,opt,name=GroupID" json:"GroupID,omitempty"` + GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"` MemberList []string `protobuf:"bytes,2,rep,name=memberList" json:"memberList,omitempty"` - OpUserID string `protobuf:"bytes,3,opt,name=OpUserID" json:"OpUserID,omitempty"` - OperationID string `protobuf:"bytes,4,opt,name=OperationID" json:"OperationID,omitempty"` + OpUserID string `protobuf:"bytes,3,opt,name=opUserID" json:"opUserID,omitempty"` + OperationID string `protobuf:"bytes,4,opt,name=operationID" json:"operationID,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -1227,7 +1149,7 @@ func (m *GetGroupMembersInfoReq) Reset() { *m = GetGroupMembersInfoReq{} func (m *GetGroupMembersInfoReq) String() string { return proto.CompactTextString(m) } func (*GetGroupMembersInfoReq) ProtoMessage() {} func (*GetGroupMembersInfoReq) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{22} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{21} } func (m *GetGroupMembersInfoReq) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GetGroupMembersInfoReq.Unmarshal(m, b) @@ -1276,8 +1198,7 @@ func (m *GetGroupMembersInfoReq) GetOperationID() string { } type GetGroupMembersInfoResp struct { - ErrCode int32 `protobuf:"varint,1,opt,name=ErrCode" json:"ErrCode,omitempty"` - ErrMsg string `protobuf:"bytes,2,opt,name=ErrMsg" json:"ErrMsg,omitempty"` + CommonResp *sdk_ws.CommonResp `protobuf:"bytes,1,opt,name=commonResp" json:"commonResp,omitempty"` MemberList []*sdk_ws.GroupMemberFullInfo `protobuf:"bytes,3,rep,name=memberList" json:"memberList,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -1288,7 +1209,7 @@ func (m *GetGroupMembersInfoResp) Reset() { *m = GetGroupMembersInfoResp func (m *GetGroupMembersInfoResp) String() string { return proto.CompactTextString(m) } func (*GetGroupMembersInfoResp) ProtoMessage() {} func (*GetGroupMembersInfoResp) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{23} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{22} } func (m *GetGroupMembersInfoResp) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GetGroupMembersInfoResp.Unmarshal(m, b) @@ -1308,18 +1229,11 @@ func (m *GetGroupMembersInfoResp) XXX_DiscardUnknown() { var xxx_messageInfo_GetGroupMembersInfoResp proto.InternalMessageInfo -func (m *GetGroupMembersInfoResp) GetErrCode() int32 { +func (m *GetGroupMembersInfoResp) GetCommonResp() *sdk_ws.CommonResp { if m != nil { - return m.ErrCode - } - return 0 -} - -func (m *GetGroupMembersInfoResp) GetErrMsg() string { - if m != nil { - return m.ErrMsg + return m.CommonResp } - return "" + return nil } func (m *GetGroupMembersInfoResp) GetMemberList() []*sdk_ws.GroupMemberFullInfo { @@ -1330,11 +1244,11 @@ func (m *GetGroupMembersInfoResp) GetMemberList() []*sdk_ws.GroupMemberFullInfo } type KickGroupMemberReq struct { - GroupID string `protobuf:"bytes,1,opt,name=GroupID" json:"GroupID,omitempty"` - KickedUserIDList []string `protobuf:"bytes,2,rep,name=KickedUserIDList" json:"KickedUserIDList,omitempty"` - Reason string `protobuf:"bytes,3,opt,name=Reason" json:"Reason,omitempty"` - OperationID string `protobuf:"bytes,5,opt,name=OperationID" json:"OperationID,omitempty"` - OpUserID string `protobuf:"bytes,6,opt,name=OpUserID" json:"OpUserID,omitempty"` + GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"` + KickedUserIDList []string `protobuf:"bytes,2,rep,name=kickedUserIDList" json:"kickedUserIDList,omitempty"` + Reason string `protobuf:"bytes,3,opt,name=reason" json:"reason,omitempty"` + OperationID string `protobuf:"bytes,5,opt,name=operationID" json:"operationID,omitempty"` + OpUserID string `protobuf:"bytes,6,opt,name=opUserID" json:"opUserID,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -1344,7 +1258,7 @@ func (m *KickGroupMemberReq) Reset() { *m = KickGroupMemberReq{} } func (m *KickGroupMemberReq) String() string { return proto.CompactTextString(m) } func (*KickGroupMemberReq) ProtoMessage() {} func (*KickGroupMemberReq) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{24} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{23} } func (m *KickGroupMemberReq) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_KickGroupMemberReq.Unmarshal(m, b) @@ -1400,8 +1314,8 @@ func (m *KickGroupMemberReq) GetOpUserID() string { } type Id2Result struct { - UserID string `protobuf:"bytes,1,opt,name=UserID" json:"UserID,omitempty"` - Result int32 `protobuf:"varint,2,opt,name=Result" json:"Result,omitempty"` + UserID string `protobuf:"bytes,1,opt,name=userID" json:"userID,omitempty"` + Result int32 `protobuf:"varint,2,opt,name=result" json:"result,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -1411,7 +1325,7 @@ func (m *Id2Result) Reset() { *m = Id2Result{} } func (m *Id2Result) String() string { return proto.CompactTextString(m) } func (*Id2Result) ProtoMessage() {} func (*Id2Result) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{25} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{24} } func (m *Id2Result) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_Id2Result.Unmarshal(m, b) @@ -1446,19 +1360,18 @@ func (m *Id2Result) GetResult() int32 { } type KickGroupMemberResp struct { - ErrCode int32 `protobuf:"varint,1,opt,name=ErrCode" json:"ErrCode,omitempty"` - ErrMsg string `protobuf:"bytes,2,opt,name=ErrMsg" json:"ErrMsg,omitempty"` - Id2ResultList []*Id2Result `protobuf:"bytes,3,rep,name=Id2ResultList" json:"Id2ResultList,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + CommonResp *sdk_ws.CommonResp `protobuf:"bytes,1,opt,name=commonResp" json:"commonResp,omitempty"` + Id2ResultList []*Id2Result `protobuf:"bytes,3,rep,name=id2ResultList" json:"id2ResultList,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *KickGroupMemberResp) Reset() { *m = KickGroupMemberResp{} } func (m *KickGroupMemberResp) String() string { return proto.CompactTextString(m) } func (*KickGroupMemberResp) ProtoMessage() {} func (*KickGroupMemberResp) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{26} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{25} } func (m *KickGroupMemberResp) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_KickGroupMemberResp.Unmarshal(m, b) @@ -1478,18 +1391,11 @@ func (m *KickGroupMemberResp) XXX_DiscardUnknown() { var xxx_messageInfo_KickGroupMemberResp proto.InternalMessageInfo -func (m *KickGroupMemberResp) GetErrCode() int32 { - if m != nil { - return m.ErrCode - } - return 0 -} - -func (m *KickGroupMemberResp) GetErrMsg() string { +func (m *KickGroupMemberResp) GetCommonResp() *sdk_ws.CommonResp { if m != nil { - return m.ErrMsg + return m.CommonResp } - return "" + return nil } func (m *KickGroupMemberResp) GetId2ResultList() []*Id2Result { @@ -1500,9 +1406,9 @@ func (m *KickGroupMemberResp) GetId2ResultList() []*Id2Result { } type GetJoinedGroupListReq struct { - FromUserID string `protobuf:"bytes,1,opt,name=FromUserID" json:"FromUserID,omitempty"` + FromUserID string `protobuf:"bytes,1,opt,name=fromUserID" json:"fromUserID,omitempty"` OperationID string `protobuf:"bytes,2,opt,name=operationID" json:"operationID,omitempty"` - OpUserID string `protobuf:"bytes,3,opt,name=OpUserID" json:"OpUserID,omitempty"` + OpUserID string `protobuf:"bytes,3,opt,name=opUserID" json:"opUserID,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -1512,7 +1418,7 @@ func (m *GetJoinedGroupListReq) Reset() { *m = GetJoinedGroupListReq{} } func (m *GetJoinedGroupListReq) String() string { return proto.CompactTextString(m) } func (*GetJoinedGroupListReq) ProtoMessage() {} func (*GetJoinedGroupListReq) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{27} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{26} } func (m *GetJoinedGroupListReq) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GetJoinedGroupListReq.Unmarshal(m, b) @@ -1554,9 +1460,8 @@ func (m *GetJoinedGroupListReq) GetOpUserID() string { } type GetJoinedGroupListResp struct { - ErrCode int32 `protobuf:"varint,1,opt,name=ErrCode" json:"ErrCode,omitempty"` - ErrMsg string `protobuf:"bytes,2,opt,name=ErrMsg" json:"ErrMsg,omitempty"` - GroupList []*sdk_ws.GroupInfo `protobuf:"bytes,3,rep,name=GroupList" json:"GroupList,omitempty"` + CommonResp *sdk_ws.CommonResp `protobuf:"bytes,1,opt,name=commonResp" json:"commonResp,omitempty"` + GroupList []*sdk_ws.GroupInfo `protobuf:"bytes,3,rep,name=groupList" json:"groupList,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -1566,7 +1471,7 @@ func (m *GetJoinedGroupListResp) Reset() { *m = GetJoinedGroupListResp{} func (m *GetJoinedGroupListResp) String() string { return proto.CompactTextString(m) } func (*GetJoinedGroupListResp) ProtoMessage() {} func (*GetJoinedGroupListResp) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{28} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{27} } func (m *GetJoinedGroupListResp) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GetJoinedGroupListResp.Unmarshal(m, b) @@ -1586,18 +1491,11 @@ func (m *GetJoinedGroupListResp) XXX_DiscardUnknown() { var xxx_messageInfo_GetJoinedGroupListResp proto.InternalMessageInfo -func (m *GetJoinedGroupListResp) GetErrCode() int32 { +func (m *GetJoinedGroupListResp) GetCommonResp() *sdk_ws.CommonResp { if m != nil { - return m.ErrCode - } - return 0 -} - -func (m *GetJoinedGroupListResp) GetErrMsg() string { - if m != nil { - return m.ErrMsg + return m.CommonResp } - return "" + return nil } func (m *GetJoinedGroupListResp) GetGroupList() []*sdk_ws.GroupInfo { @@ -1608,11 +1506,11 @@ func (m *GetJoinedGroupListResp) GetGroupList() []*sdk_ws.GroupInfo { } type InviteUserToGroupReq struct { - OperationID string `protobuf:"bytes,2,opt,name=OperationID" json:"OperationID,omitempty"` - GroupID string `protobuf:"bytes,3,opt,name=GroupID" json:"GroupID,omitempty"` - Reason string `protobuf:"bytes,4,opt,name=Reason" json:"Reason,omitempty"` - InvitedUserIDList []string `protobuf:"bytes,5,rep,name=InvitedUserIDList" json:"InvitedUserIDList,omitempty"` - OpUserID string `protobuf:"bytes,6,opt,name=OpUserID" json:"OpUserID,omitempty"` + OperationID string `protobuf:"bytes,2,opt,name=operationID" json:"operationID,omitempty"` + GroupID string `protobuf:"bytes,3,opt,name=groupID" json:"groupID,omitempty"` + Reason string `protobuf:"bytes,4,opt,name=reason" json:"reason,omitempty"` + InvitedUserIDList []string `protobuf:"bytes,5,rep,name=invitedUserIDList" json:"invitedUserIDList,omitempty"` + OpUserID string `protobuf:"bytes,6,opt,name=opUserID" json:"opUserID,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -1622,7 +1520,7 @@ func (m *InviteUserToGroupReq) Reset() { *m = InviteUserToGroupReq{} } func (m *InviteUserToGroupReq) String() string { return proto.CompactTextString(m) } func (*InviteUserToGroupReq) ProtoMessage() {} func (*InviteUserToGroupReq) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{29} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{28} } func (m *InviteUserToGroupReq) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_InviteUserToGroupReq.Unmarshal(m, b) @@ -1678,19 +1576,18 @@ func (m *InviteUserToGroupReq) GetOpUserID() string { } type InviteUserToGroupResp struct { - ErrCode int32 `protobuf:"varint,1,opt,name=ErrCode" json:"ErrCode,omitempty"` - ErrMsg string `protobuf:"bytes,2,opt,name=ErrMsg" json:"ErrMsg,omitempty"` - Id2ResultList []*Id2Result `protobuf:"bytes,3,rep,name=Id2ResultList" json:"Id2ResultList,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + CommonResp *sdk_ws.CommonResp `protobuf:"bytes,1,opt,name=commonResp" json:"commonResp,omitempty"` + Id2ResultList []*Id2Result `protobuf:"bytes,3,rep,name=id2ResultList" json:"id2ResultList,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *InviteUserToGroupResp) Reset() { *m = InviteUserToGroupResp{} } func (m *InviteUserToGroupResp) String() string { return proto.CompactTextString(m) } func (*InviteUserToGroupResp) ProtoMessage() {} func (*InviteUserToGroupResp) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{30} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{29} } func (m *InviteUserToGroupResp) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_InviteUserToGroupResp.Unmarshal(m, b) @@ -1710,18 +1607,11 @@ func (m *InviteUserToGroupResp) XXX_DiscardUnknown() { var xxx_messageInfo_InviteUserToGroupResp proto.InternalMessageInfo -func (m *InviteUserToGroupResp) GetErrCode() int32 { - if m != nil { - return m.ErrCode - } - return 0 -} - -func (m *InviteUserToGroupResp) GetErrMsg() string { +func (m *InviteUserToGroupResp) GetCommonResp() *sdk_ws.CommonResp { if m != nil { - return m.ErrMsg + return m.CommonResp } - return "" + return nil } func (m *InviteUserToGroupResp) GetId2ResultList() []*Id2Result { @@ -1732,11 +1622,11 @@ func (m *InviteUserToGroupResp) GetId2ResultList() []*Id2Result { } type GetGroupAllMemberReq struct { - GroupID string `protobuf:"bytes,1,opt,name=GroupID" json:"GroupID,omitempty"` - OpUserID string `protobuf:"bytes,2,opt,name=OpUserID" json:"OpUserID,omitempty"` - OperationID string `protobuf:"bytes,3,opt,name=OperationID" json:"OperationID,omitempty"` - Offset int32 `protobuf:"varint,4,opt,name=Offset" json:"Offset,omitempty"` - Count int32 `protobuf:"varint,5,opt,name=Count" json:"Count,omitempty"` + GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"` + OpUserID string `protobuf:"bytes,2,opt,name=opUserID" json:"opUserID,omitempty"` + OperationID string `protobuf:"bytes,3,opt,name=operationID" json:"operationID,omitempty"` + Offset int32 `protobuf:"varint,4,opt,name=offset" json:"offset,omitempty"` + Count int32 `protobuf:"varint,5,opt,name=count" json:"count,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -1746,7 +1636,7 @@ func (m *GetGroupAllMemberReq) Reset() { *m = GetGroupAllMemberReq{} } func (m *GetGroupAllMemberReq) String() string { return proto.CompactTextString(m) } func (*GetGroupAllMemberReq) ProtoMessage() {} func (*GetGroupAllMemberReq) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{31} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{30} } func (m *GetGroupAllMemberReq) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GetGroupAllMemberReq.Unmarshal(m, b) @@ -1802,8 +1692,7 @@ func (m *GetGroupAllMemberReq) GetCount() int32 { } type GetGroupAllMemberResp struct { - ErrCode int32 `protobuf:"varint,1,opt,name=ErrCode" json:"ErrCode,omitempty"` - ErrMsg string `protobuf:"bytes,2,opt,name=ErrMsg" json:"ErrMsg,omitempty"` + CommonResp *sdk_ws.CommonResp `protobuf:"bytes,1,opt,name=commonResp" json:"commonResp,omitempty"` MemberList []*sdk_ws.GroupMemberFullInfo `protobuf:"bytes,3,rep,name=memberList" json:"memberList,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -1814,7 +1703,7 @@ func (m *GetGroupAllMemberResp) Reset() { *m = GetGroupAllMemberResp{} } func (m *GetGroupAllMemberResp) String() string { return proto.CompactTextString(m) } func (*GetGroupAllMemberResp) ProtoMessage() {} func (*GetGroupAllMemberResp) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{32} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{31} } func (m *GetGroupAllMemberResp) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GetGroupAllMemberResp.Unmarshal(m, b) @@ -1834,18 +1723,11 @@ func (m *GetGroupAllMemberResp) XXX_DiscardUnknown() { var xxx_messageInfo_GetGroupAllMemberResp proto.InternalMessageInfo -func (m *GetGroupAllMemberResp) GetErrCode() int32 { - if m != nil { - return m.ErrCode - } - return 0 -} - -func (m *GetGroupAllMemberResp) GetErrMsg() string { +func (m *GetGroupAllMemberResp) GetCommonResp() *sdk_ws.CommonResp { if m != nil { - return m.ErrMsg + return m.CommonResp } - return "" + return nil } func (m *GetGroupAllMemberResp) GetMemberList() []*sdk_ws.GroupMemberFullInfo { @@ -1856,9 +1738,9 @@ func (m *GetGroupAllMemberResp) GetMemberList() []*sdk_ws.GroupMemberFullInfo { } type CMSGroup struct { - GroupInfo *sdk_ws.GroupInfo `protobuf:"bytes,1,opt,name=GroupInfo" json:"GroupInfo,omitempty"` - GroupOwnerUserName string `protobuf:"bytes,2,opt,name=GroupOwnerUserName" json:"GroupOwnerUserName,omitempty"` - GroupOwnerUserID string `protobuf:"bytes,3,opt,name=GroupOwnerUserID" json:"GroupOwnerUserID,omitempty"` + GroupInfo *sdk_ws.GroupInfo `protobuf:"bytes,1,opt,name=groupInfo" json:"groupInfo,omitempty"` + GroupOwnerUserName string `protobuf:"bytes,2,opt,name=groupOwnerUserName" json:"groupOwnerUserName,omitempty"` + GroupOwnerUserID string `protobuf:"bytes,3,opt,name=groupOwnerUserID" json:"groupOwnerUserID,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -1868,7 +1750,7 @@ func (m *CMSGroup) Reset() { *m = CMSGroup{} } func (m *CMSGroup) String() string { return proto.CompactTextString(m) } func (*CMSGroup) ProtoMessage() {} func (*CMSGroup) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{33} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{32} } func (m *CMSGroup) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_CMSGroup.Unmarshal(m, b) @@ -1910,10 +1792,10 @@ func (m *CMSGroup) GetGroupOwnerUserID() string { } type GetGroupsReq struct { - Pagination *sdk_ws.RequestPagination `protobuf:"bytes,1,opt,name=Pagination" json:"Pagination,omitempty"` - GroupName string `protobuf:"bytes,2,opt,name=GroupName" json:"GroupName,omitempty"` - GroupID string `protobuf:"bytes,3,opt,name=GroupID" json:"GroupID,omitempty"` - OperationID string `protobuf:"bytes,4,opt,name=OperationID" json:"OperationID,omitempty"` + Pagination *sdk_ws.RequestPagination `protobuf:"bytes,1,opt,name=pagination" json:"pagination,omitempty"` + GroupName string `protobuf:"bytes,2,opt,name=groupName" json:"groupName,omitempty"` + GroupID string `protobuf:"bytes,3,opt,name=groupID" json:"groupID,omitempty"` + OperationID string `protobuf:"bytes,4,opt,name=operationID" json:"operationID,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -1923,7 +1805,7 @@ func (m *GetGroupsReq) Reset() { *m = GetGroupsReq{} } func (m *GetGroupsReq) String() string { return proto.CompactTextString(m) } func (*GetGroupsReq) ProtoMessage() {} func (*GetGroupsReq) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{34} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{33} } func (m *GetGroupsReq) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GetGroupsReq.Unmarshal(m, b) @@ -1972,8 +1854,8 @@ func (m *GetGroupsReq) GetOperationID() string { } type GetGroupsResp struct { - CMSGroups []*CMSGroup `protobuf:"bytes,1,rep,name=CMSGroups" json:"CMSGroups,omitempty"` - Pagination *sdk_ws.ResponsePagination `protobuf:"bytes,2,opt,name=Pagination" json:"Pagination,omitempty"` + Groups []*CMSGroup `protobuf:"bytes,1,rep,name=groups" json:"groups,omitempty"` + Pagination *sdk_ws.ResponsePagination `protobuf:"bytes,2,opt,name=pagination" json:"pagination,omitempty"` GroupNum int32 `protobuf:"varint,3,opt,name=GroupNum" json:"GroupNum,omitempty"` CommonResp *sdk_ws.CommonResp `protobuf:"bytes,4,opt,name=commonResp" json:"commonResp,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -1985,7 +1867,7 @@ func (m *GetGroupsResp) Reset() { *m = GetGroupsResp{} } func (m *GetGroupsResp) String() string { return proto.CompactTextString(m) } func (*GetGroupsResp) ProtoMessage() {} func (*GetGroupsResp) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{35} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{34} } func (m *GetGroupsResp) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GetGroupsResp.Unmarshal(m, b) @@ -2005,9 +1887,9 @@ func (m *GetGroupsResp) XXX_DiscardUnknown() { var xxx_messageInfo_GetGroupsResp proto.InternalMessageInfo -func (m *GetGroupsResp) GetCMSGroups() []*CMSGroup { +func (m *GetGroupsResp) GetGroups() []*CMSGroup { if m != nil { - return m.CMSGroups + return m.Groups } return nil } @@ -2034,8 +1916,8 @@ func (m *GetGroupsResp) GetCommonResp() *sdk_ws.CommonResp { } type GetGroupMemberReq struct { - GroupID string `protobuf:"bytes,1,opt,name=GroupID" json:"GroupID,omitempty"` - OperationID string `protobuf:"bytes,2,opt,name=OperationID" json:"OperationID,omitempty"` + GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"` + OperationID string `protobuf:"bytes,2,opt,name=operationID" json:"operationID,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -2045,7 +1927,7 @@ func (m *GetGroupMemberReq) Reset() { *m = GetGroupMemberReq{} } func (m *GetGroupMemberReq) String() string { return proto.CompactTextString(m) } func (*GetGroupMemberReq) ProtoMessage() {} func (*GetGroupMemberReq) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{36} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{35} } func (m *GetGroupMemberReq) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GetGroupMemberReq.Unmarshal(m, b) @@ -2080,10 +1962,10 @@ func (m *GetGroupMemberReq) GetOperationID() string { } type GetGroupMembersCMSReq struct { - GroupID string `protobuf:"bytes,1,opt,name=GroupID" json:"GroupID,omitempty"` - UserName string `protobuf:"bytes,2,opt,name=UserName" json:"UserName,omitempty"` - Pagination *sdk_ws.RequestPagination `protobuf:"bytes,3,opt,name=Pagination" json:"Pagination,omitempty"` - OperationID string `protobuf:"bytes,4,opt,name=OperationID" json:"OperationID,omitempty"` + GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"` + UserName string `protobuf:"bytes,2,opt,name=userName" json:"userName,omitempty"` + Pagination *sdk_ws.RequestPagination `protobuf:"bytes,3,opt,name=pagination" json:"pagination,omitempty"` + OperationID string `protobuf:"bytes,4,opt,name=operationID" json:"operationID,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -2093,7 +1975,7 @@ func (m *GetGroupMembersCMSReq) Reset() { *m = GetGroupMembersCMSReq{} } func (m *GetGroupMembersCMSReq) String() string { return proto.CompactTextString(m) } func (*GetGroupMembersCMSReq) ProtoMessage() {} func (*GetGroupMembersCMSReq) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{37} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{36} } func (m *GetGroupMembersCMSReq) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GetGroupMembersCMSReq.Unmarshal(m, b) @@ -2143,8 +2025,8 @@ func (m *GetGroupMembersCMSReq) GetOperationID() string { type GetGroupMembersCMSResp struct { Members []*sdk_ws.GroupMemberFullInfo `protobuf:"bytes,1,rep,name=members" json:"members,omitempty"` - Pagination *sdk_ws.ResponsePagination `protobuf:"bytes,2,opt,name=Pagination" json:"Pagination,omitempty"` - MemberNums int32 `protobuf:"varint,3,opt,name=MemberNums" json:"MemberNums,omitempty"` + Pagination *sdk_ws.ResponsePagination `protobuf:"bytes,2,opt,name=pagination" json:"pagination,omitempty"` + MemberNums int32 `protobuf:"varint,3,opt,name=memberNums" json:"memberNums,omitempty"` CommonResp *sdk_ws.CommonResp `protobuf:"bytes,4,opt,name=commonResp" json:"commonResp,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -2155,7 +2037,7 @@ func (m *GetGroupMembersCMSResp) Reset() { *m = GetGroupMembersCMSResp{} func (m *GetGroupMembersCMSResp) String() string { return proto.CompactTextString(m) } func (*GetGroupMembersCMSResp) ProtoMessage() {} func (*GetGroupMembersCMSResp) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{38} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{37} } func (m *GetGroupMembersCMSResp) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GetGroupMembersCMSResp.Unmarshal(m, b) @@ -2216,7 +2098,7 @@ func (m *DismissGroupReq) Reset() { *m = DismissGroupReq{} } func (m *DismissGroupReq) String() string { return proto.CompactTextString(m) } func (*DismissGroupReq) ProtoMessage() {} func (*DismissGroupReq) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{39} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{38} } func (m *DismissGroupReq) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_DismissGroupReq.Unmarshal(m, b) @@ -2268,7 +2150,7 @@ func (m *DismissGroupResp) Reset() { *m = DismissGroupResp{} } func (m *DismissGroupResp) String() string { return proto.CompactTextString(m) } func (*DismissGroupResp) ProtoMessage() {} func (*DismissGroupResp) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{40} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{39} } func (m *DismissGroupResp) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_DismissGroupResp.Unmarshal(m, b) @@ -2310,7 +2192,7 @@ func (m *MuteGroupMemberReq) Reset() { *m = MuteGroupMemberReq{} } func (m *MuteGroupMemberReq) String() string { return proto.CompactTextString(m) } func (*MuteGroupMemberReq) ProtoMessage() {} func (*MuteGroupMemberReq) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{41} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{40} } func (m *MuteGroupMemberReq) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_MuteGroupMemberReq.Unmarshal(m, b) @@ -2376,7 +2258,7 @@ func (m *MuteGroupMemberResp) Reset() { *m = MuteGroupMemberResp{} } func (m *MuteGroupMemberResp) String() string { return proto.CompactTextString(m) } func (*MuteGroupMemberResp) ProtoMessage() {} func (*MuteGroupMemberResp) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{42} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{41} } func (m *MuteGroupMemberResp) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_MuteGroupMemberResp.Unmarshal(m, b) @@ -2417,7 +2299,7 @@ func (m *CancelMuteGroupMemberReq) Reset() { *m = CancelMuteGroupMemberR func (m *CancelMuteGroupMemberReq) String() string { return proto.CompactTextString(m) } func (*CancelMuteGroupMemberReq) ProtoMessage() {} func (*CancelMuteGroupMemberReq) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{43} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{42} } func (m *CancelMuteGroupMemberReq) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_CancelMuteGroupMemberReq.Unmarshal(m, b) @@ -2476,7 +2358,7 @@ func (m *CancelMuteGroupMemberResp) Reset() { *m = CancelMuteGroupMember func (m *CancelMuteGroupMemberResp) String() string { return proto.CompactTextString(m) } func (*CancelMuteGroupMemberResp) ProtoMessage() {} func (*CancelMuteGroupMemberResp) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{44} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{43} } func (m *CancelMuteGroupMemberResp) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_CancelMuteGroupMemberResp.Unmarshal(m, b) @@ -2516,7 +2398,7 @@ func (m *MuteGroupReq) Reset() { *m = MuteGroupReq{} } func (m *MuteGroupReq) String() string { return proto.CompactTextString(m) } func (*MuteGroupReq) ProtoMessage() {} func (*MuteGroupReq) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{45} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{44} } func (m *MuteGroupReq) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_MuteGroupReq.Unmarshal(m, b) @@ -2568,7 +2450,7 @@ func (m *MuteGroupResp) Reset() { *m = MuteGroupResp{} } func (m *MuteGroupResp) String() string { return proto.CompactTextString(m) } func (*MuteGroupResp) ProtoMessage() {} func (*MuteGroupResp) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{46} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{45} } func (m *MuteGroupResp) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_MuteGroupResp.Unmarshal(m, b) @@ -2608,7 +2490,7 @@ func (m *CancelMuteGroupReq) Reset() { *m = CancelMuteGroupReq{} } func (m *CancelMuteGroupReq) String() string { return proto.CompactTextString(m) } func (*CancelMuteGroupReq) ProtoMessage() {} func (*CancelMuteGroupReq) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{47} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{46} } func (m *CancelMuteGroupReq) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_CancelMuteGroupReq.Unmarshal(m, b) @@ -2660,7 +2542,7 @@ func (m *CancelMuteGroupResp) Reset() { *m = CancelMuteGroupResp{} } func (m *CancelMuteGroupResp) String() string { return proto.CompactTextString(m) } func (*CancelMuteGroupResp) ProtoMessage() {} func (*CancelMuteGroupResp) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{48} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{47} } func (m *CancelMuteGroupResp) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_CancelMuteGroupResp.Unmarshal(m, b) @@ -2702,7 +2584,7 @@ func (m *SetGroupMemberNicknameReq) Reset() { *m = SetGroupMemberNicknam func (m *SetGroupMemberNicknameReq) String() string { return proto.CompactTextString(m) } func (*SetGroupMemberNicknameReq) ProtoMessage() {} func (*SetGroupMemberNicknameReq) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{49} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{48} } func (m *SetGroupMemberNicknameReq) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_SetGroupMemberNicknameReq.Unmarshal(m, b) @@ -2768,7 +2650,7 @@ func (m *SetGroupMemberNicknameResp) Reset() { *m = SetGroupMemberNickna func (m *SetGroupMemberNicknameResp) String() string { return proto.CompactTextString(m) } func (*SetGroupMemberNicknameResp) ProtoMessage() {} func (*SetGroupMemberNicknameResp) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{50} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{49} } func (m *SetGroupMemberNicknameResp) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_SetGroupMemberNicknameResp.Unmarshal(m, b) @@ -2808,7 +2690,7 @@ func (m *GetJoinedSuperGroupListReq) Reset() { *m = GetJoinedSuperGroupL func (m *GetJoinedSuperGroupListReq) String() string { return proto.CompactTextString(m) } func (*GetJoinedSuperGroupListReq) ProtoMessage() {} func (*GetJoinedSuperGroupListReq) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{51} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{50} } func (m *GetJoinedSuperGroupListReq) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GetJoinedSuperGroupListReq.Unmarshal(m, b) @@ -2851,7 +2733,7 @@ func (m *GetJoinedSuperGroupListReq) GetOpUserID() string { type GetJoinedSuperGroupListResp struct { CommonResp *sdk_ws.CommonResp `protobuf:"bytes,1,opt,name=commonResp" json:"commonResp,omitempty"` - GroupList []*sdk_ws.GroupInfo `protobuf:"bytes,3,rep,name=GroupList" json:"GroupList,omitempty"` + GroupList []*sdk_ws.GroupInfo `protobuf:"bytes,3,rep,name=groupList" json:"groupList,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -2861,7 +2743,7 @@ func (m *GetJoinedSuperGroupListResp) Reset() { *m = GetJoinedSuperGroup func (m *GetJoinedSuperGroupListResp) String() string { return proto.CompactTextString(m) } func (*GetJoinedSuperGroupListResp) ProtoMessage() {} func (*GetJoinedSuperGroupListResp) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{52} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{51} } func (m *GetJoinedSuperGroupListResp) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GetJoinedSuperGroupListResp.Unmarshal(m, b) @@ -2896,9 +2778,9 @@ func (m *GetJoinedSuperGroupListResp) GetGroupList() []*sdk_ws.GroupInfo { } type GetSuperGroupsInfoReq struct { - GroupIDList []string `protobuf:"bytes,1,rep,name=GroupIDList" json:"GroupIDList,omitempty"` - OperationID string `protobuf:"bytes,2,opt,name=OperationID" json:"OperationID,omitempty"` - OpUserID string `protobuf:"bytes,3,opt,name=OpUserID" json:"OpUserID,omitempty"` + GroupIDList []string `protobuf:"bytes,1,rep,name=groupIDList" json:"groupIDList,omitempty"` + OperationID string `protobuf:"bytes,2,opt,name=operationID" json:"operationID,omitempty"` + OpUserID string `protobuf:"bytes,3,opt,name=opUserID" json:"opUserID,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -2908,7 +2790,7 @@ func (m *GetSuperGroupsInfoReq) Reset() { *m = GetSuperGroupsInfoReq{} } func (m *GetSuperGroupsInfoReq) String() string { return proto.CompactTextString(m) } func (*GetSuperGroupsInfoReq) ProtoMessage() {} func (*GetSuperGroupsInfoReq) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{53} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{52} } func (m *GetSuperGroupsInfoReq) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GetSuperGroupsInfoReq.Unmarshal(m, b) @@ -2951,7 +2833,7 @@ func (m *GetSuperGroupsInfoReq) GetOpUserID() string { type GetSuperGroupsInfoResp struct { CommonResp *sdk_ws.CommonResp `protobuf:"bytes,1,opt,name=commonResp" json:"commonResp,omitempty"` - GroupInfoList []*sdk_ws.GroupInfo `protobuf:"bytes,3,rep,name=GroupInfoList" json:"GroupInfoList,omitempty"` + GroupInfoList []*sdk_ws.GroupInfo `protobuf:"bytes,3,rep,name=groupInfoList" json:"groupInfoList,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -2961,7 +2843,7 @@ func (m *GetSuperGroupsInfoResp) Reset() { *m = GetSuperGroupsInfoResp{} func (m *GetSuperGroupsInfoResp) String() string { return proto.CompactTextString(m) } func (*GetSuperGroupsInfoResp) ProtoMessage() {} func (*GetSuperGroupsInfoResp) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{54} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{53} } func (m *GetSuperGroupsInfoResp) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GetSuperGroupsInfoResp.Unmarshal(m, b) @@ -3013,7 +2895,7 @@ func (m *SetGroupMemberInfoReq) Reset() { *m = SetGroupMemberInfoReq{} } func (m *SetGroupMemberInfoReq) String() string { return proto.CompactTextString(m) } func (*SetGroupMemberInfoReq) ProtoMessage() {} func (*SetGroupMemberInfoReq) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{55} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{54} } func (m *SetGroupMemberInfoReq) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_SetGroupMemberInfoReq.Unmarshal(m, b) @@ -3100,7 +2982,7 @@ func (m *SetGroupMemberInfoResp) Reset() { *m = SetGroupMemberInfoResp{} func (m *SetGroupMemberInfoResp) String() string { return proto.CompactTextString(m) } func (*SetGroupMemberInfoResp) ProtoMessage() {} func (*SetGroupMemberInfoResp) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{56} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{55} } func (m *SetGroupMemberInfoResp) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_SetGroupMemberInfoResp.Unmarshal(m, b) @@ -3140,7 +3022,7 @@ func (m *GetGroupAbstractInfoReq) Reset() { *m = GetGroupAbstractInfoReq func (m *GetGroupAbstractInfoReq) String() string { return proto.CompactTextString(m) } func (*GetGroupAbstractInfoReq) ProtoMessage() {} func (*GetGroupAbstractInfoReq) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{57} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{56} } func (m *GetGroupAbstractInfoReq) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GetGroupAbstractInfoReq.Unmarshal(m, b) @@ -3194,7 +3076,7 @@ func (m *GetGroupAbstractInfoResp) Reset() { *m = GetGroupAbstractInfoRe func (m *GetGroupAbstractInfoResp) String() string { return proto.CompactTextString(m) } func (*GetGroupAbstractInfoResp) ProtoMessage() {} func (*GetGroupAbstractInfoResp) Descriptor() ([]byte, []int) { - return fileDescriptor_group_f5ceef0a1341b0a4, []int{58} + return fileDescriptor_group_0c3e6f244ba2c79e, []int{57} } func (m *GetGroupAbstractInfoResp) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GetGroupAbstractInfoResp.Unmarshal(m, b) @@ -3236,7 +3118,6 @@ func (m *GetGroupAbstractInfoResp) GetGroupMemberListHash() uint64 { } func init() { - proto.RegisterType((*CommonResp)(nil), "group.CommonResp") proto.RegisterType((*GroupAddMemberInfo)(nil), "group.GroupAddMemberInfo") proto.RegisterType((*CreateGroupReq)(nil), "group.CreateGroupReq") proto.RegisterType((*CreateGroupResp)(nil), "group.CreateGroupResp") @@ -4227,146 +4108,141 @@ var _Group_serviceDesc = grpc.ServiceDesc{ Metadata: "group/group.proto", } -func init() { proto.RegisterFile("group/group.proto", fileDescriptor_group_f5ceef0a1341b0a4) } - -var fileDescriptor_group_f5ceef0a1341b0a4 = []byte{ - // 2199 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x4f, 0x6f, 0x1c, 0x49, - 0x15, 0x57, 0xcf, 0x78, 0x62, 0xcf, 0xb3, 0x27, 0x76, 0xca, 0xb1, 0x33, 0xe9, 0x38, 0x8e, 0xb7, - 0x37, 0xac, 0x22, 0x94, 0xd8, 0xc8, 0x2b, 0x45, 0xc0, 0x02, 0x4b, 0x62, 0xc7, 0xf1, 0xec, 0xc6, - 0x63, 0xdc, 0xe3, 0x25, 0x52, 0xd0, 0xca, 0xb4, 0x67, 0xca, 0xcd, 0xe0, 0x99, 0xee, 0x76, 0x57, - 0x4f, 0x1c, 0x71, 0x59, 0xb8, 0x20, 0xc1, 0x09, 0xc4, 0x05, 0x89, 0xe5, 0x00, 0x17, 0x90, 0x40, - 0x88, 0x03, 0x1c, 0x38, 0xf1, 0x05, 0x38, 0x23, 0x71, 0x43, 0x7c, 0x01, 0xbe, 0xc2, 0xaa, 0xab, - 0xaa, 0xab, 0xab, 0xbb, 0xba, 0x7b, 0x26, 0xee, 0xfc, 0xb9, 0x8c, 0x54, 0xaf, 0x5e, 0x75, 0xbd, - 0xf7, 0xea, 0xbd, 0x5f, 0xbd, 0xf7, 0x6a, 0xe0, 0x8a, 0xed, 0xbb, 0x23, 0x6f, 0x83, 0xfe, 0xae, - 0x7b, 0xbe, 0x1b, 0xb8, 0xa8, 0x46, 0x07, 0xfa, 0x9d, 0x7d, 0x0f, 0x3b, 0xf7, 0x5a, 0x7b, 0xf7, - 0x3a, 0xd8, 0x7f, 0x8e, 0xfd, 0x0d, 0xef, 0xd4, 0xde, 0xa0, 0x0c, 0x1b, 0xa4, 0x77, 0x7a, 0x74, - 0x4e, 0x36, 0xce, 0x09, 0x5b, 0xa0, 0xaf, 0x8f, 0xe5, 0xf4, 0x2d, 0xcf, 0xc3, 0x3e, 0xe7, 0x37, - 0xbe, 0x05, 0xb0, 0xe5, 0x0e, 0x87, 0xae, 0x63, 0x62, 0xe2, 0xa1, 0x26, 0x4c, 0x3f, 0xf2, 0xfd, - 0x2d, 0xb7, 0x87, 0x9b, 0xda, 0x9a, 0x76, 0xa7, 0x66, 0x46, 0x43, 0xb4, 0x0c, 0x97, 0x1e, 0xf9, - 0xfe, 0x1e, 0xb1, 0x9b, 0x95, 0x35, 0xed, 0x4e, 0xdd, 0xe4, 0x23, 0xe3, 0x23, 0x40, 0x8f, 0x43, - 0x11, 0x1f, 0xf4, 0x7a, 0x7b, 0x78, 0x78, 0x8c, 0xfd, 0x96, 0x73, 0xe2, 0x86, 0xdc, 0x9f, 0x10, - 0xec, 0xb7, 0xb6, 0xe9, 0x67, 0xea, 0x26, 0x1f, 0xa1, 0x15, 0xa8, 0x9b, 0xee, 0x00, 0x3f, 0xc1, - 0xcf, 0xf1, 0x80, 0x7e, 0xa8, 0x66, 0xc6, 0x04, 0xe3, 0xff, 0x1a, 0x5c, 0xde, 0xf2, 0xb1, 0x15, - 0x60, 0xfa, 0x49, 0x13, 0x9f, 0xa1, 0x07, 0x70, 0xb9, 0xe5, 0xf4, 0x03, 0xf6, 0xe9, 0x27, 0x7d, - 0x12, 0x34, 0xb5, 0xb5, 0xea, 0x9d, 0xd9, 0xcd, 0xeb, 0xeb, 0xcc, 0x4a, 0xea, 0xde, 0x66, 0x6a, - 0x01, 0xfa, 0x3a, 0xd4, 0x29, 0x57, 0x38, 0x49, 0xf7, 0x9c, 0xdd, 0x5c, 0x59, 0x27, 0xd4, 0x3a, - 0x47, 0x96, 0xd7, 0x3f, 0xf2, 0x2c, 0xdf, 0x1a, 0x92, 0x75, 0xc1, 0x63, 0xc6, 0xec, 0x68, 0x0d, - 0x66, 0xf7, 0x3d, 0xec, 0x5b, 0x41, 0xdf, 0x75, 0x5a, 0xdb, 0xcd, 0x2a, 0x55, 0x46, 0x26, 0x21, - 0x1d, 0x66, 0xf6, 0x3d, 0xae, 0xeb, 0x14, 0x9d, 0x16, 0x63, 0xba, 0xfa, 0xdc, 0xc1, 0x3e, 0x9f, - 0xae, 0xf1, 0xd5, 0x31, 0xc9, 0xf8, 0x0c, 0xe6, 0x13, 0x0a, 0x5f, 0xe4, 0x08, 0x92, 0x0a, 0x56, - 0x5f, 0x4a, 0x41, 0xc3, 0x87, 0x85, 0xc7, 0x38, 0xa0, 0x63, 0x42, 0xe7, 0xf0, 0x59, 0x28, 0x36, - 0x63, 0xd8, 0x16, 0x06, 0xaf, 0x9b, 0x32, 0x29, 0x6d, 0x96, 0x4a, 0xb1, 0x59, 0xaa, 0x49, 0xb3, - 0x18, 0x3f, 0xd3, 0xe0, 0x4a, 0x6a, 0xd3, 0x0b, 0xe9, 0xfd, 0x10, 0x1a, 0x42, 0x11, 0x2a, 0x69, - 0x95, 0xba, 0x46, 0xb1, 0xee, 0xc9, 0x25, 0xc6, 0x6f, 0x35, 0x98, 0xef, 0x70, 0x59, 0x22, 0xfd, - 0x9f, 0xc0, 0xbc, 0x1d, 0x8d, 0x77, 0x5c, 0xbf, 0x83, 0x03, 0x2a, 0xd1, 0xec, 0xa6, 0x51, 0xf4, - 0x65, 0xc6, 0x69, 0xa6, 0x97, 0x26, 0x2c, 0x51, 0xc9, 0x70, 0x90, 0x42, 0xf7, 0x32, 0x0e, 0x60, - 0x21, 0x29, 0x1e, 0xf1, 0xd0, 0x37, 0x01, 0xba, 0x22, 0x64, 0xb9, 0x68, 0x37, 0x33, 0x44, 0x8b, - 0xe3, 0xda, 0x94, 0x16, 0x18, 0x3f, 0x02, 0x3d, 0xb2, 0xfe, 0x03, 0xcf, 0x1b, 0xf4, 0xbb, 0x74, - 0xaf, 0xd0, 0x1a, 0xa1, 0xf2, 0xb2, 0xb8, 0x5a, 0xb1, 0xb8, 0x19, 0xc7, 0xbe, 0x0a, 0xb0, 0xe3, - 0xbb, 0xc3, 0xc4, 0xc1, 0x4b, 0x14, 0xe3, 0x73, 0x0d, 0x6e, 0xe4, 0x6e, 0x7e, 0x21, 0x27, 0xf8, - 0x18, 0x16, 0x22, 0xb0, 0x18, 0x61, 0x12, 0x48, 0x7e, 0x70, 0x2b, 0xef, 0xb4, 0x38, 0xab, 0xa9, - 0x2c, 0x34, 0x02, 0x58, 0x79, 0x8c, 0x83, 0x50, 0x56, 0x13, 0x9f, 0x65, 0x18, 0x27, 0x0f, 0xd6, - 0xca, 0x9d, 0xf1, 0x9f, 0x34, 0xb8, 0x59, 0xb0, 0x6d, 0xe9, 0x13, 0xcf, 0xb4, 0x51, 0xe5, 0xa2, - 0x36, 0xfa, 0xa7, 0x06, 0x4b, 0x87, 0xbe, 0xe5, 0x90, 0x13, 0xec, 0xd3, 0x49, 0x8a, 0x67, 0xa1, - 0x75, 0x9a, 0x30, 0xcd, 0x41, 0x82, 0x9b, 0x27, 0x1a, 0xa2, 0xf7, 0xe0, 0xf2, 0xfe, 0xa0, 0x27, - 0x63, 0x21, 0xb3, 0x52, 0x8a, 0x1a, 0xf2, 0xb5, 0xf1, 0xb9, 0xcc, 0xc7, 0xcc, 0x95, 0xa2, 0xa6, - 0x6d, 0x3a, 0x55, 0x8c, 0x3f, 0xb5, 0x14, 0xfe, 0x3c, 0x85, 0xe5, 0x2c, 0x05, 0xca, 0x47, 0xd6, - 0xbf, 0x34, 0x98, 0xfb, 0xc8, 0xed, 0x3b, 0xe2, 0xf6, 0xca, 0xb7, 0xc8, 0x2a, 0x80, 0x89, 0xcf, - 0xf6, 0x30, 0x21, 0x96, 0x8d, 0xb9, 0x35, 0x24, 0x4a, 0x11, 0x7e, 0x4e, 0xa0, 0xfd, 0x2a, 0x40, - 0x28, 0x47, 0xc7, 0x1d, 0xf9, 0x5d, 0x4c, 0xf5, 0xaf, 0x99, 0x12, 0x05, 0xdd, 0x86, 0x46, 0xcb, - 0x79, 0xde, 0x0f, 0x84, 0x99, 0x2f, 0xd1, 0x6f, 0x24, 0x89, 0x46, 0x1b, 0x1a, 0x92, 0x36, 0xe5, - 0xcd, 0xf3, 0x9f, 0x30, 0xf8, 0x53, 0x91, 0x1f, 0x4e, 0xb8, 0x0e, 0xc1, 0xfc, 0xde, 0x91, 0xf5, - 0xd2, 0x8a, 0x4f, 0x35, 0x1d, 0x67, 0x92, 0xad, 0xab, 0x8a, 0xad, 0x25, 0x50, 0x9a, 0x4a, 0x83, - 0x52, 0x38, 0xbf, 0x6b, 0x39, 0xbd, 0x01, 0xee, 0x85, 0xf0, 0xc2, 0xbc, 0x45, 0xa2, 0x20, 0x03, - 0xe6, 0xd8, 0xc8, 0xc4, 0x64, 0x34, 0x08, 0xa8, 0xb1, 0x6a, 0x66, 0x82, 0x66, 0x7c, 0x0a, 0x2b, - 0xf9, 0xaa, 0x95, 0x37, 0xdd, 0x09, 0xcc, 0x1d, 0x8c, 0xfa, 0xc1, 0x04, 0x8e, 0x55, 0xee, 0x6a, - 0x6e, 0x43, 0x43, 0xda, 0xa7, 0xbc, 0xdc, 0xbf, 0xd3, 0x60, 0x29, 0xc2, 0xfb, 0x38, 0x25, 0x2b, - 0xd6, 0xa0, 0x14, 0x98, 0x86, 0x10, 0xbd, 0xd3, 0x1f, 0x04, 0xd8, 0xa7, 0x07, 0x5d, 0x33, 0xf9, - 0x28, 0xdc, 0xaf, 0x8d, 0x5f, 0x04, 0x1d, 0x7c, 0xc6, 0xe3, 0x21, 0x1a, 0x1a, 0x7f, 0xd6, 0x60, - 0x39, 0x4b, 0xc6, 0x0b, 0x5d, 0x47, 0x3b, 0x00, 0xc3, 0x38, 0x57, 0x65, 0x17, 0xd1, 0x7b, 0x79, - 0x20, 0xcb, 0x76, 0xdb, 0x19, 0x0d, 0x06, 0xf4, 0x6e, 0x97, 0x56, 0x86, 0x3b, 0x3b, 0x5c, 0x5c, - 0xa6, 0x47, 0x34, 0x34, 0x7e, 0xa1, 0x88, 0x2b, 0x12, 0xb7, 0x42, 0xb8, 0x91, 0xc4, 0xaa, 0xd0, - 0x8c, 0x4e, 0xde, 0xae, 0x14, 0xdc, 0x18, 0xbf, 0xd2, 0xe0, 0x5a, 0xa6, 0x48, 0x6f, 0xd3, 0x84, - 0xc6, 0x5f, 0x35, 0x40, 0x1f, 0xf7, 0xbb, 0xa7, 0x12, 0x5f, 0xb1, 0x91, 0xbe, 0x0c, 0x0b, 0x21, - 0x3f, 0xee, 0x31, 0xc5, 0x25, 0x53, 0x29, 0xf4, 0x50, 0x78, 0x13, 0x5b, 0xc4, 0x75, 0xb8, 0xb9, - 0xf8, 0x28, 0x6d, 0xac, 0x5a, 0x71, 0xf8, 0x5d, 0x4a, 0x85, 0xdf, 0x07, 0x50, 0x6f, 0xf5, 0x36, - 0x19, 0xa4, 0xe4, 0x26, 0x1b, 0x74, 0x6b, 0x0a, 0x44, 0xac, 0x80, 0xe2, 0x23, 0xe3, 0x33, 0x58, - 0x54, 0xd4, 0xbd, 0xd0, 0x01, 0xdc, 0x87, 0x86, 0x90, 0x42, 0x3a, 0x83, 0x05, 0x5e, 0x72, 0x89, - 0x39, 0x33, 0xc9, 0x66, 0x8c, 0x68, 0xac, 0x87, 0x57, 0x06, 0xee, 0x51, 0x29, 0xa2, 0x58, 0x4f, - 0x02, 0xb0, 0xa6, 0x00, 0xf0, 0x1a, 0xcc, 0xba, 0x2a, 0x66, 0xb9, 0x13, 0x62, 0xd6, 0x4f, 0x59, - 0x40, 0x28, 0xfb, 0x96, 0xaa, 0xa5, 0x26, 0xae, 0x27, 0x62, 0x76, 0xe3, 0x6f, 0x1a, 0x5c, 0x65, - 0x37, 0x68, 0x28, 0xd9, 0xa1, 0x2b, 0xd0, 0x7a, 0x3c, 0x26, 0xe7, 0x5f, 0x5e, 0xb1, 0xa3, 0x4d, - 0x25, 0x1c, 0xed, 0x2e, 0x5c, 0x61, 0x7b, 0xc9, 0xde, 0x5a, 0xa3, 0xde, 0xaa, 0x4e, 0x14, 0x3a, - 0xdd, 0x4f, 0x34, 0x58, 0xca, 0x10, 0xfb, 0x8d, 0xba, 0xce, 0xe7, 0x1a, 0x5c, 0x15, 0x75, 0xc1, - 0x60, 0x30, 0x49, 0xb4, 0x96, 0xbe, 0x26, 0xf6, 0x4f, 0x4e, 0x08, 0x0e, 0xa2, 0x6b, 0x82, 0x8d, - 0xd0, 0x55, 0xa8, 0x6d, 0xb9, 0x23, 0x27, 0xe0, 0x97, 0x04, 0x1b, 0x18, 0xbf, 0x94, 0xae, 0x31, - 0x49, 0xbc, 0xb7, 0x0a, 0x6f, 0xbf, 0xd7, 0x60, 0x66, 0x6b, 0xaf, 0x43, 0xd9, 0x92, 0x2d, 0x00, - 0xed, 0xe5, 0x7a, 0x1c, 0xeb, 0xbc, 0x83, 0x23, 0x12, 0xec, 0xb6, 0x35, 0x8c, 0x52, 0xd2, 0x8c, - 0x99, 0x10, 0x26, 0x93, 0x54, 0x61, 0x61, 0x85, 0x6e, 0xfc, 0x45, 0x83, 0x39, 0x51, 0xea, 0x87, - 0xe7, 0xb9, 0x0d, 0xf0, 0x1d, 0xcb, 0xee, 0x3b, 0xf4, 0x1c, 0xb8, 0xa4, 0xb7, 0x33, 0x24, 0xe5, - 0x15, 0x47, 0xcc, 0x6b, 0x4a, 0xeb, 0xd0, 0x0a, 0x57, 0x57, 0x92, 0x34, 0x26, 0x14, 0x04, 0xd3, - 0xf8, 0xab, 0xec, 0xbf, 0x1a, 0x34, 0x24, 0x81, 0x89, 0x87, 0xee, 0x41, 0x3d, 0x32, 0x33, 0xe1, - 0xcd, 0xa7, 0x79, 0xee, 0xce, 0x11, 0xdd, 0x8c, 0x39, 0xd0, 0xa3, 0x84, 0x82, 0xac, 0xdd, 0xf4, - 0xa5, 0x4c, 0x05, 0x59, 0x76, 0x98, 0xa3, 0xa1, 0x0e, 0x33, 0x4c, 0xa1, 0xd1, 0x90, 0x2a, 0x51, - 0x33, 0xc5, 0x38, 0x95, 0x93, 0x4d, 0xbd, 0x6c, 0x4e, 0xb6, 0x1f, 0x77, 0x5f, 0x26, 0x89, 0xb3, - 0xb1, 0xe0, 0x65, 0xfc, 0x5d, 0x49, 0xf2, 0xc8, 0xd6, 0x5e, 0x67, 0x6c, 0xf4, 0xa6, 0x5c, 0x4d, - 0x8c, 0x53, 0x3e, 0x52, 0xbd, 0xa0, 0x8f, 0x8c, 0x3f, 0xeb, 0x1f, 0x57, 0x94, 0x4c, 0x8a, 0xca, - 0x4d, 0x3c, 0xf4, 0x6d, 0x98, 0x66, 0xa1, 0x16, 0x1d, 0xf9, 0xa4, 0x11, 0x1a, 0x2d, 0x7b, 0x55, - 0x7e, 0xb0, 0x0a, 0xc0, 0x76, 0x68, 0x8f, 0x86, 0x84, 0x7b, 0x82, 0x44, 0x29, 0xeb, 0x0b, 0x7d, - 0x98, 0xdf, 0xee, 0x93, 0x61, 0x9f, 0x10, 0x71, 0x59, 0xe9, 0x30, 0xe3, 0xa6, 0x1a, 0x40, 0xae, - 0x37, 0xf1, 0x45, 0xdd, 0x84, 0x69, 0x3b, 0x19, 0x7b, 0x7c, 0x68, 0x1c, 0xc0, 0x42, 0x72, 0xab, - 0xf2, 0xd5, 0xc5, 0x1f, 0x35, 0x40, 0x7b, 0x23, 0xde, 0x3c, 0x8d, 0x7d, 0xf9, 0x35, 0x69, 0x10, - 0x22, 0xfa, 0x48, 0xae, 0x21, 0xf9, 0x28, 0xac, 0x0f, 0x87, 0xa3, 0x00, 0xf7, 0x3a, 0xb8, 0xeb, - 0x3a, 0x3d, 0x42, 0xaf, 0x8e, 0x86, 0x99, 0xa0, 0x19, 0x87, 0xb0, 0xa8, 0x48, 0x5a, 0xde, 0x00, - 0x3f, 0xd7, 0xa0, 0xb9, 0x65, 0x39, 0x5d, 0x3c, 0x78, 0xfb, 0x66, 0x30, 0x9e, 0xc1, 0xf5, 0x1c, - 0x59, 0x5e, 0x49, 0xfd, 0x2b, 0xbe, 0xfa, 0x3a, 0x9d, 0xb4, 0x0d, 0x0d, 0x69, 0x9f, 0xf2, 0x72, - 0x0f, 0x00, 0xa5, 0x6c, 0xf2, 0x3a, 0xa5, 0x3f, 0x84, 0x45, 0x65, 0xb7, 0xf2, 0x3a, 0xfc, 0x41, - 0x83, 0xeb, 0x9d, 0x04, 0x4c, 0xb6, 0xfb, 0xdd, 0x53, 0xc7, 0x1a, 0x62, 0x0e, 0xf1, 0x76, 0x12, - 0xe2, 0xed, 0x18, 0xe2, 0x1d, 0xce, 0x18, 0x41, 0x7c, 0x34, 0x4e, 0x58, 0xa0, 0x5a, 0x6c, 0x81, - 0x29, 0xd5, 0x02, 0xb1, 0x07, 0xd6, 0x12, 0x1e, 0xf8, 0x3d, 0xd0, 0xf3, 0x04, 0x2d, 0x6f, 0x06, - 0x9f, 0xb6, 0xcd, 0x59, 0x95, 0xd1, 0x19, 0x79, 0xbc, 0x77, 0x18, 0x95, 0x38, 0x29, 0xa1, 0xb5, - 0x22, 0xa1, 0x2b, 0x09, 0xf4, 0x28, 0x30, 0x85, 0xf1, 0x6b, 0xd6, 0x2e, 0xcf, 0xde, 0xb4, 0x7c, - 0x5f, 0xb8, 0x4c, 0xb1, 0x73, 0x4e, 0xef, 0xfc, 0x58, 0xa6, 0x37, 0xf6, 0x7a, 0xf4, 0x1b, 0x56, - 0xee, 0x29, 0x3b, 0x97, 0x37, 0xc7, 0xab, 0x78, 0x4f, 0xfa, 0x5f, 0x05, 0x96, 0x92, 0x3e, 0x28, - 0x35, 0x67, 0x72, 0x02, 0xe5, 0x02, 0x9e, 0x31, 0x41, 0x90, 0x7c, 0x55, 0x0a, 0xbf, 0x1a, 0xaf, - 0x08, 0x6c, 0xd7, 0xb5, 0x07, 0x98, 0xbd, 0xfc, 0x1e, 0x8f, 0x4e, 0xd6, 0x3b, 0x81, 0xdf, 0x77, - 0xec, 0xef, 0x5a, 0x83, 0x11, 0x96, 0x82, 0xf3, 0x3e, 0x4c, 0x9f, 0x58, 0x5d, 0xfc, 0x89, 0xf9, - 0x84, 0xd6, 0x8a, 0xe3, 0x16, 0x46, 0xcc, 0xe8, 0x6b, 0x50, 0xf7, 0xc5, 0xe3, 0xee, 0x34, 0x5d, - 0x79, 0x43, 0x59, 0xd9, 0x72, 0x82, 0xf7, 0x37, 0xd9, 0xc2, 0x98, 0x1b, 0xdd, 0x85, 0x0a, 0x7e, - 0xd1, 0x9c, 0x99, 0x60, 0xb7, 0x0a, 0x7e, 0x61, 0x3c, 0x85, 0xe5, 0x2c, 0x1b, 0x97, 0x8f, 0xf1, - 0xb3, 0xb8, 0x8f, 0xf5, 0xe0, 0x98, 0x04, 0xbe, 0xd5, 0x0d, 0xc6, 0x1f, 0x9f, 0x7c, 0x4c, 0x95, - 0xe2, 0x63, 0xaa, 0x2a, 0xc7, 0x64, 0xfc, 0x43, 0x83, 0x66, 0xf6, 0x9e, 0xe5, 0x1d, 0xfa, 0x2e, - 0xff, 0x47, 0x81, 0xc8, 0x17, 0x8f, 0xb1, 0xcf, 0x9b, 0x46, 0xea, 0x04, 0xfa, 0x0a, 0x2c, 0xda, - 0xc9, 0x1e, 0xe8, 0xae, 0x45, 0x7e, 0x40, 0x65, 0x9e, 0x32, 0xb3, 0xa6, 0x36, 0xff, 0xbd, 0x00, - 0xec, 0xff, 0x09, 0xe8, 0x1b, 0x30, 0xdb, 0x8d, 0xdf, 0xb1, 0xd1, 0x52, 0x54, 0x20, 0x25, 0x1e, - 0xf3, 0xf5, 0xe5, 0x2c, 0x32, 0xf1, 0xd0, 0x7d, 0xa8, 0xff, 0x30, 0x7a, 0x68, 0x40, 0x8b, 0x9c, - 0x49, 0x7e, 0x48, 0xd1, 0xaf, 0xaa, 0x44, 0xb6, 0xee, 0x2c, 0xea, 0x56, 0x8b, 0x75, 0x72, 0x9f, - 0x5c, 0xac, 0x4b, 0x36, 0xb5, 0x1f, 0x42, 0xc3, 0x96, 0xdf, 0x9f, 0xd1, 0xb5, 0xe8, 0xdf, 0x04, - 0xa9, 0xa7, 0x70, 0xbd, 0x99, 0x3d, 0x41, 0x3c, 0xf4, 0x21, 0xcc, 0x11, 0xe9, 0x61, 0x16, 0x45, - 0xba, 0xa5, 0x1e, 0x93, 0xf5, 0x6b, 0x99, 0x74, 0xe2, 0xa1, 0xef, 0xc3, 0x35, 0x3b, 0xfb, 0x25, - 0x14, 0xbd, 0x93, 0xda, 0x55, 0x7d, 0x89, 0xd4, 0x8d, 0x71, 0x2c, 0xc4, 0x43, 0x27, 0x70, 0xdd, - 0xce, 0x7b, 0x56, 0x44, 0xef, 0xc6, 0x1f, 0xc8, 0x7d, 0xef, 0xd4, 0x6f, 0x8f, 0x67, 0x22, 0x1e, - 0x3a, 0x00, 0x14, 0x28, 0xef, 0x69, 0x68, 0x85, 0xaf, 0xcd, 0x7c, 0x2b, 0xd4, 0x6f, 0x16, 0xcc, - 0x12, 0x0f, 0x75, 0xa1, 0x69, 0xe7, 0x3c, 0xa7, 0x20, 0x23, 0xf1, 0xd7, 0x8f, 0xcc, 0xa7, 0x24, - 0xfd, 0xdd, 0xb1, 0x3c, 0x4c, 0x6e, 0x5b, 0xe9, 0xfb, 0x0b, 0xb9, 0x33, 0x9f, 0x2d, 0x84, 0xdc, - 0x39, 0x0f, 0x06, 0x87, 0xb0, 0x68, 0xab, 0x8d, 0x70, 0x94, 0xbd, 0x4a, 0x78, 0xd9, 0x6a, 0xd1, - 0x34, 0xf1, 0xd0, 0x2e, 0xcc, 0x9f, 0x26, 0x3b, 0xbb, 0x28, 0xfa, 0xff, 0x8b, 0xda, 0xe0, 0xd6, - 0xf5, 0xbc, 0x29, 0xa1, 0x72, 0xaa, 0x55, 0x2a, 0xab, 0xac, 0x76, 0x6f, 0x65, 0x95, 0xb3, 0x7a, - 0xac, 0x6d, 0xb8, 0xd2, 0x4f, 0x77, 0x0f, 0xd1, 0x8d, 0xa8, 0xe1, 0x97, 0xd1, 0x0e, 0xd5, 0x57, - 0xf2, 0x27, 0xd9, 0xf7, 0xec, 0x74, 0xab, 0x4d, 0x7c, 0x2f, 0xab, 0x47, 0xa8, 0xaf, 0xe4, 0x4f, - 0x32, 0x90, 0x10, 0xd1, 0x2b, 0x40, 0x42, 0xee, 0x49, 0x09, 0x90, 0x48, 0xf6, 0x7d, 0x0e, 0x00, - 0xa9, 0xcd, 0x81, 0x1c, 0xef, 0xe0, 0xfd, 0x8e, 0x1c, 0xef, 0x10, 0x5d, 0x85, 0x0f, 0x61, 0x4e, - 0x2e, 0x81, 0x05, 0x66, 0xa4, 0x4a, 0x70, 0x81, 0x19, 0x4a, 0xbd, 0xbc, 0x0b, 0xf3, 0xa9, 0xe2, - 0x4a, 0x38, 0x82, 0x5a, 0x00, 0x0a, 0x47, 0xc8, 0xaa, 0xc7, 0x9e, 0xc1, 0x52, 0x66, 0xb1, 0x86, - 0x6e, 0x45, 0x18, 0x9d, 0x53, 0x56, 0xea, 0x6b, 0xc5, 0x0c, 0xcc, 0xe2, 0x82, 0x2c, 0x2c, 0x2e, - 0x17, 0x40, 0xc2, 0xe2, 0xc9, 0x3a, 0x65, 0x17, 0xe6, 0x53, 0x1f, 0x15, 0xda, 0xa9, 0x45, 0x94, - 0xd0, 0x2e, 0xab, 0xe2, 0xf9, 0x34, 0x9d, 0x20, 0x44, 0x85, 0x00, 0x5a, 0x4b, 0xc1, 0xb1, 0x52, - 0xd0, 0xe8, 0xef, 0x8c, 0xe1, 0x60, 0xd0, 0x9d, 0x93, 0x95, 0xcb, 0xd0, 0x9d, 0x53, 0x2a, 0xc8, - 0xd0, 0x9d, 0x9b, 0xd8, 0x33, 0xe7, 0x4b, 0xe5, 0xb8, 0xb2, 0xf3, 0xa9, 0x89, 0xb7, 0xec, 0x7c, - 0x59, 0xc9, 0xf1, 0x01, 0x20, 0x35, 0x69, 0x12, 0x9f, 0xcc, 0xcc, 0x59, 0xc5, 0x27, 0x73, 0xb2, - 0xad, 0xa7, 0x52, 0xd3, 0x5e, 0x4a, 0x5d, 0x50, 0x1a, 0xcf, 0x52, 0xb9, 0x94, 0x7e, 0xab, 0x70, - 0x9e, 0x78, 0x0f, 0x6f, 0x3d, 0xbb, 0xb9, 0xef, 0x61, 0xe7, 0xa8, 0xb5, 0x27, 0xfd, 0x7f, 0x91, - 0xae, 0xf9, 0x80, 0xfe, 0x1e, 0x5f, 0xa2, 0xa4, 0xf7, 0xbf, 0x08, 0x00, 0x00, 0xff, 0xff, 0x88, - 0xa6, 0xce, 0x30, 0x32, 0x29, 0x00, 0x00, +func init() { proto.RegisterFile("group/group.proto", fileDescriptor_group_0c3e6f244ba2c79e) } + +var fileDescriptor_group_0c3e6f244ba2c79e = []byte{ + // 2122 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5a, 0x4f, 0x6f, 0x1c, 0x49, + 0x15, 0x57, 0x8f, 0x67, 0x9c, 0xf8, 0xd9, 0x93, 0x71, 0xca, 0xb1, 0x33, 0xe9, 0x4c, 0x12, 0x6f, + 0x6f, 0x58, 0x22, 0x94, 0xb5, 0x91, 0x57, 0x5a, 0x01, 0x0b, 0x5a, 0xb2, 0x36, 0x49, 0x66, 0x37, + 0x33, 0xc6, 0x3d, 0x5e, 0x22, 0x05, 0xad, 0x4c, 0x7b, 0xa6, 0xa6, 0xb7, 0xd7, 0x33, 0xdd, 0xed, + 0xae, 0xee, 0x38, 0xe2, 0xc4, 0x19, 0x21, 0x84, 0x84, 0x84, 0x90, 0xf8, 0x23, 0xe0, 0x02, 0x08, + 0x09, 0x71, 0x80, 0xc3, 0x9e, 0xf8, 0x02, 0x9c, 0x91, 0xe0, 0xc8, 0x17, 0xe0, 0x2b, 0xa0, 0xae, + 0xaa, 0xae, 0xae, 0xfe, 0x3b, 0x93, 0x74, 0x4c, 0x72, 0x19, 0xa9, 0x5e, 0xbd, 0xaa, 0x7a, 0xef, + 0xf5, 0xab, 0x5f, 0xbd, 0x3f, 0x03, 0x97, 0x4d, 0xcf, 0x09, 0xdc, 0x6d, 0xfa, 0xbb, 0xe5, 0x7a, + 0x8e, 0xef, 0xa0, 0x06, 0x1d, 0xa8, 0x77, 0xf6, 0x5d, 0x6c, 0xbf, 0xdd, 0xed, 0xbd, 0x3d, 0xc0, + 0xde, 0x53, 0xec, 0x6d, 0xbb, 0x27, 0xe6, 0x36, 0x65, 0xd8, 0x26, 0xa3, 0x93, 0xa3, 0x33, 0xb2, + 0x7d, 0x46, 0xd8, 0x02, 0x75, 0x6b, 0x26, 0xa7, 0x67, 0xb8, 0x2e, 0xf6, 0x38, 0xbf, 0xf6, 0x21, + 0xa0, 0x07, 0xe1, 0x11, 0xf7, 0x46, 0xa3, 0x1e, 0x9e, 0x1e, 0x63, 0xaf, 0x6b, 0x8f, 0x1d, 0xb4, + 0x01, 0x8b, 0x01, 0xc1, 0x5e, 0x77, 0xaf, 0xad, 0x6c, 0x2a, 0x77, 0x96, 0x74, 0x3e, 0x42, 0x1d, + 0x58, 0xf2, 0x9c, 0x09, 0x7e, 0x84, 0x9f, 0xe2, 0x49, 0xbb, 0xb6, 0xa9, 0xdc, 0x69, 0xe8, 0x31, + 0x41, 0xfb, 0xaf, 0x02, 0x97, 0x76, 0x3d, 0x6c, 0xf8, 0x98, 0x6e, 0xa9, 0xe3, 0x53, 0x74, 0x0f, + 0x2e, 0x59, 0xb6, 0xe5, 0xb3, 0xad, 0x1f, 0x59, 0xc4, 0x6f, 0x2b, 0x9b, 0x0b, 0x77, 0x96, 0x77, + 0xae, 0x6d, 0x31, 0x2d, 0xb3, 0x67, 0xeb, 0xa9, 0x05, 0xe8, 0x6b, 0xb0, 0x44, 0x79, 0xc3, 0x49, + 0x7a, 0xe6, 0xf2, 0x4e, 0x67, 0x8b, 0x50, 0xed, 0x8e, 0x0c, 0xd7, 0x3a, 0x72, 0x0d, 0xcf, 0x98, + 0x12, 0xb6, 0x13, 0xdd, 0x20, 0x66, 0x47, 0x9b, 0xb0, 0xec, 0xb8, 0xd8, 0x33, 0x7c, 0xcb, 0xb1, + 0xbb, 0x7b, 0xed, 0x05, 0xaa, 0x8c, 0x4c, 0x42, 0x2a, 0x5c, 0x74, 0xdc, 0x8f, 0x99, 0xae, 0x75, + 0x3a, 0x2d, 0xc6, 0x74, 0xf5, 0x99, 0x8d, 0x3d, 0x3e, 0xdd, 0xe0, 0xab, 0x63, 0x92, 0xf6, 0x23, + 0x05, 0x5a, 0x09, 0x8d, 0x89, 0x8b, 0xbe, 0x01, 0x30, 0x74, 0xa6, 0x53, 0xc7, 0x0e, 0x47, 0xd4, + 0x7e, 0xcb, 0x3b, 0x37, 0x72, 0x04, 0xde, 0x15, 0x4c, 0xba, 0xb4, 0x20, 0xa9, 0xee, 0xc2, 0x73, + 0xa9, 0xab, 0x79, 0xb0, 0xfa, 0x00, 0xfb, 0x74, 0x8a, 0xd0, 0x39, 0x7c, 0x1a, 0x2a, 0xc1, 0x18, + 0xf6, 0x84, 0xf9, 0x97, 0x74, 0x99, 0x94, 0x36, 0x52, 0xad, 0xdc, 0x48, 0x0b, 0x49, 0x23, 0x69, + 0x3f, 0x53, 0xe0, 0x72, 0xea, 0xd0, 0xea, 0x46, 0xf8, 0x00, 0x9a, 0x42, 0x2b, 0x2a, 0xf6, 0x02, + 0xf5, 0x9a, 0x72, 0x43, 0x24, 0x97, 0x68, 0xbf, 0x52, 0xa0, 0x35, 0xe0, 0x82, 0x45, 0xc6, 0x78, + 0x04, 0x2d, 0xc1, 0x74, 0xdf, 0xf1, 0x06, 0xd8, 0xe7, 0xb2, 0x69, 0x65, 0x3b, 0x33, 0x4e, 0x3d, + 0xbd, 0x34, 0x61, 0x96, 0x5a, 0x8e, 0xef, 0x94, 0x7a, 0x9e, 0x76, 0x00, 0xab, 0x49, 0xf1, 0x2a, + 0x9b, 0x4d, 0xfb, 0x3e, 0xa8, 0xd1, 0xa7, 0xb8, 0xe7, 0xba, 0x13, 0x6b, 0x48, 0xcf, 0x0a, 0xad, + 0x11, 0x2a, 0x2f, 0x8b, 0xab, 0x94, 0x8b, 0x9b, 0xe3, 0x03, 0x37, 0x01, 0xc6, 0x9e, 0x33, 0x4d, + 0x78, 0x81, 0x44, 0xd1, 0xfe, 0xa8, 0xc0, 0xf5, 0xc2, 0xc3, 0xab, 0x7b, 0xc4, 0x47, 0xb0, 0x6a, + 0x72, 0x50, 0x09, 0x30, 0xf1, 0x25, 0xa7, 0xb8, 0x55, 0xf4, 0xe9, 0x38, 0xab, 0x9e, 0x59, 0xa8, + 0xf9, 0xd0, 0x79, 0x80, 0xfd, 0x50, 0x70, 0x1d, 0x9f, 0xe6, 0x58, 0xaa, 0x08, 0xfe, 0xaa, 0x7d, + 0xf0, 0x3f, 0x29, 0x70, 0xa3, 0xe4, 0xd8, 0xf3, 0xb1, 0x51, 0xed, 0x45, 0x6d, 0xf4, 0x77, 0x05, + 0xd6, 0x0f, 0x3d, 0xc3, 0x26, 0x63, 0xec, 0x51, 0xd6, 0xfd, 0x10, 0xf7, 0x42, 0xeb, 0xb4, 0xe1, + 0x02, 0x87, 0x0f, 0x6e, 0x9e, 0x68, 0x88, 0xde, 0x82, 0x4b, 0xce, 0x64, 0xb4, 0x2f, 0x61, 0x26, + 0xb3, 0x52, 0x8a, 0x1a, 0xf2, 0xd9, 0xf8, 0x4c, 0xe6, 0x63, 0xe6, 0x4a, 0x51, 0xd3, 0x36, 0xad, + 0x97, 0x23, 0x53, 0x23, 0x85, 0x4c, 0x8f, 0x61, 0x23, 0x4f, 0x81, 0xea, 0xd7, 0xec, 0x1f, 0x0a, + 0xac, 0x7c, 0xe8, 0x58, 0xb6, 0x78, 0xe5, 0x8a, 0x2d, 0x72, 0x13, 0xc0, 0xc3, 0xa7, 0x3d, 0x4c, + 0x88, 0x61, 0x62, 0x6e, 0x0d, 0x89, 0x52, 0x86, 0xac, 0x73, 0x68, 0x7f, 0x13, 0xe0, 0x33, 0xc7, + 0xb2, 0x07, 0x4e, 0xe0, 0x0d, 0x31, 0xd5, 0xbf, 0xa1, 0x4b, 0x14, 0x74, 0x1b, 0x9a, 0x96, 0xfd, + 0xd4, 0xf2, 0x85, 0x99, 0x17, 0xe9, 0x1e, 0x49, 0xa2, 0xd6, 0x87, 0xa6, 0xa4, 0x4d, 0x75, 0xf3, + 0xfc, 0x2b, 0x44, 0x82, 0x14, 0x0c, 0x84, 0x13, 0x8e, 0x4d, 0x30, 0x7f, 0x91, 0x64, 0xbd, 0x94, + 0xf2, 0xaf, 0x9a, 0xbe, 0x67, 0x92, 0xad, 0x17, 0x32, 0xb6, 0x96, 0x10, 0xaa, 0x9e, 0x46, 0xa8, + 0x70, 0xfe, 0x53, 0xc3, 0x1e, 0x4d, 0xf0, 0xa8, 0x47, 0x4c, 0xee, 0x2d, 0x12, 0x05, 0x69, 0xb0, + 0xc2, 0x46, 0x3a, 0x26, 0xc1, 0xc4, 0xa7, 0xc6, 0x6a, 0xe8, 0x09, 0x9a, 0xf6, 0x09, 0x74, 0x8a, + 0x55, 0xab, 0x6e, 0xba, 0x31, 0xac, 0x1c, 0x04, 0x96, 0x3f, 0x87, 0x63, 0x55, 0x7b, 0xb4, 0xfb, + 0xd0, 0x94, 0xce, 0xa9, 0x2e, 0xf7, 0x6f, 0x15, 0x58, 0x8f, 0xc0, 0x3f, 0x0e, 0xdd, 0xca, 0x35, + 0xa8, 0x04, 0xa6, 0x21, 0x44, 0x8f, 0xad, 0x89, 0x8f, 0x3d, 0xfa, 0xa1, 0x1b, 0x3a, 0x1f, 0x85, + 0xe7, 0xd9, 0xf8, 0x99, 0x3f, 0xc0, 0xa7, 0xfc, 0x3e, 0x44, 0x43, 0xed, 0x73, 0x05, 0x36, 0xf2, + 0x64, 0xac, 0x8e, 0xbb, 0xf7, 0x01, 0xa6, 0x71, 0x80, 0xcb, 0x5e, 0xa5, 0xb7, 0x8a, 0x10, 0x97, + 0x1d, 0x7d, 0x3f, 0x98, 0x4c, 0xe8, 0xab, 0x2f, 0xad, 0x94, 0x65, 0xaf, 0x27, 0x65, 0xff, 0x49, + 0x46, 0x76, 0x11, 0xdf, 0x95, 0x62, 0x8f, 0x24, 0x56, 0x8d, 0x06, 0x7e, 0xf2, 0x71, 0x95, 0xb0, + 0x47, 0xfb, 0x8d, 0x02, 0x57, 0x73, 0x45, 0x7a, 0x6d, 0xec, 0xa9, 0xfd, 0x45, 0x01, 0xf4, 0x91, + 0x35, 0x3c, 0x91, 0xf8, 0xca, 0x2d, 0xf6, 0x25, 0x58, 0x3d, 0xb1, 0x86, 0x27, 0x78, 0xc4, 0xac, + 0x20, 0xd9, 0x2d, 0x43, 0x0f, 0x1d, 0xd0, 0xc3, 0x06, 0x71, 0x6c, 0x6e, 0x3b, 0x3e, 0x4a, 0x5b, + 0xae, 0x51, 0x7e, 0x31, 0x17, 0x53, 0x17, 0xf3, 0x3d, 0x58, 0xea, 0x8e, 0x76, 0x18, 0xd8, 0x14, + 0x86, 0x21, 0xf4, 0x68, 0x0a, 0x51, 0x2c, 0x05, 0xe3, 0xa3, 0x30, 0x1b, 0x59, 0xcb, 0xe8, 0x5b, + 0xfd, 0x73, 0xbc, 0x0b, 0x4d, 0x2b, 0x92, 0x49, 0xfa, 0x22, 0xab, 0x3c, 0x85, 0x13, 0xf2, 0xea, + 0x49, 0x36, 0x2d, 0xa0, 0x98, 0x10, 0x3e, 0x2d, 0x78, 0x44, 0x45, 0x8a, 0x30, 0x21, 0x09, 0xd4, + 0x4a, 0x06, 0xa8, 0xab, 0x61, 0xdb, 0x4f, 0xd9, 0x5d, 0xc9, 0x9c, 0xfb, 0xf2, 0x52, 0xb3, 0xb9, + 0x33, 0x92, 0x98, 0x5d, 0xfb, 0xab, 0x02, 0x57, 0xba, 0xf4, 0xd9, 0x0d, 0xc5, 0x3c, 0x74, 0x04, + 0xc4, 0xcf, 0x56, 0xb6, 0xf8, 0xc5, 0x8b, 0x7d, 0xb0, 0x9e, 0xf0, 0xc1, 0xbb, 0x70, 0x99, 0x3d, + 0xf1, 0xb2, 0x23, 0x37, 0xa8, 0x23, 0x67, 0x27, 0x4a, 0xfd, 0xf1, 0xc7, 0x0a, 0xac, 0xe7, 0x88, + 0xfd, 0xea, 0x9c, 0xea, 0x97, 0x0a, 0x5c, 0x11, 0x69, 0xc6, 0x64, 0x32, 0xcf, 0xad, 0xae, 0xfc, + 0xd0, 0x38, 0xe3, 0x31, 0xc1, 0x7e, 0xf4, 0xd0, 0xb0, 0x11, 0xba, 0x02, 0x8d, 0xa1, 0x13, 0xd8, + 0x3e, 0x7f, 0x66, 0xd8, 0x40, 0xfb, 0xb5, 0xf4, 0x10, 0x4a, 0xe2, 0xbd, 0x3e, 0x98, 0xf8, 0x3b, + 0x05, 0x2e, 0xee, 0xf6, 0x06, 0x94, 0x2d, 0x59, 0x6b, 0x50, 0x9e, 0xaf, 0xb4, 0xb2, 0x05, 0xc8, + 0x14, 0x51, 0x75, 0x68, 0xcd, 0xbe, 0x31, 0x8d, 0x22, 0xdc, 0x9c, 0x99, 0x10, 0x5b, 0x93, 0x54, + 0x61, 0xee, 0x0c, 0x5d, 0xfb, 0xb3, 0x02, 0x2b, 0xa2, 0xa6, 0x10, 0x7e, 0xdc, 0x3d, 0x00, 0xd7, + 0x30, 0x2d, 0x9b, 0x7e, 0x14, 0x2e, 0xe9, 0xed, 0x1c, 0x49, 0x79, 0x02, 0xf3, 0x6d, 0xc1, 0xab, + 0x4b, 0xeb, 0x50, 0x87, 0xab, 0x2b, 0x49, 0x1a, 0x13, 0x4a, 0xae, 0xd9, 0xec, 0xc7, 0xf0, 0xdf, + 0x0a, 0x34, 0x25, 0x81, 0x89, 0x8b, 0xbe, 0x08, 0x8b, 0x74, 0x39, 0xe1, 0x05, 0xaf, 0x16, 0x77, + 0xec, 0xc8, 0xf6, 0x3a, 0x9f, 0x46, 0xdf, 0x4a, 0xa8, 0xc6, 0xea, 0x5b, 0x5f, 0xc8, 0x55, 0x8d, + 0x85, 0x99, 0x05, 0xba, 0xa9, 0x70, 0x91, 0xee, 0xdb, 0x0f, 0xa6, 0x54, 0xfc, 0x86, 0x2e, 0xc6, + 0x29, 0xd7, 0xab, 0x3f, 0x6f, 0x70, 0xb7, 0x1f, 0x17, 0x78, 0xe6, 0xb9, 0x6e, 0x33, 0x01, 0x4d, + 0xfb, 0x5b, 0x26, 0x5a, 0x24, 0xbb, 0xbd, 0xc1, 0xcc, 0x4b, 0x1c, 0x24, 0x9d, 0x4c, 0x8c, 0x53, + 0xde, 0xb1, 0xf0, 0x82, 0xde, 0x31, 0xfb, 0x2b, 0xff, 0xa0, 0x96, 0x89, 0xc2, 0xa8, 0xdc, 0xc4, + 0x45, 0xdf, 0x84, 0x0b, 0xec, 0x92, 0x45, 0xdf, 0x7b, 0xde, 0xbb, 0x19, 0x2d, 0x7b, 0x59, 0x7e, + 0x20, 0x82, 0xbe, 0x7e, 0x30, 0x25, 0xdc, 0x13, 0x24, 0x4a, 0x55, 0x5f, 0xb0, 0xa0, 0xb5, 0x67, + 0x91, 0xa9, 0x45, 0x88, 0x78, 0xc0, 0xaa, 0x95, 0x95, 0x0a, 0x6f, 0x9d, 0x76, 0x00, 0xab, 0xc9, + 0xa3, 0xaa, 0xa7, 0x29, 0x7f, 0x50, 0x00, 0xf5, 0x02, 0x5e, 0xac, 0x8d, 0x7d, 0xf9, 0x9c, 0x34, + 0x90, 0xe2, 0xb7, 0x7a, 0x22, 0x7e, 0xd3, 0x60, 0x65, 0x1a, 0xf8, 0x78, 0x34, 0xc0, 0x43, 0xc7, + 0x1e, 0x11, 0xfa, 0x82, 0x34, 0xf5, 0x04, 0x4d, 0x3b, 0x84, 0xb5, 0x8c, 0xa4, 0xd5, 0x0d, 0xf0, + 0x43, 0x05, 0xda, 0xbb, 0x86, 0x3d, 0xc4, 0x93, 0x57, 0x6f, 0x06, 0xed, 0x09, 0x5c, 0x2b, 0x90, + 0xe5, 0xa5, 0x24, 0xd2, 0x62, 0xd7, 0xf3, 0x74, 0xd2, 0x3e, 0x34, 0xa5, 0x73, 0xaa, 0xcb, 0x3d, + 0x01, 0x94, 0xb2, 0xc9, 0x79, 0x4a, 0x7f, 0x08, 0x6b, 0x99, 0xd3, 0xaa, 0xeb, 0xf0, 0x7b, 0x05, + 0xae, 0x0d, 0x12, 0x30, 0xd9, 0xb7, 0x86, 0x27, 0xb6, 0x31, 0xc5, 0x33, 0x21, 0xde, 0xe6, 0x8c, + 0x11, 0xc4, 0x47, 0xe3, 0x8a, 0x75, 0xb2, 0xd8, 0x03, 0x1b, 0x09, 0x0f, 0xfc, 0x2e, 0xa8, 0x45, + 0x82, 0x56, 0x37, 0x83, 0x47, 0x8b, 0xf1, 0x2c, 0x0d, 0x19, 0x04, 0x2e, 0x2f, 0x42, 0x46, 0x39, + 0xd0, 0xec, 0x22, 0x58, 0x2c, 0x74, 0xad, 0xb0, 0x08, 0x9d, 0xce, 0x7d, 0x7e, 0xce, 0x8a, 0xf0, + 0xf9, 0x87, 0xbe, 0xda, 0x04, 0xe8, 0x8c, 0xbe, 0xf9, 0xb1, 0x4c, 0xff, 0xb7, 0x06, 0xd5, 0x2f, + 0x58, 0x3e, 0x98, 0x39, 0xf9, 0xf5, 0xe8, 0x52, 0xfd, 0xa7, 0x06, 0xeb, 0x49, 0x1f, 0x9c, 0x5d, + 0xd8, 0x79, 0x01, 0xcf, 0x98, 0xe3, 0x92, 0x7c, 0x45, 0xba, 0x7e, 0x0d, 0x9e, 0x0b, 0x98, 0x8e, + 0x63, 0x4e, 0x30, 0x6b, 0x15, 0x1f, 0x07, 0xe3, 0xad, 0x81, 0xef, 0x59, 0xb6, 0xf9, 0x1d, 0x63, + 0x12, 0x60, 0xe9, 0x72, 0xbe, 0x0b, 0x17, 0xc6, 0xc6, 0x10, 0x7f, 0xac, 0x3f, 0xa2, 0xf9, 0xe3, + 0xac, 0x85, 0x11, 0x33, 0xfa, 0xaa, 0xdc, 0x4d, 0xbe, 0x40, 0x57, 0x5e, 0xcf, 0xac, 0xec, 0xda, + 0xfe, 0x3b, 0x3b, 0x6c, 0x61, 0xcc, 0x8d, 0xee, 0x42, 0x0d, 0x3f, 0x6b, 0x5f, 0x9c, 0xe3, 0xb4, + 0x1a, 0x7e, 0xa6, 0x3d, 0x86, 0x8d, 0x3c, 0x1b, 0x57, 0xbf, 0xe3, 0xa7, 0x71, 0x0d, 0xec, 0xde, + 0x31, 0xf1, 0x3d, 0x63, 0xe8, 0xcf, 0xfe, 0x7c, 0xd5, 0xba, 0x48, 0x9f, 0x2b, 0xd0, 0xce, 0x3f, + 0xb3, 0xba, 0x43, 0xdf, 0xe5, 0x7f, 0x41, 0xe8, 0x45, 0xf1, 0xe2, 0x31, 0xf6, 0x78, 0x8d, 0x29, + 0x3b, 0x81, 0xbe, 0x0c, 0x6b, 0x66, 0xb2, 0x98, 0xfa, 0xd0, 0x20, 0x9f, 0x52, 0x99, 0xeb, 0x7a, + 0xde, 0xd4, 0xce, 0x3f, 0x57, 0x81, 0xfd, 0xa1, 0x01, 0x7d, 0x1d, 0x96, 0x87, 0x71, 0xdf, 0x1c, + 0xad, 0x47, 0xd9, 0x51, 0xe2, 0xdf, 0x03, 0xea, 0x46, 0x1e, 0x99, 0x16, 0x0f, 0x96, 0x3e, 0x8b, + 0x3a, 0x16, 0x68, 0x8d, 0x33, 0xc9, 0x1d, 0x19, 0xf5, 0x4a, 0x96, 0xc8, 0xd6, 0x9d, 0x46, 0x65, + 0x6f, 0xb1, 0x4e, 0x2e, 0xb8, 0x8b, 0x75, 0xc9, 0xea, 0x78, 0x78, 0xd1, 0xe5, 0x16, 0x37, 0xba, + 0x1a, 0xfd, 0x7d, 0x21, 0xd5, 0x6d, 0x57, 0xdb, 0xf9, 0x13, 0xc4, 0x45, 0xef, 0xc3, 0x0a, 0x91, + 0xda, 0xbd, 0x28, 0xd2, 0x2d, 0xd5, 0xa2, 0x56, 0xaf, 0xe6, 0xd2, 0x89, 0x8b, 0xbe, 0x07, 0x57, + 0xcd, 0xfc, 0xfe, 0x2a, 0x7a, 0x23, 0x75, 0x6a, 0xb6, 0xa5, 0xa9, 0x6a, 0xb3, 0x58, 0x88, 0x8b, + 0xc6, 0x70, 0xcd, 0x2c, 0xea, 0x4f, 0xa2, 0x37, 0xe3, 0x0d, 0x0a, 0x1b, 0xa7, 0xea, 0xed, 0xd9, + 0x4c, 0xc4, 0x45, 0x07, 0x80, 0xfc, 0x4c, 0x63, 0x0e, 0x75, 0xf8, 0xda, 0xdc, 0xa6, 0xa3, 0x7a, + 0xa3, 0x64, 0x96, 0xb8, 0x68, 0x08, 0x6d, 0xb3, 0xa0, 0x2f, 0x83, 0xb4, 0xc4, 0x7f, 0x4d, 0x72, + 0x7b, 0x52, 0xea, 0x9b, 0x33, 0x79, 0x98, 0xdc, 0x66, 0xa6, 0x81, 0x20, 0xe4, 0xce, 0xed, 0x7f, + 0x08, 0xb9, 0x0b, 0x3a, 0x0f, 0x87, 0xb0, 0x66, 0x66, 0x8b, 0xe8, 0x28, 0x7f, 0x95, 0xf0, 0xb2, + 0x9b, 0x65, 0xd3, 0xc4, 0x45, 0x0f, 0xa1, 0x75, 0x92, 0xac, 0x03, 0xa3, 0xe8, 0x0f, 0x37, 0xd9, + 0x7a, 0xb8, 0xaa, 0x16, 0x4d, 0x09, 0x95, 0x53, 0xb5, 0x54, 0x59, 0xe5, 0x6c, 0x79, 0x57, 0x56, + 0x39, 0xaf, 0x08, 0xdb, 0x8f, 0x8a, 0x93, 0x52, 0x45, 0x11, 0x5d, 0x8f, 0xea, 0x7e, 0x39, 0x25, + 0x52, 0xb5, 0x53, 0x3c, 0xc9, 0xf6, 0x33, 0xd3, 0x15, 0x37, 0xb1, 0x5f, 0x5e, 0xa9, 0x50, 0xed, + 0x14, 0x4f, 0x32, 0x90, 0x10, 0xb7, 0x57, 0x80, 0x84, 0x5c, 0x8d, 0x12, 0x20, 0x91, 0xac, 0xf8, + 0x1c, 0x00, 0xca, 0x16, 0x07, 0x0a, 0xbc, 0x83, 0xd7, 0x3b, 0x0a, 0xbc, 0x43, 0x54, 0x15, 0xde, + 0x87, 0x15, 0x39, 0x05, 0x16, 0x98, 0x91, 0x4a, 0xc1, 0x05, 0x66, 0x64, 0xf2, 0xe5, 0x87, 0xd0, + 0x4a, 0x25, 0x57, 0xc2, 0x11, 0xb2, 0x09, 0xa0, 0x70, 0x84, 0xbc, 0x7c, 0xec, 0x09, 0xac, 0xe7, + 0x26, 0x6b, 0xe8, 0x56, 0x84, 0xd1, 0x05, 0x69, 0xa5, 0xba, 0x59, 0xce, 0xc0, 0x2c, 0x2e, 0xc8, + 0xc2, 0xe2, 0x72, 0x02, 0x24, 0x2c, 0x9e, 0xcc, 0x53, 0x1e, 0x42, 0x2b, 0xb5, 0xa9, 0xd0, 0x2e, + 0x9b, 0x44, 0x09, 0xed, 0xf2, 0x32, 0x9e, 0x4f, 0xd2, 0x01, 0x42, 0x94, 0x08, 0xa0, 0xcd, 0x14, + 0x1c, 0x67, 0x12, 0x1a, 0xf5, 0x8d, 0x19, 0x1c, 0x0c, 0xba, 0x0b, 0xa2, 0x72, 0x19, 0xba, 0x0b, + 0x52, 0x05, 0x19, 0xba, 0x0b, 0x03, 0x7b, 0xe6, 0x7c, 0xa9, 0x18, 0x57, 0x76, 0xbe, 0x6c, 0xe0, + 0x2d, 0x3b, 0x5f, 0x5e, 0x70, 0x7c, 0x00, 0x28, 0x1b, 0x34, 0x89, 0x2d, 0x73, 0x63, 0x56, 0xb1, + 0x65, 0x41, 0xb4, 0xf5, 0x58, 0xaa, 0xdd, 0x4b, 0xa1, 0x0b, 0x4a, 0xe3, 0x59, 0x2a, 0x96, 0x52, + 0x6f, 0x95, 0xce, 0x13, 0xf7, 0x83, 0x5b, 0x4f, 0x6e, 0xec, 0xbb, 0xd8, 0x3e, 0xea, 0xf6, 0xa4, + 0x3f, 0x3c, 0xd2, 0x35, 0xef, 0xd1, 0xdf, 0xe3, 0x45, 0x4a, 0x7a, 0xe7, 0x7f, 0x01, 0x00, 0x00, + 0xff, 0xff, 0x96, 0x88, 0x8a, 0x2e, 0x63, 0x29, 0x00, 0x00, } diff --git a/pkg/proto/group/group.proto b/pkg/proto/group/group.proto index b4c965fc8..67fe6b916 100644 --- a/pkg/proto/group/group.proto +++ b/pkg/proto/group/group.proto @@ -4,48 +4,42 @@ import "Open-IM-Server/pkg/proto/sdk_ws/wrappers.proto"; option go_package = "Open_IM/pkg/proto/group;group"; package group; -message CommonResp{ - int32 ErrCode = 1; - string ErrMsg = 2; -} message GroupAddMemberInfo{ - string UserID = 1; - int32 RoleLevel = 2; + string userID = 1; + int32 roleLevel = 2; } message CreateGroupReq{ - repeated GroupAddMemberInfo InitMemberList = 1; - server_api_params.GroupInfo GroupInfo = 2; - string OperationID = 3; - string OpUserID = 4; //app manager or group owner - string OwnerUserID = 5; //owner + repeated GroupAddMemberInfo initMemberList = 1; + server_api_params.GroupInfo groupInfo = 2; + string operationID = 3; + string opUserID = 4; //app manager or group owner + string ownerUserID = 5; //owner } message CreateGroupResp{ - int32 ErrCode = 1; - string ErrMsg = 2; - server_api_params.GroupInfo GroupInfo = 3; + server_api_params.CommonResp commonResp = 1; + server_api_params.GroupInfo groupInfo = 3; } message GetGroupsInfoReq{ - repeated string GroupIDList = 1; - string OperationID = 2; - string OpUserID = 3; //No verification permission + repeated string groupIDList = 1; + string operationID = 2; + string opUserID = 3; //No verification permission } message GetGroupsInfoResp{ - int32 ErrCode = 1; - string ErrMsg = 2; - repeated server_api_params.GroupInfo GroupInfoList = 3; + server_api_params.CommonResp commonResp = 1; + repeated server_api_params.GroupInfo groupInfoList = 3; } message SetGroupInfoReq{ server_api_params.GroupInfoForSet groupInfoForSet = 1; - string OpUserID = 2; //app manager or group owner - string OperationID = 3; + string opUserID = 2; //app manager or group owner + string operationID = 3; } message SetGroupInfoResp{ server_api_params.CommonResp commonResp = 1; @@ -53,46 +47,45 @@ message SetGroupInfoResp{ message GetGroupApplicationListReq { - string OpUserID = 1; //app manager or group owner(manager) - string OperationID = 2; - string FromUserID = 3; //owner or manager + string opUserID = 1; //app manager or group owner(manager) + string operationID = 2; + string fromUserID = 3; //owner or manager } message GetGroupApplicationListResp { - int32 ErrCode = 1; - string ErrMsg = 2; - repeated server_api_params.GroupRequest GroupRequestList = 3; + server_api_params.CommonResp commonResp = 1; + repeated server_api_params.GroupRequest groupRequestList = 3; } message GetUserReqApplicationListReq{ - string UserID = 1; - string OpUserID = 2; - string OperationID = 3; + string userID = 1; + string opUserID = 2; + string operationID = 3; } message GetUserReqApplicationListResp{ server_api_params.CommonResp commonResp = 1; - repeated server_api_params.GroupRequest GroupRequestList = 2; + repeated server_api_params.GroupRequest groupRequestList = 2; } message TransferGroupOwnerReq { - string GroupID = 1; - string OldOwnerUserID = 2; - string NewOwnerUserID = 3; - string OperationID = 4; - string OpUserID = 5; //app manager or group owner + string groupID = 1; + string oldOwnerUserID = 2; + string newOwnerUserID = 3; + string operationID = 4; + string opUserID = 5; //app manager or group owner } message TransferGroupOwnerResp{ server_api_params.CommonResp commonResp = 1; } message JoinGroupReq{ - string GroupID = 1; - string ReqMessage = 2; - string OpUserID = 3; - string OperationID = 4; - int32 JoinSource = 5; - string InviterUserID = 6; + string groupID = 1; + string reqMessage = 2; + string opUserID = 3; + string operationID = 4; + int32 joinSource = 5; + string inviterUserID = 6; } message JoinGroupResp{ @@ -101,12 +94,12 @@ message JoinGroupResp{ message GroupApplicationResponseReq{ - string OperationID = 1; - string OpUserID = 2; - string GroupID = 3; - string FromUserID = 4; // - string HandledMsg = 5; - int32 HandleResult = 6; + string operationID = 1; + string opUserID = 2; + string groupID = 3; + string fromUserID = 4; // + string handledMsg = 5; + int32 handleResult = 6; } message GroupApplicationResponseResp{ server_api_params.CommonResp commonResp = 1; @@ -115,9 +108,9 @@ message GroupApplicationResponseResp{ message QuitGroupReq{ - string GroupID = 1; - string OperationID = 2; - string OpUserID = 3; + string groupID = 1; + string operationID = 2; + string opUserID = 3; } message QuitGroupResp{ server_api_params.CommonResp commonResp = 1; @@ -126,130 +119,124 @@ message QuitGroupResp{ message GetGroupMemberListReq { - string GroupID = 1; - string OpUserID = 2; //No verification permission - string OperationID = 3; - int32 Filter = 4; - int32 NextSeq = 5; + string groupID = 1; + string opUserID = 2; //No verification permission + string operationID = 3; + int32 filter = 4; + int32 nextSeq = 5; } message GetGroupMemberListResp { - int32 ErrCode = 1; - string ErrMsg = 2; + server_api_params.CommonResp commonResp = 1; repeated server_api_params.GroupMemberFullInfo memberList = 3; int32 nextSeq = 4; } message GetGroupMembersInfoReq { - string GroupID = 1; + string groupID = 1; repeated string memberList = 2; - string OpUserID = 3; //No verification permission - string OperationID = 4; + string opUserID = 3; //No verification permission + string operationID = 4; } message GetGroupMembersInfoResp { - int32 ErrCode = 1; - string ErrMsg = 2; + server_api_params.CommonResp commonResp = 1; repeated server_api_params.GroupMemberFullInfo memberList = 3; } message KickGroupMemberReq { - string GroupID = 1; - repeated string KickedUserIDList = 2; - string Reason = 3; - string OperationID = 5; - string OpUserID = 6; //app manger or group manager + string groupID = 1; + repeated string kickedUserIDList = 2; + string reason = 3; + string operationID = 5; + string opUserID = 6; //app manger or group manager } message Id2Result { - string UserID = 1; - int32 Result = 2; //0 ok; -1 error + string userID = 1; + int32 result = 2; //0 ok; -1 error } message KickGroupMemberResp { - int32 ErrCode = 1; - string ErrMsg = 2; - repeated Id2Result Id2ResultList = 3; + server_api_params.CommonResp commonResp = 1; + repeated Id2Result id2ResultList = 3; } message GetJoinedGroupListReq { - string FromUserID = 1; + string fromUserID = 1; string operationID = 2; - string OpUserID = 3; //app manager or FromUserID + string opUserID = 3; //app manager or FromUserID } message GetJoinedGroupListResp{ - int32 ErrCode = 1; - string ErrMsg = 2; - repeated server_api_params.GroupInfo GroupList = 3; + server_api_params.CommonResp commonResp = 1; + repeated server_api_params.GroupInfo groupList = 3; } message InviteUserToGroupReq { - string OperationID = 2; - string GroupID = 3; - string Reason = 4; - repeated string InvitedUserIDList = 5; - string OpUserID = 6; //group member or app manager + string operationID = 2; + string groupID = 3; + string reason = 4; + repeated string invitedUserIDList = 5; + string opUserID = 6; //group member or app manager } message InviteUserToGroupResp { - int32 ErrCode = 1; - string ErrMsg = 2; - repeated Id2Result Id2ResultList = 3; // 0 ok, -1 error + server_api_params.CommonResp commonResp = 1; + repeated Id2Result id2ResultList = 3; // 0 ok, -1 error } message GetGroupAllMemberReq { - string GroupID = 1; - string OpUserID = 2; //No verification permission - string OperationID = 3; - int32 Offset = 4; - int32 Count = 5; + string groupID = 1; + string opUserID = 2; //No verification permission + string operationID = 3; + int32 offset = 4; + int32 count = 5; } message GetGroupAllMemberResp { - int32 ErrCode = 1; - string ErrMsg = 2; + server_api_params.CommonResp commonResp = 1; repeated server_api_params.GroupMemberFullInfo memberList = 3; } message CMSGroup { - server_api_params.GroupInfo GroupInfo = 1; - string GroupOwnerUserName = 2; - string GroupOwnerUserID = 3; + server_api_params.GroupInfo groupInfo = 1; + string groupOwnerUserName = 2; + string groupOwnerUserID = 3; } message GetGroupsReq { - server_api_params.RequestPagination Pagination = 1; - string GroupName = 2; - string GroupID = 3; - string OperationID = 4; + server_api_params.RequestPagination pagination = 1; + string groupName = 2; + string groupID = 3; + string operationID = 4; } message GetGroupsResp { - repeated CMSGroup CMSGroups = 1; - server_api_params.ResponsePagination Pagination = 2; + repeated CMSGroup groups = 1; + server_api_params.ResponsePagination pagination = 2; int32 GroupNum = 3; server_api_params.CommonResp commonResp = 4; } message GetGroupMemberReq { - string GroupID = 1; - string OperationID = 2; + string groupID = 1; + string operationID = 2; } message GetGroupMembersCMSReq { - string GroupID = 1; - string UserName = 2; - server_api_params.RequestPagination Pagination = 3; - string OperationID = 4; + string groupID = 1; + string userName = 2; + server_api_params.RequestPagination pagination = 3; + string operationID = 4; } message GetGroupMembersCMSResp { repeated server_api_params.GroupMemberFullInfo members = 1; - server_api_params.ResponsePagination Pagination = 2; - int32 MemberNums = 3; + server_api_params.ResponsePagination pagination = 2; + int32 memberNums = 3; server_api_params.CommonResp commonResp = 4; } @@ -334,18 +321,18 @@ message GetJoinedSuperGroupListReq { message GetJoinedSuperGroupListResp { server_api_params.CommonResp commonResp = 1; - repeated server_api_params.GroupInfo GroupList = 3; + repeated server_api_params.GroupInfo groupList = 3; } message GetSuperGroupsInfoReq { - repeated string GroupIDList = 1; - string OperationID = 2; - string OpUserID = 3; //No verification permission + repeated string groupIDList = 1; + string operationID = 2; + string opUserID = 3; //No verification permission } message GetSuperGroupsInfoResp { server_api_params.CommonResp commonResp = 1; - repeated server_api_params.GroupInfo GroupInfoList = 3; + repeated server_api_params.GroupInfo groupInfoList = 3; } message SetGroupMemberInfoReq{