You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Open-IM-Server/pkg/proto/group/group.pb.go

3853 lines
150 KiB

2 years ago
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: group/group.proto
2 years ago
package group // import "OpenIM/pkg/proto/group"
import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import math "math"
import sdkws "OpenIM/pkg/proto/sdkws"
import wrapperspb "google.golang.org/protobuf/types/known/wrapperspb"
import (
2 years ago
context "golang.org/x/net/context"
grpc "google.golang.org/grpc"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
2 years ago
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
3 years ago
type CreateGroupReq struct {
2 years ago
InitMembers []string `protobuf:"bytes,1,rep,name=initMembers" json:"initMembers,omitempty"`
GroupInfo *sdkws.GroupInfo `protobuf:"bytes,2,opt,name=groupInfo" json:"groupInfo,omitempty"`
AdminUserIDs []string `protobuf:"bytes,3,rep,name=adminUserIDs" json:"adminUserIDs,omitempty"`
OwnerUserID string `protobuf:"bytes,4,opt,name=ownerUserID" json:"ownerUserID,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
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_06303c65c0c20784, []int{0}
}
func (m *CreateGroupReq) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_CreateGroupReq.Unmarshal(m, b)
}
func (m *CreateGroupReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_CreateGroupReq.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *CreateGroupReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_CreateGroupReq.Merge(dst, src)
3 years ago
}
func (m *CreateGroupReq) XXX_Size() int {
2 years ago
return xxx_messageInfo_CreateGroupReq.Size(m)
2 years ago
}
func (m *CreateGroupReq) XXX_DiscardUnknown() {
xxx_messageInfo_CreateGroupReq.DiscardUnknown(m)
}
var xxx_messageInfo_CreateGroupReq proto.InternalMessageInfo
2 years ago
func (m *CreateGroupReq) GetInitMembers() []string {
if m != nil {
2 years ago
return m.InitMembers
}
return nil
}
2 years ago
func (m *CreateGroupReq) GetGroupInfo() *sdkws.GroupInfo {
if m != nil {
return m.GroupInfo
}
3 years ago
return nil
}
func (m *CreateGroupReq) GetAdminUserIDs() []string {
if m != nil {
return m.AdminUserIDs
}
return nil
}
func (m *CreateGroupReq) GetOwnerUserID() string {
if m != nil {
return m.OwnerUserID
3 years ago
}
return ""
}
type CreateGroupResp struct {
2 years ago
GroupInfo *sdkws.GroupInfo `protobuf:"bytes,1,opt,name=groupInfo" json:"groupInfo,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
2 years ago
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_06303c65c0c20784, []int{1}
3 years ago
}
func (m *CreateGroupResp) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_CreateGroupResp.Unmarshal(m, b)
3 years ago
}
func (m *CreateGroupResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_CreateGroupResp.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *CreateGroupResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_CreateGroupResp.Merge(dst, src)
}
func (m *CreateGroupResp) XXX_Size() int {
2 years ago
return xxx_messageInfo_CreateGroupResp.Size(m)
2 years ago
}
func (m *CreateGroupResp) XXX_DiscardUnknown() {
xxx_messageInfo_CreateGroupResp.DiscardUnknown(m)
}
var xxx_messageInfo_CreateGroupResp proto.InternalMessageInfo
2 years ago
func (m *CreateGroupResp) GetGroupInfo() *sdkws.GroupInfo {
if m != nil {
return m.GroupInfo
}
3 years ago
return nil
}
3 years ago
type GetGroupsInfoReq struct {
2 years ago
GroupIDs []string `protobuf:"bytes,1,rep,name=groupIDs" json:"groupIDs,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
2 years ago
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_06303c65c0c20784, []int{2}
3 years ago
}
func (m *GetGroupsInfoReq) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_GetGroupsInfoReq.Unmarshal(m, b)
3 years ago
}
func (m *GetGroupsInfoReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_GetGroupsInfoReq.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *GetGroupsInfoReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGroupsInfoReq.Merge(dst, src)
}
func (m *GetGroupsInfoReq) XXX_Size() int {
2 years ago
return xxx_messageInfo_GetGroupsInfoReq.Size(m)
}
func (m *GetGroupsInfoReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetGroupsInfoReq.DiscardUnknown(m)
2 years ago
}
3 years ago
var xxx_messageInfo_GetGroupsInfoReq proto.InternalMessageInfo
func (m *GetGroupsInfoReq) GetGroupIDs() []string {
if m != nil {
return m.GroupIDs
3 years ago
}
return nil
}
3 years ago
type GetGroupsInfoResp struct {
2 years ago
GroupInfos []*sdkws.GroupInfo `protobuf:"bytes,1,rep,name=groupInfos" json:"groupInfos,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
2 years ago
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_06303c65c0c20784, []int{3}
3 years ago
}
func (m *GetGroupsInfoResp) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_GetGroupsInfoResp.Unmarshal(m, b)
3 years ago
}
func (m *GetGroupsInfoResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_GetGroupsInfoResp.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *GetGroupsInfoResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGroupsInfoResp.Merge(dst, src)
}
func (m *GetGroupsInfoResp) XXX_Size() int {
2 years ago
return xxx_messageInfo_GetGroupsInfoResp.Size(m)
}
func (m *GetGroupsInfoResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetGroupsInfoResp.DiscardUnknown(m)
2 years ago
}
var xxx_messageInfo_GetGroupsInfoResp proto.InternalMessageInfo
2 years ago
func (m *GetGroupsInfoResp) GetGroupInfos() []*sdkws.GroupInfo {
if m != nil {
return m.GroupInfos
}
return nil
}
3 years ago
type SetGroupInfoReq struct {
2 years ago
GroupInfoForSet *sdkws.GroupInfoForSet `protobuf:"bytes,1,opt,name=groupInfoForSet" json:"groupInfoForSet,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
2 years ago
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_06303c65c0c20784, []int{4}
3 years ago
}
func (m *SetGroupInfoReq) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_SetGroupInfoReq.Unmarshal(m, b)
3 years ago
}
func (m *SetGroupInfoReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_SetGroupInfoReq.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *SetGroupInfoReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_SetGroupInfoReq.Merge(dst, src)
}
func (m *SetGroupInfoReq) XXX_Size() int {
2 years ago
return xxx_messageInfo_SetGroupInfoReq.Size(m)
}
func (m *SetGroupInfoReq) XXX_DiscardUnknown() {
xxx_messageInfo_SetGroupInfoReq.DiscardUnknown(m)
2 years ago
}
var xxx_messageInfo_SetGroupInfoReq proto.InternalMessageInfo
2 years ago
func (m *SetGroupInfoReq) GetGroupInfoForSet() *sdkws.GroupInfoForSet {
if m != nil {
return m.GroupInfoForSet
}
3 years ago
return nil
}
3 years ago
type SetGroupInfoResp struct {
2 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
2 years ago
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_06303c65c0c20784, []int{5}
3 years ago
}
func (m *SetGroupInfoResp) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_SetGroupInfoResp.Unmarshal(m, b)
3 years ago
}
func (m *SetGroupInfoResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_SetGroupInfoResp.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *SetGroupInfoResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_SetGroupInfoResp.Merge(dst, src)
}
func (m *SetGroupInfoResp) XXX_Size() int {
2 years ago
return xxx_messageInfo_SetGroupInfoResp.Size(m)
2 years ago
}
func (m *SetGroupInfoResp) XXX_DiscardUnknown() {
xxx_messageInfo_SetGroupInfoResp.DiscardUnknown(m)
}
var xxx_messageInfo_SetGroupInfoResp proto.InternalMessageInfo
3 years ago
3 years ago
type GetGroupApplicationListReq struct {
2 years ago
Pagination *sdkws.RequestPagination `protobuf:"bytes,1,opt,name=pagination" json:"pagination,omitempty"`
FromUserID string `protobuf:"bytes,2,opt,name=fromUserID" json:"fromUserID,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
2 years ago
func (m *GetGroupApplicationListReq) Reset() { *m = GetGroupApplicationListReq{} }
func (m *GetGroupApplicationListReq) String() string { return proto.CompactTextString(m) }
func (*GetGroupApplicationListReq) ProtoMessage() {}
func (*GetGroupApplicationListReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_06303c65c0c20784, []int{6}
3 years ago
}
func (m *GetGroupApplicationListReq) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_GetGroupApplicationListReq.Unmarshal(m, b)
3 years ago
}
func (m *GetGroupApplicationListReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_GetGroupApplicationListReq.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *GetGroupApplicationListReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGroupApplicationListReq.Merge(dst, src)
}
func (m *GetGroupApplicationListReq) XXX_Size() int {
2 years ago
return xxx_messageInfo_GetGroupApplicationListReq.Size(m)
2 years ago
}
func (m *GetGroupApplicationListReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetGroupApplicationListReq.DiscardUnknown(m)
}
var xxx_messageInfo_GetGroupApplicationListReq proto.InternalMessageInfo
2 years ago
func (m *GetGroupApplicationListReq) GetPagination() *sdkws.RequestPagination {
if m != nil {
return m.Pagination
}
return nil
}
func (m *GetGroupApplicationListReq) GetFromUserID() string {
if m != nil {
return m.FromUserID
3 years ago
}
return ""
}
3 years ago
type GetGroupApplicationListResp struct {
2 years ago
Total uint32 `protobuf:"varint,1,opt,name=total" json:"total,omitempty"`
GroupRequests []*sdkws.GroupRequest `protobuf:"bytes,2,rep,name=groupRequests" json:"groupRequests,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
2 years ago
func (m *GetGroupApplicationListResp) Reset() { *m = GetGroupApplicationListResp{} }
func (m *GetGroupApplicationListResp) String() string { return proto.CompactTextString(m) }
func (*GetGroupApplicationListResp) ProtoMessage() {}
func (*GetGroupApplicationListResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_06303c65c0c20784, []int{7}
3 years ago
}
func (m *GetGroupApplicationListResp) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_GetGroupApplicationListResp.Unmarshal(m, b)
3 years ago
}
func (m *GetGroupApplicationListResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_GetGroupApplicationListResp.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *GetGroupApplicationListResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGroupApplicationListResp.Merge(dst, src)
}
func (m *GetGroupApplicationListResp) XXX_Size() int {
2 years ago
return xxx_messageInfo_GetGroupApplicationListResp.Size(m)
}
func (m *GetGroupApplicationListResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetGroupApplicationListResp.DiscardUnknown(m)
2 years ago
}
3 years ago
var xxx_messageInfo_GetGroupApplicationListResp proto.InternalMessageInfo
2 years ago
func (m *GetGroupApplicationListResp) GetTotal() uint32 {
if m != nil {
return m.Total
}
return 0
}
2 years ago
func (m *GetGroupApplicationListResp) GetGroupRequests() []*sdkws.GroupRequest {
if m != nil {
return m.GroupRequests
3 years ago
}
return nil
}
3 years ago
type GetUserReqApplicationListReq struct {
2 years ago
Pagination *sdkws.RequestPagination `protobuf:"bytes,1,opt,name=pagination" json:"pagination,omitempty"`
UserID string `protobuf:"bytes,2,opt,name=userID" json:"userID,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
2 years ago
func (m *GetUserReqApplicationListReq) Reset() { *m = GetUserReqApplicationListReq{} }
func (m *GetUserReqApplicationListReq) String() string { return proto.CompactTextString(m) }
func (*GetUserReqApplicationListReq) ProtoMessage() {}
func (*GetUserReqApplicationListReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_06303c65c0c20784, []int{8}
3 years ago
}
func (m *GetUserReqApplicationListReq) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_GetUserReqApplicationListReq.Unmarshal(m, b)
3 years ago
}
func (m *GetUserReqApplicationListReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_GetUserReqApplicationListReq.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *GetUserReqApplicationListReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetUserReqApplicationListReq.Merge(dst, src)
}
func (m *GetUserReqApplicationListReq) XXX_Size() int {
2 years ago
return xxx_messageInfo_GetUserReqApplicationListReq.Size(m)
}
func (m *GetUserReqApplicationListReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetUserReqApplicationListReq.DiscardUnknown(m)
2 years ago
}
3 years ago
var xxx_messageInfo_GetUserReqApplicationListReq proto.InternalMessageInfo
2 years ago
func (m *GetUserReqApplicationListReq) GetPagination() *sdkws.RequestPagination {
if m != nil {
2 years ago
return m.Pagination
}
2 years ago
return nil
}
2 years ago
func (m *GetUserReqApplicationListReq) GetUserID() string {
if m != nil {
2 years ago
return m.UserID
}
2 years ago
return ""
}
3 years ago
type GetUserReqApplicationListResp struct {
2 years ago
Total uint32 `protobuf:"varint,1,opt,name=total" json:"total,omitempty"`
GroupRequests []*sdkws.GroupRequest `protobuf:"bytes,2,rep,name=groupRequests" json:"groupRequests,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
2 years ago
func (m *GetUserReqApplicationListResp) Reset() { *m = GetUserReqApplicationListResp{} }
func (m *GetUserReqApplicationListResp) String() string { return proto.CompactTextString(m) }
func (*GetUserReqApplicationListResp) ProtoMessage() {}
func (*GetUserReqApplicationListResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_06303c65c0c20784, []int{9}
3 years ago
}
func (m *GetUserReqApplicationListResp) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_GetUserReqApplicationListResp.Unmarshal(m, b)
3 years ago
}
func (m *GetUserReqApplicationListResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_GetUserReqApplicationListResp.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *GetUserReqApplicationListResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetUserReqApplicationListResp.Merge(dst, src)
}
func (m *GetUserReqApplicationListResp) XXX_Size() int {
2 years ago
return xxx_messageInfo_GetUserReqApplicationListResp.Size(m)
}
func (m *GetUserReqApplicationListResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetUserReqApplicationListResp.DiscardUnknown(m)
2 years ago
}
3 years ago
var xxx_messageInfo_GetUserReqApplicationListResp proto.InternalMessageInfo
2 years ago
func (m *GetUserReqApplicationListResp) GetTotal() uint32 {
if m != nil {
return m.Total
}
return 0
}
2 years ago
func (m *GetUserReqApplicationListResp) GetGroupRequests() []*sdkws.GroupRequest {
if m != nil {
return m.GroupRequests
3 years ago
}
return nil
}
3 years ago
type TransferGroupOwnerReq struct {
2 years ago
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"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
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_06303c65c0c20784, []int{10}
}
func (m *TransferGroupOwnerReq) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_TransferGroupOwnerReq.Unmarshal(m, b)
}
func (m *TransferGroupOwnerReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_TransferGroupOwnerReq.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *TransferGroupOwnerReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_TransferGroupOwnerReq.Merge(dst, src)
3 years ago
}
func (m *TransferGroupOwnerReq) XXX_Size() int {
2 years ago
return xxx_messageInfo_TransferGroupOwnerReq.Size(m)
2 years ago
}
func (m *TransferGroupOwnerReq) XXX_DiscardUnknown() {
xxx_messageInfo_TransferGroupOwnerReq.DiscardUnknown(m)
}
var xxx_messageInfo_TransferGroupOwnerReq proto.InternalMessageInfo
3 years ago
func (m *TransferGroupOwnerReq) GetGroupID() string {
if m != nil {
return m.GroupID
}
return ""
}
func (m *TransferGroupOwnerReq) GetOldOwnerUserID() string {
if m != nil {
return m.OldOwnerUserID
}
return ""
}
func (m *TransferGroupOwnerReq) GetNewOwnerUserID() string {
if m != nil {
return m.NewOwnerUserID
}
return ""
}
3 years ago
type TransferGroupOwnerResp struct {
2 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
2 years ago
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_06303c65c0c20784, []int{11}
3 years ago
}
func (m *TransferGroupOwnerResp) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_TransferGroupOwnerResp.Unmarshal(m, b)
3 years ago
}
func (m *TransferGroupOwnerResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_TransferGroupOwnerResp.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *TransferGroupOwnerResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_TransferGroupOwnerResp.Merge(dst, src)
}
func (m *TransferGroupOwnerResp) XXX_Size() int {
2 years ago
return xxx_messageInfo_TransferGroupOwnerResp.Size(m)
2 years ago
}
func (m *TransferGroupOwnerResp) XXX_DiscardUnknown() {
xxx_messageInfo_TransferGroupOwnerResp.DiscardUnknown(m)
}
var xxx_messageInfo_TransferGroupOwnerResp proto.InternalMessageInfo
3 years ago
type JoinGroupReq struct {
2 years ago
GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"`
ReqMessage string `protobuf:"bytes,2,opt,name=reqMessage" json:"reqMessage,omitempty"`
JoinSource int32 `protobuf:"varint,3,opt,name=joinSource" json:"joinSource,omitempty"`
InviterUserID string `protobuf:"bytes,4,opt,name=inviterUserID" json:"inviterUserID,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
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_06303c65c0c20784, []int{12}
3 years ago
}
func (m *JoinGroupReq) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_JoinGroupReq.Unmarshal(m, b)
3 years ago
}
func (m *JoinGroupReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_JoinGroupReq.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *JoinGroupReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_JoinGroupReq.Merge(dst, src)
3 years ago
}
func (m *JoinGroupReq) XXX_Size() int {
2 years ago
return xxx_messageInfo_JoinGroupReq.Size(m)
2 years ago
}
func (m *JoinGroupReq) XXX_DiscardUnknown() {
xxx_messageInfo_JoinGroupReq.DiscardUnknown(m)
}
var xxx_messageInfo_JoinGroupReq proto.InternalMessageInfo
3 years ago
func (m *JoinGroupReq) GetGroupID() string {
if m != nil {
return m.GroupID
3 years ago
}
return ""
}
3 years ago
func (m *JoinGroupReq) GetReqMessage() string {
if m != nil {
return m.ReqMessage
3 years ago
}
return ""
}
3 years ago
func (m *JoinGroupReq) GetJoinSource() int32 {
if m != nil {
return m.JoinSource
}
return 0
}
func (m *JoinGroupReq) GetInviterUserID() string {
if m != nil {
return m.InviterUserID
}
return ""
}
3 years ago
type JoinGroupResp struct {
2 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
2 years ago
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_06303c65c0c20784, []int{13}
3 years ago
}
func (m *JoinGroupResp) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_JoinGroupResp.Unmarshal(m, b)
3 years ago
}
func (m *JoinGroupResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_JoinGroupResp.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *JoinGroupResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_JoinGroupResp.Merge(dst, src)
}
func (m *JoinGroupResp) XXX_Size() int {
2 years ago
return xxx_messageInfo_JoinGroupResp.Size(m)
}
func (m *JoinGroupResp) XXX_DiscardUnknown() {
xxx_messageInfo_JoinGroupResp.DiscardUnknown(m)
2 years ago
}
3 years ago
var xxx_messageInfo_JoinGroupResp proto.InternalMessageInfo
3 years ago
type GroupApplicationResponseReq struct {
2 years ago
GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"`
FromUserID string `protobuf:"bytes,2,opt,name=fromUserID" json:"fromUserID,omitempty"`
HandledMsg string `protobuf:"bytes,3,opt,name=handledMsg" json:"handledMsg,omitempty"`
HandleResult int32 `protobuf:"varint,4,opt,name=handleResult" json:"handleResult,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GroupApplicationResponseReq) Reset() { *m = GroupApplicationResponseReq{} }
func (m *GroupApplicationResponseReq) String() string { return proto.CompactTextString(m) }
func (*GroupApplicationResponseReq) ProtoMessage() {}
func (*GroupApplicationResponseReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_06303c65c0c20784, []int{14}
3 years ago
}
func (m *GroupApplicationResponseReq) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_GroupApplicationResponseReq.Unmarshal(m, b)
3 years ago
}
func (m *GroupApplicationResponseReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_GroupApplicationResponseReq.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *GroupApplicationResponseReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GroupApplicationResponseReq.Merge(dst, src)
3 years ago
}
func (m *GroupApplicationResponseReq) XXX_Size() int {
2 years ago
return xxx_messageInfo_GroupApplicationResponseReq.Size(m)
}
func (m *GroupApplicationResponseReq) XXX_DiscardUnknown() {
xxx_messageInfo_GroupApplicationResponseReq.DiscardUnknown(m)
2 years ago
}
3 years ago
var xxx_messageInfo_GroupApplicationResponseReq proto.InternalMessageInfo
func (m *GroupApplicationResponseReq) GetGroupID() string {
if m != nil {
return m.GroupID
3 years ago
}
return ""
}
func (m *GroupApplicationResponseReq) GetFromUserID() string {
if m != nil {
return m.FromUserID
3 years ago
}
return ""
3 years ago
}
func (m *GroupApplicationResponseReq) GetHandledMsg() string {
if m != nil {
return m.HandledMsg
3 years ago
}
return ""
3 years ago
}
3 years ago
func (m *GroupApplicationResponseReq) GetHandleResult() int32 {
if m != nil {
return m.HandleResult
3 years ago
}
return 0
3 years ago
}
3 years ago
type GroupApplicationResponseResp struct {
2 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
2 years ago
func (m *GroupApplicationResponseResp) Reset() { *m = GroupApplicationResponseResp{} }
func (m *GroupApplicationResponseResp) String() string { return proto.CompactTextString(m) }
func (*GroupApplicationResponseResp) ProtoMessage() {}
func (*GroupApplicationResponseResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_06303c65c0c20784, []int{15}
3 years ago
}
func (m *GroupApplicationResponseResp) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_GroupApplicationResponseResp.Unmarshal(m, b)
3 years ago
}
func (m *GroupApplicationResponseResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_GroupApplicationResponseResp.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *GroupApplicationResponseResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GroupApplicationResponseResp.Merge(dst, src)
}
func (m *GroupApplicationResponseResp) XXX_Size() int {
2 years ago
return xxx_messageInfo_GroupApplicationResponseResp.Size(m)
2 years ago
}
func (m *GroupApplicationResponseResp) XXX_DiscardUnknown() {
xxx_messageInfo_GroupApplicationResponseResp.DiscardUnknown(m)
}
var xxx_messageInfo_GroupApplicationResponseResp proto.InternalMessageInfo
3 years ago
3 years ago
type QuitGroupReq struct {
2 years ago
GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
2 years ago
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_06303c65c0c20784, []int{16}
3 years ago
}
func (m *QuitGroupReq) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_QuitGroupReq.Unmarshal(m, b)
3 years ago
}
func (m *QuitGroupReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_QuitGroupReq.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *QuitGroupReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_QuitGroupReq.Merge(dst, src)
}
func (m *QuitGroupReq) XXX_Size() int {
2 years ago
return xxx_messageInfo_QuitGroupReq.Size(m)
}
func (m *QuitGroupReq) XXX_DiscardUnknown() {
xxx_messageInfo_QuitGroupReq.DiscardUnknown(m)
2 years ago
}
3 years ago
var xxx_messageInfo_QuitGroupReq proto.InternalMessageInfo
func (m *QuitGroupReq) GetGroupID() string {
if m != nil {
return m.GroupID
3 years ago
}
return ""
}
3 years ago
3 years ago
type QuitGroupResp struct {
2 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
2 years ago
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_06303c65c0c20784, []int{17}
3 years ago
}
func (m *QuitGroupResp) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_QuitGroupResp.Unmarshal(m, b)
3 years ago
}
func (m *QuitGroupResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_QuitGroupResp.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *QuitGroupResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_QuitGroupResp.Merge(dst, src)
}
func (m *QuitGroupResp) XXX_Size() int {
2 years ago
return xxx_messageInfo_QuitGroupResp.Size(m)
}
func (m *QuitGroupResp) XXX_DiscardUnknown() {
xxx_messageInfo_QuitGroupResp.DiscardUnknown(m)
2 years ago
}
3 years ago
var xxx_messageInfo_QuitGroupResp proto.InternalMessageInfo
3 years ago
type GetGroupMemberListReq struct {
2 years ago
Pagination *sdkws.RequestPagination `protobuf:"bytes,1,opt,name=pagination" json:"pagination,omitempty"`
GroupID string `protobuf:"bytes,2,opt,name=groupID" json:"groupID,omitempty"`
Filter int32 `protobuf:"varint,3,opt,name=filter" json:"filter,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
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_06303c65c0c20784, []int{18}
3 years ago
}
func (m *GetGroupMemberListReq) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_GetGroupMemberListReq.Unmarshal(m, b)
3 years ago
}
func (m *GetGroupMemberListReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_GetGroupMemberListReq.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *GetGroupMemberListReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGroupMemberListReq.Merge(dst, src)
3 years ago
}
func (m *GetGroupMemberListReq) XXX_Size() int {
2 years ago
return xxx_messageInfo_GetGroupMemberListReq.Size(m)
2 years ago
}
func (m *GetGroupMemberListReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetGroupMemberListReq.DiscardUnknown(m)
}
var xxx_messageInfo_GetGroupMemberListReq proto.InternalMessageInfo
3 years ago
2 years ago
func (m *GetGroupMemberListReq) GetPagination() *sdkws.RequestPagination {
2 years ago
if m != nil {
return m.Pagination
}
return nil
}
func (m *GetGroupMemberListReq) GetGroupID() string {
if m != nil {
return m.GroupID
3 years ago
}
return ""
}
func (m *GetGroupMemberListReq) GetFilter() int32 {
if m != nil {
return m.Filter
3 years ago
}
return 0
}
3 years ago
type GetGroupMemberListResp struct {
2 years ago
Total uint32 `protobuf:"varint,1,opt,name=total" json:"total,omitempty"`
Members []*sdkws.GroupMemberFullInfo `protobuf:"bytes,2,rep,name=members" json:"members,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
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_06303c65c0c20784, []int{19}
3 years ago
}
func (m *GetGroupMemberListResp) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_GetGroupMemberListResp.Unmarshal(m, b)
3 years ago
}
func (m *GetGroupMemberListResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_GetGroupMemberListResp.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *GetGroupMemberListResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGroupMemberListResp.Merge(dst, src)
3 years ago
}
func (m *GetGroupMemberListResp) XXX_Size() int {
2 years ago
return xxx_messageInfo_GetGroupMemberListResp.Size(m)
2 years ago
}
func (m *GetGroupMemberListResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetGroupMemberListResp.DiscardUnknown(m)
}
var xxx_messageInfo_GetGroupMemberListResp proto.InternalMessageInfo
3 years ago
2 years ago
func (m *GetGroupMemberListResp) GetTotal() uint32 {
if m != nil {
return m.Total
3 years ago
}
return 0
3 years ago
}
2 years ago
func (m *GetGroupMemberListResp) GetMembers() []*sdkws.GroupMemberFullInfo {
if m != nil {
return m.Members
3 years ago
}
return nil
3 years ago
}
3 years ago
type GetGroupMembersInfoReq struct {
2 years ago
GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"`
Members []string `protobuf:"bytes,2,rep,name=members" json:"members,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
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_06303c65c0c20784, []int{20}
3 years ago
}
func (m *GetGroupMembersInfoReq) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_GetGroupMembersInfoReq.Unmarshal(m, b)
3 years ago
}
func (m *GetGroupMembersInfoReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_GetGroupMembersInfoReq.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *GetGroupMembersInfoReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGroupMembersInfoReq.Merge(dst, src)
3 years ago
}
func (m *GetGroupMembersInfoReq) XXX_Size() int {
2 years ago
return xxx_messageInfo_GetGroupMembersInfoReq.Size(m)
}
func (m *GetGroupMembersInfoReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetGroupMembersInfoReq.DiscardUnknown(m)
2 years ago
}
3 years ago
var xxx_messageInfo_GetGroupMembersInfoReq proto.InternalMessageInfo
func (m *GetGroupMembersInfoReq) GetGroupID() string {
if m != nil {
return m.GroupID
3 years ago
}
return ""
3 years ago
}
2 years ago
func (m *GetGroupMembersInfoReq) GetMembers() []string {
if m != nil {
2 years ago
return m.Members
3 years ago
}
return nil
}
3 years ago
3 years ago
type GetGroupMembersInfoResp struct {
2 years ago
Members []*sdkws.GroupMemberFullInfo `protobuf:"bytes,1,rep,name=members" json:"members,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
2 years ago
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_06303c65c0c20784, []int{21}
3 years ago
}
func (m *GetGroupMembersInfoResp) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_GetGroupMembersInfoResp.Unmarshal(m, b)
3 years ago
}
func (m *GetGroupMembersInfoResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_GetGroupMembersInfoResp.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *GetGroupMembersInfoResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGroupMembersInfoResp.Merge(dst, src)
}
func (m *GetGroupMembersInfoResp) XXX_Size() int {
2 years ago
return xxx_messageInfo_GetGroupMembersInfoResp.Size(m)
}
func (m *GetGroupMembersInfoResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetGroupMembersInfoResp.DiscardUnknown(m)
2 years ago
}
3 years ago
var xxx_messageInfo_GetGroupMembersInfoResp proto.InternalMessageInfo
2 years ago
func (m *GetGroupMembersInfoResp) GetMembers() []*sdkws.GroupMemberFullInfo {
if m != nil {
return m.Members
3 years ago
}
return nil
3 years ago
}
3 years ago
type KickGroupMemberReq struct {
2 years ago
GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"`
KickedUserIDs []string `protobuf:"bytes,2,rep,name=kickedUserIDs" json:"kickedUserIDs,omitempty"`
Reason string `protobuf:"bytes,3,opt,name=reason" json:"reason,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
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_06303c65c0c20784, []int{22}
3 years ago
}
func (m *KickGroupMemberReq) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_KickGroupMemberReq.Unmarshal(m, b)
3 years ago
}
func (m *KickGroupMemberReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_KickGroupMemberReq.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *KickGroupMemberReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_KickGroupMemberReq.Merge(dst, src)
3 years ago
}
func (m *KickGroupMemberReq) XXX_Size() int {
2 years ago
return xxx_messageInfo_KickGroupMemberReq.Size(m)
}
func (m *KickGroupMemberReq) XXX_DiscardUnknown() {
xxx_messageInfo_KickGroupMemberReq.DiscardUnknown(m)
2 years ago
}
3 years ago
var xxx_messageInfo_KickGroupMemberReq proto.InternalMessageInfo
func (m *KickGroupMemberReq) GetGroupID() string {
if m != nil {
return m.GroupID
3 years ago
}
return ""
3 years ago
}
3 years ago
2 years ago
func (m *KickGroupMemberReq) GetKickedUserIDs() []string {
if m != nil {
2 years ago
return m.KickedUserIDs
3 years ago
}
return nil
3 years ago
}
3 years ago
func (m *KickGroupMemberReq) GetReason() string {
if m != nil {
return m.Reason
3 years ago
}
return ""
3 years ago
}
3 years ago
2 years ago
type KickGroupMemberResp struct {
2 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
2 years ago
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_06303c65c0c20784, []int{23}
3 years ago
}
func (m *KickGroupMemberResp) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_KickGroupMemberResp.Unmarshal(m, b)
3 years ago
}
func (m *KickGroupMemberResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_KickGroupMemberResp.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *KickGroupMemberResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_KickGroupMemberResp.Merge(dst, src)
}
func (m *KickGroupMemberResp) XXX_Size() int {
2 years ago
return xxx_messageInfo_KickGroupMemberResp.Size(m)
2 years ago
}
func (m *KickGroupMemberResp) XXX_DiscardUnknown() {
xxx_messageInfo_KickGroupMemberResp.DiscardUnknown(m)
}
var xxx_messageInfo_KickGroupMemberResp proto.InternalMessageInfo
3 years ago
3 years ago
type GetJoinedGroupListReq struct {
2 years ago
Pagination *sdkws.RequestPagination `protobuf:"bytes,1,opt,name=pagination" json:"pagination,omitempty"`
FromUserID string `protobuf:"bytes,2,opt,name=fromUserID" json:"fromUserID,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
2 years ago
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_06303c65c0c20784, []int{24}
3 years ago
}
func (m *GetJoinedGroupListReq) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_GetJoinedGroupListReq.Unmarshal(m, b)
3 years ago
}
func (m *GetJoinedGroupListReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_GetJoinedGroupListReq.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *GetJoinedGroupListReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetJoinedGroupListReq.Merge(dst, src)
}
func (m *GetJoinedGroupListReq) XXX_Size() int {
2 years ago
return xxx_messageInfo_GetJoinedGroupListReq.Size(m)
}
func (m *GetJoinedGroupListReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetJoinedGroupListReq.DiscardUnknown(m)
2 years ago
}
3 years ago
var xxx_messageInfo_GetJoinedGroupListReq proto.InternalMessageInfo
2 years ago
func (m *GetJoinedGroupListReq) GetPagination() *sdkws.RequestPagination {
if m != nil {
2 years ago
return m.Pagination
3 years ago
}
2 years ago
return nil
3 years ago
}
2 years ago
func (m *GetJoinedGroupListReq) GetFromUserID() string {
if m != nil {
2 years ago
return m.FromUserID
}
2 years ago
return ""
}
3 years ago
type GetJoinedGroupListResp struct {
2 years ago
Total uint32 `protobuf:"varint,1,opt,name=total" json:"total,omitempty"`
Groups []*sdkws.GroupInfo `protobuf:"bytes,2,rep,name=groups" json:"groups,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
2 years ago
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_06303c65c0c20784, []int{25}
3 years ago
}
func (m *GetJoinedGroupListResp) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_GetJoinedGroupListResp.Unmarshal(m, b)
3 years ago
}
func (m *GetJoinedGroupListResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_GetJoinedGroupListResp.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *GetJoinedGroupListResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetJoinedGroupListResp.Merge(dst, src)
}
func (m *GetJoinedGroupListResp) XXX_Size() int {
2 years ago
return xxx_messageInfo_GetJoinedGroupListResp.Size(m)
}
func (m *GetJoinedGroupListResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetJoinedGroupListResp.DiscardUnknown(m)
2 years ago
}
3 years ago
var xxx_messageInfo_GetJoinedGroupListResp proto.InternalMessageInfo
2 years ago
func (m *GetJoinedGroupListResp) GetTotal() uint32 {
if m != nil {
return m.Total
}
return 0
}
2 years ago
func (m *GetJoinedGroupListResp) GetGroups() []*sdkws.GroupInfo {
if m != nil {
return m.Groups
3 years ago
}
return nil
}
3 years ago
type InviteUserToGroupReq struct {
2 years ago
GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"`
Reason string `protobuf:"bytes,2,opt,name=reason" json:"reason,omitempty"`
InvitedUserIDs []string `protobuf:"bytes,3,rep,name=invitedUserIDs" json:"invitedUserIDs,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
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_06303c65c0c20784, []int{26}
3 years ago
}
func (m *InviteUserToGroupReq) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_InviteUserToGroupReq.Unmarshal(m, b)
3 years ago
}
func (m *InviteUserToGroupReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_InviteUserToGroupReq.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *InviteUserToGroupReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_InviteUserToGroupReq.Merge(dst, src)
3 years ago
}
func (m *InviteUserToGroupReq) XXX_Size() int {
2 years ago
return xxx_messageInfo_InviteUserToGroupReq.Size(m)
}
func (m *InviteUserToGroupReq) XXX_DiscardUnknown() {
xxx_messageInfo_InviteUserToGroupReq.DiscardUnknown(m)
2 years ago
}
3 years ago
var xxx_messageInfo_InviteUserToGroupReq proto.InternalMessageInfo
func (m *InviteUserToGroupReq) GetGroupID() string {
if m != nil {
return m.GroupID
3 years ago
}
return ""
}
func (m *InviteUserToGroupReq) GetReason() string {
if m != nil {
return m.Reason
3 years ago
}
return ""
}
func (m *InviteUserToGroupReq) GetInvitedUserIDs() []string {
if m != nil {
return m.InvitedUserIDs
3 years ago
}
return nil
3 years ago
}
3 years ago
type InviteUserToGroupResp struct {
2 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
2 years ago
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_06303c65c0c20784, []int{27}
3 years ago
}
func (m *InviteUserToGroupResp) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_InviteUserToGroupResp.Unmarshal(m, b)
3 years ago
}
func (m *InviteUserToGroupResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_InviteUserToGroupResp.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *InviteUserToGroupResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_InviteUserToGroupResp.Merge(dst, src)
}
func (m *InviteUserToGroupResp) XXX_Size() int {
2 years ago
return xxx_messageInfo_InviteUserToGroupResp.Size(m)
2 years ago
}
func (m *InviteUserToGroupResp) XXX_DiscardUnknown() {
xxx_messageInfo_InviteUserToGroupResp.DiscardUnknown(m)
}
var xxx_messageInfo_InviteUserToGroupResp proto.InternalMessageInfo
3 years ago
3 years ago
type GetGroupAllMemberReq struct {
2 years ago
Pagination *sdkws.RequestPagination `protobuf:"bytes,1,opt,name=pagination" json:"pagination,omitempty"`
GroupID string `protobuf:"bytes,2,opt,name=groupID" json:"groupID,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
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_06303c65c0c20784, []int{28}
3 years ago
}
func (m *GetGroupAllMemberReq) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_GetGroupAllMemberReq.Unmarshal(m, b)
3 years ago
}
func (m *GetGroupAllMemberReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_GetGroupAllMemberReq.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *GetGroupAllMemberReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGroupAllMemberReq.Merge(dst, src)
3 years ago
}
func (m *GetGroupAllMemberReq) XXX_Size() int {
2 years ago
return xxx_messageInfo_GetGroupAllMemberReq.Size(m)
2 years ago
}
func (m *GetGroupAllMemberReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetGroupAllMemberReq.DiscardUnknown(m)
}
var xxx_messageInfo_GetGroupAllMemberReq proto.InternalMessageInfo
3 years ago
2 years ago
func (m *GetGroupAllMemberReq) GetPagination() *sdkws.RequestPagination {
if m != nil {
2 years ago
return m.Pagination
3 years ago
}
2 years ago
return nil
3 years ago
}
2 years ago
func (m *GetGroupAllMemberReq) GetGroupID() string {
if m != nil {
2 years ago
return m.GroupID
}
2 years ago
return ""
}
3 years ago
type GetGroupAllMemberResp struct {
2 years ago
Members []*sdkws.GroupMemberFullInfo `protobuf:"bytes,1,rep,name=members" json:"members,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
2 years ago
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_06303c65c0c20784, []int{29}
3 years ago
}
func (m *GetGroupAllMemberResp) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_GetGroupAllMemberResp.Unmarshal(m, b)
3 years ago
}
func (m *GetGroupAllMemberResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_GetGroupAllMemberResp.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *GetGroupAllMemberResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGroupAllMemberResp.Merge(dst, src)
}
func (m *GetGroupAllMemberResp) XXX_Size() int {
2 years ago
return xxx_messageInfo_GetGroupAllMemberResp.Size(m)
2 years ago
}
func (m *GetGroupAllMemberResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetGroupAllMemberResp.DiscardUnknown(m)
}
var xxx_messageInfo_GetGroupAllMemberResp proto.InternalMessageInfo
3 years ago
2 years ago
func (m *GetGroupAllMemberResp) GetMembers() []*sdkws.GroupMemberFullInfo {
if m != nil {
return m.Members
3 years ago
}
return nil
}
3 years ago
type CMSGroup struct {
2 years ago
GroupInfo *sdkws.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:"-"`
3 years ago
}
2 years ago
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_06303c65c0c20784, []int{30}
3 years ago
}
func (m *CMSGroup) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_CMSGroup.Unmarshal(m, b)
3 years ago
}
func (m *CMSGroup) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_CMSGroup.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *CMSGroup) XXX_Merge(src proto.Message) {
xxx_messageInfo_CMSGroup.Merge(dst, src)
}
func (m *CMSGroup) XXX_Size() int {
2 years ago
return xxx_messageInfo_CMSGroup.Size(m)
}
func (m *CMSGroup) XXX_DiscardUnknown() {
xxx_messageInfo_CMSGroup.DiscardUnknown(m)
2 years ago
}
3 years ago
var xxx_messageInfo_CMSGroup proto.InternalMessageInfo
2 years ago
func (m *CMSGroup) GetGroupInfo() *sdkws.GroupInfo {
if m != nil {
return m.GroupInfo
3 years ago
}
return nil
}
func (m *CMSGroup) GetGroupOwnerUserName() string {
if m != nil {
return m.GroupOwnerUserName
3 years ago
}
return ""
}
func (m *CMSGroup) GetGroupOwnerUserID() string {
if m != nil {
return m.GroupOwnerUserID
3 years ago
}
return ""
}
3 years ago
type GetGroupsReq struct {
2 years ago
Pagination *sdkws.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"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
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_06303c65c0c20784, []int{31}
3 years ago
}
func (m *GetGroupsReq) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_GetGroupsReq.Unmarshal(m, b)
3 years ago
}
func (m *GetGroupsReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_GetGroupsReq.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *GetGroupsReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGroupsReq.Merge(dst, src)
3 years ago
}
func (m *GetGroupsReq) XXX_Size() int {
2 years ago
return xxx_messageInfo_GetGroupsReq.Size(m)
}
func (m *GetGroupsReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetGroupsReq.DiscardUnknown(m)
2 years ago
}
3 years ago
var xxx_messageInfo_GetGroupsReq proto.InternalMessageInfo
2 years ago
func (m *GetGroupsReq) GetPagination() *sdkws.RequestPagination {
if m != nil {
return m.Pagination
3 years ago
}
return nil
}
func (m *GetGroupsReq) GetGroupName() string {
if m != nil {
return m.GroupName
2 years ago
}
return ""
}
func (m *GetGroupsReq) GetGroupID() string {
if m != nil {
return m.GroupID
2 years ago
}
return ""
}
3 years ago
type GetGroupsResp struct {
2 years ago
Total uint32 `protobuf:"varint,1,opt,name=total" json:"total,omitempty"`
Groups []*CMSGroup `protobuf:"bytes,2,rep,name=groups" json:"groups,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
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_06303c65c0c20784, []int{32}
3 years ago
}
func (m *GetGroupsResp) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_GetGroupsResp.Unmarshal(m, b)
3 years ago
}
func (m *GetGroupsResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_GetGroupsResp.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *GetGroupsResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGroupsResp.Merge(dst, src)
3 years ago
}
func (m *GetGroupsResp) XXX_Size() int {
2 years ago
return xxx_messageInfo_GetGroupsResp.Size(m)
2 years ago
}
func (m *GetGroupsResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetGroupsResp.DiscardUnknown(m)
}
var xxx_messageInfo_GetGroupsResp proto.InternalMessageInfo
3 years ago
2 years ago
func (m *GetGroupsResp) GetTotal() uint32 {
if m != nil {
2 years ago
return m.Total
3 years ago
}
2 years ago
return 0
3 years ago
}
2 years ago
func (m *GetGroupsResp) GetGroups() []*CMSGroup {
if m != nil {
2 years ago
return m.Groups
3 years ago
}
2 years ago
return nil
3 years ago
}
3 years ago
type GetGroupMemberReq struct {
2 years ago
GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
2 years ago
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_06303c65c0c20784, []int{33}
3 years ago
}
func (m *GetGroupMemberReq) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_GetGroupMemberReq.Unmarshal(m, b)
3 years ago
}
func (m *GetGroupMemberReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_GetGroupMemberReq.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *GetGroupMemberReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGroupMemberReq.Merge(dst, src)
}
func (m *GetGroupMemberReq) XXX_Size() int {
2 years ago
return xxx_messageInfo_GetGroupMemberReq.Size(m)
2 years ago
}
func (m *GetGroupMemberReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetGroupMemberReq.DiscardUnknown(m)
}
var xxx_messageInfo_GetGroupMemberReq proto.InternalMessageInfo
3 years ago
func (m *GetGroupMemberReq) GetGroupID() string {
if m != nil {
return m.GroupID
3 years ago
}
return ""
}
3 years ago
type GetGroupMembersCMSReq struct {
2 years ago
Pagination *sdkws.RequestPagination `protobuf:"bytes,1,opt,name=pagination" json:"pagination,omitempty"`
GroupID string `protobuf:"bytes,2,opt,name=groupID" json:"groupID,omitempty"`
UserName string `protobuf:"bytes,3,opt,name=userName" json:"userName,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
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_06303c65c0c20784, []int{34}
3 years ago
}
func (m *GetGroupMembersCMSReq) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_GetGroupMembersCMSReq.Unmarshal(m, b)
3 years ago
}
func (m *GetGroupMembersCMSReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_GetGroupMembersCMSReq.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *GetGroupMembersCMSReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGroupMembersCMSReq.Merge(dst, src)
3 years ago
}
func (m *GetGroupMembersCMSReq) XXX_Size() int {
2 years ago
return xxx_messageInfo_GetGroupMembersCMSReq.Size(m)
2 years ago
}
func (m *GetGroupMembersCMSReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetGroupMembersCMSReq.DiscardUnknown(m)
}
var xxx_messageInfo_GetGroupMembersCMSReq proto.InternalMessageInfo
3 years ago
2 years ago
func (m *GetGroupMembersCMSReq) GetPagination() *sdkws.RequestPagination {
2 years ago
if m != nil {
return m.Pagination
}
return nil
}
func (m *GetGroupMembersCMSReq) GetGroupID() string {
if m != nil {
return m.GroupID
3 years ago
}
return ""
}
func (m *GetGroupMembersCMSReq) GetUserName() string {
if m != nil {
return m.UserName
3 years ago
}
return ""
}
3 years ago
type GetGroupMembersCMSResp struct {
2 years ago
Total uint32 `protobuf:"varint,1,opt,name=total" json:"total,omitempty"`
Members []*sdkws.GroupMemberFullInfo `protobuf:"bytes,2,rep,name=members" json:"members,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
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_06303c65c0c20784, []int{35}
3 years ago
}
func (m *GetGroupMembersCMSResp) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_GetGroupMembersCMSResp.Unmarshal(m, b)
3 years ago
}
func (m *GetGroupMembersCMSResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_GetGroupMembersCMSResp.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *GetGroupMembersCMSResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGroupMembersCMSResp.Merge(dst, src)
3 years ago
}
func (m *GetGroupMembersCMSResp) XXX_Size() int {
2 years ago
return xxx_messageInfo_GetGroupMembersCMSResp.Size(m)
}
func (m *GetGroupMembersCMSResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetGroupMembersCMSResp.DiscardUnknown(m)
2 years ago
}
3 years ago
var xxx_messageInfo_GetGroupMembersCMSResp proto.InternalMessageInfo
2 years ago
func (m *GetGroupMembersCMSResp) GetTotal() uint32 {
if m != nil {
2 years ago
return m.Total
3 years ago
}
2 years ago
return 0
3 years ago
}
2 years ago
func (m *GetGroupMembersCMSResp) GetMembers() []*sdkws.GroupMemberFullInfo {
if m != nil {
2 years ago
return m.Members
3 years ago
}
2 years ago
return nil
3 years ago
}
3 years ago
type DismissGroupReq struct {
2 years ago
GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
2 years ago
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_06303c65c0c20784, []int{36}
3 years ago
}
func (m *DismissGroupReq) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_DismissGroupReq.Unmarshal(m, b)
3 years ago
}
func (m *DismissGroupReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_DismissGroupReq.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *DismissGroupReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_DismissGroupReq.Merge(dst, src)
}
func (m *DismissGroupReq) XXX_Size() int {
2 years ago
return xxx_messageInfo_DismissGroupReq.Size(m)
2 years ago
}
func (m *DismissGroupReq) XXX_DiscardUnknown() {
xxx_messageInfo_DismissGroupReq.DiscardUnknown(m)
}
var xxx_messageInfo_DismissGroupReq proto.InternalMessageInfo
3 years ago
func (m *DismissGroupReq) GetGroupID() string {
if m != nil {
return m.GroupID
3 years ago
}
3 years ago
return ""
}
type DismissGroupResp struct {
2 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
2 years ago
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_06303c65c0c20784, []int{37}
3 years ago
}
func (m *DismissGroupResp) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_DismissGroupResp.Unmarshal(m, b)
3 years ago
}
func (m *DismissGroupResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_DismissGroupResp.Marshal(b, m, deterministic)
}
2 years ago
func (dst *DismissGroupResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_DismissGroupResp.Merge(dst, src)
}
func (m *DismissGroupResp) XXX_Size() int {
2 years ago
return xxx_messageInfo_DismissGroupResp.Size(m)
3 years ago
}
func (m *DismissGroupResp) XXX_DiscardUnknown() {
xxx_messageInfo_DismissGroupResp.DiscardUnknown(m)
2 years ago
}
3 years ago
var xxx_messageInfo_DismissGroupResp proto.InternalMessageInfo
3 years ago
type MuteGroupMemberReq struct {
2 years ago
GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"`
UserID string `protobuf:"bytes,2,opt,name=userID" json:"userID,omitempty"`
MutedSeconds uint32 `protobuf:"varint,3,opt,name=mutedSeconds" json:"mutedSeconds,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
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_06303c65c0c20784, []int{38}
3 years ago
}
func (m *MuteGroupMemberReq) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_MuteGroupMemberReq.Unmarshal(m, b)
3 years ago
}
func (m *MuteGroupMemberReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_MuteGroupMemberReq.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *MuteGroupMemberReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_MuteGroupMemberReq.Merge(dst, src)
3 years ago
}
func (m *MuteGroupMemberReq) XXX_Size() int {
2 years ago
return xxx_messageInfo_MuteGroupMemberReq.Size(m)
}
func (m *MuteGroupMemberReq) XXX_DiscardUnknown() {
xxx_messageInfo_MuteGroupMemberReq.DiscardUnknown(m)
2 years ago
}
3 years ago
var xxx_messageInfo_MuteGroupMemberReq proto.InternalMessageInfo
func (m *MuteGroupMemberReq) GetGroupID() string {
if m != nil {
return m.GroupID
3 years ago
}
return ""
}
func (m *MuteGroupMemberReq) GetUserID() string {
if m != nil {
return m.UserID
3 years ago
}
return ""
}
func (m *MuteGroupMemberReq) GetMutedSeconds() uint32 {
if m != nil {
return m.MutedSeconds
3 years ago
}
return 0
}
type MuteGroupMemberResp struct {
2 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
2 years ago
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_06303c65c0c20784, []int{39}
3 years ago
}
func (m *MuteGroupMemberResp) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_MuteGroupMemberResp.Unmarshal(m, b)
3 years ago
}
func (m *MuteGroupMemberResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_MuteGroupMemberResp.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *MuteGroupMemberResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_MuteGroupMemberResp.Merge(dst, src)
}
func (m *MuteGroupMemberResp) XXX_Size() int {
2 years ago
return xxx_messageInfo_MuteGroupMemberResp.Size(m)
}
func (m *MuteGroupMemberResp) XXX_DiscardUnknown() {
xxx_messageInfo_MuteGroupMemberResp.DiscardUnknown(m)
2 years ago
}
3 years ago
var xxx_messageInfo_MuteGroupMemberResp proto.InternalMessageInfo
3 years ago
type CancelMuteGroupMemberReq struct {
2 years ago
GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"`
UserID string `protobuf:"bytes,2,opt,name=userID" json:"userID,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CancelMuteGroupMemberReq) Reset() { *m = CancelMuteGroupMemberReq{} }
func (m *CancelMuteGroupMemberReq) String() string { return proto.CompactTextString(m) }
func (*CancelMuteGroupMemberReq) ProtoMessage() {}
func (*CancelMuteGroupMemberReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_06303c65c0c20784, []int{40}
3 years ago
}
func (m *CancelMuteGroupMemberReq) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_CancelMuteGroupMemberReq.Unmarshal(m, b)
3 years ago
}
func (m *CancelMuteGroupMemberReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_CancelMuteGroupMemberReq.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *CancelMuteGroupMemberReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_CancelMuteGroupMemberReq.Merge(dst, src)
3 years ago
}
func (m *CancelMuteGroupMemberReq) XXX_Size() int {
2 years ago
return xxx_messageInfo_CancelMuteGroupMemberReq.Size(m)
}
func (m *CancelMuteGroupMemberReq) XXX_DiscardUnknown() {
xxx_messageInfo_CancelMuteGroupMemberReq.DiscardUnknown(m)
2 years ago
}
3 years ago
var xxx_messageInfo_CancelMuteGroupMemberReq proto.InternalMessageInfo
func (m *CancelMuteGroupMemberReq) GetGroupID() string {
if m != nil {
return m.GroupID
3 years ago
}
return ""
}
func (m *CancelMuteGroupMemberReq) GetUserID() string {
if m != nil {
return m.UserID
3 years ago
}
return ""
}
type CancelMuteGroupMemberResp struct {
2 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
2 years ago
func (m *CancelMuteGroupMemberResp) Reset() { *m = CancelMuteGroupMemberResp{} }
func (m *CancelMuteGroupMemberResp) String() string { return proto.CompactTextString(m) }
func (*CancelMuteGroupMemberResp) ProtoMessage() {}
func (*CancelMuteGroupMemberResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_06303c65c0c20784, []int{41}
3 years ago
}
func (m *CancelMuteGroupMemberResp) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_CancelMuteGroupMemberResp.Unmarshal(m, b)
3 years ago
}
func (m *CancelMuteGroupMemberResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_CancelMuteGroupMemberResp.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *CancelMuteGroupMemberResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_CancelMuteGroupMemberResp.Merge(dst, src)
}
func (m *CancelMuteGroupMemberResp) XXX_Size() int {
2 years ago
return xxx_messageInfo_CancelMuteGroupMemberResp.Size(m)
}
func (m *CancelMuteGroupMemberResp) XXX_DiscardUnknown() {
xxx_messageInfo_CancelMuteGroupMemberResp.DiscardUnknown(m)
2 years ago
}
3 years ago
var xxx_messageInfo_CancelMuteGroupMemberResp proto.InternalMessageInfo
3 years ago
type MuteGroupReq struct {
2 years ago
GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
2 years ago
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_06303c65c0c20784, []int{42}
3 years ago
}
func (m *MuteGroupReq) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_MuteGroupReq.Unmarshal(m, b)
3 years ago
}
func (m *MuteGroupReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_MuteGroupReq.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *MuteGroupReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_MuteGroupReq.Merge(dst, src)
}
func (m *MuteGroupReq) XXX_Size() int {
2 years ago
return xxx_messageInfo_MuteGroupReq.Size(m)
}
func (m *MuteGroupReq) XXX_DiscardUnknown() {
xxx_messageInfo_MuteGroupReq.DiscardUnknown(m)
2 years ago
}
3 years ago
var xxx_messageInfo_MuteGroupReq proto.InternalMessageInfo
func (m *MuteGroupReq) GetGroupID() string {
if m != nil {
return m.GroupID
3 years ago
}
return ""
}
type MuteGroupResp struct {
2 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
2 years ago
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_06303c65c0c20784, []int{43}
3 years ago
}
func (m *MuteGroupResp) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_MuteGroupResp.Unmarshal(m, b)
3 years ago
}
func (m *MuteGroupResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_MuteGroupResp.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *MuteGroupResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_MuteGroupResp.Merge(dst, src)
}
func (m *MuteGroupResp) XXX_Size() int {
2 years ago
return xxx_messageInfo_MuteGroupResp.Size(m)
}
func (m *MuteGroupResp) XXX_DiscardUnknown() {
xxx_messageInfo_MuteGroupResp.DiscardUnknown(m)
2 years ago
}
3 years ago
var xxx_messageInfo_MuteGroupResp proto.InternalMessageInfo
3 years ago
type CancelMuteGroupReq struct {
2 years ago
GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
2 years ago
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_06303c65c0c20784, []int{44}
3 years ago
}
func (m *CancelMuteGroupReq) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_CancelMuteGroupReq.Unmarshal(m, b)
3 years ago
}
func (m *CancelMuteGroupReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_CancelMuteGroupReq.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *CancelMuteGroupReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_CancelMuteGroupReq.Merge(dst, src)
}
func (m *CancelMuteGroupReq) XXX_Size() int {
2 years ago
return xxx_messageInfo_CancelMuteGroupReq.Size(m)
}
func (m *CancelMuteGroupReq) XXX_DiscardUnknown() {
xxx_messageInfo_CancelMuteGroupReq.DiscardUnknown(m)
2 years ago
}
3 years ago
var xxx_messageInfo_CancelMuteGroupReq proto.InternalMessageInfo
func (m *CancelMuteGroupReq) GetGroupID() string {
if m != nil {
return m.GroupID
3 years ago
}
return ""
}
type CancelMuteGroupResp struct {
2 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
2 years ago
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_06303c65c0c20784, []int{45}
3 years ago
}
func (m *CancelMuteGroupResp) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_CancelMuteGroupResp.Unmarshal(m, b)
3 years ago
}
func (m *CancelMuteGroupResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_CancelMuteGroupResp.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *CancelMuteGroupResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_CancelMuteGroupResp.Merge(dst, src)
}
func (m *CancelMuteGroupResp) XXX_Size() int {
2 years ago
return xxx_messageInfo_CancelMuteGroupResp.Size(m)
}
func (m *CancelMuteGroupResp) XXX_DiscardUnknown() {
xxx_messageInfo_CancelMuteGroupResp.DiscardUnknown(m)
2 years ago
}
3 years ago
var xxx_messageInfo_CancelMuteGroupResp proto.InternalMessageInfo
3 years ago
type GetJoinedSuperGroupListReq struct {
2 years ago
UserID string `protobuf:"bytes,1,opt,name=userID" json:"userID,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
2 years ago
func (m *GetJoinedSuperGroupListReq) Reset() { *m = GetJoinedSuperGroupListReq{} }
func (m *GetJoinedSuperGroupListReq) String() string { return proto.CompactTextString(m) }
func (*GetJoinedSuperGroupListReq) ProtoMessage() {}
func (*GetJoinedSuperGroupListReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_06303c65c0c20784, []int{46}
3 years ago
}
func (m *GetJoinedSuperGroupListReq) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_GetJoinedSuperGroupListReq.Unmarshal(m, b)
3 years ago
}
func (m *GetJoinedSuperGroupListReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_GetJoinedSuperGroupListReq.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *GetJoinedSuperGroupListReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetJoinedSuperGroupListReq.Merge(dst, src)
}
func (m *GetJoinedSuperGroupListReq) XXX_Size() int {
2 years ago
return xxx_messageInfo_GetJoinedSuperGroupListReq.Size(m)
}
func (m *GetJoinedSuperGroupListReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetJoinedSuperGroupListReq.DiscardUnknown(m)
2 years ago
}
3 years ago
var xxx_messageInfo_GetJoinedSuperGroupListReq proto.InternalMessageInfo
func (m *GetJoinedSuperGroupListReq) GetUserID() string {
if m != nil {
return m.UserID
3 years ago
}
return ""
}
type GetJoinedSuperGroupListResp struct {
2 years ago
Groups []*sdkws.GroupInfo `protobuf:"bytes,1,rep,name=groups" json:"groups,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
2 years ago
func (m *GetJoinedSuperGroupListResp) Reset() { *m = GetJoinedSuperGroupListResp{} }
func (m *GetJoinedSuperGroupListResp) String() string { return proto.CompactTextString(m) }
func (*GetJoinedSuperGroupListResp) ProtoMessage() {}
func (*GetJoinedSuperGroupListResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_06303c65c0c20784, []int{47}
3 years ago
}
func (m *GetJoinedSuperGroupListResp) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_GetJoinedSuperGroupListResp.Unmarshal(m, b)
3 years ago
}
func (m *GetJoinedSuperGroupListResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_GetJoinedSuperGroupListResp.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *GetJoinedSuperGroupListResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetJoinedSuperGroupListResp.Merge(dst, src)
}
func (m *GetJoinedSuperGroupListResp) XXX_Size() int {
2 years ago
return xxx_messageInfo_GetJoinedSuperGroupListResp.Size(m)
}
func (m *GetJoinedSuperGroupListResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetJoinedSuperGroupListResp.DiscardUnknown(m)
2 years ago
}
3 years ago
var xxx_messageInfo_GetJoinedSuperGroupListResp proto.InternalMessageInfo
2 years ago
func (m *GetJoinedSuperGroupListResp) GetGroups() []*sdkws.GroupInfo {
if m != nil {
return m.Groups
3 years ago
}
return nil
}
3 years ago
type GetSuperGroupsInfoReq struct {
2 years ago
GroupIDs []string `protobuf:"bytes,1,rep,name=groupIDs" json:"groupIDs,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
2 years ago
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_06303c65c0c20784, []int{48}
3 years ago
}
func (m *GetSuperGroupsInfoReq) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_GetSuperGroupsInfoReq.Unmarshal(m, b)
3 years ago
}
func (m *GetSuperGroupsInfoReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_GetSuperGroupsInfoReq.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *GetSuperGroupsInfoReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetSuperGroupsInfoReq.Merge(dst, src)
}
func (m *GetSuperGroupsInfoReq) XXX_Size() int {
2 years ago
return xxx_messageInfo_GetSuperGroupsInfoReq.Size(m)
}
func (m *GetSuperGroupsInfoReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetSuperGroupsInfoReq.DiscardUnknown(m)
2 years ago
}
3 years ago
var xxx_messageInfo_GetSuperGroupsInfoReq proto.InternalMessageInfo
func (m *GetSuperGroupsInfoReq) GetGroupIDs() []string {
if m != nil {
return m.GroupIDs
3 years ago
}
return nil
}
type GetSuperGroupsInfoResp struct {
2 years ago
GroupInfos []*sdkws.GroupInfo `protobuf:"bytes,1,rep,name=groupInfos" json:"groupInfos,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
2 years ago
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_06303c65c0c20784, []int{49}
3 years ago
}
func (m *GetSuperGroupsInfoResp) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_GetSuperGroupsInfoResp.Unmarshal(m, b)
3 years ago
}
func (m *GetSuperGroupsInfoResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_GetSuperGroupsInfoResp.Marshal(b, m, deterministic)
3 years ago
}
2 years ago
func (dst *GetSuperGroupsInfoResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetSuperGroupsInfoResp.Merge(dst, src)
}
func (m *GetSuperGroupsInfoResp) XXX_Size() int {
2 years ago
return xxx_messageInfo_GetSuperGroupsInfoResp.Size(m)
}
func (m *GetSuperGroupsInfoResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetSuperGroupsInfoResp.DiscardUnknown(m)
2 years ago
}
3 years ago
var xxx_messageInfo_GetSuperGroupsInfoResp proto.InternalMessageInfo
2 years ago
func (m *GetSuperGroupsInfoResp) GetGroupInfos() []*sdkws.GroupInfo {
if m != nil {
return m.GroupInfos
3 years ago
}
return nil
}
type SetGroupMemberInfo struct {
2 years ago
GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"`
UserID string `protobuf:"bytes,2,opt,name=userID" json:"userID,omitempty"`
Nickname *wrapperspb.StringValue `protobuf:"bytes,3,opt,name=nickname" json:"nickname,omitempty"`
FaceURL *wrapperspb.StringValue `protobuf:"bytes,4,opt,name=faceURL" json:"faceURL,omitempty"`
RoleLevel *wrapperspb.Int32Value `protobuf:"bytes,5,opt,name=roleLevel" json:"roleLevel,omitempty"`
Ex *wrapperspb.StringValue `protobuf:"bytes,6,opt,name=ex" json:"ex,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SetGroupMemberInfo) Reset() { *m = SetGroupMemberInfo{} }
func (m *SetGroupMemberInfo) String() string { return proto.CompactTextString(m) }
func (*SetGroupMemberInfo) ProtoMessage() {}
func (*SetGroupMemberInfo) Descriptor() ([]byte, []int) {
return fileDescriptor_group_06303c65c0c20784, []int{50}
}
func (m *SetGroupMemberInfo) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_SetGroupMemberInfo.Unmarshal(m, b)
}
func (m *SetGroupMemberInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_SetGroupMemberInfo.Marshal(b, m, deterministic)
}
2 years ago
func (dst *SetGroupMemberInfo) XXX_Merge(src proto.Message) {
xxx_messageInfo_SetGroupMemberInfo.Merge(dst, src)
}
func (m *SetGroupMemberInfo) XXX_Size() int {
2 years ago
return xxx_messageInfo_SetGroupMemberInfo.Size(m)
}
func (m *SetGroupMemberInfo) XXX_DiscardUnknown() {
xxx_messageInfo_SetGroupMemberInfo.DiscardUnknown(m)
2 years ago
}
var xxx_messageInfo_SetGroupMemberInfo proto.InternalMessageInfo
func (m *SetGroupMemberInfo) GetGroupID() string {
if m != nil {
return m.GroupID
}
return ""
}
func (m *SetGroupMemberInfo) GetUserID() string {
if m != nil {
return m.UserID
}
return ""
}
func (m *SetGroupMemberInfo) GetNickname() *wrapperspb.StringValue {
if m != nil {
return m.Nickname
}
return nil
}
func (m *SetGroupMemberInfo) GetFaceURL() *wrapperspb.StringValue {
if m != nil {
return m.FaceURL
}
return nil
}
func (m *SetGroupMemberInfo) GetRoleLevel() *wrapperspb.Int32Value {
if m != nil {
return m.RoleLevel
}
return nil
}
func (m *SetGroupMemberInfo) GetEx() *wrapperspb.StringValue {
if m != nil {
return m.Ex
}
return nil
}
type SetGroupMemberInfoReq struct {
2 years ago
Members []*SetGroupMemberInfo `protobuf:"bytes,1,rep,name=members" json:"members,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
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_06303c65c0c20784, []int{51}
}
func (m *SetGroupMemberInfoReq) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_SetGroupMemberInfoReq.Unmarshal(m, b)
}
func (m *SetGroupMemberInfoReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_SetGroupMemberInfoReq.Marshal(b, m, deterministic)
}
2 years ago
func (dst *SetGroupMemberInfoReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_SetGroupMemberInfoReq.Merge(dst, src)
}
func (m *SetGroupMemberInfoReq) XXX_Size() int {
2 years ago
return xxx_messageInfo_SetGroupMemberInfoReq.Size(m)
}
func (m *SetGroupMemberInfoReq) XXX_DiscardUnknown() {
xxx_messageInfo_SetGroupMemberInfoReq.DiscardUnknown(m)
}
var xxx_messageInfo_SetGroupMemberInfoReq proto.InternalMessageInfo
func (m *SetGroupMemberInfoReq) GetMembers() []*SetGroupMemberInfo {
if m != nil {
return m.Members
}
return nil
}
type SetGroupMemberInfoResp struct {
2 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
2 years ago
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_06303c65c0c20784, []int{52}
}
func (m *SetGroupMemberInfoResp) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_SetGroupMemberInfoResp.Unmarshal(m, b)
}
func (m *SetGroupMemberInfoResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_SetGroupMemberInfoResp.Marshal(b, m, deterministic)
}
2 years ago
func (dst *SetGroupMemberInfoResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_SetGroupMemberInfoResp.Merge(dst, src)
}
func (m *SetGroupMemberInfoResp) XXX_Size() int {
2 years ago
return xxx_messageInfo_SetGroupMemberInfoResp.Size(m)
}
func (m *SetGroupMemberInfoResp) XXX_DiscardUnknown() {
xxx_messageInfo_SetGroupMemberInfoResp.DiscardUnknown(m)
2 years ago
}
var xxx_messageInfo_SetGroupMemberInfoResp proto.InternalMessageInfo
type GetGroupAbstractInfoReq struct {
2 years ago
GroupIDs []string `protobuf:"bytes,1,rep,name=groupIDs" json:"groupIDs,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
2 years ago
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_06303c65c0c20784, []int{53}
}
func (m *GetGroupAbstractInfoReq) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_GetGroupAbstractInfoReq.Unmarshal(m, b)
}
func (m *GetGroupAbstractInfoReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_GetGroupAbstractInfoReq.Marshal(b, m, deterministic)
}
2 years ago
func (dst *GetGroupAbstractInfoReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGroupAbstractInfoReq.Merge(dst, src)
}
func (m *GetGroupAbstractInfoReq) XXX_Size() int {
2 years ago
return xxx_messageInfo_GetGroupAbstractInfoReq.Size(m)
}
func (m *GetGroupAbstractInfoReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetGroupAbstractInfoReq.DiscardUnknown(m)
2 years ago
}
var xxx_messageInfo_GetGroupAbstractInfoReq proto.InternalMessageInfo
func (m *GetGroupAbstractInfoReq) GetGroupIDs() []string {
if m != nil {
return m.GroupIDs
}
return nil
}
type GroupAbstractInfo struct {
2 years ago
GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"`
GroupMemberNumber uint32 `protobuf:"varint,2,opt,name=groupMemberNumber" json:"groupMemberNumber,omitempty"`
GroupMemberListHash uint64 `protobuf:"varint,3,opt,name=groupMemberListHash" json:"groupMemberListHash,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
2 years ago
func (m *GroupAbstractInfo) Reset() { *m = GroupAbstractInfo{} }
func (m *GroupAbstractInfo) String() string { return proto.CompactTextString(m) }
func (*GroupAbstractInfo) ProtoMessage() {}
func (*GroupAbstractInfo) Descriptor() ([]byte, []int) {
return fileDescriptor_group_06303c65c0c20784, []int{54}
}
func (m *GroupAbstractInfo) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_GroupAbstractInfo.Unmarshal(m, b)
}
func (m *GroupAbstractInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_GroupAbstractInfo.Marshal(b, m, deterministic)
}
2 years ago
func (dst *GroupAbstractInfo) XXX_Merge(src proto.Message) {
xxx_messageInfo_GroupAbstractInfo.Merge(dst, src)
}
func (m *GroupAbstractInfo) XXX_Size() int {
2 years ago
return xxx_messageInfo_GroupAbstractInfo.Size(m)
}
func (m *GroupAbstractInfo) XXX_DiscardUnknown() {
xxx_messageInfo_GroupAbstractInfo.DiscardUnknown(m)
}
var xxx_messageInfo_GroupAbstractInfo proto.InternalMessageInfo
func (m *GroupAbstractInfo) GetGroupID() string {
if m != nil {
return m.GroupID
}
return ""
}
2 years ago
func (m *GroupAbstractInfo) GetGroupMemberNumber() uint32 {
if m != nil {
return m.GroupMemberNumber
}
return 0
}
func (m *GroupAbstractInfo) GetGroupMemberListHash() uint64 {
if m != nil {
return m.GroupMemberListHash
}
return 0
}
type GetGroupAbstractInfoResp struct {
2 years ago
GroupAbstractInfos []*GroupAbstractInfo `protobuf:"bytes,1,rep,name=groupAbstractInfos" json:"groupAbstractInfos,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetGroupAbstractInfoResp) Reset() { *m = GetGroupAbstractInfoResp{} }
func (m *GetGroupAbstractInfoResp) String() string { return proto.CompactTextString(m) }
func (*GetGroupAbstractInfoResp) ProtoMessage() {}
func (*GetGroupAbstractInfoResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_06303c65c0c20784, []int{55}
}
func (m *GetGroupAbstractInfoResp) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_GetGroupAbstractInfoResp.Unmarshal(m, b)
}
func (m *GetGroupAbstractInfoResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_GetGroupAbstractInfoResp.Marshal(b, m, deterministic)
}
2 years ago
func (dst *GetGroupAbstractInfoResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGroupAbstractInfoResp.Merge(dst, src)
}
func (m *GetGroupAbstractInfoResp) XXX_Size() int {
2 years ago
return xxx_messageInfo_GetGroupAbstractInfoResp.Size(m)
}
func (m *GetGroupAbstractInfoResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetGroupAbstractInfoResp.DiscardUnknown(m)
2 years ago
}
var xxx_messageInfo_GetGroupAbstractInfoResp proto.InternalMessageInfo
func (m *GetGroupAbstractInfoResp) GetGroupAbstractInfos() []*GroupAbstractInfo {
if m != nil {
return m.GroupAbstractInfos
}
return nil
}
type GetUserInGroupMembersReq struct {
2 years ago
UserID string `protobuf:"bytes,1,opt,name=userID" json:"userID,omitempty"`
GroupIDs []string `protobuf:"bytes,2,rep,name=groupIDs" json:"groupIDs,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetUserInGroupMembersReq) Reset() { *m = GetUserInGroupMembersReq{} }
func (m *GetUserInGroupMembersReq) String() string { return proto.CompactTextString(m) }
func (*GetUserInGroupMembersReq) ProtoMessage() {}
func (*GetUserInGroupMembersReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_06303c65c0c20784, []int{56}
}
func (m *GetUserInGroupMembersReq) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_GetUserInGroupMembersReq.Unmarshal(m, b)
}
func (m *GetUserInGroupMembersReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_GetUserInGroupMembersReq.Marshal(b, m, deterministic)
}
2 years ago
func (dst *GetUserInGroupMembersReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetUserInGroupMembersReq.Merge(dst, src)
}
func (m *GetUserInGroupMembersReq) XXX_Size() int {
2 years ago
return xxx_messageInfo_GetUserInGroupMembersReq.Size(m)
}
func (m *GetUserInGroupMembersReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetUserInGroupMembersReq.DiscardUnknown(m)
}
var xxx_messageInfo_GetUserInGroupMembersReq proto.InternalMessageInfo
func (m *GetUserInGroupMembersReq) GetUserID() string {
if m != nil {
return m.UserID
}
return ""
}
func (m *GetUserInGroupMembersReq) GetGroupIDs() []string {
if m != nil {
return m.GroupIDs
}
return nil
}
type GetUserInGroupMembersResp struct {
2 years ago
Members []*sdkws.GroupMemberFullInfo `protobuf:"bytes,1,rep,name=members" json:"members,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetUserInGroupMembersResp) Reset() { *m = GetUserInGroupMembersResp{} }
func (m *GetUserInGroupMembersResp) String() string { return proto.CompactTextString(m) }
func (*GetUserInGroupMembersResp) ProtoMessage() {}
func (*GetUserInGroupMembersResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_06303c65c0c20784, []int{57}
}
func (m *GetUserInGroupMembersResp) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_GetUserInGroupMembersResp.Unmarshal(m, b)
}
func (m *GetUserInGroupMembersResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_GetUserInGroupMembersResp.Marshal(b, m, deterministic)
}
2 years ago
func (dst *GetUserInGroupMembersResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetUserInGroupMembersResp.Merge(dst, src)
}
func (m *GetUserInGroupMembersResp) XXX_Size() int {
2 years ago
return xxx_messageInfo_GetUserInGroupMembersResp.Size(m)
}
func (m *GetUserInGroupMembersResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetUserInGroupMembersResp.DiscardUnknown(m)
}
var xxx_messageInfo_GetUserInGroupMembersResp proto.InternalMessageInfo
2 years ago
func (m *GetUserInGroupMembersResp) GetMembers() []*sdkws.GroupMemberFullInfo {
if m != nil {
return m.Members
}
return nil
}
2 years ago
type GetGroupMemberUserIDsReq struct {
2 years ago
GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2 years ago
}
2 years ago
func (m *GetGroupMemberUserIDsReq) Reset() { *m = GetGroupMemberUserIDsReq{} }
func (m *GetGroupMemberUserIDsReq) String() string { return proto.CompactTextString(m) }
func (*GetGroupMemberUserIDsReq) ProtoMessage() {}
func (*GetGroupMemberUserIDsReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_06303c65c0c20784, []int{58}
2 years ago
}
2 years ago
func (m *GetGroupMemberUserIDsReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGroupMemberUserIDsReq.Unmarshal(m, b)
2 years ago
}
2 years ago
func (m *GetGroupMemberUserIDsReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetGroupMemberUserIDsReq.Marshal(b, m, deterministic)
2 years ago
}
2 years ago
func (dst *GetGroupMemberUserIDsReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGroupMemberUserIDsReq.Merge(dst, src)
2 years ago
}
2 years ago
func (m *GetGroupMemberUserIDsReq) XXX_Size() int {
return xxx_messageInfo_GetGroupMemberUserIDsReq.Size(m)
2 years ago
}
2 years ago
func (m *GetGroupMemberUserIDsReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetGroupMemberUserIDsReq.DiscardUnknown(m)
2 years ago
}
2 years ago
var xxx_messageInfo_GetGroupMemberUserIDsReq proto.InternalMessageInfo
2 years ago
2 years ago
func (m *GetGroupMemberUserIDsReq) GetGroupID() string {
2 years ago
if m != nil {
return m.GroupID
}
return ""
}
2 years ago
type GetGroupMemberUserIDsResp struct {
2 years ago
UserIDs []string `protobuf:"bytes,1,rep,name=userIDs" json:"userIDs,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2 years ago
}
2 years ago
func (m *GetGroupMemberUserIDsResp) Reset() { *m = GetGroupMemberUserIDsResp{} }
func (m *GetGroupMemberUserIDsResp) String() string { return proto.CompactTextString(m) }
func (*GetGroupMemberUserIDsResp) ProtoMessage() {}
func (*GetGroupMemberUserIDsResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_06303c65c0c20784, []int{59}
2 years ago
}
2 years ago
func (m *GetGroupMemberUserIDsResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGroupMemberUserIDsResp.Unmarshal(m, b)
2 years ago
}
2 years ago
func (m *GetGroupMemberUserIDsResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetGroupMemberUserIDsResp.Marshal(b, m, deterministic)
2 years ago
}
2 years ago
func (dst *GetGroupMemberUserIDsResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGroupMemberUserIDsResp.Merge(dst, src)
2 years ago
}
2 years ago
func (m *GetGroupMemberUserIDsResp) XXX_Size() int {
return xxx_messageInfo_GetGroupMemberUserIDsResp.Size(m)
2 years ago
}
2 years ago
func (m *GetGroupMemberUserIDsResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetGroupMemberUserIDsResp.DiscardUnknown(m)
2 years ago
}
2 years ago
var xxx_messageInfo_GetGroupMemberUserIDsResp proto.InternalMessageInfo
2 years ago
2 years ago
func (m *GetGroupMemberUserIDsResp) GetUserIDs() []string {
2 years ago
if m != nil {
return m.UserIDs
}
return nil
}
type GetGroupMemberRoleLevelReq struct {
2 years ago
GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"`
RoleLevels []int32 `protobuf:"varint,2,rep,packed,name=roleLevels" json:"roleLevels,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetGroupMemberRoleLevelReq) Reset() { *m = GetGroupMemberRoleLevelReq{} }
func (m *GetGroupMemberRoleLevelReq) String() string { return proto.CompactTextString(m) }
func (*GetGroupMemberRoleLevelReq) ProtoMessage() {}
func (*GetGroupMemberRoleLevelReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_06303c65c0c20784, []int{60}
}
func (m *GetGroupMemberRoleLevelReq) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_GetGroupMemberRoleLevelReq.Unmarshal(m, b)
}
func (m *GetGroupMemberRoleLevelReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_GetGroupMemberRoleLevelReq.Marshal(b, m, deterministic)
}
2 years ago
func (dst *GetGroupMemberRoleLevelReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGroupMemberRoleLevelReq.Merge(dst, src)
}
func (m *GetGroupMemberRoleLevelReq) XXX_Size() int {
2 years ago
return xxx_messageInfo_GetGroupMemberRoleLevelReq.Size(m)
}
func (m *GetGroupMemberRoleLevelReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetGroupMemberRoleLevelReq.DiscardUnknown(m)
}
var xxx_messageInfo_GetGroupMemberRoleLevelReq proto.InternalMessageInfo
func (m *GetGroupMemberRoleLevelReq) GetGroupID() string {
if m != nil {
return m.GroupID
}
return ""
}
func (m *GetGroupMemberRoleLevelReq) GetRoleLevels() []int32 {
if m != nil {
return m.RoleLevels
}
return nil
}
type GetGroupMemberRoleLevelResp struct {
2 years ago
Members []*sdkws.GroupMemberFullInfo `protobuf:"bytes,1,rep,name=members" json:"members,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetGroupMemberRoleLevelResp) Reset() { *m = GetGroupMemberRoleLevelResp{} }
func (m *GetGroupMemberRoleLevelResp) String() string { return proto.CompactTextString(m) }
func (*GetGroupMemberRoleLevelResp) ProtoMessage() {}
func (*GetGroupMemberRoleLevelResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_06303c65c0c20784, []int{61}
}
func (m *GetGroupMemberRoleLevelResp) XXX_Unmarshal(b []byte) error {
2 years ago
return xxx_messageInfo_GetGroupMemberRoleLevelResp.Unmarshal(m, b)
}
func (m *GetGroupMemberRoleLevelResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2 years ago
return xxx_messageInfo_GetGroupMemberRoleLevelResp.Marshal(b, m, deterministic)
}
2 years ago
func (dst *GetGroupMemberRoleLevelResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGroupMemberRoleLevelResp.Merge(dst, src)
}
func (m *GetGroupMemberRoleLevelResp) XXX_Size() int {
2 years ago
return xxx_messageInfo_GetGroupMemberRoleLevelResp.Size(m)
}
func (m *GetGroupMemberRoleLevelResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetGroupMemberRoleLevelResp.DiscardUnknown(m)
}
var xxx_messageInfo_GetGroupMemberRoleLevelResp proto.InternalMessageInfo
func (m *GetGroupMemberRoleLevelResp) GetMembers() []*sdkws.GroupMemberFullInfo {
if m != nil {
return m.Members
}
return nil
}
func init() {
proto.RegisterType((*CreateGroupReq)(nil), "OpenIMServer.group.CreateGroupReq")
proto.RegisterType((*CreateGroupResp)(nil), "OpenIMServer.group.CreateGroupResp")
proto.RegisterType((*GetGroupsInfoReq)(nil), "OpenIMServer.group.GetGroupsInfoReq")
proto.RegisterType((*GetGroupsInfoResp)(nil), "OpenIMServer.group.GetGroupsInfoResp")
proto.RegisterType((*SetGroupInfoReq)(nil), "OpenIMServer.group.SetGroupInfoReq")
proto.RegisterType((*SetGroupInfoResp)(nil), "OpenIMServer.group.SetGroupInfoResp")
proto.RegisterType((*GetGroupApplicationListReq)(nil), "OpenIMServer.group.GetGroupApplicationListReq")
proto.RegisterType((*GetGroupApplicationListResp)(nil), "OpenIMServer.group.GetGroupApplicationListResp")
proto.RegisterType((*GetUserReqApplicationListReq)(nil), "OpenIMServer.group.GetUserReqApplicationListReq")
proto.RegisterType((*GetUserReqApplicationListResp)(nil), "OpenIMServer.group.GetUserReqApplicationListResp")
proto.RegisterType((*TransferGroupOwnerReq)(nil), "OpenIMServer.group.TransferGroupOwnerReq")
proto.RegisterType((*TransferGroupOwnerResp)(nil), "OpenIMServer.group.TransferGroupOwnerResp")
proto.RegisterType((*JoinGroupReq)(nil), "OpenIMServer.group.JoinGroupReq")
proto.RegisterType((*JoinGroupResp)(nil), "OpenIMServer.group.JoinGroupResp")
proto.RegisterType((*GroupApplicationResponseReq)(nil), "OpenIMServer.group.GroupApplicationResponseReq")
proto.RegisterType((*GroupApplicationResponseResp)(nil), "OpenIMServer.group.GroupApplicationResponseResp")
proto.RegisterType((*QuitGroupReq)(nil), "OpenIMServer.group.QuitGroupReq")
proto.RegisterType((*QuitGroupResp)(nil), "OpenIMServer.group.QuitGroupResp")
proto.RegisterType((*GetGroupMemberListReq)(nil), "OpenIMServer.group.GetGroupMemberListReq")
proto.RegisterType((*GetGroupMemberListResp)(nil), "OpenIMServer.group.GetGroupMemberListResp")
proto.RegisterType((*GetGroupMembersInfoReq)(nil), "OpenIMServer.group.GetGroupMembersInfoReq")
proto.RegisterType((*GetGroupMembersInfoResp)(nil), "OpenIMServer.group.GetGroupMembersInfoResp")
proto.RegisterType((*KickGroupMemberReq)(nil), "OpenIMServer.group.KickGroupMemberReq")
proto.RegisterType((*KickGroupMemberResp)(nil), "OpenIMServer.group.KickGroupMemberResp")
proto.RegisterType((*GetJoinedGroupListReq)(nil), "OpenIMServer.group.GetJoinedGroupListReq")
proto.RegisterType((*GetJoinedGroupListResp)(nil), "OpenIMServer.group.GetJoinedGroupListResp")
proto.RegisterType((*InviteUserToGroupReq)(nil), "OpenIMServer.group.InviteUserToGroupReq")
proto.RegisterType((*InviteUserToGroupResp)(nil), "OpenIMServer.group.InviteUserToGroupResp")
proto.RegisterType((*GetGroupAllMemberReq)(nil), "OpenIMServer.group.GetGroupAllMemberReq")
proto.RegisterType((*GetGroupAllMemberResp)(nil), "OpenIMServer.group.GetGroupAllMemberResp")
proto.RegisterType((*CMSGroup)(nil), "OpenIMServer.group.CMSGroup")
proto.RegisterType((*GetGroupsReq)(nil), "OpenIMServer.group.GetGroupsReq")
proto.RegisterType((*GetGroupsResp)(nil), "OpenIMServer.group.GetGroupsResp")
proto.RegisterType((*GetGroupMemberReq)(nil), "OpenIMServer.group.GetGroupMemberReq")
proto.RegisterType((*GetGroupMembersCMSReq)(nil), "OpenIMServer.group.GetGroupMembersCMSReq")
proto.RegisterType((*GetGroupMembersCMSResp)(nil), "OpenIMServer.group.GetGroupMembersCMSResp")
proto.RegisterType((*DismissGroupReq)(nil), "OpenIMServer.group.DismissGroupReq")
proto.RegisterType((*DismissGroupResp)(nil), "OpenIMServer.group.DismissGroupResp")
proto.RegisterType((*MuteGroupMemberReq)(nil), "OpenIMServer.group.MuteGroupMemberReq")
proto.RegisterType((*MuteGroupMemberResp)(nil), "OpenIMServer.group.MuteGroupMemberResp")
proto.RegisterType((*CancelMuteGroupMemberReq)(nil), "OpenIMServer.group.CancelMuteGroupMemberReq")
proto.RegisterType((*CancelMuteGroupMemberResp)(nil), "OpenIMServer.group.CancelMuteGroupMemberResp")
proto.RegisterType((*MuteGroupReq)(nil), "OpenIMServer.group.MuteGroupReq")
proto.RegisterType((*MuteGroupResp)(nil), "OpenIMServer.group.MuteGroupResp")
proto.RegisterType((*CancelMuteGroupReq)(nil), "OpenIMServer.group.CancelMuteGroupReq")
proto.RegisterType((*CancelMuteGroupResp)(nil), "OpenIMServer.group.CancelMuteGroupResp")
proto.RegisterType((*GetJoinedSuperGroupListReq)(nil), "OpenIMServer.group.GetJoinedSuperGroupListReq")
proto.RegisterType((*GetJoinedSuperGroupListResp)(nil), "OpenIMServer.group.GetJoinedSuperGroupListResp")
proto.RegisterType((*GetSuperGroupsInfoReq)(nil), "OpenIMServer.group.GetSuperGroupsInfoReq")
proto.RegisterType((*GetSuperGroupsInfoResp)(nil), "OpenIMServer.group.GetSuperGroupsInfoResp")
proto.RegisterType((*SetGroupMemberInfo)(nil), "OpenIMServer.group.SetGroupMemberInfo")
proto.RegisterType((*SetGroupMemberInfoReq)(nil), "OpenIMServer.group.SetGroupMemberInfoReq")
proto.RegisterType((*SetGroupMemberInfoResp)(nil), "OpenIMServer.group.SetGroupMemberInfoResp")
proto.RegisterType((*GetGroupAbstractInfoReq)(nil), "OpenIMServer.group.GetGroupAbstractInfoReq")
proto.RegisterType((*GroupAbstractInfo)(nil), "OpenIMServer.group.GroupAbstractInfo")
proto.RegisterType((*GetGroupAbstractInfoResp)(nil), "OpenIMServer.group.GetGroupAbstractInfoResp")
proto.RegisterType((*GetUserInGroupMembersReq)(nil), "OpenIMServer.group.GetUserInGroupMembersReq")
proto.RegisterType((*GetUserInGroupMembersResp)(nil), "OpenIMServer.group.GetUserInGroupMembersResp")
proto.RegisterType((*GetGroupMemberUserIDsReq)(nil), "OpenIMServer.group.GetGroupMemberUserIDsReq")
proto.RegisterType((*GetGroupMemberUserIDsResp)(nil), "OpenIMServer.group.GetGroupMemberUserIDsResp")
proto.RegisterType((*GetGroupMemberRoleLevelReq)(nil), "OpenIMServer.group.GetGroupMemberRoleLevelReq")
proto.RegisterType((*GetGroupMemberRoleLevelResp)(nil), "OpenIMServer.group.GetGroupMemberRoleLevelResp")
3 years ago
}
// Reference imports to suppress errors if they are not otherwise used.
var _ context.Context
var _ grpc.ClientConn
// This is a compile-time assertion to ensure that this generated file
// is compatible with the grpc package it is being compiled against.
const _ = grpc.SupportPackageIsVersion4
2 years ago
// Client API for Group service
type GroupClient interface {
2 years ago
// 创建群
CreateGroup(ctx context.Context, in *CreateGroupReq, opts ...grpc.CallOption) (*CreateGroupResp, error)
2 years ago
// 申请加群
3 years ago
JoinGroup(ctx context.Context, in *JoinGroupReq, opts ...grpc.CallOption) (*JoinGroupResp, error)
2 years ago
// 退出群
3 years ago
QuitGroup(ctx context.Context, in *QuitGroupReq, opts ...grpc.CallOption) (*QuitGroupResp, error)
2 years ago
// 获取指定群信息
3 years ago
GetGroupsInfo(ctx context.Context, in *GetGroupsInfoReq, opts ...grpc.CallOption) (*GetGroupsInfoResp, error)
2 years ago
// 设置群信息
3 years ago
SetGroupInfo(ctx context.Context, in *SetGroupInfoReq, opts ...grpc.CallOption) (*SetGroupInfoResp, error)
2 years ago
// (以管理员或群主身份)获取群的加群申请
3 years ago
GetGroupApplicationList(ctx context.Context, in *GetGroupApplicationListReq, opts ...grpc.CallOption) (*GetGroupApplicationListResp, error)
2 years ago
// 获取用户自己的主动加群申请
3 years ago
GetUserReqApplicationList(ctx context.Context, in *GetUserReqApplicationListReq, opts ...grpc.CallOption) (*GetUserReqApplicationListResp, error)
2 years ago
// 转让群主
3 years ago
TransferGroupOwner(ctx context.Context, in *TransferGroupOwnerReq, opts ...grpc.CallOption) (*TransferGroupOwnerResp, error)
2 years ago
// 群主或管理员处理进群申请
3 years ago
GroupApplicationResponse(ctx context.Context, in *GroupApplicationResponseReq, opts ...grpc.CallOption) (*GroupApplicationResponseResp, error)
2 years ago
// 获取某个群的群成员
3 years ago
GetGroupMemberList(ctx context.Context, in *GetGroupMemberListReq, opts ...grpc.CallOption) (*GetGroupMemberListResp, error)
2 years ago
// 获取某个群的指定群成员
3 years ago
GetGroupMembersInfo(ctx context.Context, in *GetGroupMembersInfoReq, opts ...grpc.CallOption) (*GetGroupMembersInfoResp, error)
2 years ago
// 踢出群
3 years ago
KickGroupMember(ctx context.Context, in *KickGroupMemberReq, opts ...grpc.CallOption) (*KickGroupMemberResp, error)
2 years ago
// 获取某个人已加入群
3 years ago
GetJoinedGroupList(ctx context.Context, in *GetJoinedGroupListReq, opts ...grpc.CallOption) (*GetJoinedGroupListResp, error)
2 years ago
// 邀请某些人进群
3 years ago
InviteUserToGroup(ctx context.Context, in *InviteUserToGroupReq, opts ...grpc.CallOption) (*InviteUserToGroupResp, error)
3 years ago
GetGroups(ctx context.Context, in *GetGroupsReq, opts ...grpc.CallOption) (*GetGroupsResp, error)
3 years ago
GetGroupMembersCMS(ctx context.Context, in *GetGroupMembersCMSReq, opts ...grpc.CallOption) (*GetGroupMembersCMSResp, error)
2 years ago
// 解散群
3 years ago
DismissGroup(ctx context.Context, in *DismissGroupReq, opts ...grpc.CallOption) (*DismissGroupResp, error)
2 years ago
// 对某个群成员禁言
3 years ago
MuteGroupMember(ctx context.Context, in *MuteGroupMemberReq, opts ...grpc.CallOption) (*MuteGroupMemberResp, error)
2 years ago
// 对某个群成员取消禁言
3 years ago
CancelMuteGroupMember(ctx context.Context, in *CancelMuteGroupMemberReq, opts ...grpc.CallOption) (*CancelMuteGroupMemberResp, error)
2 years ago
// 对某个群禁言
3 years ago
MuteGroup(ctx context.Context, in *MuteGroupReq, opts ...grpc.CallOption) (*MuteGroupResp, error)
2 years ago
// 对某个群取消禁言
3 years ago
CancelMuteGroup(ctx context.Context, in *CancelMuteGroupReq, opts ...grpc.CallOption) (*CancelMuteGroupResp, error)
2 years ago
// 获取某个用户加入的超级群
3 years ago
GetJoinedSuperGroupList(ctx context.Context, in *GetJoinedSuperGroupListReq, opts ...grpc.CallOption) (*GetJoinedSuperGroupListResp, error)
2 years ago
// 获取指定的超级群信息
3 years ago
GetSuperGroupsInfo(ctx context.Context, in *GetSuperGroupsInfoReq, opts ...grpc.CallOption) (*GetSuperGroupsInfoResp, error)
2 years ago
// 设置群成员昵称
// 设置群成员信息
SetGroupMemberInfo(ctx context.Context, in *SetGroupMemberInfoReq, opts ...grpc.CallOption) (*SetGroupMemberInfoResp, error)
2 years ago
// 获取群信息hash值
GetGroupAbstractInfo(ctx context.Context, in *GetGroupAbstractInfoReq, opts ...grpc.CallOption) (*GetGroupAbstractInfoResp, error)
2 years ago
// 获取某个用户在指定群中的信息
GetUserInGroupMembers(ctx context.Context, in *GetUserInGroupMembersReq, opts ...grpc.CallOption) (*GetUserInGroupMembersResp, error)
2 years ago
// 获取群成员用户ID
2 years ago
GetGroupMemberUserIDs(ctx context.Context, in *GetGroupMemberUserIDsReq, opts ...grpc.CallOption) (*GetGroupMemberUserIDsResp, error)
2 years ago
// 查询群组中对应级别的成员
GetGroupMemberRoleLevel(ctx context.Context, in *GetGroupMemberRoleLevelReq, opts ...grpc.CallOption) (*GetGroupMemberRoleLevelResp, error)
}
type groupClient struct {
cc *grpc.ClientConn
}
func NewGroupClient(cc *grpc.ClientConn) GroupClient {
return &groupClient{cc}
}
func (c *groupClient) CreateGroup(ctx context.Context, in *CreateGroupReq, opts ...grpc.CallOption) (*CreateGroupResp, error) {
out := new(CreateGroupResp)
err := grpc.Invoke(ctx, "/OpenIMServer.group.group/createGroup", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
3 years ago
func (c *groupClient) JoinGroup(ctx context.Context, in *JoinGroupReq, opts ...grpc.CallOption) (*JoinGroupResp, error) {
out := new(JoinGroupResp)
err := grpc.Invoke(ctx, "/OpenIMServer.group.group/joinGroup", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
3 years ago
func (c *groupClient) QuitGroup(ctx context.Context, in *QuitGroupReq, opts ...grpc.CallOption) (*QuitGroupResp, error) {
out := new(QuitGroupResp)
err := grpc.Invoke(ctx, "/OpenIMServer.group.group/quitGroup", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
3 years ago
func (c *groupClient) GetGroupsInfo(ctx context.Context, in *GetGroupsInfoReq, opts ...grpc.CallOption) (*GetGroupsInfoResp, error) {
out := new(GetGroupsInfoResp)
err := grpc.Invoke(ctx, "/OpenIMServer.group.group/getGroupsInfo", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
3 years ago
func (c *groupClient) SetGroupInfo(ctx context.Context, in *SetGroupInfoReq, opts ...grpc.CallOption) (*SetGroupInfoResp, error) {
out := new(SetGroupInfoResp)
err := grpc.Invoke(ctx, "/OpenIMServer.group.group/setGroupInfo", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
3 years ago
func (c *groupClient) GetGroupApplicationList(ctx context.Context, in *GetGroupApplicationListReq, opts ...grpc.CallOption) (*GetGroupApplicationListResp, error) {
out := new(GetGroupApplicationListResp)
err := grpc.Invoke(ctx, "/OpenIMServer.group.group/getGroupApplicationList", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
3 years ago
func (c *groupClient) GetUserReqApplicationList(ctx context.Context, in *GetUserReqApplicationListReq, opts ...grpc.CallOption) (*GetUserReqApplicationListResp, error) {
out := new(GetUserReqApplicationListResp)
err := grpc.Invoke(ctx, "/OpenIMServer.group.group/getUserReqApplicationList", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
3 years ago
func (c *groupClient) TransferGroupOwner(ctx context.Context, in *TransferGroupOwnerReq, opts ...grpc.CallOption) (*TransferGroupOwnerResp, error) {
out := new(TransferGroupOwnerResp)
err := grpc.Invoke(ctx, "/OpenIMServer.group.group/transferGroupOwner", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
3 years ago
func (c *groupClient) GroupApplicationResponse(ctx context.Context, in *GroupApplicationResponseReq, opts ...grpc.CallOption) (*GroupApplicationResponseResp, error) {
out := new(GroupApplicationResponseResp)
err := grpc.Invoke(ctx, "/OpenIMServer.group.group/groupApplicationResponse", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
3 years ago
func (c *groupClient) GetGroupMemberList(ctx context.Context, in *GetGroupMemberListReq, opts ...grpc.CallOption) (*GetGroupMemberListResp, error) {
out := new(GetGroupMemberListResp)
err := grpc.Invoke(ctx, "/OpenIMServer.group.group/getGroupMemberList", in, out, c.cc, opts...)
3 years ago
if err != nil {
return nil, err
}
return out, nil
}
func (c *groupClient) GetGroupMembersInfo(ctx context.Context, in *GetGroupMembersInfoReq, opts ...grpc.CallOption) (*GetGroupMembersInfoResp, error) {
out := new(GetGroupMembersInfoResp)
err := grpc.Invoke(ctx, "/OpenIMServer.group.group/getGroupMembersInfo", in, out, c.cc, opts...)
3 years ago
if err != nil {
return nil, err
}
return out, nil
}
func (c *groupClient) KickGroupMember(ctx context.Context, in *KickGroupMemberReq, opts ...grpc.CallOption) (*KickGroupMemberResp, error) {
out := new(KickGroupMemberResp)
err := grpc.Invoke(ctx, "/OpenIMServer.group.group/kickGroupMember", in, out, c.cc, opts...)
3 years ago
if err != nil {
return nil, err
}
return out, nil
}
func (c *groupClient) GetJoinedGroupList(ctx context.Context, in *GetJoinedGroupListReq, opts ...grpc.CallOption) (*GetJoinedGroupListResp, error) {
out := new(GetJoinedGroupListResp)
err := grpc.Invoke(ctx, "/OpenIMServer.group.group/getJoinedGroupList", in, out, c.cc, opts...)
3 years ago
if err != nil {
return nil, err
}
return out, nil
}
func (c *groupClient) InviteUserToGroup(ctx context.Context, in *InviteUserToGroupReq, opts ...grpc.CallOption) (*InviteUserToGroupResp, error) {
out := new(InviteUserToGroupResp)
err := grpc.Invoke(ctx, "/OpenIMServer.group.group/inviteUserToGroup", in, out, c.cc, opts...)
3 years ago
if err != nil {
return nil, err
}
return out, nil
}
3 years ago
func (c *groupClient) GetGroups(ctx context.Context, in *GetGroupsReq, opts ...grpc.CallOption) (*GetGroupsResp, error) {
out := new(GetGroupsResp)
err := grpc.Invoke(ctx, "/OpenIMServer.group.group/getGroups", in, out, c.cc, opts...)
3 years ago
if err != nil {
return nil, err
}
return out, nil
}
3 years ago
func (c *groupClient) GetGroupMembersCMS(ctx context.Context, in *GetGroupMembersCMSReq, opts ...grpc.CallOption) (*GetGroupMembersCMSResp, error) {
out := new(GetGroupMembersCMSResp)
err := grpc.Invoke(ctx, "/OpenIMServer.group.group/getGroupMembersCMS", in, out, c.cc, opts...)
3 years ago
if err != nil {
return nil, err
}
return out, nil
}
3 years ago
func (c *groupClient) DismissGroup(ctx context.Context, in *DismissGroupReq, opts ...grpc.CallOption) (*DismissGroupResp, error) {
out := new(DismissGroupResp)
err := grpc.Invoke(ctx, "/OpenIMServer.group.group/dismissGroup", in, out, c.cc, opts...)
3 years ago
if err != nil {
return nil, err
}
return out, nil
}
3 years ago
func (c *groupClient) MuteGroupMember(ctx context.Context, in *MuteGroupMemberReq, opts ...grpc.CallOption) (*MuteGroupMemberResp, error) {
out := new(MuteGroupMemberResp)
err := grpc.Invoke(ctx, "/OpenIMServer.group.group/muteGroupMember", in, out, c.cc, opts...)
3 years ago
if err != nil {
return nil, err
}
return out, nil
}
func (c *groupClient) CancelMuteGroupMember(ctx context.Context, in *CancelMuteGroupMemberReq, opts ...grpc.CallOption) (*CancelMuteGroupMemberResp, error) {
out := new(CancelMuteGroupMemberResp)
err := grpc.Invoke(ctx, "/OpenIMServer.group.group/cancelMuteGroupMember", in, out, c.cc, opts...)
3 years ago
if err != nil {
return nil, err
}
return out, nil
}
func (c *groupClient) MuteGroup(ctx context.Context, in *MuteGroupReq, opts ...grpc.CallOption) (*MuteGroupResp, error) {
out := new(MuteGroupResp)
err := grpc.Invoke(ctx, "/OpenIMServer.group.group/muteGroup", in, out, c.cc, opts...)
3 years ago
if err != nil {
return nil, err
}
return out, nil
}
func (c *groupClient) CancelMuteGroup(ctx context.Context, in *CancelMuteGroupReq, opts ...grpc.CallOption) (*CancelMuteGroupResp, error) {
out := new(CancelMuteGroupResp)
err := grpc.Invoke(ctx, "/OpenIMServer.group.group/cancelMuteGroup", in, out, c.cc, opts...)
3 years ago
if err != nil {
return nil, err
}
return out, nil
}
3 years ago
func (c *groupClient) GetJoinedSuperGroupList(ctx context.Context, in *GetJoinedSuperGroupListReq, opts ...grpc.CallOption) (*GetJoinedSuperGroupListResp, error) {
out := new(GetJoinedSuperGroupListResp)
err := grpc.Invoke(ctx, "/OpenIMServer.group.group/getJoinedSuperGroupList", in, out, c.cc, opts...)
3 years ago
if err != nil {
return nil, err
}
return out, nil
}
3 years ago
func (c *groupClient) GetSuperGroupsInfo(ctx context.Context, in *GetSuperGroupsInfoReq, opts ...grpc.CallOption) (*GetSuperGroupsInfoResp, error) {
out := new(GetSuperGroupsInfoResp)
err := grpc.Invoke(ctx, "/OpenIMServer.group.group/getSuperGroupsInfo", in, out, c.cc, opts...)
3 years ago
if err != nil {
return nil, err
}
return out, nil
}
func (c *groupClient) SetGroupMemberInfo(ctx context.Context, in *SetGroupMemberInfoReq, opts ...grpc.CallOption) (*SetGroupMemberInfoResp, error) {
out := new(SetGroupMemberInfoResp)
err := grpc.Invoke(ctx, "/OpenIMServer.group.group/setGroupMemberInfo", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *groupClient) GetGroupAbstractInfo(ctx context.Context, in *GetGroupAbstractInfoReq, opts ...grpc.CallOption) (*GetGroupAbstractInfoResp, error) {
out := new(GetGroupAbstractInfoResp)
err := grpc.Invoke(ctx, "/OpenIMServer.group.group/getGroupAbstractInfo", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *groupClient) GetUserInGroupMembers(ctx context.Context, in *GetUserInGroupMembersReq, opts ...grpc.CallOption) (*GetUserInGroupMembersResp, error) {
out := new(GetUserInGroupMembersResp)
err := grpc.Invoke(ctx, "/OpenIMServer.group.group/getUserInGroupMembers", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
2 years ago
func (c *groupClient) GetGroupMemberUserIDs(ctx context.Context, in *GetGroupMemberUserIDsReq, opts ...grpc.CallOption) (*GetGroupMemberUserIDsResp, error) {
out := new(GetGroupMemberUserIDsResp)
err := grpc.Invoke(ctx, "/OpenIMServer.group.group/getGroupMemberUserIDs", in, out, c.cc, opts...)
2 years ago
if err != nil {
return nil, err
}
return out, nil
}
func (c *groupClient) GetGroupMemberRoleLevel(ctx context.Context, in *GetGroupMemberRoleLevelReq, opts ...grpc.CallOption) (*GetGroupMemberRoleLevelResp, error) {
out := new(GetGroupMemberRoleLevelResp)
err := grpc.Invoke(ctx, "/OpenIMServer.group.group/GetGroupMemberRoleLevel", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
2 years ago
// Server API for Group service
type GroupServer interface {
2 years ago
// 创建群
CreateGroup(context.Context, *CreateGroupReq) (*CreateGroupResp, error)
2 years ago
// 申请加群
3 years ago
JoinGroup(context.Context, *JoinGroupReq) (*JoinGroupResp, error)
2 years ago
// 退出群
3 years ago
QuitGroup(context.Context, *QuitGroupReq) (*QuitGroupResp, error)
2 years ago
// 获取指定群信息
3 years ago
GetGroupsInfo(context.Context, *GetGroupsInfoReq) (*GetGroupsInfoResp, error)
2 years ago
// 设置群信息
3 years ago
SetGroupInfo(context.Context, *SetGroupInfoReq) (*SetGroupInfoResp, error)
2 years ago
// (以管理员或群主身份)获取群的加群申请
3 years ago
GetGroupApplicationList(context.Context, *GetGroupApplicationListReq) (*GetGroupApplicationListResp, error)
2 years ago
// 获取用户自己的主动加群申请
3 years ago
GetUserReqApplicationList(context.Context, *GetUserReqApplicationListReq) (*GetUserReqApplicationListResp, error)
2 years ago
// 转让群主
3 years ago
TransferGroupOwner(context.Context, *TransferGroupOwnerReq) (*TransferGroupOwnerResp, error)
2 years ago
// 群主或管理员处理进群申请
3 years ago
GroupApplicationResponse(context.Context, *GroupApplicationResponseReq) (*GroupApplicationResponseResp, error)
2 years ago
// 获取某个群的群成员
3 years ago
GetGroupMemberList(context.Context, *GetGroupMemberListReq) (*GetGroupMemberListResp, error)
2 years ago
// 获取某个群的指定群成员
3 years ago
GetGroupMembersInfo(context.Context, *GetGroupMembersInfoReq) (*GetGroupMembersInfoResp, error)
2 years ago
// 踢出群
3 years ago
KickGroupMember(context.Context, *KickGroupMemberReq) (*KickGroupMemberResp, error)
2 years ago
// 获取某个人已加入群
3 years ago
GetJoinedGroupList(context.Context, *GetJoinedGroupListReq) (*GetJoinedGroupListResp, error)
2 years ago
// 邀请某些人进群
3 years ago
InviteUserToGroup(context.Context, *InviteUserToGroupReq) (*InviteUserToGroupResp, error)
3 years ago
GetGroups(context.Context, *GetGroupsReq) (*GetGroupsResp, error)
3 years ago
GetGroupMembersCMS(context.Context, *GetGroupMembersCMSReq) (*GetGroupMembersCMSResp, error)
2 years ago
// 解散群
3 years ago
DismissGroup(context.Context, *DismissGroupReq) (*DismissGroupResp, error)
2 years ago
// 对某个群成员禁言
3 years ago
MuteGroupMember(context.Context, *MuteGroupMemberReq) (*MuteGroupMemberResp, error)
2 years ago
// 对某个群成员取消禁言
3 years ago
CancelMuteGroupMember(context.Context, *CancelMuteGroupMemberReq) (*CancelMuteGroupMemberResp, error)
2 years ago
// 对某个群禁言
3 years ago
MuteGroup(context.Context, *MuteGroupReq) (*MuteGroupResp, error)
2 years ago
// 对某个群取消禁言
3 years ago
CancelMuteGroup(context.Context, *CancelMuteGroupReq) (*CancelMuteGroupResp, error)
2 years ago
// 获取某个用户加入的超级群
3 years ago
GetJoinedSuperGroupList(context.Context, *GetJoinedSuperGroupListReq) (*GetJoinedSuperGroupListResp, error)
2 years ago
// 获取指定的超级群信息
3 years ago
GetSuperGroupsInfo(context.Context, *GetSuperGroupsInfoReq) (*GetSuperGroupsInfoResp, error)
2 years ago
// 设置群成员昵称
// 设置群成员信息
SetGroupMemberInfo(context.Context, *SetGroupMemberInfoReq) (*SetGroupMemberInfoResp, error)
2 years ago
// 获取群信息hash值
GetGroupAbstractInfo(context.Context, *GetGroupAbstractInfoReq) (*GetGroupAbstractInfoResp, error)
2 years ago
// 获取某个用户在指定群中的信息
GetUserInGroupMembers(context.Context, *GetUserInGroupMembersReq) (*GetUserInGroupMembersResp, error)
2 years ago
// 获取群成员用户ID
2 years ago
GetGroupMemberUserIDs(context.Context, *GetGroupMemberUserIDsReq) (*GetGroupMemberUserIDsResp, error)
2 years ago
// 查询群组中对应级别的成员
GetGroupMemberRoleLevel(context.Context, *GetGroupMemberRoleLevelReq) (*GetGroupMemberRoleLevelResp, error)
3 years ago
}
func RegisterGroupServer(s *grpc.Server, srv GroupServer) {
s.RegisterService(&_Group_serviceDesc, srv)
}
func _Group_CreateGroup_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(CreateGroupReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(GroupServer).CreateGroup(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/OpenIMServer.group.group/CreateGroup",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(GroupServer).CreateGroup(ctx, req.(*CreateGroupReq))
}
return interceptor(ctx, in, info, handler)
}
3 years ago
func _Group_JoinGroup_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(JoinGroupReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(GroupServer).JoinGroup(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/OpenIMServer.group.group/JoinGroup",
3 years ago
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(GroupServer).JoinGroup(ctx, req.(*JoinGroupReq))
}
return interceptor(ctx, in, info, handler)
}
func _Group_QuitGroup_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(QuitGroupReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(GroupServer).QuitGroup(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/OpenIMServer.group.group/QuitGroup",
3 years ago
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(GroupServer).QuitGroup(ctx, req.(*QuitGroupReq))
}
return interceptor(ctx, in, info, handler)
}
func _Group_GetGroupsInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetGroupsInfoReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(GroupServer).GetGroupsInfo(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/OpenIMServer.group.group/GetGroupsInfo",
3 years ago
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(GroupServer).GetGroupsInfo(ctx, req.(*GetGroupsInfoReq))
}
return interceptor(ctx, in, info, handler)
}
func _Group_SetGroupInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(SetGroupInfoReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(GroupServer).SetGroupInfo(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/OpenIMServer.group.group/SetGroupInfo",
3 years ago
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(GroupServer).SetGroupInfo(ctx, req.(*SetGroupInfoReq))
}
return interceptor(ctx, in, info, handler)
}
func _Group_GetGroupApplicationList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetGroupApplicationListReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(GroupServer).GetGroupApplicationList(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/OpenIMServer.group.group/GetGroupApplicationList",
3 years ago
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(GroupServer).GetGroupApplicationList(ctx, req.(*GetGroupApplicationListReq))
}
return interceptor(ctx, in, info, handler)
}
3 years ago
func _Group_GetUserReqApplicationList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetUserReqApplicationListReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(GroupServer).GetUserReqApplicationList(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/OpenIMServer.group.group/GetUserReqApplicationList",
3 years ago
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(GroupServer).GetUserReqApplicationList(ctx, req.(*GetUserReqApplicationListReq))
}
return interceptor(ctx, in, info, handler)
}
3 years ago
func _Group_TransferGroupOwner_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(TransferGroupOwnerReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
3 years ago
return srv.(GroupServer).TransferGroupOwner(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/OpenIMServer.group.group/TransferGroupOwner",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
3 years ago
return srv.(GroupServer).TransferGroupOwner(ctx, req.(*TransferGroupOwnerReq))
}
return interceptor(ctx, in, info, handler)
}
3 years ago
func _Group_GroupApplicationResponse_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GroupApplicationResponseReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
3 years ago
return srv.(GroupServer).GroupApplicationResponse(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/OpenIMServer.group.group/GroupApplicationResponse",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
3 years ago
return srv.(GroupServer).GroupApplicationResponse(ctx, req.(*GroupApplicationResponseReq))
}
return interceptor(ctx, in, info, handler)
}
3 years ago
func _Group_GetGroupMemberList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetGroupMemberListReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
3 years ago
return srv.(GroupServer).GetGroupMemberList(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/OpenIMServer.group.group/GetGroupMemberList",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
3 years ago
return srv.(GroupServer).GetGroupMemberList(ctx, req.(*GetGroupMemberListReq))
}
return interceptor(ctx, in, info, handler)
}
3 years ago
func _Group_GetGroupMembersInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetGroupMembersInfoReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
3 years ago
return srv.(GroupServer).GetGroupMembersInfo(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/OpenIMServer.group.group/GetGroupMembersInfo",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
3 years ago
return srv.(GroupServer).GetGroupMembersInfo(ctx, req.(*GetGroupMembersInfoReq))
}
return interceptor(ctx, in, info, handler)
}
3 years ago
func _Group_KickGroupMember_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(KickGroupMemberReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
3 years ago
return srv.(GroupServer).KickGroupMember(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/OpenIMServer.group.group/KickGroupMember",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
3 years ago
return srv.(GroupServer).KickGroupMember(ctx, req.(*KickGroupMemberReq))
}
return interceptor(ctx, in, info, handler)
}
3 years ago
func _Group_GetJoinedGroupList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetJoinedGroupListReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
3 years ago
return srv.(GroupServer).GetJoinedGroupList(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/OpenIMServer.group.group/GetJoinedGroupList",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
3 years ago
return srv.(GroupServer).GetJoinedGroupList(ctx, req.(*GetJoinedGroupListReq))
}
return interceptor(ctx, in, info, handler)
}
3 years ago
func _Group_InviteUserToGroup_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(InviteUserToGroupReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
3 years ago
return srv.(GroupServer).InviteUserToGroup(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/OpenIMServer.group.group/InviteUserToGroup",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
3 years ago
return srv.(GroupServer).InviteUserToGroup(ctx, req.(*InviteUserToGroupReq))
}
return interceptor(ctx, in, info, handler)
}
3 years ago
func _Group_GetGroups_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetGroupsReq)
3 years ago
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
3 years ago
return srv.(GroupServer).GetGroups(ctx, in)
3 years ago
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/OpenIMServer.group.group/GetGroups",
3 years ago
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
3 years ago
return srv.(GroupServer).GetGroups(ctx, req.(*GetGroupsReq))
3 years ago
}
return interceptor(ctx, in, info, handler)
}
3 years ago
func _Group_GetGroupMembersCMS_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetGroupMembersCMSReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(GroupServer).GetGroupMembersCMS(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/OpenIMServer.group.group/GetGroupMembersCMS",
3 years ago
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(GroupServer).GetGroupMembersCMS(ctx, req.(*GetGroupMembersCMSReq))
}
return interceptor(ctx, in, info, handler)
}
3 years ago
func _Group_DismissGroup_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(DismissGroupReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(GroupServer).DismissGroup(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/OpenIMServer.group.group/DismissGroup",
3 years ago
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(GroupServer).DismissGroup(ctx, req.(*DismissGroupReq))
}
return interceptor(ctx, in, info, handler)
}
3 years ago
func _Group_MuteGroupMember_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(MuteGroupMemberReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(GroupServer).MuteGroupMember(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/OpenIMServer.group.group/MuteGroupMember",
3 years ago
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(GroupServer).MuteGroupMember(ctx, req.(*MuteGroupMemberReq))
}
return interceptor(ctx, in, info, handler)
}
func _Group_CancelMuteGroupMember_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(CancelMuteGroupMemberReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(GroupServer).CancelMuteGroupMember(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/OpenIMServer.group.group/CancelMuteGroupMember",
3 years ago
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(GroupServer).CancelMuteGroupMember(ctx, req.(*CancelMuteGroupMemberReq))
}
return interceptor(ctx, in, info, handler)
}
func _Group_MuteGroup_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(MuteGroupReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(GroupServer).MuteGroup(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/OpenIMServer.group.group/MuteGroup",
3 years ago
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(GroupServer).MuteGroup(ctx, req.(*MuteGroupReq))
}
return interceptor(ctx, in, info, handler)
}
func _Group_CancelMuteGroup_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(CancelMuteGroupReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(GroupServer).CancelMuteGroup(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/OpenIMServer.group.group/CancelMuteGroup",
3 years ago
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(GroupServer).CancelMuteGroup(ctx, req.(*CancelMuteGroupReq))
}
return interceptor(ctx, in, info, handler)
}
func _Group_GetJoinedSuperGroupList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetJoinedSuperGroupListReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(GroupServer).GetJoinedSuperGroupList(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/OpenIMServer.group.group/GetJoinedSuperGroupList",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(GroupServer).GetJoinedSuperGroupList(ctx, req.(*GetJoinedSuperGroupListReq))
}
return interceptor(ctx, in, info, handler)
}
func _Group_GetSuperGroupsInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetSuperGroupsInfoReq)
3 years ago
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(GroupServer).GetSuperGroupsInfo(ctx, in)
3 years ago
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/OpenIMServer.group.group/GetSuperGroupsInfo",
3 years ago
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(GroupServer).GetSuperGroupsInfo(ctx, req.(*GetSuperGroupsInfoReq))
3 years ago
}
return interceptor(ctx, in, info, handler)
}
func _Group_SetGroupMemberInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(SetGroupMemberInfoReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(GroupServer).SetGroupMemberInfo(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/OpenIMServer.group.group/SetGroupMemberInfo",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(GroupServer).SetGroupMemberInfo(ctx, req.(*SetGroupMemberInfoReq))
}
return interceptor(ctx, in, info, handler)
}
func _Group_GetGroupAbstractInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetGroupAbstractInfoReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(GroupServer).GetGroupAbstractInfo(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/OpenIMServer.group.group/GetGroupAbstractInfo",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(GroupServer).GetGroupAbstractInfo(ctx, req.(*GetGroupAbstractInfoReq))
}
return interceptor(ctx, in, info, handler)
}
func _Group_GetUserInGroupMembers_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetUserInGroupMembersReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(GroupServer).GetUserInGroupMembers(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/OpenIMServer.group.group/GetUserInGroupMembers",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(GroupServer).GetUserInGroupMembers(ctx, req.(*GetUserInGroupMembersReq))
}
return interceptor(ctx, in, info, handler)
}
2 years ago
func _Group_GetGroupMemberUserIDs_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetGroupMemberUserIDsReq)
2 years ago
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
2 years ago
return srv.(GroupServer).GetGroupMemberUserIDs(ctx, in)
2 years ago
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/OpenIMServer.group.group/GetGroupMemberUserIDs",
2 years ago
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
2 years ago
return srv.(GroupServer).GetGroupMemberUserIDs(ctx, req.(*GetGroupMemberUserIDsReq))
2 years ago
}
return interceptor(ctx, in, info, handler)
}
func _Group_GetGroupMemberRoleLevel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetGroupMemberRoleLevelReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(GroupServer).GetGroupMemberRoleLevel(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/OpenIMServer.group.group/GetGroupMemberRoleLevel",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(GroupServer).GetGroupMemberRoleLevel(ctx, req.(*GetGroupMemberRoleLevelReq))
}
return interceptor(ctx, in, info, handler)
}
var _Group_serviceDesc = grpc.ServiceDesc{
ServiceName: "OpenIMServer.group.group",
HandlerType: (*GroupServer)(nil),
Methods: []grpc.MethodDesc{
{
MethodName: "createGroup",
Handler: _Group_CreateGroup_Handler,
},
{
3 years ago
MethodName: "joinGroup",
Handler: _Group_JoinGroup_Handler,
},
{
MethodName: "quitGroup",
Handler: _Group_QuitGroup_Handler,
},
{
MethodName: "getGroupsInfo",
Handler: _Group_GetGroupsInfo_Handler,
},
{
MethodName: "setGroupInfo",
Handler: _Group_SetGroupInfo_Handler,
},
{
MethodName: "getGroupApplicationList",
Handler: _Group_GetGroupApplicationList_Handler,
},
3 years ago
{
MethodName: "getUserReqApplicationList",
Handler: _Group_GetUserReqApplicationList_Handler,
},
3 years ago
{
MethodName: "transferGroupOwner",
Handler: _Group_TransferGroupOwner_Handler,
},
{
3 years ago
MethodName: "groupApplicationResponse",
Handler: _Group_GroupApplicationResponse_Handler,
},
{
3 years ago
MethodName: "getGroupMemberList",
Handler: _Group_GetGroupMemberList_Handler,
},
{
3 years ago
MethodName: "getGroupMembersInfo",
Handler: _Group_GetGroupMembersInfo_Handler,
},
{
3 years ago
MethodName: "kickGroupMember",
Handler: _Group_KickGroupMember_Handler,
},
{
3 years ago
MethodName: "getJoinedGroupList",
Handler: _Group_GetJoinedGroupList_Handler,
},
{
3 years ago
MethodName: "inviteUserToGroup",
Handler: _Group_InviteUserToGroup_Handler,
},
3 years ago
{
MethodName: "getGroups",
3 years ago
Handler: _Group_GetGroups_Handler,
},
3 years ago
{
MethodName: "getGroupMembersCMS",
3 years ago
Handler: _Group_GetGroupMembersCMS_Handler,
},
3 years ago
{
MethodName: "dismissGroup",
3 years ago
Handler: _Group_DismissGroup_Handler,
},
3 years ago
{
MethodName: "muteGroupMember",
3 years ago
Handler: _Group_MuteGroupMember_Handler,
},
{
MethodName: "cancelMuteGroupMember",
3 years ago
Handler: _Group_CancelMuteGroupMember_Handler,
},
{
MethodName: "muteGroup",
3 years ago
Handler: _Group_MuteGroup_Handler,
},
{
MethodName: "cancelMuteGroup",
3 years ago
Handler: _Group_CancelMuteGroup_Handler,
},
3 years ago
{
MethodName: "getJoinedSuperGroupList",
3 years ago
Handler: _Group_GetJoinedSuperGroupList_Handler,
},
3 years ago
{
MethodName: "getSuperGroupsInfo",
3 years ago
Handler: _Group_GetSuperGroupsInfo_Handler,
},
{
MethodName: "setGroupMemberInfo",
Handler: _Group_SetGroupMemberInfo_Handler,
},
{
MethodName: "getGroupAbstractInfo",
Handler: _Group_GetGroupAbstractInfo_Handler,
},
{
MethodName: "getUserInGroupMembers",
Handler: _Group_GetUserInGroupMembers_Handler,
},
2 years ago
{
2 years ago
MethodName: "getGroupMemberUserIDs",
Handler: _Group_GetGroupMemberUserIDs_Handler,
2 years ago
},
{
MethodName: "GetGroupMemberRoleLevel",
Handler: _Group_GetGroupMemberRoleLevel_Handler,
},
},
Streams: []grpc.StreamDesc{},
Metadata: "group/group.proto",
}
func init() { proto.RegisterFile("group/group.proto", fileDescriptor_group_06303c65c0c20784) }
var fileDescriptor_group_06303c65c0c20784 = []byte{
// 1874 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x5a, 0xdd, 0x6f, 0xdb, 0xc8,
0x11, 0x07, 0xe5, 0xb3, 0x63, 0x4f, 0xac, 0xb3, 0xbd, 0xfe, 0x52, 0x68, 0x9f, 0xe1, 0x6e, 0x9c,
0x8b, 0x73, 0x67, 0xcb, 0x69, 0x3e, 0x8a, 0x16, 0x87, 0x02, 0x4d, 0x9d, 0xc6, 0x75, 0x6b, 0x39,
0x57, 0x2a, 0x49, 0x91, 0x34, 0x28, 0x42, 0x4b, 0x6b, 0x86, 0x11, 0x45, 0xae, 0xb8, 0x54, 0x1c,
0xa4, 0x48, 0xd1, 0xa2, 0xcf, 0x29, 0xfa, 0xd0, 0xa7, 0xf6, 0xa9, 0xe8, 0xdf, 0xd0, 0xff, 0xaf,
0xe0, 0x2e, 0x3f, 0x96, 0xe4, 0x52, 0xa2, 0x2f, 0x76, 0x5e, 0x04, 0x70, 0x76, 0x76, 0x66, 0x76,
0x76, 0x76, 0x66, 0x7e, 0x63, 0xc3, 0x82, 0xe5, 0x7b, 0x43, 0xba, 0xc7, 0x7f, 0x9b, 0xd4, 0xf7,
0x02, 0x0f, 0xa1, 0xc7, 0x94, 0xb8, 0x87, 0xad, 0x36, 0xf1, 0xdf, 0x12, 0xbf, 0xc9, 0x57, 0xf4,
0x9b, 0x21, 0x6d, 0xf7, 0xb0, 0xb5, 0x2b, 0xa8, 0x7b, 0xb4, 0x67, 0xed, 0x71, 0xee, 0x3d, 0xd6,
0xed, 0x9d, 0xb1, 0xbd, 0x33, 0x26, 0x36, 0xeb, 0xbb, 0xe3, 0x18, 0x7d, 0x93, 0x52, 0xe2, 0x47,
0xec, 0xf8, 0x7f, 0x1a, 0x7c, 0xb9, 0xef, 0x13, 0x33, 0x20, 0x07, 0xa1, 0x1e, 0x83, 0x0c, 0xd0,
0x26, 0x5c, 0xb5, 0x5d, 0x3b, 0x68, 0x91, 0xfe, 0x09, 0xf1, 0x59, 0x43, 0xdb, 0x9c, 0xd8, 0x9e,
0x31, 0x64, 0x12, 0xfa, 0x0e, 0x66, 0xb8, 0x55, 0x87, 0xee, 0xa9, 0xd7, 0xa8, 0x6d, 0x6a, 0xdb,
0x57, 0xef, 0x7c, 0xd5, 0xcc, 0x18, 0xcd, 0x75, 0x35, 0x0f, 0x62, 0x26, 0x23, 0xe5, 0x47, 0x18,
0x66, 0xcd, 0x6e, 0xdf, 0x76, 0x9f, 0x32, 0xe2, 0x1f, 0x3e, 0x64, 0x8d, 0x09, 0x2e, 0x3f, 0x43,
0x0b, 0x4d, 0xf0, 0xce, 0x5c, 0xe2, 0x8b, 0xef, 0xc6, 0x17, 0x9b, 0x5a, 0x68, 0x82, 0x44, 0xc2,
0xc7, 0x30, 0x97, 0x31, 0x9b, 0xd1, 0xac, 0x55, 0xda, 0xf9, 0xac, 0xc2, 0x4d, 0x98, 0x3f, 0x20,
0x01, 0x5f, 0x62, 0x7c, 0x8d, 0x0c, 0x90, 0x0e, 0xd3, 0x82, 0xe1, 0x61, 0xec, 0x85, 0xe4, 0x1b,
0x1b, 0xb0, 0x90, 0xe3, 0x67, 0x14, 0xfd, 0x1c, 0x20, 0x91, 0x28, 0xb6, 0x8c, 0x35, 0x41, 0xda,
0x80, 0x5f, 0xc1, 0x5c, 0x3b, 0x92, 0x19, 0x9b, 0xd0, 0x82, 0xb9, 0x84, 0xe1, 0x91, 0xe7, 0xb7,
0x49, 0x10, 0x9d, 0xec, 0xfa, 0x48, 0xb1, 0x82, 0xd5, 0xc8, 0xef, 0xc5, 0x08, 0xe6, 0xb3, 0x1a,
0x18, 0xc5, 0x7f, 0xd3, 0x40, 0x8f, 0x8f, 0xf2, 0x80, 0x52, 0xc7, 0xee, 0x98, 0x81, 0xed, 0xb9,
0x47, 0x36, 0x0b, 0x42, 0x0b, 0x7e, 0x05, 0x40, 0x4d, 0xcb, 0x76, 0x39, 0x31, 0x52, 0x7e, 0x43,
0xa5, 0xdc, 0x20, 0x83, 0x21, 0x61, 0xc1, 0xf7, 0x09, 0xb3, 0x21, 0x6d, 0x44, 0x1b, 0x00, 0xa7,
0xbe, 0xd7, 0x8f, 0x2e, 0xb4, 0xc6, 0x2f, 0x54, 0xa2, 0xe0, 0x3f, 0xc1, 0x5a, 0xa9, 0x11, 0x8c,
0xa2, 0x25, 0x98, 0x0c, 0xbc, 0xc0, 0x74, 0xb8, 0x01, 0x75, 0x43, 0x7c, 0xa0, 0x47, 0x50, 0xb7,
0xa2, 0xa8, 0x0d, 0x55, 0xb3, 0x46, 0x8d, 0xbb, 0x7c, 0xb3, 0xd4, 0x37, 0x11, 0xa3, 0x91, 0xdd,
0x86, 0x3f, 0xc0, 0xfa, 0x01, 0x09, 0x42, 0x4b, 0x0c, 0x32, 0xb8, 0x3c, 0x1f, 0xac, 0xc0, 0xd4,
0x50, 0x3e, 0x7f, 0xf4, 0x85, 0x3f, 0xc0, 0x57, 0x23, 0xd4, 0x5f, 0xfa, 0xe9, 0xff, 0xaa, 0xc1,
0xf2, 0x13, 0xdf, 0x74, 0xd9, 0x29, 0xf1, 0x39, 0xdf, 0xe3, 0xf0, 0x9d, 0x85, 0xe7, 0x6e, 0xc0,
0x95, 0x28, 0xe0, 0xb9, 0xe6, 0x19, 0x23, 0xfe, 0x44, 0x5f, 0xc3, 0x97, 0x9e, 0xd3, 0x7d, 0x2c,
0xbd, 0x51, 0x71, 0xa4, 0x1c, 0x35, 0xe4, 0x73, 0xc9, 0x99, 0xcc, 0x37, 0x21, 0xf8, 0xb2, 0x54,
0xdc, 0x80, 0x15, 0x95, 0x09, 0x8c, 0xe2, 0xbf, 0x6b, 0x30, 0xfb, 0x1b, 0xcf, 0x76, 0x93, 0xf4,
0x54, 0x6e, 0xd4, 0x06, 0x80, 0x4f, 0x06, 0x2d, 0xc2, 0x98, 0x69, 0x91, 0x38, 0xc6, 0x52, 0x4a,
0xb8, 0xfe, 0xc6, 0xb3, 0xdd, 0xb6, 0x37, 0xf4, 0x3b, 0x84, 0x1b, 0x32, 0x69, 0x48, 0x14, 0xb4,
0x05, 0x75, 0xdb, 0x7d, 0x6b, 0x07, 0xb9, 0xbc, 0x93, 0x25, 0xe2, 0x39, 0xa8, 0x4b, 0xf6, 0x30,
0x8a, 0xff, 0xad, 0xc1, 0x5a, 0x3e, 0x70, 0xc3, 0x05, 0xcf, 0x65, 0x64, 0xac, 0xc1, 0xa3, 0x1e,
0x45, 0xb8, 0xfe, 0xda, 0x74, 0xbb, 0x0e, 0xe9, 0xb6, 0x98, 0x15, 0x79, 0x4e, 0xa2, 0x84, 0xa9,
0x54, 0x7c, 0x19, 0x84, 0x0d, 0x9d, 0x80, 0xdb, 0x3b, 0x69, 0x64, 0x68, 0x78, 0x03, 0xd6, 0xcb,
0x8d, 0x63, 0x14, 0x6f, 0xc3, 0xec, 0xef, 0x86, 0x76, 0x30, 0xde, 0xbd, 0xe1, 0xc1, 0x25, 0x4e,
0x46, 0xf1, 0x3f, 0x34, 0x58, 0x8e, 0x1f, 0xad, 0x28, 0x0d, 0x17, 0xfc, 0x60, 0x24, 0x5b, 0x6a,
0x59, 0xcf, 0xad, 0xc0, 0xd4, 0xa9, 0xed, 0x04, 0xc4, 0x8f, 0xae, 0x31, 0xfa, 0xc2, 0x03, 0x58,
0x51, 0x59, 0x54, 0xfa, 0x86, 0x1e, 0xc0, 0x95, 0x7e, 0x54, 0xe7, 0xc4, 0xeb, 0xb9, 0x59, 0xfa,
0x7a, 0x84, 0xbc, 0x47, 0x43, 0xc7, 0xe1, 0xa9, 0x33, 0xde, 0x87, 0x8f, 0xf2, 0x2a, 0x93, 0xfa,
0x51, 0x7e, 0xf1, 0x8d, 0xac, 0xda, 0x99, 0x54, 0xda, 0x4b, 0x58, 0x55, 0x4a, 0x63, 0x54, 0xb6,
0x55, 0xfb, 0x81, 0xb6, 0x3a, 0x80, 0x7e, 0x6b, 0x77, 0x7a, 0x12, 0xcf, 0x68, 0x3b, 0xb7, 0xa0,
0xde, 0xb3, 0x3b, 0x3d, 0xd2, 0x8d, 0x8b, 0xb5, 0xb0, 0x36, 0x4b, 0x0c, 0x2f, 0xc3, 0x27, 0x26,
0xf3, 0xdc, 0x28, 0x44, 0xa3, 0x2f, 0xbc, 0x0c, 0x8b, 0x05, 0x6d, 0x8c, 0xe2, 0x3f, 0xf3, 0xa8,
0x09, 0xdf, 0x10, 0xe9, 0xf2, 0xb5, 0xcf, 0x5c, 0x6a, 0x08, 0xbf, 0xb0, 0x82, 0xfe, 0xd2, 0x18,
0xb9, 0x0f, 0x53, 0xdc, 0x1f, 0x71, 0x88, 0x8c, 0xa9, 0xe8, 0x11, 0x33, 0xa6, 0xb0, 0x74, 0xc8,
0x13, 0x47, 0xa8, 0xf6, 0x89, 0x57, 0x21, 0x7f, 0xa5, 0x7e, 0xac, 0xc9, 0x7e, 0x0c, 0x93, 0xa8,
0x48, 0x41, 0xdd, 0x6c, 0xcf, 0x94, 0xa3, 0xe2, 0x55, 0x58, 0x56, 0x68, 0x64, 0x14, 0x9f, 0xc1,
0x52, 0x52, 0x5c, 0x1d, 0x27, 0xbd, 0xf8, 0xcb, 0x7e, 0xa6, 0xf8, 0x45, 0x9a, 0x20, 0x24, 0xc5,
0x17, 0x13, 0xcb, 0xff, 0xd5, 0x60, 0x7a, 0xbf, 0xd5, 0xe6, 0x3c, 0x9f, 0xd4, 0xfb, 0xa1, 0x26,
0x20, 0x2b, 0x29, 0x3a, 0xa1, 0xef, 0x8e, 0xcd, 0x7e, 0x5c, 0x3f, 0x14, 0x2b, 0xe8, 0x1b, 0x98,
0xcf, 0x52, 0x93, 0xb2, 0x56, 0xa0, 0xe3, 0x8f, 0x1a, 0xcc, 0x26, 0x8d, 0xe2, 0x05, 0xfa, 0x7c,
0x3d, 0x3a, 0xb0, 0x64, 0x6a, 0x4a, 0x90, 0x6f, 0x64, 0x22, 0x7b, 0x23, 0x7f, 0x80, 0xba, 0x64,
0x4e, 0x69, 0xcc, 0xdf, 0xcb, 0xc5, 0xfc, 0x7a, 0xb3, 0x88, 0x49, 0x9a, 0xb1, 0xf7, 0x93, 0x90,
0xdf, 0x4d, 0x9b, 0xe2, 0x0a, 0xd9, 0x05, 0xff, 0xb3, 0x50, 0x3f, 0xd8, 0x7e, 0xab, 0xfd, 0x59,
0xea, 0x87, 0x0e, 0xd3, 0xc3, 0xf8, 0xa2, 0x85, 0x87, 0x92, 0xef, 0x62, 0x0d, 0x11, 0x56, 0x5d,
0x66, 0x0d, 0xf9, 0x16, 0xe6, 0x1e, 0xda, 0xac, 0x6f, 0x33, 0x56, 0xa1, 0x0e, 0x23, 0x98, 0xcf,
0x32, 0x33, 0x8a, 0xdf, 0x00, 0x6a, 0x0d, 0x23, 0x30, 0x54, 0x25, 0xb1, 0x97, 0xb4, 0xa2, 0x61,
0x47, 0xd1, 0x1f, 0x06, 0xa4, 0xdb, 0x26, 0x1d, 0xcf, 0xed, 0x32, 0xee, 0x9b, 0xba, 0x91, 0xa1,
0x85, 0x69, 0xbd, 0xa0, 0x8b, 0x51, 0x7c, 0x04, 0x8d, 0x7d, 0xd3, 0xed, 0x10, 0xe7, 0x22, 0x0c,
0xc1, 0x6b, 0x70, 0xad, 0x44, 0x9a, 0xe8, 0x59, 0x12, 0xf2, 0xd8, 0x9e, 0x45, 0xe2, 0x64, 0x14,
0x37, 0x01, 0xe5, 0xe4, 0x8e, 0x16, 0xb0, 0x0c, 0x8b, 0x05, 0x7e, 0x46, 0xf1, 0x3d, 0x8e, 0x99,
0x44, 0x0d, 0x69, 0x0f, 0x69, 0xd4, 0xb5, 0xc6, 0x85, 0x2c, 0x3d, 0x94, 0x96, 0x39, 0xd4, 0x13,
0x0e, 0x72, 0xd4, 0xbb, 0x18, 0x95, 0x0a, 0x8d, 0x76, 0x9e, 0x42, 0x73, 0x97, 0xbf, 0xa2, 0x54,
0x5e, 0x25, 0xfc, 0xfa, 0x7b, 0x1e, 0xe4, 0x85, 0x4d, 0x9f, 0x0e, 0x62, 0xff, 0x53, 0x03, 0xd4,
0xce, 0x3c, 0x1f, 0x9e, 0x63, 0xcf, 0x1f, 0x8a, 0x3f, 0x85, 0x69, 0xd7, 0xee, 0xf4, 0xdc, 0xf8,
0x89, 0x86, 0x49, 0xc8, 0xf2, 0x3c, 0xcb, 0x21, 0x62, 0x74, 0x71, 0x32, 0x3c, 0x6d, 0xb6, 0x03,
0xdf, 0x76, 0xad, 0x67, 0xa6, 0x33, 0x24, 0x46, 0xc2, 0x8d, 0x7e, 0x02, 0x57, 0x4e, 0xcd, 0x0e,
0x79, 0x6a, 0x1c, 0xf1, 0x8e, 0x78, 0xdc, 0xc6, 0x98, 0x19, 0xfd, 0x0c, 0x66, 0x7c, 0xcf, 0x21,
0x47, 0xe4, 0x2d, 0x71, 0x1a, 0x93, 0x7c, 0xe7, 0x5a, 0x61, 0xe7, 0xa1, 0x1b, 0xdc, 0xbd, 0x23,
0x36, 0xa6, 0xdc, 0x68, 0x07, 0x6a, 0xe4, 0x5d, 0x63, 0xaa, 0x82, 0xb6, 0x1a, 0x79, 0x87, 0x9f,
0xc3, 0x72, 0xd1, 0x45, 0xe1, 0x8d, 0xfd, 0x22, 0x5f, 0x16, 0xbf, 0x56, 0xe5, 0x5d, 0xc5, 0xde,
0x24, 0x93, 0x34, 0x60, 0x45, 0x25, 0x9a, 0x51, 0x7c, 0x3f, 0xed, 0x2c, 0x1f, 0x9c, 0xb0, 0xc0,
0x37, 0x3b, 0x41, 0x95, 0x40, 0xf9, 0xa8, 0xc1, 0x42, 0x61, 0xd3, 0x88, 0xeb, 0xdc, 0x89, 0x26,
0x5a, 0x42, 0xfb, 0xf1, 0x30, 0xfc, 0xe5, 0x37, 0x5b, 0x37, 0x8a, 0x0b, 0xe8, 0x36, 0x2c, 0x5a,
0xd9, 0x66, 0xfd, 0xd7, 0x26, 0x7b, 0xcd, 0xef, 0xfb, 0x0b, 0x43, 0xb5, 0x84, 0x07, 0xd0, 0x50,
0x1f, 0x83, 0x51, 0xf4, 0x34, 0x2a, 0xe4, 0xf2, 0x42, 0xec, 0xc9, 0x1b, 0x2a, 0x4f, 0x16, 0xc5,
0x28, 0x04, 0xe0, 0x63, 0xae, 0x92, 0x17, 0x74, 0x57, 0x2e, 0x0b, 0x23, 0x9e, 0x7a, 0xc6, 0xa5,
0xb5, 0x9c, 0x4b, 0xff, 0x08, 0xd7, 0x4a, 0xe4, 0x5d, 0x4c, 0x67, 0x74, 0x2f, 0x75, 0x91, 0x60,
0x89, 0x1a, 0xc4, 0xd1, 0x99, 0xee, 0x3e, 0xb7, 0x4a, 0xb5, 0x8b, 0xd1, 0x70, 0xdb, 0x30, 0xea,
0x3d, 0x45, 0x80, 0xc4, 0x9f, 0xf8, 0x59, 0x3a, 0x3d, 0x8a, 0x32, 0x74, 0xfc, 0x28, 0xc6, 0x83,
0xf5, 0x98, 0x53, 0xb8, 0x68, 0xd2, 0x90, 0x28, 0xf8, 0x55, 0x3a, 0x10, 0x2a, 0xc8, 0xbd, 0x10,
0x37, 0xdd, 0xf9, 0xd7, 0x2a, 0x4c, 0x72, 0x6b, 0xd0, 0x33, 0xb8, 0xda, 0x49, 0x87, 0x89, 0x08,
0x2b, 0x9b, 0x9d, 0xcc, 0x90, 0x54, 0xbf, 0x3e, 0x96, 0x87, 0x51, 0xf4, 0x3d, 0xcc, 0xbc, 0x89,
0x47, 0x05, 0x68, 0x53, 0xb5, 0x43, 0x9e, 0x6c, 0xe8, 0x3f, 0x1a, 0xc3, 0x21, 0x24, 0x0e, 0x62,
0x0c, 0xae, 0x96, 0x28, 0x83, 0x79, 0xb5, 0xc4, 0x0c, 0x88, 0x47, 0x2f, 0xa1, 0x6e, 0xc9, 0x83,
0x4c, 0xb4, 0xa5, 0x7c, 0x28, 0xb9, 0xd9, 0xa8, 0x7e, 0xa3, 0x02, 0x17, 0xa3, 0xe8, 0x39, 0xcc,
0x32, 0x69, 0xe0, 0x88, 0xae, 0x8f, 0xca, 0x67, 0xb1, 0xec, 0xad, 0xf1, 0x4c, 0x8c, 0xa2, 0xf7,
0xb0, 0x6a, 0xa9, 0x27, 0x86, 0xa8, 0x39, 0xca, 0xb8, 0xe2, 0x7c, 0x4f, 0xdf, 0x3b, 0x17, 0x3f,
0xa3, 0xe8, 0x2f, 0x1a, 0x5c, 0xb3, 0xca, 0x46, 0x76, 0xe8, 0x76, 0x89, 0xb8, 0xd2, 0x01, 0xa3,
0xfe, 0xe3, 0x73, 0xee, 0x60, 0x14, 0xf5, 0x00, 0x05, 0x85, 0x89, 0x19, 0xba, 0xa5, 0x12, 0xa4,
0x1c, 0xee, 0xe9, 0xdf, 0x54, 0x65, 0x65, 0x14, 0x7d, 0x80, 0x86, 0x55, 0x32, 0x44, 0x42, 0x7b,
0xe5, 0x89, 0x55, 0x39, 0x0f, 0xd3, 0x6f, 0x9f, 0x6f, 0x83, 0x38, 0xab, 0x55, 0x98, 0xea, 0xa8,
0xcf, 0xaa, 0x9c, 0x47, 0xa9, 0xcf, 0x5a, 0x32, 0x28, 0x72, 0x61, 0xd1, 0x2a, 0x4e, 0x60, 0x50,
0x05, 0x11, 0xc9, 0xe3, 0xf8, 0xb6, 0x32, 0x2f, 0xa3, 0xe8, 0x04, 0xe6, 0x7a, 0xd9, 0x29, 0x09,
0x52, 0x56, 0xfd, 0xe2, 0xe0, 0x46, 0xbf, 0x59, 0x89, 0x2f, 0x71, 0x60, 0x6e, 0xe4, 0x51, 0xea,
0xc0, 0xe2, 0x68, 0xa6, 0xd4, 0x81, 0xaa, 0x29, 0xca, 0x6b, 0x58, 0xb0, 0xf3, 0x63, 0x08, 0xb4,
0xad, 0x12, 0xa0, 0x9a, 0x8f, 0xe8, 0xb7, 0x2a, 0x72, 0x8a, 0x6c, 0x98, 0xe4, 0x2e, 0x75, 0x36,
0x94, 0xa1, 0xb7, 0x3a, 0x1b, 0x66, 0xd1, 0x70, 0x21, 0xd2, 0x42, 0xec, 0x57, 0x25, 0xd2, 0x22,
0xe4, 0x5a, 0x25, 0xd2, 0x12, 0x38, 0xf9, 0x1c, 0x66, 0xbb, 0x12, 0x90, 0x53, 0x27, 0xc7, 0x1c,
0x2e, 0x54, 0x27, 0xc7, 0x3c, 0x1e, 0x0c, 0x83, 0xaa, 0x9f, 0x05, 0x4e, 0xea, 0xa0, 0x2a, 0x62,
0x35, 0x75, 0x50, 0x29, 0x50, 0x18, 0x0a, 0x60, 0xb9, 0xa3, 0x82, 0x68, 0x68, 0x47, 0x59, 0x1b,
0x4b, 0xb0, 0xa1, 0xbe, 0x7b, 0x0e, 0x6e, 0x71, 0xe7, 0xc9, 0xc9, 0xd4, 0x77, 0x2e, 0x23, 0x3b,
0xf5, 0x9d, 0x67, 0xb0, 0x5c, 0xe8, 0xab, 0xdc, 0x39, 0xd4, 0xbe, 0x2a, 0xe2, 0x46, 0xb5, 0xaf,
0x14, 0x78, 0x31, 0x2a, 0x56, 0x2a, 0xe4, 0x57, 0x5a, 0xac, 0x4a, 0xc0, 0x65, 0x69, 0xb1, 0x2a,
0x85, 0x95, 0x22, 0xa6, 0x73, 0x50, 0xaf, 0x34, 0xa6, 0x8b, 0x38, 0xb2, 0x34, 0xa6, 0x55, 0xe8,
0xb1, 0x07, 0x88, 0x15, 0xd1, 0xdf, 0xad, 0x8a, 0x30, 0xa6, 0x4c, 0x99, 0x1a, 0xd2, 0xa0, 0x01,
0x2c, 0x59, 0x0a, 0x2c, 0x80, 0x46, 0xe6, 0xdf, 0x1c, 0xf8, 0xd1, 0x77, 0xaa, 0x33, 0x8b, 0xa0,
0xb7, 0x54, 0xbd, 0x3b, 0xda, 0x19, 0x51, 0xc2, 0x0b, 0xb0, 0x41, 0x1d, 0xf4, 0xe5, 0xa0, 0x40,
0x68, 0x2d, 0xf6, 0xe6, 0x68, 0x67, 0x7c, 0xba, 0x49, 0x9b, 0xff, 0x52, 0xad, 0x25, 0x4d, 0xff,
0xfb, 0xfc, 0xdf, 0x22, 0x92, 0x16, 0x7c, 0x74, 0x87, 0x55, 0xc4, 0x01, 0xa3, 0x3b, 0x2c, 0x45,
0x7f, 0xff, 0xcb, 0x8d, 0x17, 0xeb, 0x62, 0x87, 0xf4, 0x0f, 0x0c, 0x7c, 0xd7, 0x77, 0xfc, 0xf7,
0x64, 0x8a, 0x93, 0xee, 0xfe, 0x3f, 0x00, 0x00, 0xff, 0xff, 0x2d, 0xeb, 0x08, 0x35, 0x3f, 0x21,
0x00, 0x00,
}