pb

package
v0.0.0-...-efd9455 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 2, 2022 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var Chat_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "pbChat.Chat",
	HandlerType: (*ChatServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "GetMaxAndMinSeq",
			Handler:    _Chat_GetMaxAndMinSeq_Handler,
		},
		{
			MethodName: "GetSuperGroupMaxAndMinSeq",
			Handler:    _Chat_GetSuperGroupMaxAndMinSeq_Handler,
		},
		{
			MethodName: "PullMessageBySeqList",
			Handler:    _Chat_PullMessageBySeqList_Handler,
		},
		{
			MethodName: "PullMessageBySuperGroupSeqList",
			Handler:    _Chat_PullMessageBySuperGroupSeqList_Handler,
		},
		{
			MethodName: "SendMsg",
			Handler:    _Chat_SendMsg_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "chat.proto",
}

Chat_ServiceDesc is the grpc.ServiceDesc for Chat service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var Example_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "server_api_params.example",
	HandlerType: (*ExampleServer)(nil),
	Methods:     []grpc.MethodDesc{},
	Streams:     []grpc.StreamDesc{},
	Metadata:    "ws.proto",
}

Example_ServiceDesc is the grpc.ServiceDesc for Example service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

Functions

func RegisterChatServer

func RegisterChatServer(s grpc.ServiceRegistrar, srv ChatServer)

func RegisterExampleServer

func RegisterExampleServer(s grpc.ServiceRegistrar, srv ExampleServer)

Types

type BlackAddedTips

type BlackAddedTips struct {
	FromToUserID *FromToUserID `protobuf:"bytes,1,opt,name=fromToUserID,proto3" json:"fromToUserID,omitempty"`
	// contains filtered or unexported fields
}

func (*BlackAddedTips) Descriptor deprecated

func (*BlackAddedTips) Descriptor() ([]byte, []int)

Deprecated: Use BlackAddedTips.ProtoReflect.Descriptor instead.

func (*BlackAddedTips) GetFromToUserID

func (x *BlackAddedTips) GetFromToUserID() *FromToUserID

func (*BlackAddedTips) ProtoMessage

func (*BlackAddedTips) ProtoMessage()

func (*BlackAddedTips) ProtoReflect

func (x *BlackAddedTips) ProtoReflect() protoreflect.Message

func (*BlackAddedTips) Reset

func (x *BlackAddedTips) Reset()

func (*BlackAddedTips) String

func (x *BlackAddedTips) String() string

type BlackDeletedTips

type BlackDeletedTips struct {
	FromToUserID *FromToUserID `protobuf:"bytes,1,opt,name=fromToUserID,proto3" json:"fromToUserID,omitempty"`
	// contains filtered or unexported fields
}

func (*BlackDeletedTips) Descriptor deprecated

func (*BlackDeletedTips) Descriptor() ([]byte, []int)

Deprecated: Use BlackDeletedTips.ProtoReflect.Descriptor instead.

func (*BlackDeletedTips) GetFromToUserID

func (x *BlackDeletedTips) GetFromToUserID() *FromToUserID

func (*BlackDeletedTips) ProtoMessage

func (*BlackDeletedTips) ProtoMessage()

func (*BlackDeletedTips) ProtoReflect

func (x *BlackDeletedTips) ProtoReflect() protoreflect.Message

func (*BlackDeletedTips) Reset

func (x *BlackDeletedTips) Reset()

func (*BlackDeletedTips) String

func (x *BlackDeletedTips) String() string

type BlackInfo

type BlackInfo struct {
	OwnerUserID    string          `protobuf:"bytes,1,opt,name=ownerUserID,proto3" json:"ownerUserID,omitempty"`
	CreateTime     uint32          `protobuf:"varint,2,opt,name=createTime,proto3" json:"createTime,omitempty"`
	BlackUserInfo  *PublicUserInfo `protobuf:"bytes,3,opt,name=blackUserInfo,proto3" json:"blackUserInfo,omitempty"`
	AddSource      int32           `protobuf:"varint,4,opt,name=addSource,proto3" json:"addSource,omitempty"`
	OperatorUserID string          `protobuf:"bytes,5,opt,name=operatorUserID,proto3" json:"operatorUserID,omitempty"`
	Ex             string          `protobuf:"bytes,6,opt,name=ex,proto3" json:"ex,omitempty"`
	// contains filtered or unexported fields
}

func (*BlackInfo) Descriptor deprecated

func (*BlackInfo) Descriptor() ([]byte, []int)

Deprecated: Use BlackInfo.ProtoReflect.Descriptor instead.

func (*BlackInfo) GetAddSource

func (x *BlackInfo) GetAddSource() int32

func (*BlackInfo) GetBlackUserInfo

func (x *BlackInfo) GetBlackUserInfo() *PublicUserInfo

func (*BlackInfo) GetCreateTime

func (x *BlackInfo) GetCreateTime() uint32

func (*BlackInfo) GetEx

func (x *BlackInfo) GetEx() string

func (*BlackInfo) GetOperatorUserID

func (x *BlackInfo) GetOperatorUserID() string

func (*BlackInfo) GetOwnerUserID

func (x *BlackInfo) GetOwnerUserID() string

func (*BlackInfo) ProtoMessage

func (*BlackInfo) ProtoMessage()

func (*BlackInfo) ProtoReflect

func (x *BlackInfo) ProtoReflect() protoreflect.Message

func (*BlackInfo) Reset

func (x *BlackInfo) Reset()

func (*BlackInfo) String

func (x *BlackInfo) String() string

type ChatClient

type ChatClient interface {
	GetMaxAndMinSeq(ctx context.Context, in *GetMaxAndMinSeqReq, opts ...grpc.CallOption) (*GetMaxAndMinSeqResp, error)
	GetSuperGroupMaxAndMinSeq(ctx context.Context, in *GetMaxAndMinSuperGroupSeqReq, opts ...grpc.CallOption) (*GetMaxAndMinSuperGroupSeqResp, error)
	PullMessageBySeqList(ctx context.Context, in *WrapPullMessageBySeqListReq, opts ...grpc.CallOption) (*WrapPullMessageBySeqListResp, error)
	PullMessageBySuperGroupSeqList(ctx context.Context, in *PullMessageBySuperGroupSeqListReq, opts ...grpc.CallOption) (*WrapPullMessageBySeqListResp, error)
	SendMsg(ctx context.Context, in *SendMsgReq, opts ...grpc.CallOption) (*SendMsgResp, error)
}

ChatClient is the client API for Chat service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

func NewChatClient

func NewChatClient(cc grpc.ClientConnInterface) ChatClient

type ChatServer

type ChatServer interface {
	GetMaxAndMinSeq(context.Context, *GetMaxAndMinSeqReq) (*GetMaxAndMinSeqResp, error)
	GetSuperGroupMaxAndMinSeq(context.Context, *GetMaxAndMinSuperGroupSeqReq) (*GetMaxAndMinSuperGroupSeqResp, error)
	PullMessageBySeqList(context.Context, *WrapPullMessageBySeqListReq) (*WrapPullMessageBySeqListResp, error)
	PullMessageBySuperGroupSeqList(context.Context, *PullMessageBySuperGroupSeqListReq) (*WrapPullMessageBySeqListResp, error)
	SendMsg(context.Context, *SendMsgReq) (*SendMsgResp, error)
	// contains filtered or unexported methods
}

ChatServer is the server API for Chat service. All implementations must embed UnimplementedChatServer for forward compatibility

type ConversationSetPrivateTips

type ConversationSetPrivateTips struct {
	RecvID    string `protobuf:"bytes,1,opt,name=recvID,proto3" json:"recvID,omitempty"`
	SendID    string `protobuf:"bytes,2,opt,name=sendID,proto3" json:"sendID,omitempty"`
	IsPrivate bool   `protobuf:"varint,3,opt,name=isPrivate,proto3" json:"isPrivate,omitempty"`
	// contains filtered or unexported fields
}

func (*ConversationSetPrivateTips) Descriptor deprecated

func (*ConversationSetPrivateTips) Descriptor() ([]byte, []int)

Deprecated: Use ConversationSetPrivateTips.ProtoReflect.Descriptor instead.

func (*ConversationSetPrivateTips) GetIsPrivate

func (x *ConversationSetPrivateTips) GetIsPrivate() bool

func (*ConversationSetPrivateTips) GetRecvID

func (x *ConversationSetPrivateTips) GetRecvID() string

func (*ConversationSetPrivateTips) GetSendID

func (x *ConversationSetPrivateTips) GetSendID() string

func (*ConversationSetPrivateTips) ProtoMessage

func (*ConversationSetPrivateTips) ProtoMessage()

func (*ConversationSetPrivateTips) ProtoReflect

func (*ConversationSetPrivateTips) Reset

func (x *ConversationSetPrivateTips) Reset()

func (*ConversationSetPrivateTips) String

func (x *ConversationSetPrivateTips) String() string

type ConversationUpdateTips

type ConversationUpdateTips struct {
	UserID string `protobuf:"bytes,1,opt,name=UserID,proto3" json:"UserID,omitempty"`
	// contains filtered or unexported fields
}

////////////////////conversation/////////////////////

func (*ConversationUpdateTips) Descriptor deprecated

func (*ConversationUpdateTips) Descriptor() ([]byte, []int)

Deprecated: Use ConversationUpdateTips.ProtoReflect.Descriptor instead.

func (*ConversationUpdateTips) GetUserID

func (x *ConversationUpdateTips) GetUserID() string

func (*ConversationUpdateTips) ProtoMessage

func (*ConversationUpdateTips) ProtoMessage()

func (*ConversationUpdateTips) ProtoReflect

func (x *ConversationUpdateTips) ProtoReflect() protoreflect.Message

func (*ConversationUpdateTips) Reset

func (x *ConversationUpdateTips) Reset()

func (*ConversationUpdateTips) String

func (x *ConversationUpdateTips) String() string

type DelMsgListReq

type DelMsgListReq struct {
	OpUserID    string   `protobuf:"bytes,1,opt,name=opUserID,proto3" json:"opUserID,omitempty"`
	UserID      string   `protobuf:"bytes,2,opt,name=userID,proto3" json:"userID,omitempty"`
	SeqList     []uint32 `protobuf:"varint,3,rep,packed,name=seqList,proto3" json:"seqList,omitempty"`
	OperationID string   `protobuf:"bytes,4,opt,name=operationID,proto3" json:"operationID,omitempty"`
	// contains filtered or unexported fields
}

func (*DelMsgListReq) Descriptor deprecated

func (*DelMsgListReq) Descriptor() ([]byte, []int)

Deprecated: Use DelMsgListReq.ProtoReflect.Descriptor instead.

func (*DelMsgListReq) GetOpUserID

func (x *DelMsgListReq) GetOpUserID() string

func (*DelMsgListReq) GetOperationID

func (x *DelMsgListReq) GetOperationID() string

func (*DelMsgListReq) GetSeqList

func (x *DelMsgListReq) GetSeqList() []uint32

func (*DelMsgListReq) GetUserID

func (x *DelMsgListReq) GetUserID() string

func (*DelMsgListReq) ProtoMessage

func (*DelMsgListReq) ProtoMessage()

func (*DelMsgListReq) ProtoReflect

func (x *DelMsgListReq) ProtoReflect() protoreflect.Message

func (*DelMsgListReq) Reset

func (x *DelMsgListReq) Reset()

func (*DelMsgListReq) String

func (x *DelMsgListReq) String() string

type DelMsgListResp

type DelMsgListResp struct {
	ErrCode int32  `protobuf:"varint,1,opt,name=errCode,proto3" json:"errCode,omitempty"`
	ErrMsg  string `protobuf:"bytes,2,opt,name=errMsg,proto3" json:"errMsg,omitempty"`
	// contains filtered or unexported fields
}

func (*DelMsgListResp) Descriptor deprecated

func (*DelMsgListResp) Descriptor() ([]byte, []int)

Deprecated: Use DelMsgListResp.ProtoReflect.Descriptor instead.

func (*DelMsgListResp) GetErrCode

func (x *DelMsgListResp) GetErrCode() int32

func (*DelMsgListResp) GetErrMsg

func (x *DelMsgListResp) GetErrMsg() string

func (*DelMsgListResp) ProtoMessage

func (*DelMsgListResp) ProtoMessage()

func (*DelMsgListResp) ProtoReflect

func (x *DelMsgListResp) ProtoReflect() protoreflect.Message

func (*DelMsgListResp) Reset

func (x *DelMsgListResp) Reset()

func (*DelMsgListResp) String

func (x *DelMsgListResp) String() string

type Department

type Department struct {
	DepartmentID     string `protobuf:"bytes,1,opt,name=departmentID,proto3" json:"departmentID,omitempty"`
	FaceURL          string `protobuf:"bytes,2,opt,name=faceURL,proto3" json:"faceURL,omitempty"`
	Name             string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	ParentID         string `protobuf:"bytes,4,opt,name=parentID,proto3" json:"parentID,omitempty"`
	Order            int32  `protobuf:"varint,5,opt,name=order,proto3" json:"order,omitempty"`
	DepartmentType   int32  `protobuf:"varint,6,opt,name=departmentType,proto3" json:"departmentType,omitempty"`
	CreateTime       uint32 `protobuf:"varint,7,opt,name=createTime,proto3" json:"createTime,omitempty"`
	SubDepartmentNum uint32 `protobuf:"varint,8,opt,name=subDepartmentNum,proto3" json:"subDepartmentNum,omitempty"`
	MemberNum        uint32 `protobuf:"varint,9,opt,name=memberNum,proto3" json:"memberNum,omitempty"`
	Ex               string `protobuf:"bytes,10,opt,name=ex,proto3" json:"ex,omitempty"`
	// contains filtered or unexported fields
}

func (*Department) Descriptor deprecated

func (*Department) Descriptor() ([]byte, []int)

Deprecated: Use Department.ProtoReflect.Descriptor instead.

func (*Department) GetCreateTime

func (x *Department) GetCreateTime() uint32

func (*Department) GetDepartmentID

func (x *Department) GetDepartmentID() string

func (*Department) GetDepartmentType

func (x *Department) GetDepartmentType() int32

func (*Department) GetEx

func (x *Department) GetEx() string

func (*Department) GetFaceURL

func (x *Department) GetFaceURL() string

func (*Department) GetMemberNum

func (x *Department) GetMemberNum() uint32

func (*Department) GetName

func (x *Department) GetName() string

func (*Department) GetOrder

func (x *Department) GetOrder() int32

func (*Department) GetParentID

func (x *Department) GetParentID() string

func (*Department) GetSubDepartmentNum

func (x *Department) GetSubDepartmentNum() uint32

func (*Department) ProtoMessage

func (*Department) ProtoMessage()

func (*Department) ProtoReflect

func (x *Department) ProtoReflect() protoreflect.Message

func (*Department) Reset

func (x *Department) Reset()

func (*Department) String

func (x *Department) String() string

type DepartmentMember

type DepartmentMember struct {
	UserID       string `protobuf:"bytes,1,opt,name=userID,proto3" json:"userID,omitempty"`
	DepartmentID string `protobuf:"bytes,2,opt,name=departmentID,proto3" json:"departmentID,omitempty"`
	Order        int32  `protobuf:"varint,3,opt,name=order,proto3" json:"order,omitempty"`
	Position     string `protobuf:"bytes,4,opt,name=position,proto3" json:"position,omitempty"`
	Leader       int32  `protobuf:"varint,5,opt,name=leader,proto3" json:"leader,omitempty"`
	Status       int32  `protobuf:"varint,6,opt,name=status,proto3" json:"status,omitempty"`
	Ex           string `protobuf:"bytes,7,opt,name=ex,proto3" json:"ex,omitempty"`
	// contains filtered or unexported fields
}

func (*DepartmentMember) Descriptor deprecated

func (*DepartmentMember) Descriptor() ([]byte, []int)

Deprecated: Use DepartmentMember.ProtoReflect.Descriptor instead.

func (*DepartmentMember) GetDepartmentID

func (x *DepartmentMember) GetDepartmentID() string

func (*DepartmentMember) GetEx

func (x *DepartmentMember) GetEx() string

func (*DepartmentMember) GetLeader

func (x *DepartmentMember) GetLeader() int32

func (*DepartmentMember) GetOrder

func (x *DepartmentMember) GetOrder() int32

func (*DepartmentMember) GetPosition

func (x *DepartmentMember) GetPosition() string

func (*DepartmentMember) GetStatus

func (x *DepartmentMember) GetStatus() int32

func (*DepartmentMember) GetUserID

func (x *DepartmentMember) GetUserID() string

func (*DepartmentMember) ProtoMessage

func (*DepartmentMember) ProtoMessage()

func (*DepartmentMember) ProtoReflect

func (x *DepartmentMember) ProtoReflect() protoreflect.Message

func (*DepartmentMember) Reset

func (x *DepartmentMember) Reset()

func (*DepartmentMember) String

func (x *DepartmentMember) String() string

type ExampleClient

type ExampleClient interface {
}

ExampleClient is the client API for Example service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

func NewExampleClient

func NewExampleClient(cc grpc.ClientConnInterface) ExampleClient

type ExampleServer

type ExampleServer interface {
	// contains filtered or unexported methods
}

ExampleServer is the server API for Example service. All implementations must embed UnimplementedExampleServer for forward compatibility

type FriendAddedTips

type FriendAddedTips struct {
	Friend        *FriendInfo     `protobuf:"bytes,1,opt,name=friend,proto3" json:"friend,omitempty"`
	OperationTime int64           `protobuf:"varint,2,opt,name=operationTime,proto3" json:"operationTime,omitempty"`
	OpUser        *PublicUserInfo `protobuf:"bytes,3,opt,name=opUser,proto3" json:"opUser,omitempty"` //who do this
	// contains filtered or unexported fields
}

FromUserID Added a friend ToUserID

func (*FriendAddedTips) Descriptor deprecated

