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

3020 lines
105 KiB

// Code generated by protoc-gen-go. DO NOT EDIT.
// source: group/group.proto
package group // import "./group"
import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import math "math"
import (
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.
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
type CommonResp struct {
3 years ago
ErrCode int32 `protobuf:"varint,1,opt,name=ErrCode" json:"ErrCode,omitempty"`
ErrMsg string `protobuf:"bytes,2,opt,name=ErrMsg" json:"ErrMsg,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CommonResp) Reset() { *m = CommonResp{} }
func (m *CommonResp) String() string { return proto.CompactTextString(m) }
func (*CommonResp) ProtoMessage() {}
func (*CommonResp) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_group_ac6850665f72c22b, []int{0}
}
func (m *CommonResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CommonResp.Unmarshal(m, b)
}
func (m *CommonResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CommonResp.Marshal(b, m, deterministic)
}
func (dst *CommonResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_CommonResp.Merge(dst, src)
}
func (m *CommonResp) XXX_Size() int {
return xxx_messageInfo_CommonResp.Size(m)
}
func (m *CommonResp) XXX_DiscardUnknown() {
xxx_messageInfo_CommonResp.DiscardUnknown(m)
}
var xxx_messageInfo_CommonResp proto.InternalMessageInfo
3 years ago
func (m *CommonResp) GetErrCode() int32 {
if m != nil {
3 years ago
return m.ErrCode
}
return 0
}
3 years ago
func (m *CommonResp) GetErrMsg() string {
if m != nil {
3 years ago
return m.ErrMsg
}
return ""
}
type CreateGroupReq struct {
MemberList []*GroupAddMemberInfo `protobuf:"bytes,1,rep,name=memberList" json:"memberList,omitempty"`
GroupName string `protobuf:"bytes,2,opt,name=groupName" json:"groupName,omitempty"`
Introduction string `protobuf:"bytes,3,opt,name=introduction" json:"introduction,omitempty"`
Notification string `protobuf:"bytes,4,opt,name=notification" json:"notification,omitempty"`
FaceUrl string `protobuf:"bytes,5,opt,name=faceUrl" json:"faceUrl,omitempty"`
Token string `protobuf:"bytes,6,opt,name=token" json:"token,omitempty"`
OperationID string `protobuf:"bytes,7,opt,name=operationID" json:"operationID,omitempty"`
3 years ago
OpUserID string `protobuf:"bytes,8,opt,name=OpUserID" json:"OpUserID,omitempty"`
Ext string `protobuf:"bytes,9,opt,name=Ext" json:"Ext,omitempty"`
3 years ago
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) {
3 years ago
return fileDescriptor_group_ac6850665f72c22b, []int{1}
}
func (m *CreateGroupReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateGroupReq.Unmarshal(m, b)
}
func (m *CreateGroupReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CreateGroupReq.Marshal(b, m, deterministic)
}
func (dst *CreateGroupReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_CreateGroupReq.Merge(dst, src)
}
func (m *CreateGroupReq) XXX_Size() int {
return xxx_messageInfo_CreateGroupReq.Size(m)
}
func (m *CreateGroupReq) XXX_DiscardUnknown() {
xxx_messageInfo_CreateGroupReq.DiscardUnknown(m)
}
var xxx_messageInfo_CreateGroupReq proto.InternalMessageInfo
3 years ago
func (m *CreateGroupReq) GetMemberList() []*GroupAddMemberInfo {
if m != nil {
3 years ago
return m.MemberList
}
return nil
}
3 years ago
func (m *CreateGroupReq) GetGroupName() string {
if m != nil {
return m.GroupName
}
return ""
}
func (m *CreateGroupReq) GetIntroduction() string {
if m != nil {
return m.Introduction
}
return ""
}
func (m *CreateGroupReq) GetNotification() string {
if m != nil {
return m.Notification
}
return ""
}
func (m *CreateGroupReq) GetFaceUrl() string {
if m != nil {
return m.FaceUrl
}
return ""
}
func (m *CreateGroupReq) GetToken() string {
if m != nil {
return m.Token
}
return ""
}
func (m *CreateGroupReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
3 years ago
func (m *CreateGroupReq) GetOpUserID() string {
if m != nil {
3 years ago
return m.OpUserID
}
return ""
}
func (m *CreateGroupReq) GetExt() string {
if m != nil {
return m.Ext
}
return ""
}
3 years ago
type GroupAddMemberInfo struct {
Uid string `protobuf:"bytes,1,opt,name=uid" json:"uid,omitempty"`
SetRole int32 `protobuf:"varint,2,opt,name=setRole" json:"setRole,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GroupAddMemberInfo) Reset() { *m = GroupAddMemberInfo{} }
func (m *GroupAddMemberInfo) String() string { return proto.CompactTextString(m) }
func (*GroupAddMemberInfo) ProtoMessage() {}
func (*GroupAddMemberInfo) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_group_ac6850665f72c22b, []int{2}
3 years ago
}
func (m *GroupAddMemberInfo) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GroupAddMemberInfo.Unmarshal(m, b)
}
func (m *GroupAddMemberInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GroupAddMemberInfo.Marshal(b, m, deterministic)
}
func (dst *GroupAddMemberInfo) XXX_Merge(src proto.Message) {
xxx_messageInfo_GroupAddMemberInfo.Merge(dst, src)
3 years ago
}
func (m *GroupAddMemberInfo) XXX_Size() int {
return xxx_messageInfo_GroupAddMemberInfo.Size(m)
}
func (m *GroupAddMemberInfo) XXX_DiscardUnknown() {
xxx_messageInfo_GroupAddMemberInfo.DiscardUnknown(m)
}
var xxx_messageInfo_GroupAddMemberInfo proto.InternalMessageInfo
func (m *GroupAddMemberInfo) GetUid() string {
if m != nil {
return m.Uid
}
return ""
}
func (m *GroupAddMemberInfo) GetSetRole() int32 {
if m != nil {
return m.SetRole
}
return 0
}
type CreateGroupResp struct {
3 years ago
ErrCode int32 `protobuf:"varint,1,opt,name=ErrCode" json:"ErrCode,omitempty"`
ErrMsg string `protobuf:"bytes,2,opt,name=ErrMsg" json:"ErrMsg,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 *CreateGroupResp) Reset() { *m = CreateGroupResp{} }
func (m *CreateGroupResp) String() string { return proto.CompactTextString(m) }
func (*CreateGroupResp) ProtoMessage() {}
func (*CreateGroupResp) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_group_ac6850665f72c22b, []int{3}
}
func (m *CreateGroupResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateGroupResp.Unmarshal(m, b)
}
func (m *CreateGroupResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CreateGroupResp.Marshal(b, m, deterministic)
}
func (dst *CreateGroupResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_CreateGroupResp.Merge(dst, src)
}
func (m *CreateGroupResp) XXX_Size() int {
return xxx_messageInfo_CreateGroupResp.Size(m)
}
func (m *CreateGroupResp) XXX_DiscardUnknown() {
xxx_messageInfo_CreateGroupResp.DiscardUnknown(m)
}
var xxx_messageInfo_CreateGroupResp proto.InternalMessageInfo
3 years ago
func (m *CreateGroupResp) GetErrCode() int32 {
if m != nil {
3 years ago
return m.ErrCode
}
return 0
}
3 years ago
func (m *CreateGroupResp) GetErrMsg() string {
if m != nil {
3 years ago
return m.ErrMsg
}
return ""
}
func (m *CreateGroupResp) GetGroupID() string {
if m != nil {
return m.GroupID
}
return ""
}
3 years ago
type GetGroupsInfoReq struct {
GroupIDList []string `protobuf:"bytes,1,rep,name=groupIDList" json:"groupIDList,omitempty"`
Token string `protobuf:"bytes,2,opt,name=token" json:"token,omitempty"`
OperationID string `protobuf:"bytes,3,opt,name=operationID" json:"operationID,omitempty"`
3 years ago
OpUserID string `protobuf:"bytes,4,opt,name=OpUserID" json:"OpUserID,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
3 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) {
3 years ago
return fileDescriptor_group_ac6850665f72c22b, []int{4}
}
3 years ago
func (m *GetGroupsInfoReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGroupsInfoReq.Unmarshal(m, b)
}
3 years ago
func (m *GetGroupsInfoReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetGroupsInfoReq.Marshal(b, m, deterministic)
}
func (dst *GetGroupsInfoReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGroupsInfoReq.Merge(dst, src)
}
3 years ago
func (m *GetGroupsInfoReq) XXX_Size() int {
return xxx_messageInfo_GetGroupsInfoReq.Size(m)
}
3 years ago
func (m *GetGroupsInfoReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetGroupsInfoReq.DiscardUnknown(m)
}
3 years ago
var xxx_messageInfo_GetGroupsInfoReq proto.InternalMessageInfo
func (m *GetGroupsInfoReq) GetGroupIDList() []string {
if m != nil {
return m.GroupIDList
}
return nil
}
3 years ago
func (m *GetGroupsInfoReq) GetToken() string {
if m != nil {
return m.Token
}
return ""
}
3 years ago
func (m *GetGroupsInfoReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
3 years ago
func (m *GetGroupsInfoReq) GetOpUserID() string {
if m != nil {
return m.OpUserID
}
return ""
}
3 years ago
type GetGroupsInfoResp struct {
3 years ago
ErrCode int32 `protobuf:"varint,1,opt,name=ErrCode" json:"ErrCode,omitempty"`
ErrMsg string `protobuf:"bytes,2,opt,name=ErrMsg" json:"ErrMsg,omitempty"`
Data []*GroupInfo `protobuf:"bytes,3,rep,name=data" json:"data,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
3 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) {
3 years ago
return fileDescriptor_group_ac6850665f72c22b, []int{5}
}
3 years ago
func (m *GetGroupsInfoResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGroupsInfoResp.Unmarshal(m, b)
}
3 years ago
func (m *GetGroupsInfoResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetGroupsInfoResp.Marshal(b, m, deterministic)
}
func (dst *GetGroupsInfoResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGroupsInfoResp.Merge(dst, src)
}
3 years ago
func (m *GetGroupsInfoResp) XXX_Size() int {
return xxx_messageInfo_GetGroupsInfoResp.Size(m)
}
3 years ago
func (m *GetGroupsInfoResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetGroupsInfoResp.DiscardUnknown(m)
}
3 years ago
var xxx_messageInfo_GetGroupsInfoResp proto.InternalMessageInfo
3 years ago
func (m *GetGroupsInfoResp) GetErrCode() int32 {
if m != nil {
3 years ago
return m.ErrCode
}
return 0
}
3 years ago
func (m *GetGroupsInfoResp) GetErrMsg() string {
if m != nil {
3 years ago
return m.ErrMsg
}
return ""
}
3 years ago
func (m *GetGroupsInfoResp) GetData() []*GroupInfo {
if m != nil {
3 years ago
return m.Data
}
return nil
}
3 years ago
type SetGroupInfoReq struct {
GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"`
GroupName string `protobuf:"bytes,2,opt,name=groupName" json:"groupName,omitempty"`
Notification string `protobuf:"bytes,3,opt,name=notification" json:"notification,omitempty"`
Introduction string `protobuf:"bytes,4,opt,name=introduction" json:"introduction,omitempty"`
FaceUrl string `protobuf:"bytes,5,opt,name=faceUrl" json:"faceUrl,omitempty"`
Token string `protobuf:"bytes,6,opt,name=token" json:"token,omitempty"`
OperationID string `protobuf:"bytes,7,opt,name=operationID" json:"operationID,omitempty"`
3 years ago
OpUserID string `protobuf:"bytes,8,opt,name=OpUserID" json:"OpUserID,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
3 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) {
3 years ago
return fileDescriptor_group_ac6850665f72c22b, []int{6}
}
3 years ago
func (m *SetGroupInfoReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SetGroupInfoReq.Unmarshal(m, b)
}
3 years ago
func (m *SetGroupInfoReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SetGroupInfoReq.Marshal(b, m, deterministic)
}
func (dst *SetGroupInfoReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_SetGroupInfoReq.Merge(dst, src)
}
3 years ago
func (m *SetGroupInfoReq) XXX_Size() int {
return xxx_messageInfo_SetGroupInfoReq.Size(m)
}
3 years ago
func (m *SetGroupInfoReq) XXX_DiscardUnknown() {
xxx_messageInfo_SetGroupInfoReq.DiscardUnknown(m)
}
3 years ago
var xxx_messageInfo_SetGroupInfoReq proto.InternalMessageInfo
3 years ago
func (m *SetGroupInfoReq) GetGroupID() string {
if m != nil {
return m.GroupID
}
return ""
}
3 years ago
func (m *SetGroupInfoReq) GetGroupName() string {
if m != nil {
3 years ago
return m.GroupName
}
return ""
}
3 years ago
func (m *SetGroupInfoReq) GetNotification() string {
if m != nil {
3 years ago
return m.Notification
}
return ""
}
3 years ago
func (m *SetGroupInfoReq) GetIntroduction() string {
if m != nil {
3 years ago
return m.Introduction
}
return ""
}
3 years ago
func (m *SetGroupInfoReq) GetFaceUrl() string {
if m != nil {
3 years ago
return m.FaceUrl
}
return ""
}
3 years ago
func (m *SetGroupInfoReq) GetToken() string {
if m != nil {
3 years ago
return m.Token
}
return ""
}
3 years ago
func (m *SetGroupInfoReq) GetOperationID() string {
if m != nil {
3 years ago
return m.OperationID
}
return ""
}
3 years ago
func (m *SetGroupInfoReq) GetOpUserID() string {
if m != nil {
return m.OpUserID
}
return ""
}
3 years ago
type GetGroupApplicationListReq struct {
3 years ago
OpUserID string `protobuf:"bytes,1,opt,name=OpUserID" json:"OpUserID,omitempty"`
OperationID string `protobuf:"bytes,2,opt,name=OperationID" json:"OperationID,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
3 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) {
3 years ago
return fileDescriptor_group_ac6850665f72c22b, []int{7}
}
3 years ago
func (m *GetGroupApplicationListReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGroupApplicationListReq.Unmarshal(m, b)
}
3 years ago
func (m *GetGroupApplicationListReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetGroupApplicationListReq.Marshal(b, m, deterministic)
}
func (dst *GetGroupApplicationListReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGroupApplicationListReq.Merge(dst, src)
}
3 years ago
func (m *GetGroupApplicationListReq) XXX_Size() int {
return xxx_messageInfo_GetGroupApplicationListReq.Size(m)
}
3 years ago
func (m *GetGroupApplicationListReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetGroupApplicationListReq.DiscardUnknown(m)
}
3 years ago
var xxx_messageInfo_GetGroupApplicationListReq proto.InternalMessageInfo
3 years ago
func (m *GetGroupApplicationListReq) GetOpUserID() string {
if m != nil {
3 years ago
return m.OpUserID
}
return ""
}
3 years ago
func (m *GetGroupApplicationListReq) GetOperationID() string {
if m != nil {
3 years ago
return m.OperationID
}
return ""
}
3 years ago
type GetGroupApplicationList_Data_User struct {
ID string `protobuf:"bytes,1,opt,name=ID" json:"ID,omitempty"`
GroupID string `protobuf:"bytes,2,opt,name=GroupID" json:"GroupID,omitempty"`
FromUserID string `protobuf:"bytes,3,opt,name=FromUserID" json:"FromUserID,omitempty"`
ToUserID string `protobuf:"bytes,4,opt,name=ToUserID" json:"ToUserID,omitempty"`
Flag int32 `protobuf:"varint,5,opt,name=Flag" json:"Flag,omitempty"`
RequestMsg string `protobuf:"bytes,6,opt,name=RequestMsg" json:"RequestMsg,omitempty"`
HandledMsg string `protobuf:"bytes,7,opt,name=HandledMsg" json:"HandledMsg,omitempty"`
AddTime int64 `protobuf:"varint,8,opt,name=AddTime" json:"AddTime,omitempty"`
FromUserNickname string `protobuf:"bytes,9,opt,name=FromUserNickname" json:"FromUserNickname,omitempty"`
ToUserNickname string `protobuf:"bytes,10,opt,name=ToUserNickname" json:"ToUserNickname,omitempty"`
FromUserFaceUrl string `protobuf:"bytes,11,opt,name=FromUserFaceUrl" json:"FromUserFaceUrl,omitempty"`
ToUserFaceUrl string `protobuf:"bytes,12,opt,name=ToUserFaceUrl" json:"ToUserFaceUrl,omitempty"`
HandledUser string `protobuf:"bytes,13,opt,name=HandledUser" json:"HandledUser,omitempty"`
Type int32 `protobuf:"varint,14,opt,name=Type" json:"Type,omitempty"`
HandleStatus int32 `protobuf:"varint,15,opt,name=HandleStatus" json:"HandleStatus,omitempty"`
HandleResult int32 `protobuf:"varint,16,opt,name=HandleResult" json:"HandleResult,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
3 years ago
func (m *GetGroupApplicationList_Data_User) Reset() { *m = GetGroupApplicationList_Data_User{} }
func (m *GetGroupApplicationList_Data_User) String() string { return proto.CompactTextString(m) }
func (*GetGroupApplicationList_Data_User) ProtoMessage() {}
func (*GetGroupApplicationList_Data_User) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_group_ac6850665f72c22b, []int{8}
}
3 years ago
func (m *GetGroupApplicationList_Data_User) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGroupApplicationList_Data_User.Unmarshal(m, b)
}
3 years ago
func (m *GetGroupApplicationList_Data_User) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetGroupApplicationList_Data_User.Marshal(b, m, deterministic)
}
func (dst *GetGroupApplicationList_Data_User) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGroupApplicationList_Data_User.Merge(dst, src)
}
3 years ago
func (m *GetGroupApplicationList_Data_User) XXX_Size() int {
return xxx_messageInfo_GetGroupApplicationList_Data_User.Size(m)
}
3 years ago
func (m *GetGroupApplicationList_Data_User) XXX_DiscardUnknown() {
xxx_messageInfo_GetGroupApplicationList_Data_User.DiscardUnknown(m)
}
3 years ago
var xxx_messageInfo_GetGroupApplicationList_Data_User proto.InternalMessageInfo
3 years ago
func (m *GetGroupApplicationList_Data_User) GetID() string {
if m != nil {
return m.ID
}
return ""
}
3 years ago
func (m *GetGroupApplicationList_Data_User) GetGroupID() string {
if m != nil {
return m.GroupID
}
return ""
}
3 years ago
func (m *GetGroupApplicationList_Data_User) GetFromUserID() string {
if m != nil {
3 years ago
return m.FromUserID
}
return ""
}
3 years ago
func (m *GetGroupApplicationList_Data_User) GetToUserID() string {
if m != nil {
3 years ago
return m.ToUserID
}
return ""
}
3 years ago
func (m *GetGroupApplicationList_Data_User) GetFlag() int32 {
if m != nil {
3 years ago
return m.Flag
}
return 0
}
func (m *GetGroupApplicationList_Data_User) GetRequestMsg() string {
if m != nil {
return m.RequestMsg
}
3 years ago
return ""
}
3 years ago
func (m *GetGroupApplicationList_Data_User) GetHandledMsg() string {
3 years ago
if m != nil {
3 years ago
return m.HandledMsg
3 years ago
}
return ""
}
3 years ago
func (m *GetGroupApplicationList_Data_User) GetAddTime() int64 {
if m != nil {
return m.AddTime
}
return 0
}
3 years ago
func (m *GetGroupApplicationList_Data_User) GetFromUserNickname() string {
3 years ago
if m != nil {
3 years ago
return m.FromUserNickname
3 years ago
}
return ""
}
3 years ago
func (m *GetGroupApplicationList_Data_User) GetToUserNickname() string {
if m != nil {
3 years ago
return m.ToUserNickname
}
return ""
}
func (m *GetGroupApplicationList_Data_User) GetFromUserFaceUrl() string {
if m != nil {
return m.FromUserFaceUrl
}
return ""
}
func (m *GetGroupApplicationList_Data_User) GetToUserFaceUrl() string {
if m != nil {
return m.ToUserFaceUrl
}
return ""
}
func (m *GetGroupApplicationList_Data_User) GetHandledUser() string {
if m != nil {
return m.HandledUser
}
return ""
}
3 years ago
func (m *GetGroupApplicationList_Data_User) GetType() int32 {
if m != nil {
3 years ago
return m.Type
}
3 years ago
return 0
}
3 years ago
func (m *GetGroupApplicationList_Data_User) GetHandleStatus() int32 {
if m != nil {
3 years ago
return m.HandleStatus
}
3 years ago
return 0
}
3 years ago
func (m *GetGroupApplicationList_Data_User) GetHandleResult() int32 {
if m != nil {
3 years ago
return m.HandleResult
}
3 years ago
return 0
}
3 years ago
type GetGroupApplicationListData struct {
Count int32 `protobuf:"varint,1,opt,name=Count" json:"Count,omitempty"`
User []*GetGroupApplicationList_Data_User `protobuf:"bytes,2,rep,name=User" json:"User,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
3 years ago
func (m *GetGroupApplicationListData) Reset() { *m = GetGroupApplicationListData{} }
func (m *GetGroupApplicationListData) String() string { return proto.CompactTextString(m) }
func (*GetGroupApplicationListData) ProtoMessage() {}
func (*GetGroupApplicationListData) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_group_ac6850665f72c22b, []int{9}
}
3 years ago
func (m *GetGroupApplicationListData) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGroupApplicationListData.Unmarshal(m, b)
}
3 years ago
func (m *GetGroupApplicationListData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetGroupApplicationListData.Marshal(b, m, deterministic)
}
func (dst *GetGroupApplicationListData) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGroupApplicationListData.Merge(dst, src)
}
3 years ago
func (m *GetGroupApplicationListData) XXX_Size() int {
return xxx_messageInfo_GetGroupApplicationListData.Size(m)
}
3 years ago
func (m *GetGroupApplicationListData) XXX_DiscardUnknown() {
xxx_messageInfo_GetGroupApplicationListData.DiscardUnknown(m)
}
3 years ago
var xxx_messageInfo_GetGroupApplicationListData proto.InternalMessageInfo
3 years ago
func (m *GetGroupApplicationListData) GetCount() int32 {
if m != nil {
3 years ago
return m.Count
}
3 years ago
return 0
}
3 years ago
func (m *GetGroupApplicationListData) GetUser() []*GetGroupApplicationList_Data_User {
if m != nil {
3 years ago
return m.User
}
3 years ago
return nil
}
type GetGroupApplicationListResp struct {
ErrCode int32 `protobuf:"varint,1,opt,name=ErrCode" json:"ErrCode,omitempty"`
ErrMsg string `protobuf:"bytes,2,opt,name=ErrMsg" json:"ErrMsg,omitempty"`
Data *GetGroupApplicationListData `protobuf:"bytes,3,opt,name=Data" json:"Data,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetGroupApplicationListResp) Reset() { *m = GetGroupApplicationListResp{} }
func (m *GetGroupApplicationListResp) String() string { return proto.CompactTextString(m) }
func (*GetGroupApplicationListResp) ProtoMessage() {}
func (*GetGroupApplicationListResp) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_group_ac6850665f72c22b, []int{10}
}
3 years ago
func (m *GetGroupApplicationListResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGroupApplicationListResp.Unmarshal(m, b)
}
func (m *GetGroupApplicationListResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetGroupApplicationListResp.Marshal(b, m, deterministic)
}
func (dst *GetGroupApplicationListResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGroupApplicationListResp.Merge(dst, src)
3 years ago
}
func (m *GetGroupApplicationListResp) XXX_Size() int {
return xxx_messageInfo_GetGroupApplicationListResp.Size(m)
}
func (m *GetGroupApplicationListResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetGroupApplicationListResp.DiscardUnknown(m)
}
var xxx_messageInfo_GetGroupApplicationListResp proto.InternalMessageInfo
func (m *GetGroupApplicationListResp) GetErrCode() int32 {
if m != nil {
3 years ago
return m.ErrCode
}
3 years ago
return 0
}
3 years ago
func (m *GetGroupApplicationListResp) GetErrMsg() string {
if m != nil {
3 years ago
return m.ErrMsg
}
return ""
}
3 years ago
func (m *GetGroupApplicationListResp) GetData() *GetGroupApplicationListData {
if m != nil {
return m.Data
}
return nil
}
type TransferGroupOwnerReq struct {
GroupID string `protobuf:"bytes,1,opt,name=GroupID" json:"GroupID,omitempty"`
OldOwner string `protobuf:"bytes,2,opt,name=OldOwner" json:"OldOwner,omitempty"`
NewOwner string `protobuf:"bytes,3,opt,name=NewOwner" json:"NewOwner,omitempty"`
OperationID string `protobuf:"bytes,4,opt,name=OperationID" json:"OperationID,omitempty"`
3 years ago
OpUserID string `protobuf:"bytes,5,opt,name=OpUserID" json:"OpUserID,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
3 years ago
func (m *TransferGroupOwnerReq) Reset() { *m = TransferGroupOwnerReq{} }
func (m *TransferGroupOwnerReq) String() string { return proto.CompactTextString(m) }
func (*TransferGroupOwnerReq) ProtoMessage() {}
func (*TransferGroupOwnerReq) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_group_ac6850665f72c22b, []int{11}
}
3 years ago
func (m *TransferGroupOwnerReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_TransferGroupOwnerReq.Unmarshal(m, b)
}
3 years ago
func (m *TransferGroupOwnerReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_TransferGroupOwnerReq.Marshal(b, m, deterministic)
}
func (dst *TransferGroupOwnerReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_TransferGroupOwnerReq.Merge(dst, src)
}
3 years ago
func (m *TransferGroupOwnerReq) XXX_Size() int {
return xxx_messageInfo_TransferGroupOwnerReq.Size(m)
}
3 years ago
func (m *TransferGroupOwnerReq) XXX_DiscardUnknown() {
xxx_messageInfo_TransferGroupOwnerReq.DiscardUnknown(m)
}
3 years ago
var xxx_messageInfo_TransferGroupOwnerReq proto.InternalMessageInfo
3 years ago
func (m *TransferGroupOwnerReq) GetGroupID() string {
if m != nil {
return m.GroupID
}
return ""
}
3 years ago
func (m *TransferGroupOwnerReq) GetOldOwner() string {
if m != nil {
3 years ago
return m.OldOwner
}
return ""
}
3 years ago
func (m *TransferGroupOwnerReq) GetNewOwner() string {
if m != nil {
3 years ago
return m.NewOwner
}
return ""
}
3 years ago
func (m *TransferGroupOwnerReq) GetOperationID() string {
if m != nil {
3 years ago
return m.OperationID
}
return ""
}
3 years ago
func (m *TransferGroupOwnerReq) GetOpUserID() string {
if m != nil {
return m.OpUserID
}
return ""
}
3 years ago
type TransferGroupOwnerResp struct {
ErrCode int32 `protobuf:"varint,1,opt,name=ErrCode" json:"ErrCode,omitempty"`
ErrMsg string `protobuf:"bytes,2,opt,name=ErrMsg" json:"ErrMsg,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
3 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) {
3 years ago
return fileDescriptor_group_ac6850665f72c22b, []int{12}
}
3 years ago
func (m *TransferGroupOwnerResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_TransferGroupOwnerResp.Unmarshal(m, b)
}
3 years ago
func (m *TransferGroupOwnerResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_TransferGroupOwnerResp.Marshal(b, m, deterministic)
}
func (dst *TransferGroupOwnerResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_TransferGroupOwnerResp.Merge(dst, src)
}
3 years ago
func (m *TransferGroupOwnerResp) XXX_Size() int {
return xxx_messageInfo_TransferGroupOwnerResp.Size(m)
}
3 years ago
func (m *TransferGroupOwnerResp) XXX_DiscardUnknown() {
xxx_messageInfo_TransferGroupOwnerResp.DiscardUnknown(m)
}
3 years ago
var xxx_messageInfo_TransferGroupOwnerResp proto.InternalMessageInfo
3 years ago
func (m *TransferGroupOwnerResp) GetErrCode() int32 {
if m != nil {
3 years ago
return m.ErrCode
}
3 years ago
return 0
}
3 years ago
func (m *TransferGroupOwnerResp) GetErrMsg() string {
if m != nil {
3 years ago
return m.ErrMsg
}
return ""
}
3 years ago
type JoinGroupReq struct {
GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"`
Message string `protobuf:"bytes,2,opt,name=message" json:"message,omitempty"`
Token string `protobuf:"bytes,3,opt,name=token" json:"token,omitempty"`
OperationID string `protobuf:"bytes,4,opt,name=OperationID" json:"OperationID,omitempty"`
3 years ago
OpUserID string `protobuf:"bytes,5,opt,name=OpUserID" json:"OpUserID,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
3 years ago
func (m *JoinGroupReq) Reset() { *m = JoinGroupReq{} }
func (m *JoinGroupReq) String() string { return proto.CompactTextString(m) }
func (*JoinGroupReq) ProtoMessage() {}
func (*JoinGroupReq) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_group_ac6850665f72c22b, []int{13}
}
3 years ago
func (m *JoinGroupReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_JoinGroupReq.Unmarshal(m, b)
}
3 years ago
func (m *JoinGroupReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_JoinGroupReq.Marshal(b, m, deterministic)
}
func (dst *JoinGroupReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_JoinGroupReq.Merge(dst, src)
}
3 years ago
func (m *JoinGroupReq) XXX_Size() int {
return xxx_messageInfo_JoinGroupReq.Size(m)
}
3 years ago
func (m *JoinGroupReq) XXX_DiscardUnknown() {
xxx_messageInfo_JoinGroupReq.DiscardUnknown(m)
}
3 years ago
var xxx_messageInfo_JoinGroupReq proto.InternalMessageInfo
3 years ago
func (m *JoinGroupReq) GetGroupID() string {
if m != nil {
return m.GroupID
}
return ""
}
3 years ago
func (m *JoinGroupReq) GetMessage() string {
if m != nil {
3 years ago
return m.Message
}
return ""
}
3 years ago
func (m *JoinGroupReq) GetToken() string {
if m != nil {
return m.Token
}
return ""
}
3 years ago
func (m *JoinGroupReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
3 years ago
func (m *JoinGroupReq) GetOpUserID() string {
if m != nil {
return m.OpUserID
}
return ""
}
3 years ago
type GroupApplicationResponseReq struct {
OperationID string `protobuf:"bytes,1,opt,name=OperationID" json:"OperationID,omitempty"`
3 years ago
OpUserID string `protobuf:"bytes,2,opt,name=OpUserID" json:"OpUserID,omitempty"`
GroupID string `protobuf:"bytes,3,opt,name=GroupID" json:"GroupID,omitempty"`
FromUserID string `protobuf:"bytes,4,opt,name=FromUserID" json:"FromUserID,omitempty"`
FromUserNickName string `protobuf:"bytes,5,opt,name=FromUserNickName" json:"FromUserNickName,omitempty"`
FromUserFaceUrl string `protobuf:"bytes,6,opt,name=FromUserFaceUrl" json:"FromUserFaceUrl,omitempty"`
ToUserID string `protobuf:"bytes,7,opt,name=ToUserID" json:"ToUserID,omitempty"`
ToUserNickName string `protobuf:"bytes,8,opt,name=ToUserNickName" json:"ToUserNickName,omitempty"`
ToUserFaceUrl string `protobuf:"bytes,9,opt,name=ToUserFaceUrl" json:"ToUserFaceUrl,omitempty"`
AddTime int64 `protobuf:"varint,10,opt,name=AddTime" json:"AddTime,omitempty"`
RequestMsg string `protobuf:"bytes,11,opt,name=RequestMsg" json:"RequestMsg,omitempty"`
HandledMsg string `protobuf:"bytes,12,opt,name=HandledMsg" json:"HandledMsg,omitempty"`
Type int32 `protobuf:"varint,13,opt,name=Type" json:"Type,omitempty"`
HandleStatus int32 `protobuf:"varint,14,opt,name=HandleStatus" json:"HandleStatus,omitempty"`
HandleResult int32 `protobuf:"varint,15,opt,name=HandleResult" json:"HandleResult,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
3 years ago
func (m *GroupApplicationResponseReq) Reset() { *m = GroupApplicationResponseReq{} }
func (m *GroupApplicationResponseReq) String() string { return proto.CompactTextString(m) }
func (*GroupApplicationResponseReq) ProtoMessage() {}
func (*GroupApplicationResponseReq) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_group_ac6850665f72c22b, []int{14}
3 years ago
}
func (m *GroupApplicationResponseReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GroupApplicationResponseReq.Unmarshal(m, b)
}
func (m *GroupApplicationResponseReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GroupApplicationResponseReq.Marshal(b, m, deterministic)
}
func (dst *GroupApplicationResponseReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GroupApplicationResponseReq.Merge(dst, src)
3 years ago
}
func (m *GroupApplicationResponseReq) XXX_Size() int {
return xxx_messageInfo_GroupApplicationResponseReq.Size(m)
}
func (m *GroupApplicationResponseReq) XXX_DiscardUnknown() {
xxx_messageInfo_GroupApplicationResponseReq.DiscardUnknown(m)
}
var xxx_messageInfo_GroupApplicationResponseReq proto.InternalMessageInfo
func (m *GroupApplicationResponseReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
3 years ago
func (m *GroupApplicationResponseReq) GetOpUserID() string {
3 years ago
if m != nil {
3 years ago
return m.OpUserID
3 years ago
}
return ""
}
func (m *GroupApplicationResponseReq) GetGroupID() string {
if m != nil {
return m.GroupID
}
return ""
}
func (m *GroupApplicationResponseReq) GetFromUserID() string {
if m != nil {
return m.FromUserID
}
return ""
}
func (m *GroupApplicationResponseReq) GetFromUserNickName() string {
if m != nil {
return m.FromUserNickName
}
return ""
}
func (m *GroupApplicationResponseReq) GetFromUserFaceUrl() string {
if m != nil {
return m.FromUserFaceUrl
}
return ""
}
func (m *GroupApplicationResponseReq) GetToUserID() string {
if m != nil {
return m.ToUserID
}
return ""
}
func (m *GroupApplicationResponseReq) GetToUserNickName() string {
if m != nil {
return m.ToUserNickName
}
return ""
}
func (m *GroupApplicationResponseReq) GetToUserFaceUrl() string {
if m != nil {
return m.ToUserFaceUrl
}
return ""
}
func (m *GroupApplicationResponseReq) GetAddTime() int64 {
if m != nil {
return m.AddTime
}
return 0
}
func (m *GroupApplicationResponseReq) GetRequestMsg() string {
if m != nil {
return m.RequestMsg
}
return ""
}
func (m *GroupApplicationResponseReq) GetHandledMsg() string {
if m != nil {
return m.HandledMsg
}
return ""
}
func (m *GroupApplicationResponseReq) GetType() int32 {
if m != nil {
return m.Type
}
return 0
}
func (m *GroupApplicationResponseReq) GetHandleStatus() int32 {
if m != nil {
return m.HandleStatus
}
return 0
}
func (m *GroupApplicationResponseReq) GetHandleResult() int32 {
if m != nil {
return m.HandleResult
}
return 0
}
type GroupApplicationResponseResp struct {
ErrCode int32 `protobuf:"varint,1,opt,name=ErrCode" json:"ErrCode,omitempty"`
ErrMsg string `protobuf:"bytes,2,opt,name=ErrMsg" json:"ErrMsg,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GroupApplicationResponseResp) Reset() { *m = GroupApplicationResponseResp{} }
func (m *GroupApplicationResponseResp) String() string { return proto.CompactTextString(m) }
func (*GroupApplicationResponseResp) ProtoMessage() {}
func (*GroupApplicationResponseResp) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_group_ac6850665f72c22b, []int{15}
3 years ago
}
func (m *GroupApplicationResponseResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GroupApplicationResponseResp.Unmarshal(m, b)
}
func (m *GroupApplicationResponseResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GroupApplicationResponseResp.Marshal(b, m, deterministic)
}
func (dst *GroupApplicationResponseResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GroupApplicationResponseResp.Merge(dst, src)
3 years ago
}
func (m *GroupApplicationResponseResp) XXX_Size() int {
return xxx_messageInfo_GroupApplicationResponseResp.Size(m)
}
func (m *GroupApplicationResponseResp) XXX_DiscardUnknown() {
xxx_messageInfo_GroupApplicationResponseResp.DiscardUnknown(m)
}
var xxx_messageInfo_GroupApplicationResponseResp proto.InternalMessageInfo
func (m *GroupApplicationResponseResp) GetErrCode() int32 {
if m != nil {
return m.ErrCode
}
return 0
}
func (m *GroupApplicationResponseResp) GetErrMsg() string {
if m != nil {
return m.ErrMsg
}
return ""
}
type SetOwnerGroupNickNameReq struct {
GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"`
NickName string `protobuf:"bytes,2,opt,name=nickName" json:"nickName,omitempty"`
OperationID string `protobuf:"bytes,3,opt,name=OperationID" json:"OperationID,omitempty"`
Token string `protobuf:"bytes,4,opt,name=token" json:"token,omitempty"`
3 years ago
OpUserID string `protobuf:"bytes,5,opt,name=OpUserID" json:"OpUserID,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SetOwnerGroupNickNameReq) Reset() { *m = SetOwnerGroupNickNameReq{} }
func (m *SetOwnerGroupNickNameReq) String() string { return proto.CompactTextString(m) }
func (*SetOwnerGroupNickNameReq) ProtoMessage() {}
func (*SetOwnerGroupNickNameReq) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_group_ac6850665f72c22b, []int{16}
3 years ago
}
func (m *SetOwnerGroupNickNameReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SetOwnerGroupNickNameReq.Unmarshal(m, b)
}
func (m *SetOwnerGroupNickNameReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SetOwnerGroupNickNameReq.Marshal(b, m, deterministic)
}
func (dst *SetOwnerGroupNickNameReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_SetOwnerGroupNickNameReq.Merge(dst, src)
3 years ago
}
func (m *SetOwnerGroupNickNameReq) XXX_Size() int {
return xxx_messageInfo_SetOwnerGroupNickNameReq.Size(m)
}
func (m *SetOwnerGroupNickNameReq) XXX_DiscardUnknown() {
xxx_messageInfo_SetOwnerGroupNickNameReq.DiscardUnknown(m)
}
var xxx_messageInfo_SetOwnerGroupNickNameReq proto.InternalMessageInfo
func (m *SetOwnerGroupNickNameReq) GetGroupID() string {
if m != nil {
return m.GroupID
}
return ""
}
func (m *SetOwnerGroupNickNameReq) GetNickName() string {
if m != nil {
return m.NickName
}
return ""
}
func (m *SetOwnerGroupNickNameReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
func (m *SetOwnerGroupNickNameReq) GetToken() string {
if m != nil {
return m.Token
}
return ""
}
3 years ago
func (m *SetOwnerGroupNickNameReq) GetOpUserID() string {
if m != nil {
return m.OpUserID
}
return ""
}
3 years ago
type QuitGroupReq struct {
GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"`
OperationID string `protobuf:"bytes,2,opt,name=operationID" json:"operationID,omitempty"`
Token string `protobuf:"bytes,3,opt,name=token" json:"token,omitempty"`
3 years ago
OpUserID string `protobuf:"bytes,4,opt,name=OpUserID" json:"OpUserID,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *QuitGroupReq) Reset() { *m = QuitGroupReq{} }
func (m *QuitGroupReq) String() string { return proto.CompactTextString(m) }
func (*QuitGroupReq) ProtoMessage() {}
func (*QuitGroupReq) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_group_ac6850665f72c22b, []int{17}
3 years ago
}
func (m *QuitGroupReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_QuitGroupReq.Unmarshal(m, b)
}
func (m *QuitGroupReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_QuitGroupReq.Marshal(b, m, deterministic)
}
func (dst *QuitGroupReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_QuitGroupReq.Merge(dst, src)
3 years ago
}
func (m *QuitGroupReq) XXX_Size() int {
return xxx_messageInfo_QuitGroupReq.Size(m)
}
func (m *QuitGroupReq) XXX_DiscardUnknown() {
xxx_messageInfo_QuitGroupReq.DiscardUnknown(m)
}
var xxx_messageInfo_QuitGroupReq proto.InternalMessageInfo
func (m *QuitGroupReq) GetGroupID() string {
if m != nil {
return m.GroupID
}
return ""
}
func (m *QuitGroupReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
func (m *QuitGroupReq) GetToken() string {
if m != nil {
return m.Token
}
return ""
}
3 years ago
func (m *QuitGroupReq) GetOpUserID() string {
if m != nil {
return m.OpUserID
}
return ""
}
3 years ago
type GroupApplicationUserInfo struct {
GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"`
Uid string `protobuf:"bytes,2,opt,name=uid" json:"uid,omitempty"`
Name string `protobuf:"bytes,3,opt,name=name" json:"name,omitempty"`
Icon string `protobuf:"bytes,4,opt,name=icon" json:"icon,omitempty"`
ReqMsg string `protobuf:"bytes,5,opt,name=reqMsg" json:"reqMsg,omitempty"`
ApplicationTime int64 `protobuf:"varint,6,opt,name=applicationTime" json:"applicationTime,omitempty"`
Flag int32 `protobuf:"varint,7,opt,name=flag" json:"flag,omitempty"`
OperatorID string `protobuf:"bytes,8,opt,name=operatorID" json:"operatorID,omitempty"`
HandledMsg string `protobuf:"bytes,9,opt,name=handledMsg" json:"handledMsg,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GroupApplicationUserInfo) Reset() { *m = GroupApplicationUserInfo{} }
func (m *GroupApplicationUserInfo) String() string { return proto.CompactTextString(m) }
func (*GroupApplicationUserInfo) ProtoMessage() {}
func (*GroupApplicationUserInfo) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_group_ac6850665f72c22b, []int{18}
3 years ago
}
func (m *GroupApplicationUserInfo) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GroupApplicationUserInfo.Unmarshal(m, b)
}
func (m *GroupApplicationUserInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GroupApplicationUserInfo.Marshal(b, m, deterministic)
}
func (dst *GroupApplicationUserInfo) XXX_Merge(src proto.Message) {
xxx_messageInfo_GroupApplicationUserInfo.Merge(dst, src)
3 years ago
}
func (m *GroupApplicationUserInfo) XXX_Size() int {
return xxx_messageInfo_GroupApplicationUserInfo.Size(m)
}
func (m *GroupApplicationUserInfo) XXX_DiscardUnknown() {
xxx_messageInfo_GroupApplicationUserInfo.DiscardUnknown(m)
}
var xxx_messageInfo_GroupApplicationUserInfo proto.InternalMessageInfo
func (m *GroupApplicationUserInfo) GetGroupID() string {
if m != nil {
return m.GroupID
}
return ""
}
func (m *GroupApplicationUserInfo) GetUid() string {
if m != nil {
return m.Uid
}
return ""
}
func (m *GroupApplicationUserInfo) GetName() string {
if m != nil {
return m.Name
}
return ""
}
func (m *GroupApplicationUserInfo) GetIcon() string {
if m != nil {
return m.Icon
}
return ""
}
func (m *GroupApplicationUserInfo) GetReqMsg() string {
if m != nil {
return m.ReqMsg
}
return ""
}
func (m *GroupApplicationUserInfo) GetApplicationTime() int64 {
if m != nil {
return m.ApplicationTime
}
return 0
}
func (m *GroupApplicationUserInfo) GetFlag() int32 {
if m != nil {
return m.Flag
}
return 0
}
func (m *GroupApplicationUserInfo) GetOperatorID() string {
if m != nil {
return m.OperatorID
}
return ""
}
func (m *GroupApplicationUserInfo) GetHandledMsg() string {
if m != nil {
return m.HandledMsg
}
return ""
}
type GroupMemberFullInfo struct {
UserId string `protobuf:"bytes,1,opt,name=userId" json:"userId,omitempty"`
Role int32 `protobuf:"varint,2,opt,name=role" json:"role,omitempty"`
JoinTime uint64 `protobuf:"varint,3,opt,name=joinTime" json:"joinTime,omitempty"`
NickName string `protobuf:"bytes,4,opt,name=nickName" json:"nickName,omitempty"`
FaceUrl string `protobuf:"bytes,5,opt,name=faceUrl" json:"faceUrl,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GroupMemberFullInfo) Reset() { *m = GroupMemberFullInfo{} }
func (m *GroupMemberFullInfo) String() string { return proto.CompactTextString(m) }
func (*GroupMemberFullInfo) ProtoMessage() {}
func (*GroupMemberFullInfo) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_group_ac6850665f72c22b, []int{19}
3 years ago
}
func (m *GroupMemberFullInfo) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GroupMemberFullInfo.Unmarshal(m, b)
}
func (m *GroupMemberFullInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GroupMemberFullInfo.Marshal(b, m, deterministic)
}
func (dst *GroupMemberFullInfo) XXX_Merge(src proto.Message) {
xxx_messageInfo_GroupMemberFullInfo.Merge(dst, src)
3 years ago
}
func (m *GroupMemberFullInfo) XXX_Size() int {
return xxx_messageInfo_GroupMemberFullInfo.Size(m)
}
func (m *GroupMemberFullInfo) XXX_DiscardUnknown() {
xxx_messageInfo_GroupMemberFullInfo.DiscardUnknown(m)
}
var xxx_messageInfo_GroupMemberFullInfo proto.InternalMessageInfo
func (m *GroupMemberFullInfo) GetUserId() string {
if m != nil {
return m.UserId
}
return ""
}
func (m *GroupMemberFullInfo) GetRole() int32 {
if m != nil {
return m.Role
}
return 0
}
func (m *GroupMemberFullInfo) GetJoinTime() uint64 {
if m != nil {
return m.JoinTime
}
return 0
}
func (m *GroupMemberFullInfo) GetNickName() string {
if m != nil {
return m.NickName
}
return ""
}
func (m *GroupMemberFullInfo) GetFaceUrl() string {
if m != nil {
return m.FaceUrl
}
return ""
}
type GetGroupMemberListReq struct {
GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"`
Token string `protobuf:"bytes,2,opt,name=token" json:"token,omitempty"`
OperationID string `protobuf:"bytes,3,opt,name=operationID" json:"operationID,omitempty"`
Filter int32 `protobuf:"varint,4,opt,name=filter" json:"filter,omitempty"`
NextSeq int32 `protobuf:"varint,5,opt,name=nextSeq" json:"nextSeq,omitempty"`
3 years ago
OpUserID string `protobuf:"bytes,6,opt,name=OpUserID" json:"OpUserID,omitempty"`
3 years ago
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) {
3 years ago
return fileDescriptor_group_ac6850665f72c22b, []int{20}
3 years ago
}
func (m *GetGroupMemberListReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGroupMemberListReq.Unmarshal(m, b)
}
func (m *GetGroupMemberListReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetGroupMemberListReq.Marshal(b, m, deterministic)
}
func (dst *GetGroupMemberListReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGroupMemberListReq.Merge(dst, src)
3 years ago
}
func (m *GetGroupMemberListReq) XXX_Size() int {
return xxx_messageInfo_GetGroupMemberListReq.Size(m)
}
func (m *GetGroupMemberListReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetGroupMemberListReq.DiscardUnknown(m)
}
var xxx_messageInfo_GetGroupMemberListReq proto.InternalMessageInfo
func (m *GetGroupMemberListReq) GetGroupID() string {
if m != nil {
return m.GroupID
}
return ""
}
func (m *GetGroupMemberListReq) GetToken() string {
if m != nil {
return m.Token
}
return ""
}
func (m *GetGroupMemberListReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
func (m *GetGroupMemberListReq) GetFilter() int32 {
if m != nil {
return m.Filter
}
return 0
}
func (m *GetGroupMemberListReq) GetNextSeq() int32 {
if m != nil {
return m.NextSeq
}
return 0
}
3 years ago
func (m *GetGroupMemberListReq) GetOpUserID() string {
if m != nil {
return m.OpUserID
}
return ""
}
3 years ago
type GetGroupMemberListResp struct {
3 years ago
ErrCode int32 `protobuf:"varint,1,opt,name=ErrCode" json:"ErrCode,omitempty"`
ErrMsg string `protobuf:"bytes,2,opt,name=ErrMsg" json:"ErrMsg,omitempty"`
MemberList []*GroupMemberFullInfo `protobuf:"bytes,3,rep,name=memberList" json:"memberList,omitempty"`
NextSeq int32 `protobuf:"varint,4,opt,name=nextSeq" json:"nextSeq,omitempty"`
3 years ago
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) {
3 years ago
return fileDescriptor_group_ac6850665f72c22b, []int{21}
3 years ago
}
func (m *GetGroupMemberListResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGroupMemberListResp.Unmarshal(m, b)
}
func (m *GetGroupMemberListResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetGroupMemberListResp.Marshal(b, m, deterministic)
}
func (dst *GetGroupMemberListResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGroupMemberListResp.Merge(dst, src)
3 years ago
}
func (m *GetGroupMemberListResp) XXX_Size() int {
return xxx_messageInfo_GetGroupMemberListResp.Size(m)
}
func (m *GetGroupMemberListResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetGroupMemberListResp.DiscardUnknown(m)
}
var xxx_messageInfo_GetGroupMemberListResp proto.InternalMessageInfo
3 years ago
func (m *GetGroupMemberListResp) GetErrCode() int32 {
3 years ago
if m != nil {
3 years ago
return m.ErrCode
3 years ago
}
return 0
}
3 years ago
func (m *GetGroupMemberListResp) GetErrMsg() string {
3 years ago
if m != nil {
3 years ago
return m.ErrMsg
3 years ago
}
return ""
}
func (m *GetGroupMemberListResp) GetMemberList() []*GroupMemberFullInfo {
if m != nil {
return m.MemberList
}
return nil
}
func (m *GetGroupMemberListResp) GetNextSeq() int32 {
if m != nil {
return m.NextSeq
}
return 0
}
type GetGroupMembersInfoReq struct {
GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"`
MemberList []string `protobuf:"bytes,2,rep,name=memberList" json:"memberList,omitempty"`
Token string `protobuf:"bytes,3,opt,name=token" json:"token,omitempty"`
OperationID string `protobuf:"bytes,4,opt,name=operationID" json:"operationID,omitempty"`
3 years ago
OpUserID string `protobuf:"bytes,5,opt,name=OpUserID" json:"OpUserID,omitempty"`
3 years ago
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) {
3 years ago
return fileDescriptor_group_ac6850665f72c22b, []int{22}
3 years ago
}
func (m *GetGroupMembersInfoReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGroupMembersInfoReq.Unmarshal(m, b)
}
func (m *GetGroupMembersInfoReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetGroupMembersInfoReq.Marshal(b, m, deterministic)
}
func (dst *GetGroupMembersInfoReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGroupMembersInfoReq.Merge(dst, src)
3 years ago
}
func (m *GetGroupMembersInfoReq) XXX_Size() int {
return xxx_messageInfo_GetGroupMembersInfoReq.Size(m)
}
func (m *GetGroupMembersInfoReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetGroupMembersInfoReq.DiscardUnknown(m)
}
var xxx_messageInfo_GetGroupMembersInfoReq proto.InternalMessageInfo
func (m *GetGroupMembersInfoReq) GetGroupID() string {
if m != nil {
return m.GroupID
}
return ""
}
func (m *GetGroupMembersInfoReq) GetMemberList() []string {
if m != nil {
return m.MemberList
}
return nil
}
func (m *GetGroupMembersInfoReq) GetToken() string {
if m != nil {
return m.Token
}
return ""
}
func (m *GetGroupMembersInfoReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
3 years ago
func (m *GetGroupMembersInfoReq) GetOpUserID() string {
if m != nil {
return m.OpUserID
}
return ""
}
3 years ago
type GetGroupMembersInfoResp struct {
3 years ago
ErrCode int32 `protobuf:"varint,1,opt,name=ErrCode" json:"ErrCode,omitempty"`
ErrMsg string `protobuf:"bytes,2,opt,name=ErrMsg" json:"ErrMsg,omitempty"`
MemberList []*GroupMemberFullInfo `protobuf:"bytes,3,rep,name=memberList" json:"memberList,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetGroupMembersInfoResp) Reset() { *m = GetGroupMembersInfoResp{} }
func (m *GetGroupMembersInfoResp) String() string { return proto.CompactTextString(m) }
func (*GetGroupMembersInfoResp) ProtoMessage() {}
func (*GetGroupMembersInfoResp) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_group_ac6850665f72c22b, []int{23}
3 years ago
}
func (m *GetGroupMembersInfoResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGroupMembersInfoResp.Unmarshal(m, b)
}
func (m *GetGroupMembersInfoResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetGroupMembersInfoResp.Marshal(b, m, deterministic)
}
func (dst *GetGroupMembersInfoResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGroupMembersInfoResp.Merge(dst, src)
3 years ago
}
func (m *GetGroupMembersInfoResp) XXX_Size() int {
return xxx_messageInfo_GetGroupMembersInfoResp.Size(m)
}
func (m *GetGroupMembersInfoResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetGroupMembersInfoResp.DiscardUnknown(m)
}
var xxx_messageInfo_GetGroupMembersInfoResp proto.InternalMessageInfo
3 years ago
func (m *GetGroupMembersInfoResp) GetErrCode() int32 {
3 years ago
if m != nil {
3 years ago
return m.ErrCode
3 years ago
}
return 0
}
3 years ago
func (m *GetGroupMembersInfoResp) GetErrMsg() string {
3 years ago
if m != nil {
3 years ago
return m.ErrMsg
3 years ago
}
return ""
}
func (m *GetGroupMembersInfoResp) GetMemberList() []*GroupMemberFullInfo {
if m != nil {
return m.MemberList
}
return nil
}
type KickGroupMemberReq struct {
GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"`
UidListInfo []*GroupMemberFullInfo `protobuf:"bytes,2,rep,name=uidListInfo" json:"uidListInfo,omitempty"`
Reason string `protobuf:"bytes,3,opt,name=reason" json:"reason,omitempty"`
Token string `protobuf:"bytes,4,opt,name=token" json:"token,omitempty"`
OperationID string `protobuf:"bytes,5,opt,name=operationID" json:"operationID,omitempty"`
3 years ago
OpUserID string `protobuf:"bytes,6,opt,name=OpUserID" json:"OpUserID,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
func (m *KickGroupMemberReq) Reset() { *m = KickGroupMemberReq{} }
func (m *KickGroupMemberReq) String() string { return proto.CompactTextString(m) }
func (*KickGroupMemberReq) ProtoMessage() {}
func (*KickGroupMemberReq) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_group_ac6850665f72c22b, []int{24}
3 years ago
}
func (m *KickGroupMemberReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_KickGroupMemberReq.Unmarshal(m, b)
}
func (m *KickGroupMemberReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_KickGroupMemberReq.Marshal(b, m, deterministic)
}
func (dst *KickGroupMemberReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_KickGroupMemberReq.Merge(dst, src)
3 years ago
}
func (m *KickGroupMemberReq) XXX_Size() int {
return xxx_messageInfo_KickGroupMemberReq.Size(m)
}
func (m *KickGroupMemberReq) XXX_DiscardUnknown() {
xxx_messageInfo_KickGroupMemberReq.DiscardUnknown(m)
}
var xxx_messageInfo_KickGroupMemberReq proto.InternalMessageInfo
func (m *KickGroupMemberReq) GetGroupID() string {
if m != nil {
return m.GroupID
}
return ""
}
3 years ago
func (m *KickGroupMemberReq) GetUidListInfo() []*GroupMemberFullInfo {
3 years ago
if m != nil {
3 years ago
return m.UidListInfo
3 years ago
}
return nil
}
func (m *KickGroupMemberReq) GetReason() string {
if m != nil {
return m.Reason
}
return ""
}
func (m *KickGroupMemberReq) GetToken() string {
if m != nil {
return m.Token
}
return ""
}
func (m *KickGroupMemberReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
3 years ago
func (m *KickGroupMemberReq) GetOpUserID() string {
if m != nil {
return m.OpUserID
}
return ""
}
3 years ago
type Id2Result struct {
UId string `protobuf:"bytes,1,opt,name=uId" json:"uId,omitempty"`
Result int32 `protobuf:"varint,2,opt,name=result" json:"result,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Id2Result) Reset() { *m = Id2Result{} }
func (m *Id2Result) String() string { return proto.CompactTextString(m) }
func (*Id2Result) ProtoMessage() {}
func (*Id2Result) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_group_ac6850665f72c22b, []int{25}
3 years ago
}
func (m *Id2Result) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Id2Result.Unmarshal(m, b)
}
func (m *Id2Result) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Id2Result.Marshal(b, m, deterministic)
}
func (dst *Id2Result) XXX_Merge(src proto.Message) {
xxx_messageInfo_Id2Result.Merge(dst, src)
3 years ago
}
func (m *Id2Result) XXX_Size() int {
return xxx_messageInfo_Id2Result.Size(m)
}
func (m *Id2Result) XXX_DiscardUnknown() {
xxx_messageInfo_Id2Result.DiscardUnknown(m)
}
var xxx_messageInfo_Id2Result proto.InternalMessageInfo
func (m *Id2Result) GetUId() string {
if m != nil {
return m.UId
}
return ""
}
func (m *Id2Result) GetResult() int32 {
if m != nil {
return m.Result
}
return 0
}
type KickGroupMemberResp struct {
3 years ago
ErrCode int32 `protobuf:"varint,1,opt,name=ErrCode" json:"ErrCode,omitempty"`
ErrMsg string `protobuf:"bytes,2,opt,name=ErrMsg" json:"ErrMsg,omitempty"`
Id2Result []*Id2Result `protobuf:"bytes,3,rep,name=id2result" json:"id2result,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *KickGroupMemberResp) Reset() { *m = KickGroupMemberResp{} }
func (m *KickGroupMemberResp) String() string { return proto.CompactTextString(m) }
func (*KickGroupMemberResp) ProtoMessage() {}
func (*KickGroupMemberResp) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_group_ac6850665f72c22b, []int{26}
3 years ago
}
func (m *KickGroupMemberResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_KickGroupMemberResp.Unmarshal(m, b)
}
func (m *KickGroupMemberResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_KickGroupMemberResp.Marshal(b, m, deterministic)
}
func (dst *KickGroupMemberResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_KickGroupMemberResp.Merge(dst, src)
3 years ago
}
func (m *KickGroupMemberResp) XXX_Size() int {
return xxx_messageInfo_KickGroupMemberResp.Size(m)
}
func (m *KickGroupMemberResp) XXX_DiscardUnknown() {
xxx_messageInfo_KickGroupMemberResp.DiscardUnknown(m)
}
var xxx_messageInfo_KickGroupMemberResp proto.InternalMessageInfo
3 years ago
func (m *KickGroupMemberResp) GetErrCode() int32 {
3 years ago
if m != nil {
3 years ago
return m.ErrCode
3 years ago
}
return 0
}
3 years ago
func (m *KickGroupMemberResp) GetErrMsg() string {
3 years ago
if m != nil {
3 years ago
return m.ErrMsg
3 years ago
}
return ""
}
func (m *KickGroupMemberResp) GetId2Result() []*Id2Result {
if m != nil {
return m.Id2Result
}
return nil
}
type GetJoinedGroupListReq struct {
Token string `protobuf:"bytes,1,opt,name=token" json:"token,omitempty"`
OperationID string `protobuf:"bytes,2,opt,name=operationID" json:"operationID,omitempty"`
3 years ago
OpUserID string `protobuf:"bytes,3,opt,name=OpUserID" json:"OpUserID,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetJoinedGroupListReq) Reset() { *m = GetJoinedGroupListReq{} }
func (m *GetJoinedGroupListReq) String() string { return proto.CompactTextString(m) }
func (*GetJoinedGroupListReq) ProtoMessage() {}
func (*GetJoinedGroupListReq) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_group_ac6850665f72c22b, []int{27}
3 years ago
}
func (m *GetJoinedGroupListReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetJoinedGroupListReq.Unmarshal(m, b)
}
func (m *GetJoinedGroupListReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetJoinedGroupListReq.Marshal(b, m, deterministic)
}
func (dst *GetJoinedGroupListReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetJoinedGroupListReq.Merge(dst, src)
3 years ago
}
func (m *GetJoinedGroupListReq) XXX_Size() int {
return xxx_messageInfo_GetJoinedGroupListReq.Size(m)
}
func (m *GetJoinedGroupListReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetJoinedGroupListReq.DiscardUnknown(m)
}
var xxx_messageInfo_GetJoinedGroupListReq proto.InternalMessageInfo
func (m *GetJoinedGroupListReq) GetToken() string {
if m != nil {
return m.Token
}
return ""
}
func (m *GetJoinedGroupListReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
3 years ago
func (m *GetJoinedGroupListReq) GetOpUserID() string {
if m != nil {
return m.OpUserID
}
return ""
}
3 years ago
type GroupInfo struct {
GroupId string `protobuf:"bytes,1,opt,name=groupId" json:"groupId,omitempty"`
GroupName string `protobuf:"bytes,2,opt,name=groupName" json:"groupName,omitempty"`
Notification string `protobuf:"bytes,3,opt,name=notification" json:"notification,omitempty"`
Introduction string `protobuf:"bytes,4,opt,name=introduction" json:"introduction,omitempty"`
FaceUrl string `protobuf:"bytes,5,opt,name=faceUrl" json:"faceUrl,omitempty"`
CreateTime uint64 `protobuf:"varint,6,opt,name=createTime" json:"createTime,omitempty"`
OwnerId string `protobuf:"bytes,7,opt,name=ownerId" json:"ownerId,omitempty"`
MemberCount uint32 `protobuf:"varint,8,opt,name=memberCount" json:"memberCount,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GroupInfo) Reset() { *m = GroupInfo{} }
func (m *GroupInfo) String() string { return proto.CompactTextString(m) }
func (*GroupInfo) ProtoMessage() {}
func (*GroupInfo) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_group_ac6850665f72c22b, []int{28}
3 years ago
}
func (m *GroupInfo) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GroupInfo.Unmarshal(m, b)
}
func (m *GroupInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GroupInfo.Marshal(b, m, deterministic)
}
func (dst *GroupInfo) XXX_Merge(src proto.Message) {
xxx_messageInfo_GroupInfo.Merge(dst, src)
3 years ago
}
func (m *GroupInfo) XXX_Size() int {
return xxx_messageInfo_GroupInfo.Size(m)
}
func (m *GroupInfo) XXX_DiscardUnknown() {
xxx_messageInfo_GroupInfo.DiscardUnknown(m)
}
var xxx_messageInfo_GroupInfo proto.InternalMessageInfo
func (m *GroupInfo) GetGroupId() string {
if m != nil {
return m.GroupId
}
return ""
}
func (m *GroupInfo) GetGroupName() string {
if m != nil {
return m.GroupName
}
return ""
}
func (m *GroupInfo) GetNotification() string {
if m != nil {
return m.Notification
}
return ""
}
func (m *GroupInfo) GetIntroduction() string {
if m != nil {
return m.Introduction
}
return ""
}
func (m *GroupInfo) GetFaceUrl() string {
if m != nil {
return m.FaceUrl
}
return ""
}
func (m *GroupInfo) GetCreateTime() uint64 {
if m != nil {
return m.CreateTime
}
return 0
}
func (m *GroupInfo) GetOwnerId() string {
if m != nil {
return m.OwnerId
}
return ""
}
func (m *GroupInfo) GetMemberCount() uint32 {
if m != nil {
return m.MemberCount
}
return 0
}
type GetJoinedGroupListResp struct {
3 years ago
ErrCode int32 `protobuf:"varint,1,opt,name=ErrCode" json:"ErrCode,omitempty"`
ErrorMsg string `protobuf:"bytes,2,opt,name=ErrorMsg" json:"ErrorMsg,omitempty"`
GroupList []*GroupInfo `protobuf:"bytes,3,rep,name=GroupList" json:"GroupList,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetJoinedGroupListResp) Reset() { *m = GetJoinedGroupListResp{} }
func (m *GetJoinedGroupListResp) String() string { return proto.CompactTextString(m) }
func (*GetJoinedGroupListResp) ProtoMessage() {}
func (*GetJoinedGroupListResp) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_group_ac6850665f72c22b, []int{29}
3 years ago
}
func (m *GetJoinedGroupListResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetJoinedGroupListResp.Unmarshal(m, b)
}
func (m *GetJoinedGroupListResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetJoinedGroupListResp.Marshal(b, m, deterministic)
}
func (dst *GetJoinedGroupListResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetJoinedGroupListResp.Merge(dst, src)
3 years ago
}
func (m *GetJoinedGroupListResp) XXX_Size() int {
return xxx_messageInfo_GetJoinedGroupListResp.Size(m)
}
func (m *GetJoinedGroupListResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetJoinedGroupListResp.DiscardUnknown(m)
}
var xxx_messageInfo_GetJoinedGroupListResp proto.InternalMessageInfo
3 years ago
func (m *GetJoinedGroupListResp) GetErrCode() int32 {
3 years ago
if m != nil {
3 years ago
return m.ErrCode
3 years ago
}
return 0
}
func (m *GetJoinedGroupListResp) GetErrorMsg() string {
if m != nil {
return m.ErrorMsg
}
return ""
}
func (m *GetJoinedGroupListResp) GetGroupList() []*GroupInfo {
if m != nil {
return m.GroupList
}
return nil
}
type InviteUserToGroupReq struct {
Token string `protobuf:"bytes,1,opt,name=token" json:"token,omitempty"`
OperationID string `protobuf:"bytes,2,opt,name=operationID" json:"operationID,omitempty"`
GroupID string `protobuf:"bytes,3,opt,name=groupID" json:"groupID,omitempty"`
Reason string `protobuf:"bytes,4,opt,name=reason" json:"reason,omitempty"`
UidList []string `protobuf:"bytes,5,rep,name=uidList" json:"uidList,omitempty"`
3 years ago
OpUserID string `protobuf:"bytes,6,opt,name=OpUserID" json:"OpUserID,omitempty"`
3 years ago
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) {
3 years ago
return fileDescriptor_group_ac6850665f72c22b, []int{30}
3 years ago
}
func (m *InviteUserToGroupReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_InviteUserToGroupReq.Unmarshal(m, b)
}
func (m *InviteUserToGroupReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_InviteUserToGroupReq.Marshal(b, m, deterministic)
}
func (dst *InviteUserToGroupReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_InviteUserToGroupReq.Merge(dst, src)
3 years ago
}
func (m *InviteUserToGroupReq) XXX_Size() int {
return xxx_messageInfo_InviteUserToGroupReq.Size(m)
}
func (m *InviteUserToGroupReq) XXX_DiscardUnknown() {
xxx_messageInfo_InviteUserToGroupReq.DiscardUnknown(m)
}
var xxx_messageInfo_InviteUserToGroupReq proto.InternalMessageInfo
func (m *InviteUserToGroupReq) GetToken() string {
if m != nil {
return m.Token
}
return ""
}
func (m *InviteUserToGroupReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
func (m *InviteUserToGroupReq) GetGroupID() string {
if m != nil {
return m.GroupID
}
return ""
}
func (m *InviteUserToGroupReq) GetReason() string {
if m != nil {
return m.Reason
}
return ""
}
func (m *InviteUserToGroupReq) GetUidList() []string {
if m != nil {
return m.UidList
}
return nil
}
3 years ago
func (m *InviteUserToGroupReq) GetOpUserID() string {
if m != nil {
return m.OpUserID
}
return ""
}
3 years ago
type InviteUserToGroupResp struct {
3 years ago
ErrCode int32 `protobuf:"varint,1,opt,name=ErrCode" json:"ErrCode,omitempty"`
ErrMsg string `protobuf:"bytes,2,opt,name=ErrMsg" json:"ErrMsg,omitempty"`
Id2Result []*Id2Result `protobuf:"bytes,3,rep,name=Id2Result" json:"Id2Result,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *InviteUserToGroupResp) Reset() { *m = InviteUserToGroupResp{} }
func (m *InviteUserToGroupResp) String() string { return proto.CompactTextString(m) }
func (*InviteUserToGroupResp) ProtoMessage() {}
func (*InviteUserToGroupResp) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_group_ac6850665f72c22b, []int{31}
3 years ago
}
func (m *InviteUserToGroupResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_InviteUserToGroupResp.Unmarshal(m, b)
}
func (m *InviteUserToGroupResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_InviteUserToGroupResp.Marshal(b, m, deterministic)
}
func (dst *InviteUserToGroupResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_InviteUserToGroupResp.Merge(dst, src)
3 years ago
}
func (m *InviteUserToGroupResp) XXX_Size() int {
return xxx_messageInfo_InviteUserToGroupResp.Size(m)
}
func (m *InviteUserToGroupResp) XXX_DiscardUnknown() {
xxx_messageInfo_InviteUserToGroupResp.DiscardUnknown(m)
}
var xxx_messageInfo_InviteUserToGroupResp proto.InternalMessageInfo
3 years ago
func (m *InviteUserToGroupResp) GetErrCode() int32 {
3 years ago
if m != nil {
3 years ago
return m.ErrCode
3 years ago
}
return 0
}
3 years ago
func (m *InviteUserToGroupResp) GetErrMsg() string {
3 years ago
if m != nil {
3 years ago
return m.ErrMsg
3 years ago
}
return ""
}
func (m *InviteUserToGroupResp) GetId2Result() []*Id2Result {
if m != nil {
return m.Id2Result
}
return nil
}
type GetGroupAllMemberReq struct {
GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"`
Token string `protobuf:"bytes,2,opt,name=token" json:"token,omitempty"`
OperationID string `protobuf:"bytes,3,opt,name=operationID" json:"operationID,omitempty"`
3 years ago
OpUserID string `protobuf:"bytes,4,opt,name=OpUserID" json:"OpUserID,omitempty"`
3 years ago
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) {
3 years ago
return fileDescriptor_group_ac6850665f72c22b, []int{32}
3 years ago
}
func (m *GetGroupAllMemberReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGroupAllMemberReq.Unmarshal(m, b)
}
func (m *GetGroupAllMemberReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetGroupAllMemberReq.Marshal(b, m, deterministic)
}
func (dst *GetGroupAllMemberReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGroupAllMemberReq.Merge(dst, src)
3 years ago
}
func (m *GetGroupAllMemberReq) XXX_Size() int {
return xxx_messageInfo_GetGroupAllMemberReq.Size(m)
}
func (m *GetGroupAllMemberReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetGroupAllMemberReq.DiscardUnknown(m)
}
var xxx_messageInfo_GetGroupAllMemberReq proto.InternalMessageInfo
func (m *GetGroupAllMemberReq) GetGroupID() string {
if m != nil {
return m.GroupID
}
return ""
}
func (m *GetGroupAllMemberReq) GetToken() string {
if m != nil {
return m.Token
}
return ""
}
func (m *GetGroupAllMemberReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
3 years ago
func (m *GetGroupAllMemberReq) GetOpUserID() string {
if m != nil {
return m.OpUserID
}
return ""
}
3 years ago
type GetGroupAllMemberResp struct {
3 years ago
ErrCode int32 `protobuf:"varint,1,opt,name=ErrCode" json:"ErrCode,omitempty"`
ErrMsg string `protobuf:"bytes,2,opt,name=ErrMsg" json:"ErrMsg,omitempty"`
MemberList []*GroupMemberFullInfo `protobuf:"bytes,3,rep,name=memberList" json:"memberList,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetGroupAllMemberResp) Reset() { *m = GetGroupAllMemberResp{} }
func (m *GetGroupAllMemberResp) String() string { return proto.CompactTextString(m) }
func (*GetGroupAllMemberResp) ProtoMessage() {}
func (*GetGroupAllMemberResp) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_group_ac6850665f72c22b, []int{33}
3 years ago
}
func (m *GetGroupAllMemberResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGroupAllMemberResp.Unmarshal(m, b)
}
func (m *GetGroupAllMemberResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetGroupAllMemberResp.Marshal(b, m, deterministic)
}
func (dst *GetGroupAllMemberResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGroupAllMemberResp.Merge(dst, src)
3 years ago
}
func (m *GetGroupAllMemberResp) XXX_Size() int {
return xxx_messageInfo_GetGroupAllMemberResp.Size(m)
}
func (m *GetGroupAllMemberResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetGroupAllMemberResp.DiscardUnknown(m)
}
var xxx_messageInfo_GetGroupAllMemberResp proto.InternalMessageInfo
3 years ago
func (m *GetGroupAllMemberResp) GetErrCode() int32 {
3 years ago
if m != nil {
3 years ago
return m.ErrCode
3 years ago
}
return 0
}
3 years ago
func (m *GetGroupAllMemberResp) GetErrMsg() string {
3 years ago
if m != nil {
3 years ago
return m.ErrMsg
3 years ago
}
return ""
}
func (m *GetGroupAllMemberResp) GetMemberList() []*GroupMemberFullInfo {
if m != nil {
return m.MemberList
}
return nil
}
func init() {
proto.RegisterType((*CommonResp)(nil), "group.CommonResp")
proto.RegisterType((*CreateGroupReq)(nil), "group.CreateGroupReq")
proto.RegisterType((*GroupAddMemberInfo)(nil), "group.GroupAddMemberInfo")
proto.RegisterType((*CreateGroupResp)(nil), "group.CreateGroupResp")
proto.RegisterType((*GetGroupsInfoReq)(nil), "group.GetGroupsInfoReq")
proto.RegisterType((*GetGroupsInfoResp)(nil), "group.GetGroupsInfoResp")
proto.RegisterType((*SetGroupInfoReq)(nil), "group.SetGroupInfoReq")
proto.RegisterType((*GetGroupApplicationListReq)(nil), "group.GetGroupApplicationListReq")
proto.RegisterType((*GetGroupApplicationList_Data_User)(nil), "group.GetGroupApplicationList_Data_User")
proto.RegisterType((*GetGroupApplicationListData)(nil), "group.GetGroupApplicationListData")
proto.RegisterType((*GetGroupApplicationListResp)(nil), "group.GetGroupApplicationListResp")
proto.RegisterType((*TransferGroupOwnerReq)(nil), "group.TransferGroupOwnerReq")
proto.RegisterType((*TransferGroupOwnerResp)(nil), "group.TransferGroupOwnerResp")
proto.RegisterType((*JoinGroupReq)(nil), "group.JoinGroupReq")
proto.RegisterType((*GroupApplicationResponseReq)(nil), "group.GroupApplicationResponseReq")
proto.RegisterType((*GroupApplicationResponseResp)(nil), "group.GroupApplicationResponseResp")
proto.RegisterType((*SetOwnerGroupNickNameReq)(nil), "group.SetOwnerGroupNickNameReq")
proto.RegisterType((*QuitGroupReq)(nil), "group.QuitGroupReq")
proto.RegisterType((*GroupApplicationUserInfo)(nil), "group.GroupApplicationUserInfo")
proto.RegisterType((*GroupMemberFullInfo)(nil), "group.GroupMemberFullInfo")
proto.RegisterType((*GetGroupMemberListReq)(nil), "group.GetGroupMemberListReq")
proto.RegisterType((*GetGroupMemberListResp)(nil), "group.GetGroupMemberListResp")
proto.RegisterType((*GetGroupMembersInfoReq)(nil), "group.GetGroupMembersInfoReq")
proto.RegisterType((*GetGroupMembersInfoResp)(nil), "group.GetGroupMembersInfoResp")
proto.RegisterType((*KickGroupMemberReq)(nil), "group.KickGroupMemberReq")
proto.RegisterType((*Id2Result)(nil), "group.Id2Result")
proto.RegisterType((*KickGroupMemberResp)(nil), "group.KickGroupMemberResp")
proto.RegisterType((*GetJoinedGroupListReq)(nil), "group.getJoinedGroupListReq")
proto.RegisterType((*GroupInfo)(nil), "group.GroupInfo")
proto.RegisterType((*GetJoinedGroupListResp)(nil), "group.getJoinedGroupListResp")
proto.RegisterType((*InviteUserToGroupReq)(nil), "group.inviteUserToGroupReq")
proto.RegisterType((*InviteUserToGroupResp)(nil), "group.inviteUserToGroupResp")
proto.RegisterType((*GetGroupAllMemberReq)(nil), "group.GetGroupAllMemberReq")
proto.RegisterType((*GetGroupAllMemberResp)(nil), "group.GetGroupAllMemberResp")
}
// 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
// Client API for Group service
type GroupClient interface {
CreateGroup(ctx context.Context, in *CreateGroupReq, opts ...grpc.CallOption) (*CreateGroupResp, error)
3 years ago
JoinGroup(ctx context.Context, in *JoinGroupReq, opts ...grpc.CallOption) (*CommonResp, error)
QuitGroup(ctx context.Context, in *QuitGroupReq, opts ...grpc.CallOption) (*CommonResp, error)
GetGroupsInfo(ctx context.Context, in *GetGroupsInfoReq, opts ...grpc.CallOption) (*GetGroupsInfoResp, error)
SetGroupInfo(ctx context.Context, in *SetGroupInfoReq, opts ...grpc.CallOption) (*CommonResp, error)
GetGroupApplicationList(ctx context.Context, in *GetGroupApplicationListReq, opts ...grpc.CallOption) (*GetGroupApplicationListResp, error)
TransferGroupOwner(ctx context.Context, in *TransferGroupOwnerReq, opts ...grpc.CallOption) (*TransferGroupOwnerResp, error)
GroupApplicationResponse(ctx context.Context, in *GroupApplicationResponseReq, opts ...grpc.CallOption) (*GroupApplicationResponseResp, error)
// rpc setOwnerGroupNickName(SetOwnerGroupNickNameReq) returns(CommonResp);
GetGroupMemberList(ctx context.Context, in *GetGroupMemberListReq, opts ...grpc.CallOption) (*GetGroupMemberListResp, error)
GetGroupMembersInfo(ctx context.Context, in *GetGroupMembersInfoReq, opts ...grpc.CallOption) (*GetGroupMembersInfoResp, error)
KickGroupMember(ctx context.Context, in *KickGroupMemberReq, opts ...grpc.CallOption) (*KickGroupMemberResp, error)
GetJoinedGroupList(ctx context.Context, in *GetJoinedGroupListReq, opts ...grpc.CallOption) (*GetJoinedGroupListResp, error)
InviteUserToGroup(ctx context.Context, in *InviteUserToGroupReq, opts ...grpc.CallOption) (*InviteUserToGroupResp, error)
GetGroupAllMember(ctx context.Context, in *GetGroupAllMemberReq, opts ...grpc.CallOption) (*GetGroupAllMemberResp, 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, "/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) (*CommonResp, error) {
out := new(CommonResp)
err := grpc.Invoke(ctx, "/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) (*CommonResp, error) {
out := new(CommonResp)
err := grpc.Invoke(ctx, "/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, "/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) (*CommonResp, error) {
out := new(CommonResp)
err := grpc.Invoke(ctx, "/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, "/group.group/getGroupApplicationList", 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, "/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, "/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, "/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, "/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, "/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, "/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, "/group.group/inviteUserToGroup", in, out, c.cc, opts...)
3 years ago
if err != nil {
return nil, err
}
return out, nil
}
func (c *groupClient) GetGroupAllMember(ctx context.Context, in *GetGroupAllMemberReq, opts ...grpc.CallOption) (*GetGroupAllMemberResp, error) {
out := new(GetGroupAllMemberResp)
err := grpc.Invoke(ctx, "/group.group/getGroupAllMember", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
// Server API for Group service
type GroupServer interface {
CreateGroup(context.Context, *CreateGroupReq) (*CreateGroupResp, error)
3 years ago
JoinGroup(context.Context, *JoinGroupReq) (*CommonResp, error)
QuitGroup(context.Context, *QuitGroupReq) (*CommonResp, error)
GetGroupsInfo(context.Context, *GetGroupsInfoReq) (*GetGroupsInfoResp, error)
SetGroupInfo(context.Context, *SetGroupInfoReq) (*CommonResp, error)
GetGroupApplicationList(context.Context, *GetGroupApplicationListReq) (*GetGroupApplicationListResp, error)
TransferGroupOwner(context.Context, *TransferGroupOwnerReq) (*TransferGroupOwnerResp, error)
GroupApplicationResponse(context.Context, *GroupApplicationResponseReq) (*GroupApplicationResponseResp, error)
// rpc setOwnerGroupNickName(SetOwnerGroupNickNameReq) returns(CommonResp);
GetGroupMemberList(context.Context, *GetGroupMemberListReq) (*GetGroupMemberListResp, error)
GetGroupMembersInfo(context.Context, *GetGroupMembersInfoReq) (*GetGroupMembersInfoResp, error)
KickGroupMember(context.Context, *KickGroupMemberReq) (*KickGroupMemberResp, error)
GetJoinedGroupList(context.Context, *GetJoinedGroupListReq) (*GetJoinedGroupListResp, error)
InviteUserToGroup(context.Context, *InviteUserToGroupReq) (*InviteUserToGroupResp, error)
GetGroupAllMember(context.Context, *GetGroupAllMemberReq) (*GetGroupAllMemberResp, error)
}
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: "/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: "/group.group/JoinGroup",
}
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: "/group.group/QuitGroup",
}
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: "/group.group/GetGroupsInfo",
}
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: "/group.group/SetGroupInfo",
}
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: "/group.group/GetGroupApplicationList",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(GroupServer).GetGroupApplicationList(ctx, req.(*GetGroupApplicationListReq))
}
return interceptor(ctx, in, info, handler)
}
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,
3 years ago
FullMethod: "/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,
3 years ago
FullMethod: "/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,
3 years ago
FullMethod: "/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,
3 years ago
FullMethod: "/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,
3 years ago
FullMethod: "/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,
3 years ago
FullMethod: "/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,
3 years ago
FullMethod: "/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_GetGroupAllMember_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetGroupAllMemberReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
3 years ago
return srv.(GroupServer).GetGroupAllMember(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
3 years ago
FullMethod: "/group.group/GetGroupAllMember",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
3 years ago
return srv.(GroupServer).GetGroupAllMember(ctx, req.(*GetGroupAllMemberReq))
}
return interceptor(ctx, in, info, handler)
}
var _Group_serviceDesc = grpc.ServiceDesc{
ServiceName: "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,
},
{
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: "getGroupAllMember",
Handler: _Group_GetGroupAllMember_Handler,
},
},
Streams: []grpc.StreamDesc{},
Metadata: "group/group.proto",
}
3 years ago
func init() { proto.RegisterFile("group/group.proto", fileDescriptor_group_ac6850665f72c22b) }
var fileDescriptor_group_ac6850665f72c22b = []byte{
// 1744 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x59, 0xdb, 0x6f, 0xdc, 0x44,
0x17, 0x97, 0x77, 0xbd, 0x9b, 0xec, 0xc9, 0x7d, 0xd2, 0xa4, 0xfe, 0xdc, 0x7c, 0x51, 0xea, 0xaf,
0xfa, 0x14, 0xf1, 0x10, 0xa4, 0x54, 0x20, 0x15, 0x2a, 0x44, 0x9b, 0x5b, 0xb7, 0xd0, 0x94, 0x3a,
0xe9, 0x4b, 0x25, 0x54, 0xdc, 0xf5, 0xec, 0xe2, 0x66, 0xd7, 0xf6, 0xda, 0x5e, 0xda, 0x4a, 0x08,
0x09, 0xa9, 0xa8, 0x48, 0x3c, 0x22, 0x21, 0xf1, 0xc6, 0x03, 0x82, 0x37, 0x24, 0x5e, 0xe0, 0x5f,
0xe1, 0xbf, 0x01, 0xcd, 0xd5, 0xe3, 0x6b, 0xa2, 0x45, 0x94, 0x97, 0x95, 0xcf, 0x99, 0x33, 0x33,
0x67, 0x7e, 0x73, 0xce, 0x6f, 0xce, 0xcc, 0xc2, 0xca, 0x20, 0x0a, 0x26, 0xe1, 0x9b, 0xf4, 0x77,
0x27, 0x8c, 0x82, 0x24, 0x40, 0x2d, 0x2a, 0x58, 0xef, 0x01, 0xec, 0x05, 0xa3, 0x51, 0xe0, 0xdb,
0x38, 0x0e, 0x91, 0x01, 0x33, 0x07, 0x51, 0xb4, 0x17, 0xb8, 0xd8, 0xd0, 0xb6, 0xb4, 0xed, 0x96,
0x2d, 0x44, 0xb4, 0x0e, 0xed, 0x83, 0x28, 0xba, 0x17, 0x0f, 0x8c, 0xc6, 0x96, 0xb6, 0xdd, 0xb1,
0xb9, 0x64, 0xfd, 0xda, 0x80, 0xc5, 0xbd, 0x08, 0x3b, 0x09, 0x3e, 0x22, 0xe3, 0xd9, 0x78, 0x8c,
0x6e, 0x00, 0x8c, 0xf0, 0xe8, 0x09, 0x8e, 0x3e, 0xf4, 0xe2, 0xc4, 0xd0, 0xb6, 0x9a, 0xdb, 0x73,
0xbb, 0xff, 0xd9, 0x61, 0x73, 0x53, 0xa3, 0x5b, 0xae, 0x7b, 0x8f, 0x1a, 0x74, 0xfd, 0x7e, 0x60,
0x2b, 0xc6, 0x68, 0x03, 0x3a, 0xd4, 0xee, 0xd8, 0x19, 0x61, 0x3e, 0x51, 0xaa, 0x40, 0x16, 0xcc,
0x7b, 0x7e, 0x12, 0x05, 0xee, 0xa4, 0x97, 0x78, 0x81, 0x6f, 0x34, 0xa9, 0x41, 0x46, 0x47, 0x6c,
0xfc, 0x20, 0xf1, 0xfa, 0x5e, 0xcf, 0xa1, 0x36, 0x3a, 0xb3, 0x51, 0x75, 0x64, 0x95, 0x7d, 0xa7,
0x87, 0x1f, 0x46, 0x43, 0xa3, 0x45, 0x9b, 0x85, 0x88, 0x2e, 0x41, 0x2b, 0x09, 0xce, 0xb0, 0x6f,
0xb4, 0xa9, 0x9e, 0x09, 0x68, 0x0b, 0xe6, 0x82, 0x10, 0x47, 0xb4, 0x73, 0x77, 0xdf, 0x98, 0xa1,
0x6d, 0xaa, 0x0a, 0x99, 0x30, 0x7b, 0x3f, 0x7c, 0x18, 0xe3, 0xa8, 0xbb, 0x6f, 0xcc, 0xd2, 0x66,
0x29, 0xa3, 0x65, 0x68, 0x1e, 0x3c, 0x4f, 0x8c, 0x0e, 0x55, 0x93, 0x4f, 0xeb, 0x7d, 0x40, 0x45,
0x1c, 0x88, 0xdd, 0xc4, 0x73, 0x29, 0xee, 0x1d, 0x9b, 0x7c, 0x12, 0x3f, 0x63, 0x9c, 0xd8, 0xc1,
0x90, 0x61, 0xd1, 0xb2, 0x85, 0x68, 0x7d, 0x0c, 0x4b, 0x19, 0xd0, 0xa7, 0xd9, 0x3a, 0xd2, 0x83,
0x62, 0xdb, 0xdd, 0xe7, 0x48, 0x0a, 0xd1, 0xfa, 0x5a, 0x83, 0xe5, 0x23, 0x9c, 0xd0, 0xc1, 0x63,
0xba, 0x49, 0x78, 0x4c, 0x50, 0xe0, 0xed, 0x72, 0x5f, 0x3b, 0xb6, 0xaa, 0x4a, 0xd1, 0x6b, 0xd4,
0xa0, 0xd7, 0xac, 0x47, 0x4f, 0xcf, 0xa2, 0x67, 0x9d, 0xc1, 0x4a, 0xce, 0x93, 0xa9, 0xd6, 0x7a,
0x0d, 0x74, 0xd7, 0x49, 0x1c, 0xa3, 0x49, 0xa3, 0x71, 0x59, 0x8d, 0x46, 0x3a, 0x2a, 0x6d, 0xb5,
0xfe, 0xd4, 0x60, 0xe9, 0x84, 0xcf, 0x26, 0x96, 0xad, 0xa0, 0xa4, 0x65, 0x50, 0x3a, 0x3f, 0x58,
0x33, 0x81, 0xd8, 0x2c, 0x09, 0xc4, 0x7c, 0x40, 0xeb, 0x25, 0x01, 0xfd, 0x5a, 0x83, 0xd5, 0x7a,
0x04, 0xa6, 0x80, 0xfb, 0x56, 0x18, 0x0e, 0xb9, 0xa3, 0x64, 0x77, 0x09, 0x16, 0x6a, 0x4f, 0x2d,
0x17, 0xe6, 0x5b, 0x30, 0x77, 0x5f, 0x99, 0x97, 0xe1, 0xa1, 0xaa, 0xac, 0xef, 0x75, 0xb8, 0x5a,
0x31, 0xf8, 0xe3, 0x7d, 0x27, 0x71, 0x1e, 0x93, 0x91, 0xd0, 0x22, 0x34, 0xe4, 0xe8, 0x8d, 0xee,
0x3e, 0x59, 0xff, 0x11, 0xc7, 0x9f, 0x8d, 0x29, 0x44, 0xb4, 0x09, 0x70, 0x18, 0x05, 0x23, 0xee,
0x0f, 0xc3, 0x57, 0xd1, 0x10, 0x6f, 0x4f, 0x83, 0x6c, 0x58, 0x09, 0x19, 0x21, 0xd0, 0x0f, 0x87,
0xce, 0x80, 0x42, 0xda, 0xb2, 0xe9, 0x37, 0x19, 0xcf, 0xc6, 0xe3, 0x09, 0x8e, 0x13, 0x12, 0x3f,
0x0c, 0x54, 0x45, 0x43, 0xda, 0xef, 0x38, 0xbe, 0x3b, 0xc4, 0x2e, 0x69, 0x67, 0xc0, 0x2a, 0x1a,
0xe2, 0xe9, 0x2d, 0xd7, 0x3d, 0xf5, 0x46, 0x98, 0xc2, 0xda, 0xb4, 0x85, 0x88, 0xde, 0x80, 0x65,
0xe1, 0xd7, 0xb1, 0xd7, 0x3b, 0xf3, 0x49, 0xc0, 0x30, 0x3e, 0x28, 0xe8, 0xd1, 0xff, 0x61, 0x91,
0x79, 0x29, 0x2d, 0x81, 0x5a, 0xe6, 0xb4, 0x68, 0x1b, 0x96, 0x44, 0xdf, 0x43, 0x1e, 0x1f, 0x73,
0xd4, 0x30, 0xaf, 0x46, 0xd7, 0x60, 0x81, 0xf5, 0x15, 0x76, 0xf3, 0xd4, 0x2e, 0xab, 0x24, 0xfb,
0xc7, 0xd7, 0x42, 0xb4, 0xc6, 0x02, 0xdb, 0x3f, 0x45, 0x45, 0x30, 0x3b, 0x7d, 0x11, 0x62, 0x63,
0x91, 0x61, 0x46, 0xbe, 0x49, 0x04, 0x33, 0x93, 0x93, 0xc4, 0x49, 0x26, 0xb1, 0xb1, 0x44, 0xdb,
0x32, 0xba, 0xd4, 0xc6, 0xc6, 0xf1, 0x64, 0x98, 0x18, 0xcb, 0xaa, 0x0d, 0xd3, 0x59, 0x63, 0xb8,
0x52, 0x11, 0x1a, 0x24, 0x32, 0x48, 0xa8, 0xef, 0x05, 0x13, 0x3f, 0xe1, 0xe9, 0xce, 0x04, 0x74,
0x13, 0x74, 0xea, 0x6b, 0x83, 0x26, 0xf5, 0xb6, 0x48, 0xea, 0xf3, 0x42, 0xcc, 0xa6, 0xbd, 0xac,
0x57, 0x5a, 0xe5, 0x9c, 0x53, 0x92, 0xcc, 0xdb, 0xa0, 0xef, 0x33, 0x92, 0xd1, 0xb6, 0xe7, 0x76,
0xad, 0x7a, 0x7f, 0x88, 0xa5, 0x4d, 0xed, 0xad, 0x9f, 0x35, 0x58, 0x3b, 0x8d, 0x1c, 0x3f, 0xee,
0xe3, 0x88, 0x9a, 0xde, 0x7f, 0xe6, 0xe3, 0x88, 0x93, 0xcf, 0x51, 0x96, 0x7c, 0x44, 0xf0, 0x93,
0x54, 0x1c, 0xba, 0xd4, 0x90, 0x7b, 0x21, 0x65, 0xd2, 0x76, 0x8c, 0x9f, 0xb1, 0x36, 0x96, 0x16,
0x52, 0xce, 0xa7, 0xa9, 0x5e, 0x48, 0xd3, 0x4c, 0x92, 0xb7, 0x72, 0xf4, 0x70, 0x17, 0xd6, 0xcb,
0x1c, 0x9d, 0xaa, 0x72, 0xf8, 0x4e, 0x83, 0xf9, 0xbb, 0x81, 0xe7, 0xcb, 0xba, 0xa1, 0x9a, 0x69,
0x0d, 0x98, 0x19, 0xe1, 0x38, 0x76, 0x06, 0x82, 0x67, 0x85, 0x98, 0x72, 0x60, 0x33, 0xc7, 0x81,
0x7f, 0x63, 0x91, 0xdf, 0xe8, 0x70, 0x25, 0xbf, 0x63, 0x64, 0x8d, 0x81, 0x1f, 0x63, 0x7e, 0x10,
0xaa, 0xa3, 0x6b, 0xf5, 0xa3, 0x37, 0x72, 0x3c, 0xa9, 0x6c, 0x69, 0xb3, 0x8e, 0xcf, 0xf4, 0x02,
0x9f, 0xe5, 0x58, 0x84, 0x1e, 0x3b, 0xad, 0x22, 0x8b, 0x1c, 0x57, 0xb0, 0x43, 0xbb, 0x9c, 0x1d,
0x54, 0x96, 0x9c, 0xc9, 0xb1, 0x64, 0x86, 0x8b, 0xe8, 0x7c, 0xb3, 0x79, 0x2e, 0xa2, 0xb3, 0x15,
0x18, 0xa6, 0x53, 0xc6, 0x30, 0x0a, 0x3f, 0x42, 0x96, 0x1f, 0xb3, 0xcc, 0x3b, 0x77, 0x0e, 0xf3,
0xce, 0x17, 0x98, 0x57, 0x30, 0xd3, 0x42, 0x0d, 0x33, 0x2d, 0x5e, 0x80, 0x99, 0x96, 0x4a, 0x98,
0xe9, 0x23, 0xd8, 0xa8, 0x0e, 0x86, 0xa9, 0x02, 0xff, 0x47, 0x0d, 0x8c, 0x13, 0x9c, 0xd0, 0xdc,
0xa1, 0x43, 0x0b, 0x1c, 0xeb, 0x93, 0xc0, 0x84, 0x59, 0x5f, 0x6c, 0x03, 0x0f, 0x2a, 0x21, 0xe7,
0x43, 0xb2, 0x59, 0x0c, 0x49, 0x99, 0x28, 0xba, 0x9a, 0x28, 0x75, 0x69, 0xf0, 0x39, 0xcc, 0x3f,
0x98, 0x78, 0xc9, 0x05, 0xd2, 0x33, 0x57, 0x72, 0x34, 0x8a, 0x25, 0x47, 0x79, 0x9a, 0xd6, 0xd5,
0x7d, 0x2f, 0x1b, 0x60, 0xe4, 0x71, 0xa7, 0x4d, 0xa4, 0x54, 0xae, 0x76, 0x85, 0x17, 0xd1, 0x8d,
0xb4, 0x88, 0x46, 0xa0, 0xd3, 0x53, 0x94, 0xcd, 0x4c, 0xbf, 0x89, 0xce, 0xeb, 0xc9, 0x7a, 0x8b,
0x7e, 0x93, 0xdd, 0x8a, 0xf0, 0x98, 0xec, 0x16, 0x03, 0x82, 0x4b, 0x24, 0x93, 0x9c, 0xd4, 0x05,
0x1a, 0xbd, 0x6d, 0x1a, 0xbd, 0x79, 0x35, 0x19, 0xb5, 0x4f, 0x6a, 0x8a, 0x19, 0x16, 0x85, 0x7d,
0x5e, 0x53, 0x30, 0x1c, 0x82, 0xb4, 0xda, 0x52, 0x34, 0xa4, 0xfd, 0xd3, 0x34, 0xb2, 0x59, 0xda,
0x28, 0x1a, 0xeb, 0x5b, 0x0d, 0x56, 0x29, 0x0c, 0xec, 0xa2, 0x70, 0x38, 0x19, 0x0e, 0x29, 0x02,
0xeb, 0xd0, 0x9e, 0x10, 0x34, 0xc4, 0x7d, 0x81, 0x4b, 0xc4, 0x87, 0x28, 0xbd, 0x2f, 0xd0, 0x6f,
0x02, 0xf3, 0xd3, 0xc0, 0x63, 0xae, 0x13, 0x14, 0x74, 0x5b, 0xca, 0x99, 0xa0, 0xd2, 0x73, 0x41,
0x55, 0x59, 0x79, 0x5a, 0xbf, 0x6b, 0xb0, 0x26, 0x8e, 0xb5, 0x7b, 0xf2, 0xf6, 0x56, 0x1f, 0x24,
0xd3, 0x5e, 0x0e, 0xd6, 0xa1, 0xdd, 0xf7, 0x86, 0x09, 0x8e, 0xa8, 0x7f, 0x2d, 0x9b, 0x4b, 0x64,
0x26, 0x1f, 0x3f, 0x4f, 0x4e, 0xf0, 0x98, 0x17, 0x71, 0x42, 0xcc, 0x84, 0x55, 0x3b, 0x17, 0x56,
0x3f, 0x68, 0xb0, 0x5e, 0xe6, 0xf9, 0x54, 0xe7, 0xfd, 0x3b, 0x99, 0x8b, 0x2e, 0xbb, 0x5a, 0x98,
0xea, 0xd5, 0x22, 0xbb, 0x69, 0x99, 0x9b, 0xae, 0xe2, 0xbe, 0x9e, 0x71, 0xdf, 0xfa, 0xa9, 0xe0,
0x62, 0x7c, 0xfe, 0x5d, 0x64, 0x33, 0xe3, 0x4a, 0x83, 0xde, 0xcd, 0xd4, 0xe9, 0x2a, 0xcf, 0xc9,
0xa0, 0x78, 0x4e, 0x06, 0x17, 0x3c, 0x27, 0x5f, 0x69, 0x70, 0xb9, 0xd4, 0xd1, 0xd7, 0x0d, 0xa6,
0xf5, 0x87, 0x06, 0xe8, 0x03, 0xaf, 0x77, 0xa6, 0xd8, 0xd5, 0xc3, 0x75, 0x13, 0xe6, 0x26, 0x9e,
0x4b, 0xfa, 0x92, 0xb1, 0x78, 0x01, 0x59, 0x37, 0x9b, 0x6a, 0xce, 0xa8, 0xc2, 0x89, 0xe5, 0xa5,
0x8e, 0x4b, 0x15, 0x1c, 0x9b, 0x03, 0xb9, 0x55, 0x0f, 0x72, 0x3e, 0x60, 0xdf, 0x82, 0x4e, 0xd7,
0xdd, 0x65, 0x67, 0x11, 0x65, 0xb7, 0x6e, 0xfa, 0x44, 0xd0, 0x75, 0x99, 0x2b, 0xf4, 0xec, 0x62,
0x19, 0xcf, 0x25, 0xeb, 0x19, 0xac, 0x16, 0x00, 0x99, 0x6a, 0x5b, 0x76, 0xa0, 0xe3, 0xb9, 0xbb,
0x7c, 0x8e, 0xec, 0xed, 0x59, 0xfa, 0x65, 0xa7, 0x26, 0xd6, 0x19, 0xac, 0x0d, 0x70, 0x42, 0xea,
0x3a, 0xec, 0xd2, 0xd9, 0x05, 0x33, 0x48, 0x70, 0xb4, 0x1a, 0x70, 0x1a, 0xf5, 0xe0, 0x34, 0x73,
0xe0, 0x7c, 0xd9, 0x80, 0x8e, 0xbc, 0xac, 0xa7, 0xdb, 0xed, 0x66, 0xb7, 0xdb, 0xfd, 0xd7, 0x6f,
0xea, 0x9b, 0x00, 0x3d, 0xfa, 0x5c, 0x23, 0x8f, 0x0f, 0xdd, 0x56, 0x34, 0xa4, 0x67, 0x40, 0xaa,
0x81, 0xae, 0xcb, 0x4b, 0x30, 0x21, 0x12, 0x7c, 0x58, 0x9c, 0xb3, 0xeb, 0x0f, 0x39, 0x40, 0x16,
0x6c, 0x55, 0x65, 0x7d, 0x01, 0xeb, 0x65, 0x80, 0xd7, 0x6e, 0xb6, 0x09, 0xb3, 0x07, 0x51, 0x14,
0x28, 0xdb, 0x2d, 0x65, 0xb2, 0xe1, 0x72, 0x98, 0xca, 0xe7, 0x92, 0xd4, 0xc4, 0xfa, 0x4d, 0x83,
0x4b, 0x9e, 0xff, 0x99, 0x97, 0x60, 0xb2, 0x29, 0xa7, 0x81, 0xac, 0x17, 0xa6, 0xdd, 0xf0, 0xca,
0x67, 0x29, 0x25, 0xef, 0xf4, 0x4c, 0xde, 0x19, 0x30, 0xc3, 0xd3, 0xd3, 0x68, 0x51, 0xe6, 0x13,
0x62, 0x6d, 0x66, 0xbd, 0x80, 0xb5, 0x12, 0xbf, 0xa7, 0x4d, 0x12, 0x99, 0x0c, 0xd5, 0x49, 0x22,
0x3f, 0xad, 0x97, 0x1a, 0x5c, 0x92, 0xd7, 0xc2, 0xe1, 0xf0, 0x22, 0x8c, 0xf5, 0x4f, 0xbc, 0xad,
0x7d, 0xa5, 0x1c, 0xe3, 0x8a, 0x1b, 0xaf, 0x9b, 0xbe, 0x77, 0x7f, 0x99, 0x05, 0xf6, 0x1a, 0x4d,
0x78, 0xb9, 0x97, 0xbe, 0x6b, 0xa2, 0x35, 0x3e, 0x40, 0xf6, 0x81, 0xd9, 0x5c, 0x2f, 0x53, 0xc7,
0x21, 0xba, 0x0e, 0x9d, 0xa7, 0xe2, 0x42, 0x89, 0x56, 0xb9, 0x91, 0x7a, 0xc5, 0x34, 0x57, 0x44,
0xcf, 0xf4, 0xc9, 0xfb, 0x3a, 0x74, 0xc6, 0xa2, 0xcc, 0x95, 0x9d, 0xd4, 0xc2, 0xb7, 0xac, 0xd3,
0x6d, 0x58, 0x18, 0xa8, 0xaf, 0x92, 0xe8, 0x72, 0xee, 0xb2, 0x2f, 0x8e, 0x6c, 0xd3, 0x28, 0x6f,
0x88, 0x43, 0x74, 0x03, 0xe6, 0x63, 0xe5, 0xad, 0x11, 0x89, 0x55, 0xe5, 0x1e, 0x20, 0xcb, 0xa6,
0xff, 0x04, 0x2e, 0x0f, 0xca, 0x5f, 0x15, 0xd0, 0xd5, 0xfa, 0x57, 0x07, 0x32, 0xa0, 0x75, 0x9e,
0x49, 0x1c, 0xa2, 0x07, 0x80, 0x92, 0xc2, 0x45, 0x1f, 0x6d, 0xf0, 0x9e, 0xa5, 0x8f, 0x15, 0xe6,
0x7f, 0x6b, 0x5a, 0xe3, 0x10, 0xf5, 0xc0, 0x18, 0x54, 0x5c, 0xa4, 0x90, 0x95, 0xf9, 0x7b, 0xa0,
0xf4, 0xda, 0x6d, 0xfe, 0xef, 0x5c, 0x1b, 0xe6, 0xf7, 0xa0, 0x50, 0xde, 0x49, 0xbf, 0x4b, 0x6b,
0x56, 0xe9, 0x77, 0x45, 0x5d, 0x78, 0x0a, 0xab, 0x83, 0x62, 0x95, 0x83, 0xca, 0x7b, 0xc9, 0x7d,
0xdf, 0xac, 0x6b, 0x8e, 0x43, 0x74, 0x07, 0x96, 0xce, 0xb2, 0x07, 0x34, 0x12, 0xff, 0x91, 0x14,
0x2b, 0x19, 0xd3, 0xac, 0x6a, 0x92, 0x4b, 0xce, 0x1d, 0x00, 0x72, 0xc9, 0xa5, 0x87, 0xb1, 0x5c,
0x72, 0xc5, 0xc9, 0x71, 0x0c, 0x2b, 0x05, 0x6a, 0x44, 0x57, 0x78, 0x9f, 0x32, 0xb2, 0x37, 0x37,
0xaa, 0x1b, 0xd9, 0x78, 0x83, 0x3c, 0xcf, 0xc8, 0xf1, 0xca, 0x88, 0xd0, 0xdc, 0xa8, 0x6e, 0x8c,
0xc3, 0xdb, 0x4b, 0x8f, 0x16, 0x76, 0xd8, 0x9f, 0x59, 0xef, 0xd2, 0xdf, 0x27, 0x6d, 0xfa, 0x9f,
0xd6, 0xf5, 0xbf, 0x02, 0x00, 0x00, 0xff, 0xff, 0xdb, 0x12, 0xfa, 0x38, 0xe8, 0x1a, 0x00, 0x00,
}