func (*FriendAddedTips) Descriptor() ([]byte, []int)

Deprecated: Use FriendAddedTips.ProtoReflect.Descriptor instead.

func (*FriendAddedTips) GetFriend

func (x *FriendAddedTips) GetFriend() *FriendInfo

func (*FriendAddedTips) GetOpUser

func (x *FriendAddedTips) GetOpUser() *PublicUserInfo

func (*FriendAddedTips) GetOperationTime

func (x *FriendAddedTips) GetOperationTime() int64

func (*FriendAddedTips) ProtoMessage

func (*FriendAddedTips) ProtoMessage()

func (*FriendAddedTips) ProtoReflect

func (x *FriendAddedTips) ProtoReflect() protoreflect.Message

func (*FriendAddedTips) Reset

func (x *FriendAddedTips) Reset()

func (*FriendAddedTips) String

func (x *FriendAddedTips) String() string

type FriendApplication

type FriendApplication struct {
	AddTime    int64  `protobuf:"varint,1,opt,name=addTime,proto3" json:"addTime,omitempty"`
	AddSource  string `protobuf:"bytes,2,opt,name=addSource,proto3" json:"addSource,omitempty"`
	AddWording string `protobuf:"bytes,3,opt,name=addWording,proto3" json:"addWording,omitempty"`
	// contains filtered or unexported fields
}

func (*FriendApplication) Descriptor deprecated

func (*FriendApplication) Descriptor() ([]byte, []int)

Deprecated: Use FriendApplication.ProtoReflect.Descriptor instead.

func (*FriendApplication) GetAddSource

func (x *FriendApplication) GetAddSource() string

func (*FriendApplication) GetAddTime

func (x *FriendApplication) GetAddTime() int64

func (*FriendApplication) GetAddWording

func (x *FriendApplication) GetAddWording() string

func (*FriendApplication) ProtoMessage

func (*FriendApplication) ProtoMessage()

func (*FriendApplication) ProtoReflect

func (x *FriendApplication) ProtoReflect() protoreflect.Message

func (*FriendApplication) Reset

func (x *FriendApplication) Reset()

func (*FriendApplication) String

func (x *FriendApplication) String() string

type FriendApplicationApprovedTips

type FriendApplicationApprovedTips struct {
	FromToUserID *FromToUserID `protobuf:"bytes,1,opt,name=fromToUserID,proto3" json:"fromToUserID,omitempty"`
	HandleMsg    string        `protobuf:"bytes,2,opt,name=handleMsg,proto3" json:"handleMsg,omitempty"`
	// contains filtered or unexported fields
}

FromUserID accept or reject ToUserID

func (*FriendApplicationApprovedTips) Descriptor deprecated

func (*FriendApplicationApprovedTips) Descriptor() ([]byte, []int)

Deprecated: Use FriendApplicationApprovedTips.ProtoReflect.Descriptor instead.

func (*FriendApplicationApprovedTips) GetFromToUserID

func (x *FriendApplicationApprovedTips) GetFromToUserID() *FromToUserID

func (*FriendApplicationApprovedTips) GetHandleMsg

func (x *FriendApplicationApprovedTips) GetHandleMsg() string

func (*FriendApplicationApprovedTips) ProtoMessage

func (*FriendApplicationApprovedTips) ProtoMessage()

func (*FriendApplicationApprovedTips) ProtoReflect

func (*FriendApplicationApprovedTips) Reset

func (x *FriendApplicationApprovedTips) Reset()

func (*FriendApplicationApprovedTips) String

type FriendApplicationRejectedTips

type FriendApplicationRejectedTips struct {
	FromToUserID *FromToUserID `protobuf:"bytes,1,opt,name=fromToUserID,proto3" json:"fromToUserID,omitempty"`
	HandleMsg    string        `protobuf:"bytes,2,opt,name=handleMsg,proto3" json:"handleMsg,omitempty"`
	// contains filtered or unexported fields
}

FromUserID accept or reject ToUserID

func (*FriendApplicationRejectedTips) Descriptor deprecated

func (*FriendApplicationRejectedTips) Descriptor() ([]byte, []int)

Deprecated: Use FriendApplicationRejectedTips.ProtoReflect.Descriptor instead.

func (*FriendApplicationRejectedTips) GetFromToUserID

func (x *FriendApplicationRejectedTips) GetFromToUserID() *FromToUserID

func (*FriendApplicationRejectedTips) GetHandleMsg

func (x *FriendApplicationRejectedTips) GetHandleMsg() string

func (*FriendApplicationRejectedTips) ProtoMessage

func (*FriendApplicationRejectedTips) ProtoMessage()

func (*FriendApplicationRejectedTips) ProtoReflect

func (*FriendApplicationRejectedTips) Reset

func (x *FriendApplicationRejectedTips) Reset()

func (*FriendApplicationRejectedTips) String

type FriendApplicationTips

type FriendApplicationTips struct {
	FromToUserID *FromToUserID `protobuf:"bytes,1,opt,name=fromToUserID,proto3" json:"fromToUserID,omitempty"`
	// contains filtered or unexported fields
}

FromUserID apply to add ToUserID

func (*FriendApplicationTips) Descriptor deprecated

func (*FriendApplicationTips) Descriptor() ([]byte, []int)

Deprecated: Use FriendApplicationTips.ProtoReflect.Descriptor instead.

func (*FriendApplicationTips) GetFromToUserID

func (x *FriendApplicationTips) GetFromToUserID() *FromToUserID

func (*FriendApplicationTips) ProtoMessage

func (*FriendApplicationTips) ProtoMessage()

func (*FriendApplicationTips) ProtoReflect

func (x *FriendApplicationTips) ProtoReflect() protoreflect.Message

func (*FriendApplicationTips) Reset

func (x *FriendApplicationTips) Reset()

func (*FriendApplicationTips) String

func (x *FriendApplicationTips) String() string

type FriendDeletedTips

type FriendDeletedTips struct {
	FromToUserID *FromToUserID `protobuf:"bytes,1,opt,name=fromToUserID,proto3" json:"fromToUserID,omitempty"`
	// contains filtered or unexported fields
}

FromUserID deleted a friend ToUserID

func (*FriendDeletedTips) Descriptor deprecated

func (*FriendDeletedTips) Descriptor() ([]byte, []int)

Deprecated: Use FriendDeletedTips.ProtoReflect.Descriptor instead.

func (*FriendDeletedTips) GetFromToUserID

func (x *FriendDeletedTips) GetFromToUserID() *FromToUserID

func (*FriendDeletedTips) ProtoMessage

func (*FriendDeletedTips) ProtoMessage()

func (*FriendDeletedTips) ProtoReflect

func (x *FriendDeletedTips) ProtoReflect() protoreflect.Message

func (*FriendDeletedTips) Reset

func (x *FriendDeletedTips) Reset()

func (*FriendDeletedTips) String

func (x *FriendDeletedTips) String() string

type FriendInfo

type FriendInfo struct {
	OwnerUserID    string    `protobuf:"bytes,1,opt,name=ownerUserID,proto3" json:"ownerUserID,omitempty"`
	Remark         string    `protobuf:"bytes,2,opt,name=remark,proto3" json:"remark,omitempty"`
	CreateTime     uint32    `protobuf:"varint,3,opt,name=createTime,proto3" json:"createTime,omitempty"`
	FriendUser     *UserInfo `protobuf:"bytes,4,opt,name=friendUser,proto3" json:"friendUser,omitempty"`
	AddSource      int32     `protobuf:"varint,5,opt,name=addSource,proto3" json:"addSource,omitempty"`
	OperatorUserID string    `protobuf:"bytes,6,opt,name=operatorUserID,proto3" json:"operatorUserID,omitempty"`
	Ex             string    `protobuf:"bytes,7,opt,name=ex,proto3" json:"ex,omitempty"`
	// contains filtered or unexported fields
}

func (*FriendInfo) Descriptor deprecated

func (*FriendInfo) Descriptor() ([]byte, []int)

Deprecated: Use FriendInfo.ProtoReflect.Descriptor instead.

func (*FriendInfo) GetAddSource

func (x *FriendInfo) GetAddSource() int32

func (*FriendInfo) GetCreateTime

func (x *FriendInfo) GetCreateTime() uint32

func (*FriendInfo) GetEx

func (x *FriendInfo) GetEx() string

func (*FriendInfo) GetFriendUser

func (x *FriendInfo) GetFriendUser() *UserInfo

func (*FriendInfo) GetOperatorUserID

func (x *FriendInfo) GetOperatorUserID() string

func (*FriendInfo) GetOwnerUserID

func (x *FriendInfo) GetOwnerUserID() string

func (*FriendInfo) GetRemark

func (x *FriendInfo) GetRemark() string

func (*FriendInfo) ProtoMessage

func (*FriendInfo) ProtoMessage()

func (*FriendInfo) ProtoReflect

func (x *FriendInfo) ProtoReflect() protoreflect.Message

func (*FriendInfo) Reset

func (x *FriendInfo) Reset()

func (*FriendInfo) String

func (x *FriendInfo) String() string

type FriendInfoChangedTips

type FriendInfoChangedTips struct {
	FromToUserID *FromToUserID `protobuf:"bytes,1,opt,name=fromToUserID,proto3" json:"fromToUserID,omitempty"`
	// contains filtered or unexported fields
}

func (*FriendInfoChangedTips) Descriptor deprecated

func (*FriendInfoChangedTips) Descriptor() ([]byte, []int)

Deprecated: Use FriendInfoChangedTips.ProtoReflect.Descriptor instead.

func (*FriendInfoChangedTips) GetFromToUserID

func (x *FriendInfoChangedTips) GetFromToUserID() *FromToUserID

func (*FriendInfoChangedTips) ProtoMessage

func (*FriendInfoChangedTips) ProtoMessage()

func (*FriendInfoChangedTips) ProtoReflect

func (x *FriendInfoChangedTips) ProtoReflect() protoreflect.Message

func (*FriendInfoChangedTips) Reset

func (x *FriendInfoChangedTips) Reset()

func (*FriendInfoChangedTips) String

func (x *FriendInfoChangedTips) String() string

type FriendRequest

type FriendRequest struct {
	FromUserID    string `protobuf:"bytes,1,opt,name=fromUserID,proto3" json:"fromUserID,omitempty"`
	FromNickname  string `protobuf:"bytes,2,opt,name=fromNickname,proto3" json:"fromNickname,omitempty"`
	FromFaceURL   string `protobuf:"bytes,3,opt,name=fromFaceURL,proto3" json:"fromFaceURL,omitempty"`
	FromGender    int32  `protobuf:"varint,4,opt,name=fromGender,proto3" json:"fromGender,omitempty"`
	ToUserID      string `protobuf:"bytes,5,opt,name=toUserID,proto3" json:"toUserID,omitempty"`
	ToNickname    string `protobuf:"bytes,6,opt,name=toNickname,proto3" json:"toNickname,omitempty"`
	ToFaceURL     string `protobuf:"bytes,7,opt,name=toFaceURL,proto3" json:"toFaceURL,omitempty"`
	ToGender      int32  `protobuf:"varint,8,opt,name=toGender,proto3" json:"toGender,omitempty"`
	HandleResult  int32  `protobuf:"varint,9,opt,name=handleResult,proto3" json:"handleResult,omitempty"`
	ReqMsg        string `protobuf:"bytes,10,opt,name=reqMsg,proto3" json:"reqMsg,omitempty"`
	CreateTime    uint32 `protobuf:"varint,11,opt,name=createTime,proto3" json:"createTime,omitempty"`
	HandlerUserID string `protobuf:"bytes,12,opt,name=handlerUserID,proto3" json:"handlerUserID,omitempty"`
	HandleMsg     string `protobuf:"bytes,13,opt,name=handleMsg,proto3" json:"handleMsg,omitempty"`
	HandleTime    uint32 `protobuf:"varint,14,opt,name=handleTime,proto3" json:"handleTime,omitempty"`
	Ex            string `protobuf:"bytes,15,opt,name=ex,proto3" json:"ex,omitempty"`
	// contains filtered or unexported fields
}

func (*FriendRequest) Descriptor deprecated

func (*FriendRequest) Descriptor() ([]byte, []int)

Deprecated: Use FriendRequest.ProtoReflect.Descriptor instead.

func (*FriendRequest) GetCreateTime

func (x *FriendRequest) GetCreateTime() uint32

func (*FriendRequest) GetEx

func (x *FriendRequest) GetEx() string

func (*FriendRequest) GetFromFaceURL

func (x *FriendRequest) GetFromFaceURL() string

func (*FriendRequest) GetFromGender

func (x *FriendRequest) GetFromGender() int32

func (*FriendRequest) GetFromNickname

func (x *FriendRequest) GetFromNickname() string

func (*FriendRequest) GetFromUserID

func (x *FriendRequest) GetFromUserID() string

func (*FriendRequest) GetHandleMsg

func (x *FriendRequest) GetHandleMsg() string

func (*FriendRequest) GetHandleResult

func (x *FriendRequest) GetHandleResult() int32

func (*FriendRequest) GetHandleTime

func (x *FriendRequest) GetHandleTime() uint32

func (*FriendRequest) GetHandlerUserID

func (x *FriendRequest) GetHandlerUserID() string

func (*FriendRequest) GetReqMsg

func (x *FriendRequest) GetReqMsg() string

func (*FriendRequest) GetToFaceURL

func (x *FriendRequest) GetToFaceURL() string

func (*FriendRequest) GetToGender

func (x *FriendRequest) GetToGender() int32

func (*FriendRequest) GetToNickname

func (x *FriendRequest) GetToNickname() string

func (*FriendRequest) GetToUserID

func (x *FriendRequest) GetToUserID() string

func (*FriendRequest) ProtoMessage

func (*FriendRequest) ProtoMessage()

func (*FriendRequest) ProtoReflect

func (x *FriendRequest) ProtoReflect() protoreflect.Message

func (*FriendRequest) Reset

func (x *FriendRequest) Reset()

func (*FriendRequest) String

func (x *FriendRequest) String() string

type FromToUserID

type FromToUserID struct {
	FromUserID string `protobuf:"bytes,1,opt,name=fromUserID,proto3" json:"fromUserID,omitempty"`
	ToUserID   string `protobuf:"bytes,2,opt,name=toUserID,proto3" json:"toUserID,omitempty"`
	// contains filtered or unexported fields
}

func (*FromToUserID) Descriptor deprecated

func (*FromToUserID) Descriptor() ([]byte, []int)

Deprecated: Use FromToUserID.ProtoReflect.Descriptor instead.

func (*FromToUserID) GetFromUserID

func (x *FromToUserID) GetFromUserID() string

func (*FromToUserID) GetToUserID

func (x *FromToUserID) GetToUserID() string

func (*FromToUserID) ProtoMessage

func (*FromToUserID) ProtoMessage()

func (*FromToUserID) ProtoReflect

func (x *FromToUserID) ProtoReflect() protoreflect.Message

func (*FromToUserID) Reset

func (x *FromToUserID) Reset()

func (*FromToUserID) String

func (x *FromToUserID) String() string

type GetMaxAndMinSeqReq

type GetMaxAndMinSeqReq struct {
	UserID string `protobuf:"bytes,1,opt,name=UserID,proto3" json:"UserID,omitempty"`
	// contains filtered or unexported fields
}
message PullMessageReq {
 string UserID = 1;
 int64 SeqBegin = 2;
 int64 SeqEnd = 3;
 string OperationID = 4;
}
message PullMessageResp {
 int32 ErrCode = 1;
 string ErrMsg = 2;
 int64 MaxSeq = 3;
 int64 MinSeq = 4;
 repeated GatherFormat SingleUserMsg = 5;
 repeated GatherFormat GroupUserMsg = 6;
}
message PullMessageBySeqListReq{
 string UserID = 1;
 string OperationID = 2;
 repeated int64 seqList =3;
}

func (*GetMaxAndMinSeqReq) Descriptor deprecated

func (*GetMaxAndMinSeqReq) Descriptor() ([]byte, []int)

Deprecated: Use GetMaxAndMinSeqReq.ProtoReflect.Descriptor instead.

func (*GetMaxAndMinSeqReq) GetUserID

func (x *GetMaxAndMinSeqReq) GetUserID() string

func (*GetMaxAndMinSeqReq) ProtoMessage

func (*GetMaxAndMinSeqReq) ProtoMessage()

func (*GetMaxAndMinSeqReq) ProtoReflect

func (x *GetMaxAndMinSeqReq) ProtoReflect() protoreflect.Message

func (*GetMaxAndMinSeqReq) Reset

func (x *GetMaxAndMinSeqReq) Reset()

func (*GetMaxAndMinSeqReq) String

func (x *GetMaxAndMinSeqReq) String() string

type GetMaxAndMinSeqResp

type GetMaxAndMinSeqResp struct {
	MaxSeq  uint32 `protobuf:"varint,1,opt,name=MaxSeq,proto3" json:"MaxSeq,omitempty"`
	MinSeq  uint32 `protobuf:"varint,2,opt,name=MinSeq,proto3" json:"MinSeq,omitempty"`
	ErrCode uint32 `protobuf:"varint,3,opt,name=ErrCode,proto3" json:"ErrCode,omitempty"`
	ErrMsg  string `protobuf:"bytes,4,opt,name=ErrMsg,proto3" json:"ErrMsg,omitempty"`
	// contains filtered or unexported fields
}

func (*GetMaxAndMinSeqResp) Descriptor deprecated

func (*GetMaxAndMinSeqResp) Descriptor() ([]byte, []int)

Deprecated: Use GetMaxAndMinSeqResp.ProtoReflect.Descriptor instead.

func (*GetMaxAndMinSeqResp) GetErrCode

func (x *GetMaxAndMinSeqResp) GetErrCode() uint32

func (*GetMaxAndMinSeqResp) GetErrMsg

func (x *GetMaxAndMinSeqResp) GetErrMsg() string

func (*GetMaxAndMinSeqResp) GetMaxSeq

func (x *GetMaxAndMinSeqResp) GetMaxSeq() uint32

func (*GetMaxAndMinSeqResp) GetMinSeq

func (x *GetMaxAndMinSeqResp) GetMinSeq() uint32

func (*GetMaxAndMinSeqResp) ProtoMessage

func (*GetMaxAndMinSeqResp) ProtoMessage()

func (*GetMaxAndMinSeqResp) ProtoReflect

func (x *GetMaxAndMinSeqResp) ProtoReflect() protoreflect.Message

func (*GetMaxAndMinSeqResp) Reset

func (x *GetMaxAndMinSeqResp) Reset()

func (*GetMaxAndMinSeqResp) String

func (x *GetMaxAndMinSeqResp) String() string

type GetMaxAndMinSuperGroupSeqReq

type GetMaxAndMinSuperGroupSeqReq struct {
	SuperGroupIDList []string `protobuf:"bytes,1,rep,name=SuperGroupIDList,proto3" json:"SuperGroupIDList,omitempty"`
	// contains filtered or unexported fields
}

func (*GetMaxAndMinSuperGroupSeqReq) Descriptor deprecated

func (*GetMaxAndMinSuperGroupSeqReq) Descriptor() ([]byte, []int)

Deprecated: Use GetMaxAndMinSuperGroupSeqReq.ProtoReflect.Descriptor instead.

func (*GetMaxAndMinSuperGroupSeqReq) GetSuperGroupIDList

func (x *GetMaxAndMinSuperGroupSeqReq) GetSuperGroupIDList() []string

func (*GetMaxAndMinSuperGroupSeqReq) ProtoMessage

func (*GetMaxAndMinSuperGroupSeqReq) ProtoMessage()

func (*GetMaxAndMinSuperGroupSeqReq) ProtoReflect

func (*GetMaxAndMinSuperGroupSeqReq) Reset

func (x *GetMaxAndMinSuperGroupSeqReq) Reset()

func (*GetMaxAndMinSuperGroupSeqReq) String

type GetMaxAndMinSuperGroupSeqResp

type GetMaxAndMinSuperGroupSeqResp struct {
	SuperGroupSeqList []*GetMaxAndMinSuperGroupSeqRespItem `protobuf:"bytes,1,rep,name=SuperGroupSeqList,proto3" json:"SuperGroupSeqList,omitempty"`
	ErrCode           uint32                               `protobuf:"varint,2,opt,name=ErrCode,proto3" json:"ErrCode,omitempty"`
	ErrMsg            string                               `protobuf:"bytes,3,opt,name=ErrMsg,proto3" json:"ErrMsg,omitempty"`
	// contains filtered or unexported fields
}

func (*GetMaxAndMinSuperGroupSeqResp) Descriptor deprecated

func (*GetMaxAndMinSuperGroupSeqResp) Descriptor() ([]byte, []int)

Deprecated: Use GetMaxAndMinSuperGroupSeqResp.ProtoReflect.Descriptor instead.

func (*GetMaxAndMinSuperGroupSeqResp) GetErrCode

func (x *GetMaxAndMinSuperGroupSeqResp) GetErrCode() uint32

func (*GetMaxAndMinSuperGroupSeqResp) GetErrMsg

func (x *GetMaxAndMinSuperGroupSeqResp) GetErrMsg() string

func (*GetMaxAndMinSuperGroupSeqResp) GetSuperGroupSeqList

func (*GetMaxAndMinSuperGroupSeqResp) ProtoMessage

func (*GetMaxAndMinSuperGroupSeqResp) ProtoMessage()

func (*GetMaxAndMinSuperGroupSeqResp) ProtoReflect

func (*GetMaxAndMinSuperGroupSeqResp) Reset

func (x *GetMaxAndMinSuperGroupSeqResp) Reset()

func (*GetMaxAndMinSuperGroupSeqResp) String

type GetMaxAndMinSuperGroupSeqRespItem

type GetMaxAndMinSuperGroupSeqRespItem struct {
	SuperGroupID string `protobuf:"bytes,1,opt,name=SuperGroupID,proto3" json:"SuperGroupID,omitempty"`
	MaxSeq       uint32 `protobuf:"varint,2,opt,name=MaxSeq,proto3" json:"MaxSeq,omitempty"`
	MinSeq       uint32 `protobuf:"varint,3,opt,name=MinSeq,proto3" json:"MinSeq,omitempty"`
	// contains filtered or unexported fields
}

func (*GetMaxAndMinSuperGroupSeqRespItem) Descriptor deprecated

func (*GetMaxAndMinSuperGroupSeqRespItem) Descriptor() ([]byte, []int)

Deprecated: Use GetMaxAndMinSuperGroupSeqRespItem.ProtoReflect.Descriptor instead.

func (*GetMaxAndMinSuperGroupSeqRespItem) GetMaxSeq

func (*GetMaxAndMinSuperGroupSeqRespItem) GetMinSeq

func (*GetMaxAndMinSuperGroupSeqRespItem) GetSuperGroupID

func (x *GetMaxAndMinSuperGroupSeqRespItem) GetSuperGroupID() string

func (*GetMaxAndMinSuperGroupSeqRespItem) ProtoMessage

func (*GetMaxAndMinSuperGroupSeqRespItem) ProtoMessage()

func (*GetMaxAndMinSuperGroupSeqRespItem) ProtoReflect

func (*GetMaxAndMinSuperGroupSeqRespItem) Reset

func (*GetMaxAndMinSuperGroupSeqRespItem) String

type GroupApplicationAcceptedTips

type GroupApplicationAcceptedTips struct {
	Group     *GroupInfo           `protobuf:"bytes,1,opt,name=group,proto3" json:"group,omitempty"`
	OpUser    *GroupMemberFullInfo `protobuf:"bytes,2,opt,name=opUser,proto3" json:"opUser,omitempty"`
	HandleMsg string               `protobuf:"bytes,4,opt,name=handleMsg,proto3" json:"handleMsg,omitempty"`
	// contains filtered or unexported fields
}

OnApplicationGroupAccepted()

func (*GroupApplicationAcceptedTips) Descriptor deprecated

func (*GroupApplicationAcceptedTips) Descriptor() ([]byte, []int)

Deprecated: Use GroupApplicationAcceptedTips.ProtoReflect.Descriptor instead.

func (*GroupApplicationAcceptedTips) GetGroup

func (x *GroupApplicationAcceptedTips) GetGroup() *GroupInfo

func (*GroupApplicationAcceptedTips) GetHandleMsg

func (x *GroupApplicationAcceptedTips) GetHandleMsg() string

func (*GroupApplicationAcceptedTips) GetOpUser

func (*GroupApplicationAcceptedTips) ProtoMessage

func (*GroupApplicationAcceptedTips) ProtoMessage()

func (*GroupApplicationAcceptedTips) ProtoReflect

func (*GroupApplicationAcceptedTips) Reset

func (x *GroupApplicationAcceptedTips) Reset()

func (*GroupApplicationAcceptedTips) String

type GroupApplicationRejectedTips

type GroupApplicationRejectedTips struct {
	Group     *GroupInfo           `protobuf:"bytes,1,opt,name=group,proto3" json:"group,omitempty"`
	OpUser    *GroupMemberFullInfo `protobuf:"bytes,2,opt,name=opUser,proto3" json:"opUser,omitempty"`
	HandleMsg string               `protobuf:"bytes,4,opt,name=handleMsg,proto3" json:"handleMsg,omitempty"`
	// contains filtered or unexported fields
}

OnApplicationGroupRejected()

func (*GroupApplicationRejectedTips) Descriptor deprecated

func (*GroupApplicationRejectedTips) Descriptor() ([]byte, []int)

Deprecated: Use GroupApplicationRejectedTips.ProtoReflect.Descriptor instead.

func (*GroupApplicationRejectedTips) GetGroup

func (x *GroupApplicationRejectedTips) GetGroup() *GroupInfo

func (*GroupApplicationRejectedTips) GetHandleMsg

func (x *GroupApplicationRejectedTips) GetHandleMsg() string

func (*GroupApplicationRejectedTips) GetOpUser

func (*GroupApplicationRejectedTips) ProtoMessage

func (*GroupApplicationRejectedTips) ProtoMessage()

func (*GroupApplicationRejectedTips) ProtoReflect

func (*GroupApplicationRejectedTips) Reset

func (x *GroupApplicationRejectedTips) Reset()

func (*GroupApplicationRejectedTips) String

type GroupCancelMutedTips

type GroupCancelMutedTips struct {
	Group         *GroupInfo           `protobuf:"bytes,1,opt,name=group,proto3" json:"group,omitempty"`
	OpUser        *GroupMemberFullInfo `protobuf:"bytes,2,opt,name=opUser,proto3" json:"opUser,omitempty"`
	OperationTime int64                `protobuf:"varint,3,opt,name=operationTime,proto3" json:"operationTime,omitempty"`
	// contains filtered or unexported fields
}

func (*GroupCancelMutedTips) Descriptor deprecated

func (*GroupCancelMutedTips) Descriptor() ([]byte, []int)

Deprecated: Use GroupCancelMutedTips.ProtoReflect.Descriptor instead.

func (*GroupCancelMutedTips) GetGroup

func (x *GroupCancelMutedTips) GetGroup() *GroupInfo

func (*GroupCancelMutedTips) GetOpUser

func (x *GroupCancelMutedTips) GetOpUser() *GroupMemberFullInfo

func (*GroupCancelMutedTips) GetOperationTime

func (x *GroupCancelMutedTips) GetOperationTime() int64

func (*GroupCancelMutedTips) ProtoMessage

func (*GroupCancelMutedTips) ProtoMessage()

func (*GroupCancelMutedTips) ProtoReflect

func (x *GroupCancelMutedTips) ProtoReflect() protoreflect.Message

func (*GroupCancelMutedTips) Reset

func (x *GroupCancelMutedTips) Reset()

func (*GroupCancelMutedTips) String

func (x *GroupCancelMutedTips) String() string

type GroupCreatedTips

type GroupCreatedTips struct {
	Group          *GroupInfo             `protobuf:"bytes,1,opt,name=group,proto3" json:"group,omitempty"`
	OpUser         *GroupMemberFullInfo   `protobuf:"bytes,2,opt,name=opUser,proto3" json:"opUser,omitempty"`
	MemberList     []*GroupMemberFullInfo `protobuf:"bytes,3,rep,name=memberList,proto3" json:"memberList,omitempty"`
	OperationTime  int64                  `protobuf:"varint,4,opt,name=operationTime,proto3" json:"operationTime,omitempty"`
	GroupOwnerUser *GroupMemberFullInfo   `protobuf:"bytes,5,opt,name=groupOwnerUser,proto3" json:"groupOwnerUser,omitempty"`
	// contains filtered or unexported fields
}

OnGroupCreated()

func (*GroupCreatedTips) Descriptor deprecated

func (*GroupCreatedTips) Descriptor() ([]byte, []int)

Deprecated: Use GroupCreatedTips.ProtoReflect.Descriptor instead.

func (*GroupCreatedTips) GetGroup

func (x *GroupCreatedTips) GetGroup() *GroupInfo

func (*GroupCreatedTips) GetGroupOwnerUser

func (x *GroupCreatedTips) GetGroupOwnerUser() *GroupMemberFullInfo

func (*GroupCreatedTips) GetMemberList

func (x *GroupCreatedTips) GetMemberList() []*GroupMemberFullInfo

func (*GroupCreatedTips) GetOpUser

func (x *GroupCreatedTips) GetOpUser() *GroupMemberFullInfo

func (*GroupCreatedTips) GetOperationTime

func (x *GroupCreatedTips) GetOperationTime() int64

func (*GroupCreatedTips) ProtoMessage

func (*GroupCreatedTips) ProtoMessage()

func (*GroupCreatedTips) ProtoReflect

func (x *GroupCreatedTips) ProtoReflect() protoreflect.Message

func (*GroupCreatedTips) Reset

func (x *GroupCreatedTips) Reset()

func (*GroupCreatedTips) String

func (x *GroupCreatedTips) String() string

type GroupDismissedTips

type GroupDismissedTips struct {
	Group         *GroupInfo           `protobuf:"bytes,1,opt,name=group,proto3" json:"group,omitempty"`
	OpUser        *GroupMemberFullInfo `protobuf:"bytes,2,opt,name=opUser,proto3" json:"opUser,omitempty"`
	OperationTime int64                `protobuf:"varint,3,opt,name=operationTime,proto3" json:"operationTime,omitempty"`
	// contains filtered or unexported fields
}

func (*GroupDismissedTips) Descriptor deprecated

func (*GroupDismissedTips) Descriptor() ([]byte, []int)

Deprecated: Use GroupDismissedTips.ProtoReflect.Descriptor instead.

func (*GroupDismissedTips) GetGroup

func (x *GroupDismissedTips) GetGroup() *GroupInfo

func (*GroupDismissedTips) GetOpUser

func (x *GroupDismissedTips) GetOpUser() *GroupMemberFullInfo

func (*GroupDismissedTips) GetOperationTime

func (x *GroupDismissedTips) GetOperationTime() int64

func (*GroupDismissedTips) ProtoMessage

func (*GroupDismissedTips) ProtoMessage()

func (*GroupDismissedTips) ProtoReflect

func (x *GroupDismissedTips) ProtoReflect() protoreflect.Message

func (*GroupDismissedTips) Reset

func (x *GroupDismissedTips) Reset()

func (*GroupDismissedTips) String

func (x *GroupDismissedTips) String() string

type GroupInfo

type GroupInfo struct {
	GroupID       string `protobuf:"bytes,1,opt,name=groupID,proto3" json:"groupID,omitempty"`
	GroupName     string `protobuf:"bytes,2,opt,name=groupName,proto3" json:"groupName,omitempty"`
	Notification  string `protobuf:"bytes,3,opt,name=notification,proto3" json:"notification,omitempty"`
	Introduction  string `protobuf:"bytes,4,opt,name=introduction,proto3" json:"introduction,omitempty"`
	FaceURL       string `protobuf:"bytes,5,opt,name=faceURL,proto3" json:"faceURL,omitempty"`
	OwnerUserID   string `protobuf:"bytes,6,opt,name=ownerUserID,proto3" json:"ownerUserID,omitempty"`
	CreateTime    uint32 `protobuf:"varint,7,opt,name=createTime,proto3" json:"createTime,omitempty"`
	MemberCount   uint32 `protobuf:"varint,8,opt,name=memberCount,proto3" json:"memberCount,omitempty"`
	Ex            string `protobuf:"bytes,9,opt,name=ex,proto3" json:"ex,omitempty"`
	Status        int32  `protobuf:"varint,10,opt,name=status,proto3" json:"status,omitempty"`
	CreatorUserID string `protobuf:"bytes,11,opt,name=creatorUserID,proto3" json:"creatorUserID,omitempty"`
	GroupType     int32  `protobuf:"varint,12,opt,name=groupType,proto3" json:"groupType,omitempty"`
	// contains filtered or unexported fields
}

func (*GroupInfo) Descriptor deprecated

func (*GroupInfo) Descriptor() ([]byte, []int)

Deprecated: Use GroupInfo.ProtoReflect.Descriptor instead.

func (*GroupInfo) GetCreateTime

func (x *GroupInfo) GetCreateTime() uint32

func (*GroupInfo) GetCreatorUserID

func (x *GroupInfo) GetCreatorUserID() string

func (*GroupInfo) GetEx

func (x *GroupInfo) GetEx() string

func (*GroupInfo) GetFaceURL

func (x *GroupInfo) GetFaceURL() string

func (*GroupInfo) GetGroupID

func (x *GroupInfo) GetGroupID() string

func (*GroupInfo) GetGroupName

func (x *GroupInfo) GetGroupName() string

func (*GroupInfo) GetGroupType

func (x *GroupInfo) GetGroupType() int32

func (*GroupInfo) GetIntroduction

func (x *GroupInfo) GetIntroduction() string

func (*GroupInfo) GetMemberCount

func (x *GroupInfo) GetMemberCount() uint32

func (*GroupInfo) GetNotification

func (x *GroupInfo) GetNotification() string

func (*GroupInfo) GetOwnerUserID

func (x *GroupInfo) GetOwnerUserID() string

func (*GroupInfo) GetStatus

func (x *GroupInfo) GetStatus() int32

func (*GroupInfo) ProtoMessage

func (*GroupInfo) ProtoMessage()

func (*GroupInfo) ProtoReflect

func (x *GroupInfo) ProtoReflect() protoreflect.Message

func (*GroupInfo) Reset

func (x *GroupInfo) Reset()

func (*GroupInfo) String

func (x *GroupInfo) String() string

type GroupInfoSetTips

type GroupInfoSetTips struct {
	OpUser   *GroupMemberFullInfo `protobuf:"bytes,1,opt,name=opUser,proto3" json:"opUser,omitempty"` //who do this
	MuteTime int64                `protobuf:"varint,2,opt,name=muteTime,proto3" json:"muteTime,omitempty"`
	Group    *GroupInfo           `protobuf:"bytes,3,opt,name=group,proto3" json:"group,omitempty"`
	// contains filtered or unexported fields
}

OnGroupInfoSet()

func (*GroupInfoSetTips) Descriptor deprecated

func (*GroupInfoSetTips) Descriptor() ([]byte, []int)

Deprecated: Use GroupInfoSetTips.ProtoReflect.Descriptor instead.

func (*GroupInfoSetTips) GetGroup

func (x *GroupInfoSetTips) GetGroup() *GroupInfo

func (*GroupInfoSetTips) GetMuteTime

func (x *GroupInfoSetTips) GetMuteTime() int64

func (*GroupInfoSetTips) GetOpUser

func (x *GroupInfoSetTips) GetOpUser() *GroupMemberFullInfo

func (*GroupInfoSetTips) ProtoMessage

func (*GroupInfoSetTips) ProtoMessage()

func (*GroupInfoSetTips) ProtoReflect

func (x *GroupInfoSetTips) ProtoReflect() protoreflect.Message

func (*GroupInfoSetTips) Reset

func (x *GroupInfoSetTips) Reset()

func (*GroupInfoSetTips) String

func (x *GroupInfoSetTips) String() string

type GroupMemberCancelMutedTips

type GroupMemberCancelMutedTips struct {
	Group         *GroupInfo           `protobuf:"bytes,1,opt,name=group,proto3" json:"group,omitempty"`
	OpUser        *GroupMemberFullInfo `protobuf:"bytes,2,opt,name=opUser,proto3" json:"opUser,omitempty"`
	OperationTime int64                `protobuf:"varint,3,opt,name=operationTime,proto3" json:"operationTime,omitempty"`
	MutedUser     *GroupMemberFullInfo `protobuf:"bytes,4,opt,name=mutedUser,proto3" json:"mutedUser,omitempty"`
	// contains filtered or unexported fields
}

func (*GroupMemberCancelMutedTips) Descriptor deprecated

func (*GroupMemberCancelMutedTips) Descriptor() ([]byte, []int)

Deprecated: Use GroupMemberCancelMutedTips.ProtoReflect.Descriptor instead.

func (*GroupMemberCancelMutedTips) GetGroup

func (x *GroupMemberCancelMutedTips) GetGroup() *GroupInfo

func (*GroupMemberCancelMutedTips) GetMutedUser

func (*GroupMemberCancelMutedTips) GetOpUser

func (*GroupMemberCancelMutedTips) GetOperationTime

func (x *GroupMemberCancelMutedTips) GetOperationTime() int64

func (*GroupMemberCancelMutedTips) ProtoMessage

func (*GroupMemberCancelMutedTips) ProtoMessage()

func (*GroupMemberCancelMutedTips) ProtoReflect

func (*GroupMemberCancelMutedTips) Reset

func (x *GroupMemberCancelMutedTips) Reset()

func (*GroupMemberCancelMutedTips) String

func (x *GroupMemberCancelMutedTips) String() string

type GroupMemberFullInfo

type GroupMemberFullInfo struct {
	GroupID        string `protobuf:"bytes,1,opt,name=groupID,proto3" json:"groupID,omitempty"`
	UserID         string `protobuf:"bytes,2,opt,name=userID,proto3" json:"userID,omitempty"`
	RoleLevel      int32  `protobuf:"varint,3,opt,name=roleLevel,proto3" json:"roleLevel,omitempty"`
	JoinTime       int32  `protobuf:"varint,4,opt,name=joinTime,proto3" json:"joinTime,omitempty"`
	Nickname       string `protobuf:"bytes,5,opt,name=nickname,proto3" json:"nickname,omitempty"`
	FaceURL        string `protobuf:"bytes,6,opt,name=faceURL,proto3" json:"faceURL,omitempty"`
	AppMangerLevel int32  `protobuf:"varint,7,opt,name=appMangerLevel,proto3" json:"appMangerLevel,omitempty"` //if >0
	JoinSource     int32  `protobuf:"varint,8,opt,name=joinSource,proto3" json:"joinSource,omitempty"`
	OperatorUserID string `protobuf:"bytes,9,opt,name=operatorUserID,proto3" json:"operatorUserID,omitempty"`
	Ex             string `protobuf:"bytes,10,opt,name=ex,proto3" json:"ex,omitempty"`
	MuteEndTime    uint32 `protobuf:"varint,11,opt,name=muteEndTime,proto3" json:"muteEndTime,omitempty"`
	// contains filtered or unexported fields
}

func (*GroupMemberFullInfo) Descriptor deprecated

func (*GroupMemberFullInfo) Descriptor() ([]byte, []int)

Deprecated: Use GroupMemberFullInfo.ProtoReflect.Descriptor instead.

func (*GroupMemberFullInfo) GetAppMangerLevel

func (x *GroupMemberFullInfo) GetAppMangerLevel() int32

func (*GroupMemberFullInfo) GetEx

func (x *GroupMemberFullInfo) GetEx() string

func (*GroupMemberFullInfo) GetFaceURL

func (x *GroupMemberFullInfo) GetFaceURL() string

func (*GroupMemberFullInfo) GetGroupID

func (x *GroupMemberFullInfo) GetGroupID() string

func (*GroupMemberFullInfo) GetJoinSource

func (x *GroupMemberFullInfo) GetJoinSource() int32

func (*GroupMemberFullInfo) GetJoinTime

func (x *GroupMemberFullInfo) GetJoinTime() int32

func (*GroupMemberFullInfo) GetMuteEndTime

func (x *GroupMemberFullInfo) GetMuteEndTime() uint32

func (*GroupMemberFullInfo) GetNickname

func (x *GroupMemberFullInfo) GetNickname() string

func (*GroupMemberFullInfo) GetOperatorUserID

func (x *GroupMemberFullInfo) GetOperatorUserID() string

func (*GroupMemberFullInfo) GetRoleLevel

func (x *GroupMemberFullInfo) GetRoleLevel() int32

func (*GroupMemberFullInfo) GetUserID

func (x *GroupMemberFullInfo) GetUserID() string

func (*GroupMemberFullInfo) ProtoMessage

func (*GroupMemberFullInfo) ProtoMessage()

func (*GroupMemberFullInfo) ProtoReflect

func (x *GroupMemberFullInfo) ProtoReflect() protoreflect.Message

func (*GroupMemberFullInfo) Reset

func (x *GroupMemberFullInfo) Reset()

func (*GroupMemberFullInfo) String

func (x *GroupMemberFullInfo) String() string

type GroupMemberInfoSetTips

type GroupMemberInfoSetTips struct {
	Group         *GroupInfo           `protobuf:"bytes,1,opt,name=group,proto3" json:"group,omitempty"`
	OpUser        *GroupMemberFullInfo `protobuf:"bytes,2,opt,name=opUser,proto3" json:"opUser,omitempty"`
	OperationTime int64                `protobuf:"varint,3,opt,name=operationTime,proto3" json:"operationTime,omitempty"`
	ChangedUser   *GroupMemberFullInfo `protobuf:"bytes,4,opt,name=changedUser,proto3" json:"changedUser,omitempty"`
	// contains filtered or unexported fields
}

func (*GroupMemberInfoSetTips) Descriptor deprecated

func (*GroupMemberInfoSetTips) Descriptor() ([]byte, []int)

Deprecated: Use GroupMemberInfoSetTips.ProtoReflect.Descriptor instead.

func (*GroupMemberInfoSetTips) GetChangedUser

func (x *GroupMemberInfoSetTips) GetChangedUser() *GroupMemberFullInfo

func (*GroupMemberInfoSetTips) GetGroup

func (x *GroupMemberInfoSetTips) GetGroup() *GroupInfo

func (*GroupMemberInfoSetTips) GetOpUser

func (*GroupMemberInfoSetTips) GetOperationTime

func (x *GroupMemberInfoSetTips) GetOperationTime() int64

func (*GroupMemberInfoSetTips) ProtoMessage

func (*GroupMemberInfoSetTips) ProtoMessage()

func (*GroupMemberInfoSetTips) ProtoReflect

func (x *GroupMemberInfoSetTips) ProtoReflect() protoreflect.Message

func (*GroupMemberInfoSetTips) Reset

func (x *GroupMemberInfoSetTips) Reset()

func (*GroupMemberInfoSetTips) String

func (x *GroupMemberInfoSetTips) String() string

type GroupMemberMutedTips

type GroupMemberMutedTips struct {
	Group         *GroupInfo           `protobuf:"bytes,1,opt,name=group,proto3" json:"group,omitempty"`
	OpUser        *GroupMemberFullInfo `protobuf:"bytes,2,opt,name=opUser,proto3" json:"opUser,omitempty"`
	OperationTime int64                `protobuf:"varint,3,opt,name=operationTime,proto3" json:"operationTime,omitempty"`
	MutedUser     *GroupMemberFullInfo `protobuf:"bytes,4,opt,name=mutedUser,proto3" json:"mutedUser,omitempty"`
	MutedSeconds  uint32               `protobuf:"varint,5,opt,name=mutedSeconds,proto3" json:"mutedSeconds,omitempty"`
	// contains filtered or unexported fields
}

func (*GroupMemberMutedTips) Descriptor deprecated

func (*GroupMemberMutedTips) Descriptor() ([]byte, []int)

Deprecated: Use GroupMemberMutedTips.ProtoReflect.Descriptor instead.

func (*GroupMemberMutedTips) GetGroup

func (x *GroupMemberMutedTips) GetGroup() *GroupInfo

func (*GroupMemberMutedTips) GetMutedSeconds

func (x *GroupMemberMutedTips) GetMutedSeconds() uint32

func (*GroupMemberMutedTips) GetMutedUser

func (x *GroupMemberMutedTips) GetMutedUser() *GroupMemberFullInfo

func (*GroupMemberMutedTips) GetOpUser

func (x *GroupMemberMutedTips) GetOpUser() *GroupMemberFullInfo

func (*GroupMemberMutedTips) GetOperationTime

func (x *GroupMemberMutedTips) GetOperationTime() int64

func (*GroupMemberMutedTips) ProtoMessage

func (*GroupMemberMutedTips) ProtoMessage()

func (*GroupMemberMutedTips) ProtoReflect

func (x *GroupMemberMutedTips) ProtoReflect() protoreflect.Message

func (*GroupMemberMutedTips) Reset

func (x *GroupMemberMutedTips) Reset()

func (*GroupMemberMutedTips) String

func (x *GroupMemberMutedTips) String() string

type GroupMutedTips

type GroupMutedTips struct {
	Group         *GroupInfo           `protobuf:"bytes,1,opt,name=group,proto3" json:"group,omitempty"`
	OpUser        *GroupMemberFullInfo `protobuf:"bytes,2,opt,name=opUser,proto3" json:"opUser,omitempty"`
	OperationTime int64                `protobuf:"varint,3,opt,name=operationTime,proto3" json:"operationTime,omitempty"`
	// contains filtered or unexported fields
}

func (*GroupMutedTips) Descriptor deprecated

func (*GroupMutedTips) Descriptor() ([]byte, []int)

Deprecated: Use GroupMutedTips.ProtoReflect.Descriptor instead.

func (*GroupMutedTips) GetGroup

func (x *GroupMutedTips) GetGroup() *GroupInfo

func (*GroupMutedTips) GetOpUser

func (x *GroupMutedTips) GetOpUser() *GroupMemberFullInfo

func (*GroupMutedTips) GetOperationTime

func (x *GroupMutedTips) GetOperationTime() int64

func (*GroupMutedTips) ProtoMessage

func (*GroupMutedTips) ProtoMessage()

func (*GroupMutedTips) ProtoReflect

func (x *GroupMutedTips) ProtoReflect() protoreflect.Message

func (*GroupMutedTips) Reset

func (x *GroupMutedTips) Reset()

func (*GroupMutedTips) String

func (x *GroupMutedTips) String() string

type GroupOwnerTransferredTips

type GroupOwnerTransferredTips struct {
	Group         *GroupInfo           `protobuf:"bytes,1,opt,name=group,proto3" json:"group,omitempty"`
	OpUser        *GroupMemberFullInfo `protobuf:"bytes,2,opt,name=opUser,proto3" json:"opUser,omitempty"`
	NewGroupOwner *GroupMemberFullInfo `protobuf:"bytes,3,opt,name=newGroupOwner,proto3" json:"newGroupOwner,omitempty"`
	OperationTime int64                `protobuf:"varint,4,opt,name=operationTime,proto3" json:"operationTime,omitempty"`
	// contains filtered or unexported fields
}

OnTransferGroupOwner()

func (*GroupOwnerTransferredTips) Descriptor deprecated

func (*GroupOwnerTransferredTips) Descriptor() ([]byte, []int)

Deprecated: Use GroupOwnerTransferredTips.ProtoReflect.Descriptor instead.

func (*GroupOwnerTransferredTips) GetGroup

func (x *GroupOwnerTransferredTips) GetGroup() *GroupInfo

func (*GroupOwnerTransferredTips) GetNewGroupOwner

func (x *GroupOwnerTransferredTips) GetNewGroupOwner() *GroupMemberFullInfo

func (*GroupOwnerTransferredTips) GetOpUser

func (*GroupOwnerTransferredTips) GetOperationTime

func (x *GroupOwnerTransferredTips) GetOperationTime() int64

func (*GroupOwnerTransferredTips) ProtoMessage

func (*GroupOwnerTransferredTips) ProtoMessage()

func (*GroupOwnerTransferredTips) ProtoReflect

func (*GroupOwnerTransferredTips) Reset

func (x *GroupOwnerTransferredTips) Reset()

func (*GroupOwnerTransferredTips) String

func (x *GroupOwnerTransferredTips) String() string

type GroupRequest

type GroupRequest struct {
	UserInfo     *PublicUserInfo `protobuf:"bytes,1,opt,name=userInfo,proto3" json:"userInfo,omitempty"`
	GroupInfo    *GroupInfo      `protobuf:"bytes,2,opt,name=groupInfo,proto3" json:"groupInfo,omitempty"`
	HandleResult int32           `protobuf:"varint,3,opt,name=handleResult,proto3" json:"handleResult,omitempty"`
	ReqMsg       string          `protobuf:"bytes,4,opt,name=reqMsg,proto3" json:"reqMsg,omitempty"`
	HandleMsg    string          `protobuf:"bytes,5,opt,name=handleMsg,proto3" json:"handleMsg,omitempty"`
	ReqTime      uint32          `protobuf:"varint,6,opt,name=reqTime,proto3" json:"reqTime,omitempty"`
	HandleUserID string          `protobuf:"bytes,7,opt,name=handleUserID,proto3" json:"handleUserID,omitempty"`
	HandleTime   uint32          `protobuf:"varint,8,opt,name=handleTime,proto3" json:"handleTime,omitempty"`
	Ex           string          `protobuf:"bytes,9,opt,name=ex,proto3" json:"ex,omitempty"`
	// contains filtered or unexported fields
}

func (*GroupRequest) Descriptor deprecated

func (*GroupRequest) Descriptor() ([]byte, []int)

Deprecated: Use GroupRequest.ProtoReflect.Descriptor instead.

func (*GroupRequest) GetEx

func (x *GroupRequest) GetEx() string

func (*GroupRequest) GetGroupInfo

func (x *GroupRequest) GetGroupInfo() *GroupInfo

func (*GroupRequest) GetHandleMsg

func (x *GroupRequest) GetHandleMsg() string

func (*GroupRequest) GetHandleResult

func (x *GroupRequest) GetHandleResult() int32

func (*GroupRequest) GetHandleTime

func (x *GroupRequest) GetHandleTime() uint32

func (*GroupRequest) GetHandleUserID

func (x *GroupRequest) GetHandleUserID() string

func (*GroupRequest) GetReqMsg

func (x *GroupRequest) GetReqMsg() string

func (*GroupRequest) GetReqTime

func (x *GroupRequest) GetReqTime() uint32

func (*GroupRequest) GetUserInfo

func (x *GroupRequest) GetUserInfo() *PublicUserInfo

func (*GroupRequest) ProtoMessage

func (*GroupRequest) ProtoMessage()

func (*GroupRequest) ProtoReflect

func (x *GroupRequest) ProtoReflect() protoreflect.Message

func (*GroupRequest) Reset

func (x *GroupRequest) Reset()

func (*GroupRequest) String

func (x *GroupRequest) String() string

type InvitationInfo

type InvitationInfo struct {
	InviterUserID     string   `protobuf:"bytes,1,opt,name=inviterUserID,proto3" json:"inviterUserID,omitempty"`
	InviteeUserIDList []string `protobuf:"bytes,2,rep,name=inviteeUserIDList,proto3" json:"inviteeUserIDList,omitempty"`
	CustomData        string   `protobuf:"bytes,3,opt,name=customData,proto3" json:"customData,omitempty"`
	GroupID           string   `protobuf:"bytes,4,opt,name=groupID,proto3" json:"groupID,omitempty"`
	RoomID            string   `protobuf:"bytes,5,opt,name=roomID,proto3" json:"roomID,omitempty"`
	Timeout           int32    `protobuf:"varint,6,opt,name=timeout,proto3" json:"timeout,omitempty"`
	MediaType         string   `protobuf:"bytes,7,opt,name=mediaType,proto3" json:"mediaType,omitempty"`
	PlatformID        int32    `protobuf:"varint,8,opt,name=platformID,proto3" json:"platformID,omitempty"`
	SessionType       int32    `protobuf:"varint,9,opt,name=sessionType,proto3" json:"sessionType,omitempty"`
	// contains filtered or unexported fields
}

func (*InvitationInfo) Descriptor deprecated

func (*InvitationInfo) Descriptor() ([]byte, []int)

Deprecated: Use InvitationInfo.ProtoReflect.Descriptor instead.

func (*InvitationInfo) GetCustomData

func (x *InvitationInfo) GetCustomData() string

func (*InvitationInfo) GetGroupID

func (x *InvitationInfo) GetGroupID() string

func (*InvitationInfo) GetInviteeUserIDList

func (x *InvitationInfo) GetInviteeUserIDList() []string

func (*InvitationInfo) GetInviterUserID

func (x *InvitationInfo) GetInviterUserID() string

func (*InvitationInfo) GetMediaType

func (x *InvitationInfo) GetMediaType() string

func (*InvitationInfo) GetPlatformID

func (x *InvitationInfo) GetPlatformID() int32

func (*InvitationInfo) GetRoomID

func (x *InvitationInfo) GetRoomID() string

func (*InvitationInfo) GetSessionType

func (x *InvitationInfo) GetSessionType() int32

func (*InvitationInfo) GetTimeout

func (x *InvitationInfo) GetTimeout() int32

func (*InvitationInfo) ProtoMessage

func (*InvitationInfo) ProtoMessage()

func (*InvitationInfo) ProtoReflect

func (x *InvitationInfo) ProtoReflect() protoreflect.Message

func (*InvitationInfo) Reset

func (x *InvitationInfo) Reset()

func (*InvitationInfo) String

func (x *InvitationInfo) String() string

type JoinGroupApplicationTips

type JoinGroupApplicationTips struct {
	Group     *GroupInfo      `protobuf:"bytes,1,opt,name=group,proto3" json:"group,omitempty"`
	Applicant *PublicUserInfo `protobuf:"bytes,2,opt,name=applicant,proto3" json:"applicant,omitempty"`
	ReqMsg    string          `protobuf:"bytes,3,opt,name=reqMsg,proto3" json:"reqMsg,omitempty"`
	// contains filtered or unexported fields
}

OnJoinGroupApplication()

func (*JoinGroupApplicationTips) Descriptor deprecated

func (*JoinGroupApplicationTips) Descriptor() ([]byte, []int)

Deprecated: Use JoinGroupApplicationTips.ProtoReflect.Descriptor instead.

func (*JoinGroupApplicationTips) GetApplicant

func (x *JoinGroupApplicationTips) GetApplicant() *PublicUserInfo

func (*JoinGroupApplicationTips) GetGroup

func (x *JoinGroupApplicationTips) GetGroup() *GroupInfo

func (*JoinGroupApplicationTips) GetReqMsg

func (x *JoinGroupApplicationTips) GetReqMsg() string

func (*JoinGroupApplicationTips) ProtoMessage

func (*JoinGroupApplicationTips) ProtoMessage()

func (*JoinGroupApplicationTips) ProtoReflect

func (x *JoinGroupApplicationTips) ProtoReflect() protoreflect.Message

func (*JoinGroupApplicationTips) Reset

func (x *JoinGroupApplicationTips) Reset()

func (*JoinGroupApplicationTips) String

func (x *JoinGroupApplicationTips) String() string

type MemberEnterTips

type MemberEnterTips struct {
	Group         *GroupInfo           `protobuf:"bytes,1,opt,name=group,proto3" json:"group,omitempty"`
	EntrantUser   *GroupMemberFullInfo `protobuf:"bytes,2,opt,name=entrantUser,proto3" json:"entrantUser,omitempty"`
	OperationTime int64                `protobuf:"varint,3,opt,name=operationTime,proto3" json:"operationTime,omitempty"`
	// contains filtered or unexported fields
}

Actively join the group

func (*MemberEnterTips) Descriptor deprecated

func (*MemberEnterTips) Descriptor() ([]byte, []int)

Deprecated: Use MemberEnterTips.ProtoReflect.Descriptor instead.

func (*MemberEnterTips) GetEntrantUser

func (x *MemberEnterTips) GetEntrantUser() *GroupMemberFullInfo

func (*MemberEnterTips) GetGroup

func (x *MemberEnterTips) GetGroup() *GroupInfo

func (*MemberEnterTips) GetOperationTime

func (x *MemberEnterTips) GetOperationTime() int64

func (*MemberEnterTips) ProtoMessage

func (*MemberEnterTips) ProtoMessage()

func (*MemberEnterTips) ProtoReflect

func (x *MemberEnterTips) ProtoReflect() protoreflect.Message

func (*MemberEnterTips) Reset

func (x *MemberEnterTips) Reset()

func (*MemberEnterTips) String

func (x *MemberEnterTips) String() string

type MemberInvitedTips

type MemberInvitedTips struct {
	Group           *GroupInfo             `protobuf:"bytes,1,opt,name=group,proto3" json:"group,omitempty"`
	OpUser          *GroupMemberFullInfo   `protobuf:"bytes,2,opt,name=opUser,proto3" json:"opUser,omitempty"`
	InvitedUserList []*GroupMemberFullInfo `protobuf:"bytes,3,rep,name=invitedUserList,proto3" json:"invitedUserList,omitempty"`
	OperationTime   int64                  `protobuf:"varint,4,opt,name=operationTime,proto3" json:"operationTime,omitempty"`
	// contains filtered or unexported fields
}

OnMemberInvited()

func (*MemberInvitedTips) Descriptor deprecated

func (*MemberInvitedTips) Descriptor() ([]byte, []int)

Deprecated: Use MemberInvitedTips.ProtoReflect.Descriptor instead.

func (*MemberInvitedTips) GetGroup

func (x *MemberInvitedTips) GetGroup() *GroupInfo

func (*MemberInvitedTips) GetInvitedUserList

func (x *MemberInvitedTips) GetInvitedUserList() []*GroupMemberFullInfo

func (*MemberInvitedTips) GetOpUser

func (x *MemberInvitedTips) GetOpUser() *GroupMemberFullInfo

func (*MemberInvitedTips) GetOperationTime

func (x *MemberInvitedTips) GetOperationTime() int64

func (*MemberInvitedTips) ProtoMessage

func (*MemberInvitedTips) ProtoMessage()

func (*MemberInvitedTips) ProtoReflect

func (x *MemberInvitedTips) ProtoReflect() protoreflect.Message

func (*MemberInvitedTips) Reset

func (x *MemberInvitedTips) Reset()

func (*MemberInvitedTips) String

func (x *MemberInvitedTips) String() string

type MemberKickedTips

type MemberKickedTips struct {
	Group          *GroupInfo             `protobuf:"bytes,1,opt,name=group,proto3" json:"group,omitempty"`
	OpUser         *GroupMemberFullInfo   `protobuf:"bytes,2,opt,name=opUser,proto3" json:"opUser,omitempty"`
	KickedUserList []*GroupMemberFullInfo `protobuf:"bytes,3,rep,name=kickedUserList,proto3" json:"kickedUserList,omitempty"`
	OperationTime  int64                  `protobuf:"varint,4,opt,name=operationTime,proto3" json:"operationTime,omitempty"`
	// contains filtered or unexported fields
}

OnMemberKicked()

func (*MemberKickedTips) Descriptor deprecated

func (*MemberKickedTips) Descriptor() ([]byte, []int)

Deprecated: Use MemberKickedTips.ProtoReflect.Descriptor instead.

func (*MemberKickedTips) GetGroup

func (x *MemberKickedTips) GetGroup() *GroupInfo

func (*MemberKickedTips) GetKickedUserList

func (x *MemberKickedTips) GetKickedUserList() []*GroupMemberFullInfo

func (*MemberKickedTips) GetOpUser

func (x *MemberKickedTips) GetOpUser() *GroupMemberFullInfo

func (*MemberKickedTips) GetOperationTime

func (x *MemberKickedTips) GetOperationTime() int64

func (*MemberKickedTips) ProtoMessage

func (*MemberKickedTips) ProtoMessage()

func (*MemberKickedTips) ProtoReflect

func (x *MemberKickedTips) ProtoReflect() protoreflect.Message

func (*MemberKickedTips) Reset

func (x *MemberKickedTips) Reset()

func (*MemberKickedTips) String

func (x *MemberKickedTips) String() string

type MemberQuitTips

type MemberQuitTips struct {
	Group         *GroupInfo           `protobuf:"bytes,1,opt,name=group,proto3" json:"group,omitempty"`
	QuitUser      *GroupMemberFullInfo `protobuf:"bytes,2,opt,name=quitUser,proto3" json:"quitUser,omitempty"`
	OperationTime int64                `protobuf:"varint,3,opt,name=operationTime,proto3" json:"operationTime,omitempty"`
	// contains filtered or unexported fields
}
OnQuitGroup()

Actively leave the group

func (*MemberQuitTips) Descriptor deprecated

func (*MemberQuitTips) Descriptor() ([]byte, []int)

Deprecated: Use MemberQuitTips.ProtoReflect.Descriptor instead.

func (*MemberQuitTips) GetGroup

func (x *MemberQuitTips) GetGroup() *GroupInfo

func (*MemberQuitTips) GetOperationTime

func (x *MemberQuitTips) GetOperationTime() int64

func (*MemberQuitTips) GetQuitUser

func (x *MemberQuitTips) GetQuitUser() *GroupMemberFullInfo

func (*MemberQuitTips) ProtoMessage

func (*MemberQuitTips) ProtoMessage()

func (*MemberQuitTips) ProtoReflect

func (x *MemberQuitTips) ProtoReflect() protoreflect.Message

func (*MemberQuitTips) Reset

func (x *MemberQuitTips) Reset()

func (*MemberQuitTips) String

func (x *MemberQuitTips) String() string

type MsgData

type MsgData struct {
	SendID           string           `protobuf:"bytes,1,opt,name=sendID,proto3" json:"sendID,omitempty"`
	RecvID           string           `protobuf:"bytes,2,opt,name=recvID,proto3" json:"recvID,omitempty"`
	GroupID          string           `protobuf:"bytes,3,opt,name=groupID,proto3" json:"groupID,omitempty"`
	ClientMsgID      string           `protobuf:"bytes,4,opt,name=clientMsgID,proto3" json:"clientMsgID,omitempty"`
	ServerMsgID      string           `protobuf:"bytes,5,opt,name=serverMsgID,proto3" json:"serverMsgID,omitempty"`
	SenderPlatformID int32            `protobuf:"varint,6,opt,name=senderPlatformID,proto3" json:"senderPlatformID,omitempty"`
	SenderNickname   string           `protobuf:"bytes,7,opt,name=senderNickname,proto3" json:"senderNickname,omitempty"`
	SenderFaceURL    string           `protobuf:"bytes,8,opt,name=senderFaceURL,proto3" json:"senderFaceURL,omitempty"`
	SessionType      int32            `protobuf:"varint,9,opt,name=sessionType,proto3" json:"sessionType,omitempty"`
	MsgFrom          int32            `protobuf:"varint,10,opt,name=msgFrom,proto3" json:"msgFrom,omitempty"`
	ContentType      int32            `protobuf:"varint,11,opt,name=contentType,proto3" json:"contentType,omitempty"`
	Content          []byte           `protobuf:"bytes,12,opt,name=content,proto3" json:"content,omitempty"`
	Seq              uint32           `protobuf:"varint,13,opt,name=seq,proto3" json:"seq,omitempty"`
	ServerTime       int64            `protobuf:"varint,14,opt,name=serverTime,proto3" json:"serverTime,omitempty"`
	ClientTime       int64            `protobuf:"varint,15,opt,name=clientTime,proto3" json:"clientTime,omitempty"`
	OfflinePushInfo  *OfflinePushInfo `protobuf:"bytes,16,opt,name=offlinePushInfo,proto3" json:"offlinePushInfo,omitempty"`
	AtUserIDList     []string         `protobuf:"bytes,17,rep,name=atUserIDList,proto3" json:"atUserIDList,omitempty"`
	Options          map[string]bool  `` /* 157-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*MsgData) Bytes

func (x *MsgData) Bytes() []byte

func (*MsgData) Descriptor deprecated

func (*MsgData) Descriptor() ([]byte, []int)

Deprecated: Use MsgData.ProtoReflect.Descriptor instead.

func (*MsgData) GetAtUserIDList

func (x *MsgData) GetAtUserIDList() []string

func (*MsgData) GetClientMsgID

func (x *MsgData) GetClientMsgID() string

func (*MsgData) GetClientTime

func (x *MsgData) GetClientTime() int64

func (*MsgData) GetContent

func (x *MsgData) GetContent() []byte

func (*MsgData) GetContentType

func (x *MsgData) GetContentType() int32

func (*MsgData) GetGroupID

func (x *MsgData) GetGroupID() string

func (*MsgData) GetMsgFrom

func (x *MsgData) GetMsgFrom() int32

func (*MsgData) GetOfflinePushInfo

func (x *MsgData) GetOfflinePushInfo() *OfflinePushInfo

func (*MsgData) GetOptions

func (x *MsgData) GetOptions() map[string]bool

func (*MsgData) GetRecvID

func (x *MsgData) GetRecvID() string

func (*MsgData) GetSendID

func (x *MsgData) GetSendID() string

func (*MsgData) GetSenderFaceURL

func (x *MsgData) GetSenderFaceURL() string

func (*MsgData) GetSenderNickname

func (x *MsgData) GetSenderNickname() string

func (*MsgData) GetSenderPlatformID

func (x *MsgData) GetSenderPlatformID() int32

func (*MsgData) GetSeq

func (x *MsgData) GetSeq() uint32

func (*MsgData) GetServerMsgID

func (x *MsgData) GetServerMsgID() string

func (*MsgData) GetServerTime

func (x *MsgData) GetServerTime() int64

func (*MsgData) GetSessionType

func (x *MsgData) GetSessionType() int32

func (*MsgData) ProtoMessage

func (*MsgData) ProtoMessage()

func (*MsgData) ProtoReflect

func (x *MsgData) ProtoReflect() protoreflect.Message

func (*MsgData) Reset

func (x *MsgData) Reset()

func (*MsgData) String

func (x *MsgData) String() string

type MsgDataToDB

type MsgDataToDB struct {
	MsgData     *MsgData `protobuf:"bytes,1,opt,name=msgData,proto3" json:"msgData,omitempty"`
	OperationID string   `protobuf:"bytes,2,opt,name=operationID,proto3" json:"operationID,omitempty"`
	// contains filtered or unexported fields
}

func (*MsgDataToDB) Descriptor deprecated

func (*MsgDataToDB) Descriptor() ([]byte, []int)

Deprecated: Use MsgDataToDB.ProtoReflect.Descriptor instead.

func (*MsgDataToDB) GetMsgData

func (x *MsgDataToDB) GetMsgData() *MsgData

func (*MsgDataToDB) GetOperationID

func (x *MsgDataToDB) GetOperationID() string

func (*MsgDataToDB) ProtoMessage

func (*MsgDataToDB) ProtoMessage()

func (*MsgDataToDB) ProtoReflect

func (x *MsgDataToDB) ProtoReflect() protoreflect.Message

func (*MsgDataToDB) Reset

func (x *MsgDataToDB) Reset()

func (*MsgDataToDB) String

func (x *MsgDataToDB) String() string

type MsgDataToMQ

type MsgDataToMQ struct {
	Token       string   `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
	OperationID string   `protobuf:"bytes,2,opt,name=operationID,proto3" json:"operationID,omitempty"`
	MsgData     *MsgData `protobuf:"bytes,3,opt,name=msgData,proto3" json:"msgData,omitempty"`
	// contains filtered or unexported fields
}

func (*MsgDataToMQ) Descriptor deprecated

func (*MsgDataToMQ) Descriptor() ([]byte, []int)

Deprecated: Use MsgDataToMQ.ProtoReflect.Descriptor instead.

func (*MsgDataToMQ) GetMsgData

func (x *MsgDataToMQ) GetMsgData() *MsgData

func (*MsgDataToMQ) GetOperationID

func (x *MsgDataToMQ) GetOperationID() string

func (*MsgDataToMQ) GetToken

func (x *MsgDataToMQ) GetToken() string

func (*MsgDataToMQ) ProtoMessage

func (*MsgDataToMQ) ProtoMessage()

func (*MsgDataToMQ) ProtoReflect

func (x *MsgDataToMQ) ProtoReflect() protoreflect.Message

func (*MsgDataToMQ) Reset

func (x *MsgDataToMQ) Reset()

func (*MsgDataToMQ) String

func (x *MsgDataToMQ) String() string

type OfflinePushInfo

type OfflinePushInfo struct {
	Title         string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Desc          string `protobuf:"bytes,2,opt,name=desc,proto3" json:"desc,omitempty"`
	Ex            string `protobuf:"bytes,3,opt,name=ex,proto3" json:"ex,omitempty"`
	IOSPushSound  string `protobuf:"bytes,4,opt,name=iOSPushSound,proto3" json:"iOSPushSound,omitempty"`
	IOSBadgeCount bool   `protobuf:"varint,5,opt,name=iOSBadgeCount,proto3" json:"iOSBadgeCount,omitempty"`
	// contains filtered or unexported fields
}

func (*OfflinePushInfo) Descriptor deprecated

func (*OfflinePushInfo) Descriptor() ([]byte, []int)

Deprecated: Use OfflinePushInfo.ProtoReflect.Descriptor instead.

func (*OfflinePushInfo) GetDesc

func (x *OfflinePushInfo) GetDesc() string

func (*OfflinePushInfo) GetEx

func (x *OfflinePushInfo) GetEx() string

func (*OfflinePushInfo) GetIOSBadgeCount

func (x *OfflinePushInfo) GetIOSBadgeCount() bool

func (*OfflinePushInfo) GetIOSPushSound

func (x *OfflinePushInfo) GetIOSPushSound() string

func (*OfflinePushInfo) GetTitle

func (x *OfflinePushInfo) GetTitle() string

func (*OfflinePushInfo) ProtoMessage

func (*OfflinePushInfo) ProtoMessage()

func (*OfflinePushInfo) ProtoReflect

func (x *OfflinePushInfo) ProtoReflect() protoreflect.Message

func (*OfflinePushInfo) Reset

func (x *OfflinePushInfo) Reset()

func (*OfflinePushInfo) String

func (x *OfflinePushInfo) String() string

type OrganizationChangedTips

type OrganizationChangedTips struct {
	OpUser        *UserInfo `protobuf:"bytes,2,opt,name=opUser,proto3" json:"opUser,omitempty"`
	OperationTime int64     `protobuf:"varint,3,opt,name=operationTime,proto3" json:"operationTime,omitempty"`
	// contains filtered or unexported fields
}

func (*OrganizationChangedTips) Descriptor deprecated

func (*OrganizationChangedTips) Descriptor() ([]byte, []int)

Deprecated: Use OrganizationChangedTips.ProtoReflect.Descriptor instead.

func (*OrganizationChangedTips) GetOpUser

func (x *OrganizationChangedTips) GetOpUser() *UserInfo

func (*OrganizationChangedTips) GetOperationTime

func (x *OrganizationChangedTips) GetOperationTime() int64

func (*OrganizationChangedTips) ProtoMessage

func (*OrganizationChangedTips) ProtoMessage()

func (*OrganizationChangedTips) ProtoReflect

func (x *OrganizationChangedTips) ProtoReflect() protoreflect.Message

func (*OrganizationChangedTips) Reset

func (x *OrganizationChangedTips) Reset()

func (*OrganizationChangedTips) String

func (x *OrganizationChangedTips) String() string

type OrganizationUser

type OrganizationUser struct {
	UserID      string `protobuf:"bytes,1,opt,name=userID,proto3" json:"userID,omitempty"`
	Nickname    string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname,omitempty"`
	EnglishName string `protobuf:"bytes,3,opt,name=englishName,proto3" json:"englishName,omitempty"`
	FaceURL     string `protobuf:"bytes,4,opt,name=faceURL,proto3" json:"faceURL,omitempty"`
	Gender      int32  `protobuf:"varint,5,opt,name=gender,proto3" json:"gender,omitempty"`
	Mobile      string `protobuf:"bytes,6,opt,name=mobile,proto3" json:"mobile,omitempty"`
	Telephone   string `protobuf:"bytes,7,opt,name=telephone,proto3" json:"telephone,omitempty"`
	Birth       uint32 `protobuf:"varint,8,opt,name=birth,proto3" json:"birth,omitempty"`
	Email       string `protobuf:"bytes,9,opt,name=email,proto3" json:"email,omitempty"`
	CreateTime  uint32 `protobuf:"varint,10,opt,name=createTime,proto3" json:"createTime,omitempty"`
	Ex          string `protobuf:"bytes,11,opt,name=ex,proto3" json:"ex,omitempty"`
	// contains filtered or unexported fields
}

func (*OrganizationUser) Descriptor deprecated

func (*OrganizationUser) Descriptor() ([]byte, []int)

Deprecated: Use OrganizationUser.ProtoReflect.Descriptor instead.

func (*OrganizationUser) GetBirth

func (x *OrganizationUser) GetBirth() uint32

func (*OrganizationUser) GetCreateTime

func (x *OrganizationUser) GetCreateTime() uint32

func (*OrganizationUser) GetEmail

func (x *OrganizationUser) GetEmail() string

func (*OrganizationUser) GetEnglishName

func (x *OrganizationUser) GetEnglishName() string

func (*OrganizationUser) GetEx

func (x *OrganizationUser) GetEx() string

func (*OrganizationUser) GetFaceURL

func (x *OrganizationUser) GetFaceURL() string

func (*OrganizationUser) GetGender

func (x *OrganizationUser) GetGender() int32

func (*OrganizationUser) GetMobile

func (x *OrganizationUser) GetMobile() string

func (*OrganizationUser) GetNickname

func (x *OrganizationUser) GetNickname() string

func (*OrganizationUser) GetTelephone

func (x *OrganizationUser) GetTelephone() string

func (*OrganizationUser) GetUserID

func (x *OrganizationUser) GetUserID() string

func (*OrganizationUser) ProtoMessage

func (*OrganizationUser) ProtoMessage()

func (*OrganizationUser) ProtoReflect

func (x *OrganizationUser) ProtoReflect() protoreflect.Message

func (*OrganizationUser) Reset

func (x *OrganizationUser) Reset()

func (*OrganizationUser) String

func (x *OrganizationUser) String() string

type ParticipantMetaData

type ParticipantMetaData struct {
	GroupInfo       *GroupInfo           `protobuf:"bytes,1,opt,name=groupInfo,proto3" json:"groupInfo,omitempty"`
	GroupMemberInfo *GroupMemberFullInfo `protobuf:"bytes,2,opt,name=groupMemberInfo,proto3" json:"groupMemberInfo,omitempty"`
	UserInfo        *PublicUserInfo      `protobuf:"bytes,3,opt,name=userInfo,proto3" json:"userInfo,omitempty"`
	// contains filtered or unexported fields
}

func (*ParticipantMetaData) Descriptor deprecated

func (*ParticipantMetaData) Descriptor() ([]byte, []int)

Deprecated: Use ParticipantMetaData.ProtoReflect.Descriptor instead.

func (*ParticipantMetaData) GetGroupInfo

func (x *ParticipantMetaData) GetGroupInfo() *GroupInfo

func (*ParticipantMetaData) GetGroupMemberInfo

func (x *ParticipantMetaData) GetGroupMemberInfo() *GroupMemberFullInfo

func (*ParticipantMetaData) GetUserInfo

func (x *ParticipantMetaData) GetUserInfo() *PublicUserInfo

func (*ParticipantMetaData) ProtoMessage

func (*ParticipantMetaData) ProtoMessage()

func (*ParticipantMetaData) ProtoReflect

func (x *ParticipantMetaData) ProtoReflect() protoreflect.Message

func (*ParticipantMetaData) Reset

func (x *ParticipantMetaData) Reset()

func (*ParticipantMetaData) String

func (x *ParticipantMetaData) String() string

type PublicUserInfo

type PublicUserInfo struct {
	UserID   string `protobuf:"bytes,1,opt,name=userID,proto3" json:"userID,omitempty"`
	Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname,omitempty"`
	FaceURL  string `protobuf:"bytes,3,opt,name=faceURL,proto3" json:"faceURL,omitempty"`
	Gender   int32  `protobuf:"varint,4,opt,name=gender,proto3" json:"gender,omitempty"`
	Ex       string `protobuf:"bytes,5,opt,name=ex,proto3" json:"ex,omitempty"`
	// contains filtered or unexported fields
}

func (*PublicUserInfo) Descriptor deprecated

func (*PublicUserInfo) Descriptor() ([]byte, []int)

Deprecated: Use PublicUserInfo.ProtoReflect.Descriptor instead.

func (*PublicUserInfo) GetEx

func (x *PublicUserInfo) GetEx() string

func (*PublicUserInfo) GetFaceURL

func (x *PublicUserInfo) GetFaceURL() string

func (*PublicUserInfo) GetGender

func (x *PublicUserInfo) GetGender() int32

func (*PublicUserInfo) GetNickname

func (x *PublicUserInfo) GetNickname() string

func (*PublicUserInfo) GetUserID

func (x *PublicUserInfo) GetUserID() string

func (*PublicUserInfo) ProtoMessage

func (*PublicUserInfo) ProtoMessage()

func (*PublicUserInfo) ProtoReflect

func (x *PublicUserInfo) ProtoReflect() protoreflect.Message

func (*PublicUserInfo) Reset

func (x *PublicUserInfo) Reset()

func (*PublicUserInfo) String

func (x *PublicUserInfo) String() string

type PullMessageBySeqListReq

type PullMessageBySeqListReq struct {
	UserID  string   `protobuf:"bytes,1,opt,name=userID,proto3" json:"userID,omitempty"`
	SeqList []uint32 `protobuf:"varint,2,rep,packed,name=seqList,proto3" json:"seqList,omitempty"`
	// contains filtered or unexported fields
}

func (*PullMessageBySeqListReq) Descriptor deprecated

func (*PullMessageBySeqListReq) Descriptor() ([]byte, []int)

Deprecated: Use PullMessageBySeqListReq.ProtoReflect.Descriptor instead.

func (*PullMessageBySeqListReq) GetSeqList

func (x *PullMessageBySeqListReq) GetSeqList() []uint32

func (*PullMessageBySeqListReq) GetUserID

func (x *PullMessageBySeqListReq) GetUserID() string

func (*PullMessageBySeqListReq) ProtoMessage

func (*PullMessageBySeqListReq) ProtoMessage()

func (*PullMessageBySeqListReq) ProtoReflect

func (x *PullMessageBySeqListReq) ProtoReflect() protoreflect.Message

func (*PullMessageBySeqListReq) Reset

func (x *PullMessageBySeqListReq) Reset()

func (*PullMessageBySeqListReq) String

func (x *PullMessageBySeqListReq) String() string

type PullMessageBySeqListResp

type PullMessageBySeqListResp struct {
	List    []*MsgData `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
	ErrCode int32      `protobuf:"varint,2,opt,name=errCode,proto3" json:"errCode,omitempty"`
	ErrMsg  string     `protobuf:"bytes,3,opt,name=errMsg,proto3" json:"errMsg,omitempty"`
	// contains filtered or unexported fields
}

func (*PullMessageBySeqListResp) Descriptor deprecated

func (*PullMessageBySeqListResp) Descriptor() ([]byte, []int)

Deprecated: Use PullMessageBySeqListResp.ProtoReflect.Descriptor instead.

func (*PullMessageBySeqListResp) GetErrCode

func (x *PullMessageBySeqListResp) GetErrCode() int32

func (*PullMessageBySeqListResp) GetErrMsg

func (x *PullMessageBySeqListResp) GetErrMsg() string

func (*PullMessageBySeqListResp) GetList

func (x *PullMessageBySeqListResp) GetList() []*MsgData

func (*PullMessageBySeqListResp) ProtoMessage

func (*PullMessageBySeqListResp) ProtoMessage()

func (*PullMessageBySeqListResp) ProtoReflect

func (x *PullMessageBySeqListResp) ProtoReflect() protoreflect.Message

func (*PullMessageBySeqListResp) Reset

func (x *PullMessageBySeqListResp) Reset()

func (*PullMessageBySeqListResp) String

func (x *PullMessageBySeqListResp) String() string

type PullMessageBySuperGroupSeqListReq

type PullMessageBySuperGroupSeqListReq struct {
	GroupID string   `protobuf:"bytes,1,opt,name=groupID,proto3" json:"groupID,omitempty"`
	SeqList []uint32 `protobuf:"varint,2,rep,packed,name=seqList,proto3" json:"seqList,omitempty"`
	// contains filtered or unexported fields
}

func (*PullMessageBySuperGroupSeqListReq) Descriptor deprecated

func (*PullMessageBySuperGroupSeqListReq) Descriptor() ([]byte, []int)

Deprecated: Use PullMessageBySuperGroupSeqListReq.ProtoReflect.Descriptor instead.

func (*PullMessageBySuperGroupSeqListReq) GetGroupID

func (x *PullMessageBySuperGroupSeqListReq) GetGroupID() string

func (*PullMessageBySuperGroupSeqListReq) GetSeqList

func (x *PullMessageBySuperGroupSeqListReq) GetSeqList() []uint32

func (*PullMessageBySuperGroupSeqListReq) ProtoMessage

func (*PullMessageBySuperGroupSeqListReq) ProtoMessage()

func (*PullMessageBySuperGroupSeqListReq) ProtoReflect

func (*PullMessageBySuperGroupSeqListReq) Reset

func (*PullMessageBySuperGroupSeqListReq) String

type PushMsgDataToMQ

type PushMsgDataToMQ struct {
	OperationID  string   `protobuf:"bytes,1,opt,name=OperationID,proto3" json:"OperationID,omitempty"`
	MsgData      *MsgData `protobuf:"bytes,2,opt,name=msgData,proto3" json:"msgData,omitempty"`
	PushToUserID string   `protobuf:"bytes,3,opt,name=pushToUserID,proto3" json:"pushToUserID,omitempty"`
	// contains filtered or unexported fields
}

func (*PushMsgDataToMQ) Descriptor deprecated

func (*PushMsgDataToMQ) Descriptor() ([]byte, []int)

Deprecated: Use PushMsgDataToMQ.ProtoReflect.Descriptor instead.

func (*PushMsgDataToMQ) GetMsgData

func (x *PushMsgDataToMQ) GetMsgData() *MsgData

func (*PushMsgDataToMQ) GetOperationID

func (x *PushMsgDataToMQ) GetOperationID() string

func (*PushMsgDataToMQ) GetPushToUserID

func (x *PushMsgDataToMQ) GetPushToUserID() string

func (*PushMsgDataToMQ) ProtoMessage

func (*PushMsgDataToMQ) ProtoMessage()

func (*PushMsgDataToMQ) ProtoReflect

func (x *PushMsgDataToMQ) ProtoReflect() protoreflect.Message

func (*PushMsgDataToMQ) Reset

func (x *PushMsgDataToMQ) Reset()

func (*PushMsgDataToMQ) String

func (x *PushMsgDataToMQ) String() string

type PushMsgToSuperGroupDataToMQ

type PushMsgToSuperGroupDataToMQ struct {
	MsgData      *MsgData `protobuf:"bytes,1,opt,name=msgData,proto3" json:"msgData,omitempty"`
	SuperGroupID string   `protobuf:"bytes,2,opt,name=superGroupID,proto3" json:"superGroupID,omitempty"`
	OperationID  string   `protobuf:"bytes,3,opt,name=OperationID,proto3" json:"OperationID,omitempty"`
	// contains filtered or unexported fields
}

func (*PushMsgToSuperGroupDataToMQ) Descriptor deprecated

func (*PushMsgToSuperGroupDataToMQ) Descriptor() ([]byte, []int)

Deprecated: Use PushMsgToSuperGroupDataToMQ.ProtoReflect.Descriptor instead.

func (*PushMsgToSuperGroupDataToMQ) GetMsgData

func (x *PushMsgToSuperGroupDataToMQ) GetMsgData() *MsgData

func (*PushMsgToSuperGroupDataToMQ) GetOperationID

func (x *PushMsgToSuperGroupDataToMQ) GetOperationID() string

func (*PushMsgToSuperGroupDataToMQ) GetSuperGroupID

func (x *PushMsgToSuperGroupDataToMQ) GetSuperGroupID() string

func (*PushMsgToSuperGroupDataToMQ) ProtoMessage

func (*PushMsgToSuperGroupDataToMQ) ProtoMessage()

func (*PushMsgToSuperGroupDataToMQ) ProtoReflect

func (*PushMsgToSuperGroupDataToMQ) Reset

func (x *PushMsgToSuperGroupDataToMQ) Reset()

func (*PushMsgToSuperGroupDataToMQ) String

func (x *PushMsgToSuperGroupDataToMQ) String() string

type RequestPagination

type RequestPagination struct {
	PageNumber int32 `protobuf:"varint,1,opt,name=pageNumber,proto3" json:"pageNumber,omitempty"`
	ShowNumber int32 `protobuf:"varint,2,opt,name=showNumber,proto3" json:"showNumber,omitempty"`
	// contains filtered or unexported fields
}

/cms

func (*RequestPagination) Descriptor deprecated

func (*RequestPagination) Descriptor() ([]byte, []int)

Deprecated: Use RequestPagination.ProtoReflect.Descriptor instead.

func (*RequestPagination) GetPageNumber

func (x *RequestPagination) GetPageNumber() int32

func (*RequestPagination) GetShowNumber

func (x *RequestPagination) GetShowNumber() int32

func (*RequestPagination) ProtoMessage

func (*RequestPagination) ProtoMessage()

func (*RequestPagination) ProtoReflect

func (x *RequestPagination) ProtoReflect() protoreflect.Message

func (*RequestPagination) Reset

func (x *RequestPagination) Reset()

func (*RequestPagination) String

func (x *RequestPagination) String() string

type ResponsePagination

type ResponsePagination struct {
	CurrentPage int32 `protobuf:"varint,5,opt,name=CurrentPage,proto3" json:"CurrentPage,omitempty"`
	ShowNumber  int32 `protobuf:"varint,6,opt,name=ShowNumber,proto3" json:"ShowNumber,omitempty"`
	// contains filtered or unexported fields
}

func (*ResponsePagination) Descriptor deprecated

func (*ResponsePagination) Descriptor() ([]byte, []int)

Deprecated: Use ResponsePagination.ProtoReflect.Descriptor instead.

func (*ResponsePagination) GetCurrentPage

func (x *ResponsePagination) GetCurrentPage() int32

func (*ResponsePagination) GetShowNumber

func (x *ResponsePagination) GetShowNumber() int32

func (*ResponsePagination) ProtoMessage

func (*ResponsePagination) ProtoMessage()

func (*ResponsePagination) ProtoReflect

func (x *ResponsePagination) ProtoReflect() protoreflect.Message

func (*ResponsePagination) Reset

func (x *ResponsePagination) Reset()

func (*ResponsePagination) String

func (x *ResponsePagination) String() string

type SendMsgReq

type SendMsgReq struct {
	Token   string   `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
	MsgData *MsgData `protobuf:"bytes,2,opt,name=msgData,proto3" json:"msgData,omitempty"`
	// contains filtered or unexported fields
}

func (*SendMsgReq) Descriptor deprecated

func (*SendMsgReq) Descriptor() ([]byte, []int)

Deprecated: Use SendMsgReq.ProtoReflect.Descriptor instead.

func (*SendMsgReq) GetMsgData

func (x *SendMsgReq) GetMsgData() *MsgData

func (*SendMsgReq) GetToken

func (x *SendMsgReq) GetToken() string

func (*SendMsgReq) ProtoMessage

func (*SendMsgReq) ProtoMessage()

func (*SendMsgReq) ProtoReflect

func (x *SendMsgReq) ProtoReflect() protoreflect.Message

func (*SendMsgReq) Reset

func (x *SendMsgReq) Reset()

func (*SendMsgReq) String

func (x *SendMsgReq) String() string

type SendMsgResp

type SendMsgResp struct {
	ServerMsgID string `protobuf:"bytes,1,opt,name=serverMsgID,proto3" json:"serverMsgID,omitempty"`
	ClientMsgID string `protobuf:"bytes,2,opt,name=clientMsgID,proto3" json:"clientMsgID,omitempty"`
	ServerTime  int64  `protobuf:"varint,3,opt,name=serverTime,proto3" json:"serverTime,omitempty"`
	ErrCode     int32  `protobuf:"varint,4,opt,name=ErrCode,proto3" json:"ErrCode,omitempty"`
	ErrMsg      string `protobuf:"bytes,5,opt,name=ErrMsg,proto3" json:"ErrMsg,omitempty"`
	// contains filtered or unexported fields
}

func (*SendMsgResp) Descriptor deprecated

func (*SendMsgResp) Descriptor() ([]byte, []int)

Deprecated: Use SendMsgResp.ProtoReflect.Descriptor instead.

func (*SendMsgResp) GetClientMsgID

func (x *SendMsgResp) GetClientMsgID() string

func (*SendMsgResp) GetErrCode

func (x *SendMsgResp) GetErrCode() int32

func (*SendMsgResp) GetErrMsg

func (x *SendMsgResp) GetErrMsg() string

func (*SendMsgResp) GetServerMsgID

func (x *SendMsgResp) GetServerMsgID() string

func (*SendMsgResp) GetServerTime

func (x *SendMsgResp) GetServerTime() int64

func (*SendMsgResp) ProtoMessage

func (*SendMsgResp) ProtoMessage()

func (*SendMsgResp) ProtoReflect

func (x *SendMsgResp) ProtoReflect() protoreflect.Message

func (*SendMsgResp) Reset

func (x *SendMsgResp) Reset()

func (*SendMsgResp) String

func (x *SendMsgResp) String() string

type SignalAcceptReply

type SignalAcceptReply struct {
	Token   string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
	RoomID  string `protobuf:"bytes,2,opt,name=roomID,proto3" json:"roomID,omitempty"`
	LiveURL string `protobuf:"bytes,3,opt,name=liveURL,proto3" json:"liveURL,omitempty"`
	// contains filtered or unexported fields
}

func (*SignalAcceptReply) Descriptor deprecated

func (*SignalAcceptReply) Descriptor() ([]byte, []int)

Deprecated: Use SignalAcceptReply.ProtoReflect.Descriptor instead.

func (*SignalAcceptReply) GetLiveURL

func (x *SignalAcceptReply) GetLiveURL() string

func (*SignalAcceptReply) GetRoomID

func (x *SignalAcceptReply) GetRoomID() string

func (*SignalAcceptReply) GetToken

func (x *SignalAcceptReply) GetToken() string

func (*SignalAcceptReply) ProtoMessage

func (*SignalAcceptReply) ProtoMessage()

func (*SignalAcceptReply) ProtoReflect

func (x *SignalAcceptReply) ProtoReflect() protoreflect.Message

func (*SignalAcceptReply) Reset

func (x *SignalAcceptReply) Reset()

func (*SignalAcceptReply) String

func (x *SignalAcceptReply) String() string

type SignalAcceptReq

type SignalAcceptReq struct {
	OpUserID         string               `protobuf:"bytes,1,opt,name=opUserID,proto3" json:"opUserID,omitempty"`
	Invitation       *InvitationInfo      `protobuf:"bytes,2,opt,name=invitation,proto3" json:"invitation,omitempty"`
	OfflinePushInfo  *OfflinePushInfo     `protobuf:"bytes,3,opt,name=offlinePushInfo,proto3" json:"offlinePushInfo,omitempty"`
	Participant      *ParticipantMetaData `protobuf:"bytes,4,opt,name=participant,proto3" json:"participant,omitempty"`
	OpUserPlatformID int32                `protobuf:"varint,5,opt,name=opUserPlatformID,proto3" json:"opUserPlatformID,omitempty"`
	// contains filtered or unexported fields
}

func (*SignalAcceptReq) Descriptor deprecated

func (*SignalAcceptReq) Descriptor() ([]byte, []int)

Deprecated: Use SignalAcceptReq.ProtoReflect.Descriptor instead.

func (*SignalAcceptReq) GetInvitation

func (x *SignalAcceptReq) GetInvitation() *InvitationInfo

func (*SignalAcceptReq) GetOfflinePushInfo

func (x *SignalAcceptReq) GetOfflinePushInfo() *OfflinePushInfo

func (*SignalAcceptReq) GetOpUserID

func (x *SignalAcceptReq) GetOpUserID() string

func (*SignalAcceptReq) GetOpUserPlatformID

func (x *SignalAcceptReq) GetOpUserPlatformID() int32

func (*SignalAcceptReq) GetParticipant

func (x *SignalAcceptReq) GetParticipant() *ParticipantMetaData

func (*SignalAcceptReq) ProtoMessage

func (*SignalAcceptReq) ProtoMessage()

func (*SignalAcceptReq) ProtoReflect

func (x *SignalAcceptReq) ProtoReflect() protoreflect.Message

func (*SignalAcceptReq) Reset

func (x *SignalAcceptReq) Reset()

func (*SignalAcceptReq) String

func (x *SignalAcceptReq) String() string

type SignalCancelReply

type SignalCancelReply struct {
	// contains filtered or unexported fields
}

func (*SignalCancelReply) Descriptor deprecated

func (*SignalCancelReply) Descriptor() ([]byte, []int)

Deprecated: Use SignalCancelReply.ProtoReflect.Descriptor instead.

func (*SignalCancelReply) ProtoMessage

func (*SignalCancelReply) ProtoMessage()

func (*SignalCancelReply) ProtoReflect

func (x *SignalCancelReply) ProtoReflect() protoreflect.Message

func (*SignalCancelReply) Reset

func (x *SignalCancelReply) Reset()

func (*SignalCancelReply) String

func (x *SignalCancelReply) String() string

type SignalCancelReq

type SignalCancelReq struct {
	OpUserID        string               `protobuf:"bytes,1,opt,name=opUserID,proto3" json:"opUserID,omitempty"`
	Invitation      *InvitationInfo      `protobuf:"bytes,2,opt,name=invitation,proto3" json:"invitation,omitempty"`
	OfflinePushInfo *OfflinePushInfo     `protobuf:"bytes,3,opt,name=offlinePushInfo,proto3" json:"offlinePushInfo,omitempty"`
	Participant     *ParticipantMetaData `protobuf:"bytes,4,opt,name=participant,proto3" json:"participant,omitempty"`
	// contains filtered or unexported fields
}

func (*SignalCancelReq) Descriptor deprecated

func (*SignalCancelReq) Descriptor() ([]byte, []int)

Deprecated: Use SignalCancelReq.ProtoReflect.Descriptor instead.

func (*SignalCancelReq) GetInvitation

func (x *SignalCancelReq) GetInvitation() *InvitationInfo

func (*SignalCancelReq) GetOfflinePushInfo

func (x *SignalCancelReq) GetOfflinePushInfo() *OfflinePushInfo

func (*SignalCancelReq) GetOpUserID

func (x *SignalCancelReq) GetOpUserID() string

func (*SignalCancelReq) GetParticipant

func (x *SignalCancelReq) GetParticipant() *ParticipantMetaData

func (*SignalCancelReq) ProtoMessage

func (*SignalCancelReq) ProtoMessage()

func (*SignalCancelReq) ProtoReflect

func (x *SignalCancelReq) ProtoReflect() protoreflect.Message

func (*SignalCancelReq) Reset

func (x *SignalCancelReq) Reset()

func (*SignalCancelReq) String

func (x *SignalCancelReq) String() string

type SignalHungUpReply

type SignalHungUpReply struct {
	// contains filtered or unexported fields
}

func (*SignalHungUpReply) Descriptor deprecated

func (*SignalHungUpReply) Descriptor() ([]byte, []int)

Deprecated: Use SignalHungUpReply.ProtoReflect.Descriptor instead.

func (*SignalHungUpReply) ProtoMessage

func (*SignalHungUpReply) ProtoMessage()

func (*SignalHungUpReply) ProtoReflect

func (x *SignalHungUpReply) ProtoReflect() protoreflect.Message

func (*SignalHungUpReply) Reset

func (x *SignalHungUpReply) Reset()

func (*SignalHungUpReply) String

func (x *SignalHungUpReply) String() string

type SignalHungUpReq

type SignalHungUpReq struct {
	OpUserID        string           `protobuf:"bytes,1,opt,name=opUserID,proto3" json:"opUserID,omitempty"`
	Invitation      *InvitationInfo  `protobuf:"bytes,2,opt,name=invitation,proto3" json:"invitation,omitempty"`
	OfflinePushInfo *OfflinePushInfo `protobuf:"bytes,3,opt,name=offlinePushInfo,proto3" json:"offlinePushInfo,omitempty"`
	// contains filtered or unexported fields
}

func (*SignalHungUpReq) Descriptor deprecated

func (*SignalHungUpReq) Descriptor() ([]byte, []int)

Deprecated: Use SignalHungUpReq.ProtoReflect.Descriptor instead.

func (*SignalHungUpReq) GetInvitation

func (x *SignalHungUpReq) GetInvitation() *InvitationInfo

func (*SignalHungUpReq) GetOfflinePushInfo

func (x *SignalHungUpReq) GetOfflinePushInfo() *OfflinePushInfo

func (*SignalHungUpReq) GetOpUserID

func (x *SignalHungUpReq) GetOpUserID() string

func (*SignalHungUpReq) ProtoMessage

func (*SignalHungUpReq) ProtoMessage()

func (*SignalHungUpReq) ProtoReflect

func (x *SignalHungUpReq) ProtoReflect() protoreflect.Message

func (*SignalHungUpReq) Reset

func (x *SignalHungUpReq) Reset()

func (*SignalHungUpReq) String

func (x *SignalHungUpReq) String() string

type SignalInviteInGroupReply

type SignalInviteInGroupReply struct {
	Token   string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
	RoomID  string `protobuf:"bytes,2,opt,name=roomID,proto3" json:"roomID,omitempty"`
	LiveURL string `protobuf:"bytes,3,opt,name=liveURL,proto3" json:"liveURL,omitempty"`
	// contains filtered or unexported fields
}

func (*SignalInviteInGroupReply) Descriptor deprecated

func (*SignalInviteInGroupReply) Descriptor() ([]byte, []int)

Deprecated: Use SignalInviteInGroupReply.ProtoReflect.Descriptor instead.

func (*SignalInviteInGroupReply) GetLiveURL

func (x *SignalInviteInGroupReply) GetLiveURL() string

func (*SignalInviteInGroupReply) GetRoomID

func (x *SignalInviteInGroupReply) GetRoomID() string

func (*SignalInviteInGroupReply) GetToken

func (x *SignalInviteInGroupReply) GetToken() string

func (*SignalInviteInGroupReply) ProtoMessage

func (*SignalInviteInGroupReply) ProtoMessage()

func (*SignalInviteInGroupReply) ProtoReflect

func (x *SignalInviteInGroupReply) ProtoReflect() protoreflect.Message

func (*SignalInviteInGroupReply) Reset

func (x *SignalInviteInGroupReply) Reset()

func (*SignalInviteInGroupReply) String

func (x *SignalInviteInGroupReply) String() string

type SignalInviteInGroupReq

type SignalInviteInGroupReq struct {
	OpUserID        string               `protobuf:"bytes,1,opt,name=opUserID,proto3" json:"opUserID,omitempty"`
	Invitation      *InvitationInfo      `protobuf:"bytes,2,opt,name=invitation,proto3" json:"invitation,omitempty"`
	OfflinePushInfo *OfflinePushInfo     `protobuf:"bytes,3,opt,name=offlinePushInfo,proto3" json:"offlinePushInfo,omitempty"`
	Participant     *ParticipantMetaData `protobuf:"bytes,4,opt,name=participant,proto3" json:"participant,omitempty"`
	// contains filtered or unexported fields
}

func (*SignalInviteInGroupReq) Descriptor deprecated

func (*SignalInviteInGroupReq) Descriptor() ([]byte, []int)

Deprecated: Use SignalInviteInGroupReq.ProtoReflect.Descriptor instead.

func (*SignalInviteInGroupReq) GetInvitation

func (x *SignalInviteInGroupReq) GetInvitation() *InvitationInfo

func (*SignalInviteInGroupReq) GetOfflinePushInfo

func (x *SignalInviteInGroupReq) GetOfflinePushInfo() *OfflinePushInfo

func (*SignalInviteInGroupReq) GetOpUserID

func (x *SignalInviteInGroupReq) GetOpUserID() string

func (*SignalInviteInGroupReq) GetParticipant

func (x *SignalInviteInGroupReq) GetParticipant() *ParticipantMetaData

func (*SignalInviteInGroupReq) ProtoMessage

func (*SignalInviteInGroupReq) ProtoMessage()

func (*SignalInviteInGroupReq) ProtoReflect

func (x *SignalInviteInGroupReq) ProtoReflect() protoreflect.Message

func (*SignalInviteInGroupReq) Reset

func (x *SignalInviteInGroupReq) Reset()

func (*SignalInviteInGroupReq) String

func (x *SignalInviteInGroupReq) String() string

type SignalInviteReply

type SignalInviteReply struct {
	Token   string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
	RoomID  string `protobuf:"bytes,2,opt,name=roomID,proto3" json:"roomID,omitempty"`
	LiveURL string `protobuf:"bytes,3,opt,name=liveURL,proto3" json:"liveURL,omitempty"`
	// contains filtered or unexported fields
}

func (*SignalInviteReply) Descriptor deprecated

func (*SignalInviteReply) Descriptor() ([]byte, []int)

Deprecated: Use SignalInviteReply.ProtoReflect.Descriptor instead.

func (*SignalInviteReply) GetLiveURL

func (x *SignalInviteReply) GetLiveURL() string

func (*SignalInviteReply) GetRoomID

func (x *SignalInviteReply) GetRoomID() string

func (*SignalInviteReply) GetToken

func (x *SignalInviteReply) GetToken() string

func (*SignalInviteReply) ProtoMessage

func (*SignalInviteReply) ProtoMessage()

func (*SignalInviteReply) ProtoReflect

func (x *SignalInviteReply) ProtoReflect() protoreflect.Message

func (*SignalInviteReply) Reset

func (x *SignalInviteReply) Reset()

func (*SignalInviteReply) String

func (x *SignalInviteReply) String() string

type SignalInviteReq

type SignalInviteReq struct {
	OpUserID        string               `protobuf:"bytes,1,opt,name=opUserID,proto3" json:"opUserID,omitempty"`
	Invitation      *InvitationInfo      `protobuf:"bytes,2,opt,name=invitation,proto3" json:"invitation,omitempty"`
	OfflinePushInfo *OfflinePushInfo     `protobuf:"bytes,3,opt,name=offlinePushInfo,proto3" json:"offlinePushInfo,omitempty"`
	Participant     *ParticipantMetaData `protobuf:"bytes,4,opt,name=participant,proto3" json:"participant,omitempty"`
	// contains filtered or unexported fields
}

func (*SignalInviteReq) Descriptor deprecated

func (*SignalInviteReq) Descriptor() ([]byte, []int)

Deprecated: Use SignalInviteReq.ProtoReflect.Descriptor instead.

func (*SignalInviteReq) GetInvitation

func (x *SignalInviteReq) GetInvitation() *InvitationInfo

func (*SignalInviteReq) GetOfflinePushInfo

func (x *SignalInviteReq) GetOfflinePushInfo() *OfflinePushInfo

func (*SignalInviteReq) GetOpUserID

func (x *SignalInviteReq) GetOpUserID() string

func (*SignalInviteReq) GetParticipant

func (x *SignalInviteReq) GetParticipant() *ParticipantMetaData

func (*SignalInviteReq) ProtoMessage

func (*SignalInviteReq) ProtoMessage()

func (*SignalInviteReq) ProtoReflect

func (x *SignalInviteReq) ProtoReflect() protoreflect.Message

func (*SignalInviteReq) Reset

func (x *SignalInviteReq) Reset()

func (*SignalInviteReq) String

func (x *SignalInviteReq) String() string

type SignalRejectReply

type SignalRejectReply struct {
	// contains filtered or unexported fields
}

func (*SignalRejectReply) Descriptor deprecated

func (*SignalRejectReply) Descriptor() ([]byte, []int)

Deprecated: Use SignalRejectReply.ProtoReflect.Descriptor instead.

func (*SignalRejectReply) ProtoMessage

func (*SignalRejectReply) ProtoMessage()

func (*SignalRejectReply) ProtoReflect

func (x *SignalRejectReply) ProtoReflect() protoreflect.Message

func (*SignalRejectReply) Reset

func (x *SignalRejectReply) Reset()

func (*SignalRejectReply) String

func (x *SignalRejectReply) String() string

type SignalRejectReq

type SignalRejectReq struct {
	OpUserID         string               `protobuf:"bytes,1,opt,name=opUserID,proto3" json:"opUserID,omitempty"`
	Invitation       *InvitationInfo      `protobuf:"bytes,2,opt,name=invitation,proto3" json:"invitation,omitempty"`
	OfflinePushInfo  *OfflinePushInfo     `protobuf:"bytes,3,opt,name=offlinePushInfo,proto3" json:"offlinePushInfo,omitempty"`
	Participant      *ParticipantMetaData `protobuf:"bytes,4,opt,name=participant,proto3" json:"participant,omitempty"`
	OpUserPlatformID int32                `protobuf:"varint,5,opt,name=opUserPlatformID,proto3" json:"opUserPlatformID,omitempty"`
	// contains filtered or unexported fields
}

func (*SignalRejectReq) Descriptor deprecated

func (*SignalRejectReq) Descriptor() ([]byte, []int)

Deprecated: Use SignalRejectReq.ProtoReflect.Descriptor instead.

func (*SignalRejectReq) GetInvitation

func (x *SignalRejectReq) GetInvitation() *InvitationInfo

func (*SignalRejectReq) GetOfflinePushInfo

func (x *SignalRejectReq) GetOfflinePushInfo() *OfflinePushInfo

func (*SignalRejectReq) GetOpUserID

func (x *SignalRejectReq) GetOpUserID() string

func (*SignalRejectReq) GetOpUserPlatformID

func (x *SignalRejectReq) GetOpUserPlatformID() int32

func (*SignalRejectReq) GetParticipant

func (x *SignalRejectReq) GetParticipant() *ParticipantMetaData

func (*SignalRejectReq) ProtoMessage

func (*SignalRejectReq) ProtoMessage()

func (*SignalRejectReq) ProtoReflect

func (x *SignalRejectReq) ProtoReflect() protoreflect.Message

func (*SignalRejectReq) Reset

func (x *SignalRejectReq) Reset()

func (*SignalRejectReq) String

func (x *SignalRejectReq) String() string

type SignalReq

type SignalReq struct {

	// Types that are assignable to Payload:
	//	*SignalReq_Invite
	//	*SignalReq_InviteInGroup
	//	*SignalReq_Cancel
	//	*SignalReq_Accept
	//	*SignalReq_HungUp
	//	*SignalReq_Reject
	Payload isSignalReq_Payload `protobuf_oneof:"payload"`
	// contains filtered or unexported fields
}

/////////////////signal//////////////

func (*SignalReq) Descriptor deprecated

func (*SignalReq) Descriptor() ([]byte, []int)

Deprecated: Use SignalReq.ProtoReflect.Descriptor instead.

func (*SignalReq) GetAccept

func (x *SignalReq) GetAccept() *SignalAcceptReq

func (*SignalReq) GetCancel

func (x *SignalReq) GetCancel() *SignalCancelReq

func (*SignalReq) GetHungUp

func (x *SignalReq) GetHungUp() *SignalHungUpReq

func (*SignalReq) GetInvite

func (x *SignalReq) GetInvite() *SignalInviteReq

func (*SignalReq) GetInviteInGroup

func (x *SignalReq) GetInviteInGroup() *SignalInviteInGroupReq

func (*SignalReq) GetPayload

func (m *SignalReq) GetPayload() isSignalReq_Payload

func (*SignalReq) GetReject

func (x *SignalReq) GetReject() *SignalRejectReq

func (*SignalReq) ProtoMessage

func (*SignalReq) ProtoMessage()

func (*SignalReq) ProtoReflect

func (x *SignalReq) ProtoReflect() protoreflect.Message

func (*SignalReq) Reset

func (x *SignalReq) Reset()

func (*SignalReq) String

func (x *SignalReq) String() string

type SignalReq_Accept

type SignalReq_Accept struct {
	Accept *SignalAcceptReq `protobuf:"bytes,4,opt,name=accept,proto3,oneof"`
}

type SignalReq_Cancel

type SignalReq_Cancel struct {
	Cancel *SignalCancelReq `protobuf:"bytes,3,opt,name=cancel,proto3,oneof"`
}

type SignalReq_HungUp

type SignalReq_HungUp struct {
	HungUp *SignalHungUpReq `protobuf:"bytes,5,opt,name=hungUp,proto3,oneof"`
}

type SignalReq_Invite

type SignalReq_Invite struct {
	Invite *SignalInviteReq `protobuf:"bytes,1,opt,name=invite,proto3,oneof"`
}

type SignalReq_InviteInGroup

type SignalReq_InviteInGroup struct {
	InviteInGroup *SignalInviteInGroupReq `protobuf:"bytes,2,opt,name=inviteInGroup,proto3,oneof"`
}

type SignalReq_Reject

type SignalReq_Reject struct {
	Reject *SignalRejectReq `protobuf:"bytes,6,opt,name=reject,proto3,oneof"`
}

type SignalResp

type SignalResp struct {

	// Types that are assignable to Payload:
	//	*SignalResp_Invite
	//	*SignalResp_InviteInGroup
	//	*SignalResp_Cancel
	//	*SignalResp_Accept
	//	*SignalResp_HungUp
	//	*SignalResp_Reject
	Payload isSignalResp_Payload `protobuf_oneof:"payload"`
	// contains filtered or unexported fields
}

func (*SignalResp) Descriptor deprecated

func (*SignalResp) Descriptor() ([]byte, []int)

Deprecated: Use SignalResp.ProtoReflect.Descriptor instead.

func (*SignalResp) GetAccept

func (x *SignalResp) GetAccept() *SignalAcceptReply

func (*SignalResp) GetCancel

func (x *SignalResp) GetCancel() *SignalCancelReply

func (*SignalResp) GetHungUp

func (x *SignalResp) GetHungUp() *SignalHungUpReply

func (*SignalResp) GetInvite

func (x *SignalResp) GetInvite() *SignalInviteReply

func (*SignalResp) GetInviteInGroup

func (x *SignalResp) GetInviteInGroup() *SignalInviteInGroupReply

func (*SignalResp) GetPayload

func (m *SignalResp) GetPayload() isSignalResp_Payload

func (*SignalResp) GetReject

func (x *SignalResp) GetReject() *SignalRejectReply

func (*SignalResp) ProtoMessage

func (*SignalResp) ProtoMessage()

func (*SignalResp) ProtoReflect

func (x *SignalResp) ProtoReflect() protoreflect.Message

func (*SignalResp) Reset

func (x *SignalResp) Reset()

func (*SignalResp) String

func (x *SignalResp) String() string

type SignalResp_Accept

type SignalResp_Accept struct {
	Accept *SignalAcceptReply `protobuf:"bytes,4,opt,name=accept,proto3,oneof"`
}

type SignalResp_Cancel

type SignalResp_Cancel struct {
	Cancel *SignalCancelReply `protobuf:"bytes,3,opt,name=cancel,proto3,oneof"`
}

type SignalResp_HungUp

type SignalResp_HungUp struct {
	HungUp *SignalHungUpReply `protobuf:"bytes,5,opt,name=hungUp,proto3,oneof"`
}

type SignalResp_Invite

type SignalResp_Invite struct {
	Invite *SignalInviteReply `protobuf:"bytes,1,opt,name=invite,proto3,oneof"`
}

type SignalResp_InviteInGroup

type SignalResp_InviteInGroup struct {
	InviteInGroup *SignalInviteInGroupReply `protobuf:"bytes,2,opt,name=inviteInGroup,proto3,oneof"`
}

type SignalResp_Reject

type SignalResp_Reject struct {
	Reject *SignalRejectReply `protobuf:"bytes,6,opt,name=reject,proto3,oneof"`
}

type TipsComm

type TipsComm struct {
	Detail      []byte `protobuf:"bytes,1,opt,name=detail,proto3" json:"detail,omitempty"`
	DefaultTips string `protobuf:"bytes,2,opt,name=defaultTips,proto3" json:"defaultTips,omitempty"`
	JsonDetail  string `protobuf:"bytes,3,opt,name=jsonDetail,proto3" json:"jsonDetail,omitempty"`
	// contains filtered or unexported fields
}

func (*TipsComm) Descriptor deprecated

func (*TipsComm) Descriptor() ([]byte, []int)

Deprecated: Use TipsComm.ProtoReflect.Descriptor instead.

func (*TipsComm) GetDefaultTips

func (x *TipsComm) GetDefaultTips() string

func (*TipsComm) GetDetail

func (x *TipsComm) GetDetail() []byte

func (*TipsComm) GetJsonDetail

func (x *TipsComm) GetJsonDetail() string

func (*TipsComm) ProtoMessage

func (*TipsComm) ProtoMessage()

func (*TipsComm) ProtoReflect

func (x *TipsComm) ProtoReflect() protoreflect.Message

func (*TipsComm) Reset

func (x *TipsComm) Reset()

func (*TipsComm) String

func (x *TipsComm) String() string

type UnimplementedChatServer

type UnimplementedChatServer struct {
}

UnimplementedChatServer must be embedded to have forward compatible implementations.

func (UnimplementedChatServer) GetMaxAndMinSeq

func (UnimplementedChatServer) SendMsg

type UnimplementedExampleServer

type UnimplementedExampleServer struct {
}

UnimplementedExampleServer must be embedded to have forward compatible implementations.

type UnsafeChatServer

type UnsafeChatServer interface {
	// contains filtered or unexported methods
}

UnsafeChatServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to ChatServer will result in compilation errors.

type UnsafeExampleServer

type UnsafeExampleServer interface {
	// contains filtered or unexported methods
}

UnsafeExampleServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to ExampleServer will result in compilation errors.

type UserDepartmentMember

type UserDepartmentMember struct {
	OrganizationUser *OrganizationUser `protobuf:"bytes,1,opt,name=organizationUser,proto3" json:"organizationUser,omitempty"`
	DepartmentMember *DepartmentMember `protobuf:"bytes,2,opt,name=departmentMember,proto3" json:"departmentMember,omitempty"`
	// contains filtered or unexported fields
}

func (*UserDepartmentMember) Descriptor deprecated

func (*UserDepartmentMember) Descriptor() ([]byte, []int)

Deprecated: Use UserDepartmentMember.ProtoReflect.Descriptor instead.

func (*UserDepartmentMember) GetDepartmentMember

func (x *UserDepartmentMember) GetDepartmentMember() *DepartmentMember

func (*UserDepartmentMember) GetOrganizationUser

func (x *UserDepartmentMember) GetOrganizationUser() *OrganizationUser

func (*UserDepartmentMember) ProtoMessage

func (*UserDepartmentMember) ProtoMessage()

func (*UserDepartmentMember) ProtoReflect

func (x *UserDepartmentMember) ProtoReflect() protoreflect.Message

func (*UserDepartmentMember) Reset

func (x *UserDepartmentMember) Reset()

func (*UserDepartmentMember) String

func (x *UserDepartmentMember) String() string

type UserInDepartment

type UserInDepartment struct {
	OrganizationUser     *OrganizationUser   `protobuf:"bytes,1,opt,name=organizationUser,proto3" json:"organizationUser,omitempty"`
	DepartmentMemberList []*DepartmentMember `protobuf:"bytes,2,rep,name=departmentMemberList,proto3" json:"departmentMemberList,omitempty"`
	// contains filtered or unexported fields
}

func (*UserInDepartment) Descriptor deprecated

func (*UserInDepartment) Descriptor() ([]byte, []int)

Deprecated: Use UserInDepartment.ProtoReflect.Descriptor instead.

func (*UserInDepartment) GetDepartmentMemberList

func (x *UserInDepartment) GetDepartmentMemberList() []*DepartmentMember

func (*UserInDepartment) GetOrganizationUser

func (x *UserInDepartment) GetOrganizationUser() *OrganizationUser

func (*UserInDepartment) ProtoMessage

func (*UserInDepartment) ProtoMessage()

func (*UserInDepartment) ProtoReflect

func (x *UserInDepartment) ProtoReflect() protoreflect.Message

func (*UserInDepartment) Reset

func (x *UserInDepartment) Reset()

func (*UserInDepartment) String

func (x *UserInDepartment) String() string

type UserInfo

type UserInfo struct {
	UserID         string `protobuf:"bytes,1,opt,name=userID,proto3" json:"userID,omitempty"`
	Nickname       string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname,omitempty"`
	FaceURL        string `protobuf:"bytes,3,opt,name=faceURL,proto3" json:"faceURL,omitempty"`
	Gender         int32  `protobuf:"varint,4,opt,name=gender,proto3" json:"gender,omitempty"`
	PhoneNumber    string `protobuf:"bytes,5,opt,name=phoneNumber,proto3" json:"phoneNumber,omitempty"`
	Birth          uint32 `protobuf:"varint,6,opt,name=birth,proto3" json:"birth,omitempty"`
	Email          string `protobuf:"bytes,7,opt,name=email,proto3" json:"email,omitempty"`
	Ex             string `protobuf:"bytes,8,opt,name=ex,proto3" json:"ex,omitempty"`
	CreateTime     uint32 `protobuf:"varint,9,opt,name=createTime,proto3" json:"createTime,omitempty"`
	AppMangerLevel int32  `protobuf:"varint,10,opt,name=appMangerLevel,proto3" json:"appMangerLevel,omitempty"`
	// contains filtered or unexported fields
}

func (*UserInfo) Descriptor deprecated

func (*UserInfo) Descriptor() ([]byte, []int)

Deprecated: Use UserInfo.ProtoReflect.Descriptor instead.

func (*UserInfo) GetAppMangerLevel

func (x *UserInfo) GetAppMangerLevel() int32

func (*UserInfo) GetBirth

func (x *UserInfo) GetBirth() uint32

func (*UserInfo) GetCreateTime

func (x *UserInfo) GetCreateTime() uint32

func (*UserInfo) GetEmail

func (x *UserInfo) GetEmail() string

func (*UserInfo) GetEx

func (x *UserInfo) GetEx() string

func (*UserInfo) GetFaceURL

func (x *UserInfo) GetFaceURL() string

func (*UserInfo) GetGender

func (x *UserInfo) GetGender() int32

func (*UserInfo) GetNickname

func (x *UserInfo) GetNickname() string

func (*UserInfo) GetPhoneNumber

func (x *UserInfo) GetPhoneNumber() string

func (*UserInfo) GetUserID

func (x *UserInfo) GetUserID() string

func (*UserInfo) ProtoMessage

func (*UserInfo) ProtoMessage()

func (*UserInfo) ProtoReflect

func (x *UserInfo) ProtoReflect() protoreflect.Message

func (*UserInfo) Reset

func (x *UserInfo) Reset()

func (*UserInfo) String

func (x *UserInfo) String() string

type UserInfoUpdatedTips

type UserInfoUpdatedTips struct {
	UserID string `protobuf:"bytes,1,opt,name=userID,proto3" json:"userID,omitempty"`
	// contains filtered or unexported fields
}

////////////////////user/////////////////////

func (*UserInfoUpdatedTips) Descriptor deprecated

func (*UserInfoUpdatedTips) Descriptor() ([]byte, []int)

Deprecated: Use UserInfoUpdatedTips.ProtoReflect.Descriptor instead.

func (*UserInfoUpdatedTips) GetUserID

func (x *UserInfoUpdatedTips) GetUserID() string

func (*UserInfoUpdatedTips) ProtoMessage

func (*UserInfoUpdatedTips) ProtoMessage()

func (*UserInfoUpdatedTips) ProtoReflect

func (x *UserInfoUpdatedTips) ProtoReflect() protoreflect.Message

func (*UserInfoUpdatedTips) Reset

func (x *UserInfoUpdatedTips) Reset()

func (*UserInfoUpdatedTips) String

func (x *UserInfoUpdatedTips) String() string

type UserSendMsgResp

type UserSendMsgResp struct {
	ServerMsgID string `protobuf:"bytes,1,opt,name=serverMsgID,proto3" json:"serverMsgID,omitempty"`
	ClientMsgID string `protobuf:"bytes,2,opt,name=clientMsgID,proto3" json:"clientMsgID,omitempty"`
	ServerTime  int64  `protobuf:"varint,3,opt,name=serverTime,proto3" json:"serverTime,omitempty"`
	// contains filtered or unexported fields
}

func (*UserSendMsgResp) Descriptor deprecated

func (*UserSendMsgResp) Descriptor() ([]byte, []int)

Deprecated: Use UserSendMsgResp.ProtoReflect.Descriptor instead.

func (*UserSendMsgResp) GetClientMsgID

func (x *UserSendMsgResp) GetClientMsgID() string

func (*UserSendMsgResp) GetServerMsgID

func (x *UserSendMsgResp) GetServerMsgID() string

func (*UserSendMsgResp) GetServerTime

func (x *UserSendMsgResp) GetServerTime() int64

func (*UserSendMsgResp) ProtoMessage

func (*UserSendMsgResp) ProtoMessage()

func (*UserSendMsgResp) ProtoReflect

func (x *UserSendMsgResp) ProtoReflect() protoreflect.Message

func (*UserSendMsgResp) Reset

func (x *UserSendMsgResp) Reset()

func (*UserSendMsgResp) String

func (x *UserSendMsgResp) String() string

type WrapPullMessageBySeqListReq

type WrapPullMessageBySeqListReq struct {
	PullMessageBySeqListReq *PullMessageBySeqListReq `protobuf:"bytes,1,opt,name=PullMessageBySeqListReq,proto3" json:"PullMessageBySeqListReq,omitempty"`
	// contains filtered or unexported fields
}

func (*WrapPullMessageBySeqListReq) Descriptor deprecated

func (*WrapPullMessageBySeqListReq) Descriptor() ([]byte, []int)

Deprecated: Use WrapPullMessageBySeqListReq.ProtoReflect.Descriptor instead.

func (*WrapPullMessageBySeqListReq) GetPullMessageBySeqListReq

func (x *WrapPullMessageBySeqListReq) GetPullMessageBySeqListReq() *PullMessageBySeqListReq

func (*WrapPullMessageBySeqListReq) ProtoMessage

func (*WrapPullMessageBySeqListReq) ProtoMessage()

func (*WrapPullMessageBySeqListReq) ProtoReflect

func (*WrapPullMessageBySeqListReq) Reset

func (x *WrapPullMessageBySeqListReq) Reset()

func (*WrapPullMessageBySeqListReq) String

func (x *WrapPullMessageBySeqListReq) String() string

type WrapPullMessageBySeqListResp

type WrapPullMessageBySeqListResp struct {
	PullMessageBySeqListResp *PullMessageBySeqListResp `protobuf:"bytes,1,opt,name=PullMessageBySeqListResp,proto3" json:"PullMessageBySeqListResp,omitempty"`
	// contains filtered or unexported fields
}

func (*WrapPullMessageBySeqListResp) Descriptor deprecated

func (*WrapPullMessageBySeqListResp) Descriptor() ([]byte, []int)

Deprecated: Use WrapPullMessageBySeqListResp.ProtoReflect.Descriptor instead.

func (*WrapPullMessageBySeqListResp) GetPullMessageBySeqListResp

func (x *WrapPullMessageBySeqListResp) GetPullMessageBySeqListResp() *PullMessageBySeqListResp

func (*WrapPullMessageBySeqListResp) ProtoMessage

func (*WrapPullMessageBySeqListResp) ProtoMessage()

func (*WrapPullMessageBySeqListResp) ProtoReflect

func (*WrapPullMessageBySeqListResp) Reset

func (x *WrapPullMessageBySeqListResp) Reset()

func (*WrapPullMessageBySeqListResp) String

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL