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

2617 lines
90 KiB

// Code generated by protoc-gen-go. DO NOT EDIT.
3 years ago
// source: sdk_ws/ws.proto
3 years ago
package server_api_params
import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import math "math"
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
3 years ago
type GroupInfo struct {
GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"`
GroupName string `protobuf:"bytes,2,opt,name=groupName" json:"groupName,omitempty"`
Notification string `protobuf:"bytes,3,opt,name=notification" json:"notification,omitempty"`
Introduction string `protobuf:"bytes,4,opt,name=introduction" json:"introduction,omitempty"`
FaceURL string `protobuf:"bytes,5,opt,name=faceURL" json:"faceURL,omitempty"`
OwnerUserID string `protobuf:"bytes,6,opt,name=ownerUserID" json:"ownerUserID,omitempty"`
CreateTime uint32 `protobuf:"varint,7,opt,name=createTime" json:"createTime,omitempty"`
MemberCount uint32 `protobuf:"varint,8,opt,name=memberCount" json:"memberCount,omitempty"`
Ex string `protobuf:"bytes,9,opt,name=ex" json:"ex,omitempty"`
Status int32 `protobuf:"varint,10,opt,name=status" json:"status,omitempty"`
CreatorUserID string `protobuf:"bytes,11,opt,name=creatorUserID" json:"creatorUserID,omitempty"`
GroupType int32 `protobuf:"varint,12,opt,name=groupType" json:"groupType,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
3 years ago
func (m *GroupInfo) Reset() { *m = GroupInfo{} }
func (m *GroupInfo) String() string { return proto.CompactTextString(m) }
func (*GroupInfo) ProtoMessage() {}
func (*GroupInfo) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{0}
}
3 years ago
func (m *GroupInfo) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GroupInfo.Unmarshal(m, b)
}
3 years ago
func (m *GroupInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GroupInfo.Marshal(b, m, deterministic)
}
3 years ago
func (dst *GroupInfo) XXX_Merge(src proto.Message) {
xxx_messageInfo_GroupInfo.Merge(dst, src)
}
3 years ago
func (m *GroupInfo) XXX_Size() int {
return xxx_messageInfo_GroupInfo.Size(m)
}
3 years ago
func (m *GroupInfo) XXX_DiscardUnknown() {
xxx_messageInfo_GroupInfo.DiscardUnknown(m)
}
3 years ago
var xxx_messageInfo_GroupInfo proto.InternalMessageInfo
3 years ago
func (m *GroupInfo) GetGroupID() string {
if m != nil {
3 years ago
return m.GroupID
}
3 years ago
return ""
}
3 years ago
func (m *GroupInfo) GetGroupName() string {
if m != nil {
3 years ago
return m.GroupName
}
return ""
}
3 years ago
func (m *GroupInfo) GetNotification() string {
if m != nil {
3 years ago
return m.Notification
}
3 years ago
return ""
}
3 years ago
func (m *GroupInfo) GetIntroduction() string {
if m != nil {
3 years ago
return m.Introduction
}
3 years ago
return ""
}
func (m *GroupInfo) GetFaceURL() string {
if m != nil {
return m.FaceURL
}
3 years ago
return ""
}
3 years ago
func (m *GroupInfo) GetOwnerUserID() string {
if m != nil {
3 years ago
return m.OwnerUserID
}
3 years ago
return ""
}
3 years ago
func (m *GroupInfo) GetCreateTime() uint32 {
3 years ago
if m != nil {
return m.CreateTime
}
return 0
}
3 years ago
func (m *GroupInfo) GetMemberCount() uint32 {
if m != nil {
return m.MemberCount
}
return 0
}
3 years ago
func (m *GroupInfo) GetEx() string {
if m != nil {
3 years ago
return m.Ex
}
return ""
}
3 years ago
func (m *GroupInfo) GetStatus() int32 {
if m != nil {
3 years ago
return m.Status
}
return 0
}
func (m *GroupInfo) GetCreatorUserID() string {
if m != nil {
return m.CreatorUserID
}
return ""
}
3 years ago
func (m *GroupInfo) GetGroupType() int32 {
if m != nil {
3 years ago
return m.GroupType
}
3 years ago
return 0
}
3 years ago
type GroupMemberFullInfo struct {
GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"`
UserID string `protobuf:"bytes,2,opt,name=userID" json:"userID,omitempty"`
3 years ago
RoleLevel int32 `protobuf:"varint,3,opt,name=roleLevel" json:"roleLevel,omitempty"`
JoinTime int64 `protobuf:"varint,4,opt,name=joinTime" json:"joinTime,omitempty"`
Nickname string `protobuf:"bytes,5,opt,name=nickname" json:"nickname,omitempty"`
FaceURL string `protobuf:"bytes,6,opt,name=faceURL" json:"faceURL,omitempty"`
AppMangerLevel int32 `protobuf:"varint,7,opt,name=appMangerLevel" json:"appMangerLevel,omitempty"`
JoinSource int32 `protobuf:"varint,8,opt,name=joinSource" json:"joinSource,omitempty"`
OperatorUserID string `protobuf:"bytes,9,opt,name=operatorUserID" json:"operatorUserID,omitempty"`
Ex string `protobuf:"bytes,10,opt,name=ex" json:"ex,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
3 years ago
func (m *GroupMemberFullInfo) Reset() { *m = GroupMemberFullInfo{} }
func (m *GroupMemberFullInfo) String() string { return proto.CompactTextString(m) }
func (*GroupMemberFullInfo) ProtoMessage() {}
func (*GroupMemberFullInfo) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{1}
}
3 years ago
func (m *GroupMemberFullInfo) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GroupMemberFullInfo.Unmarshal(m, b)
}
3 years ago
func (m *GroupMemberFullInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GroupMemberFullInfo.Marshal(b, m, deterministic)
}
3 years ago
func (dst *GroupMemberFullInfo) XXX_Merge(src proto.Message) {
xxx_messageInfo_GroupMemberFullInfo.Merge(dst, src)
}
3 years ago
func (m *GroupMemberFullInfo) XXX_Size() int {
return xxx_messageInfo_GroupMemberFullInfo.Size(m)
}
3 years ago
func (m *GroupMemberFullInfo) XXX_DiscardUnknown() {
xxx_messageInfo_GroupMemberFullInfo.DiscardUnknown(m)
}
3 years ago
var xxx_messageInfo_GroupMemberFullInfo proto.InternalMessageInfo
3 years ago
func (m *GroupMemberFullInfo) GetGroupID() string {
if m != nil {
return m.GroupID
}
return ""
}
func (m *GroupMemberFullInfo) GetUserID() string {
if m != nil {
return m.UserID
}
return ""
}
3 years ago
func (m *GroupMemberFullInfo) GetRoleLevel() int32 {
if m != nil {
3 years ago
return m.RoleLevel
}
return 0
}
3 years ago
func (m *GroupMemberFullInfo) GetJoinTime() int64 {
if m != nil {
3 years ago
return m.JoinTime
}
return 0
}
3 years ago
func (m *GroupMemberFullInfo) GetNickname() string {
if m != nil {
3 years ago
return m.Nickname
}
return ""
}
func (m *GroupMemberFullInfo) GetFaceURL() string {
if m != nil {
return m.FaceURL
}
3 years ago
return ""
}
3 years ago
func (m *GroupMemberFullInfo) GetAppMangerLevel() int32 {
if m != nil {
3 years ago
return m.AppMangerLevel
}
return 0
}
3 years ago
func (m *GroupMemberFullInfo) GetJoinSource() int32 {
if m != nil {
3 years ago
return m.JoinSource
}
return 0
}
3 years ago
func (m *GroupMemberFullInfo) GetOperatorUserID() string {
if m != nil {
3 years ago
return m.OperatorUserID
}
3 years ago
return ""
}
3 years ago
func (m *GroupMemberFullInfo) GetEx() string {
if m != nil {
3 years ago
return m.Ex
}
3 years ago
return ""
}
3 years ago
type PublicUserInfo struct {
UserID string `protobuf:"bytes,1,opt,name=userID" json:"userID,omitempty"`
Nickname string `protobuf:"bytes,2,opt,name=nickname" json:"nickname,omitempty"`
FaceURL string `protobuf:"bytes,3,opt,name=faceURL" json:"faceURL,omitempty"`
Gender int32 `protobuf:"varint,4,opt,name=gender" json:"gender,omitempty"`
AppMangerLevel int32 `protobuf:"varint,5,opt,name=appMangerLevel" json:"appMangerLevel,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
3 years ago
func (m *PublicUserInfo) Reset() { *m = PublicUserInfo{} }
func (m *PublicUserInfo) String() string { return proto.CompactTextString(m) }
func (*PublicUserInfo) ProtoMessage() {}
func (*PublicUserInfo) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{2}
}
3 years ago
func (m *PublicUserInfo) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PublicUserInfo.Unmarshal(m, b)
}
3 years ago
func (m *PublicUserInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_PublicUserInfo.Marshal(b, m, deterministic)
}
3 years ago
func (dst *PublicUserInfo) XXX_Merge(src proto.Message) {
xxx_messageInfo_PublicUserInfo.Merge(dst, src)
}
3 years ago
func (m *PublicUserInfo) XXX_Size() int {
return xxx_messageInfo_PublicUserInfo.Size(m)
}
3 years ago
func (m *PublicUserInfo) XXX_DiscardUnknown() {
xxx_messageInfo_PublicUserInfo.DiscardUnknown(m)
}
3 years ago
var xxx_messageInfo_PublicUserInfo proto.InternalMessageInfo
3 years ago
func (m *PublicUserInfo) GetUserID() string {
if m != nil {
return m.UserID
}
return ""
}
3 years ago
func (m *PublicUserInfo) GetNickname() string {
if m != nil {
return m.Nickname
}
return ""
}
func (m *PublicUserInfo) GetFaceURL() string {
3 years ago
if m != nil {
return m.FaceURL
3 years ago
}
return ""
}
3 years ago
func (m *PublicUserInfo) GetGender() int32 {
if m != nil {
3 years ago
return m.Gender
}
return 0
}
3 years ago
func (m *PublicUserInfo) GetAppMangerLevel() int32 {
if m != nil {
3 years ago
return m.AppMangerLevel
}
return 0
}
3 years ago
type UserInfo struct {
UserID string `protobuf:"bytes,1,opt,name=userID" json:"userID,omitempty"`
Nickname string `protobuf:"bytes,2,opt,name=nickname" json:"nickname,omitempty"`
FaceURL string `protobuf:"bytes,3,opt,name=faceURL" json:"faceURL,omitempty"`
Gender int32 `protobuf:"varint,4,opt,name=gender" json:"gender,omitempty"`
PhoneNumber string `protobuf:"bytes,5,opt,name=phoneNumber" json:"phoneNumber,omitempty"`
Birth uint32 `protobuf:"varint,6,opt,name=birth" json:"birth,omitempty"`
Email string `protobuf:"bytes,7,opt,name=email" json:"email,omitempty"`
Ex string `protobuf:"bytes,8,opt,name=ex" json:"ex,omitempty"`
CreateTime uint32 `protobuf:"varint,9,opt,name=createTime" json:"createTime,omitempty"`
AppMangerLevel int32 `protobuf:"varint,10,opt,name=appMangerLevel" json:"appMangerLevel,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
3 years ago
func (m *UserInfo) Reset() { *m = UserInfo{} }
func (m *UserInfo) String() string { return proto.CompactTextString(m) }
func (*UserInfo) ProtoMessage() {}
func (*UserInfo) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{3}
}
3 years ago
func (m *UserInfo) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_UserInfo.Unmarshal(m, b)
}
3 years ago
func (m *UserInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_UserInfo.Marshal(b, m, deterministic)
}
3 years ago
func (dst *UserInfo) XXX_Merge(src proto.Message) {
xxx_messageInfo_UserInfo.Merge(dst, src)
}
3 years ago
func (m *UserInfo) XXX_Size() int {
return xxx_messageInfo_UserInfo.Size(m)
}
3 years ago
func (m *UserInfo) XXX_DiscardUnknown() {
xxx_messageInfo_UserInfo.DiscardUnknown(m)
}
3 years ago
var xxx_messageInfo_UserInfo proto.InternalMessageInfo
3 years ago
func (m *UserInfo) GetUserID() string {
if m != nil {
3 years ago
return m.UserID
}
return ""
}
3 years ago
func (m *UserInfo) GetNickname() string {
if m != nil {
3 years ago
return m.Nickname
}
3 years ago
return ""
}
func (m *UserInfo) GetFaceURL() string {
3 years ago
if m != nil {
return m.FaceURL
3 years ago
}
return ""
}
3 years ago
func (m *UserInfo) GetGender() int32 {
if m != nil {
return m.Gender
}
return 0
}
3 years ago
func (m *UserInfo) GetPhoneNumber() string {
if m != nil {
return m.PhoneNumber
}
return ""
}
3 years ago
func (m *UserInfo) GetBirth() uint32 {
if m != nil {
3 years ago
return m.Birth
}
3 years ago
return 0
}
3 years ago
func (m *UserInfo) GetEmail() string {
if m != nil {
3 years ago
return m.Email
}
return ""
}
3 years ago
func (m *UserInfo) GetEx() string {
if m != nil {
3 years ago
return m.Ex
}
3 years ago
return ""
}
3 years ago
func (m *UserInfo) GetCreateTime() uint32 {
3 years ago
if m != nil {
return m.CreateTime
}
return 0
}
func (m *UserInfo) GetAppMangerLevel() int32 {
if m != nil {
return m.AppMangerLevel
}
return 0
}
3 years ago
type FriendInfo struct {
OwnerUserID string `protobuf:"bytes,1,opt,name=ownerUserID" json:"ownerUserID,omitempty"`
Remark string `protobuf:"bytes,2,opt,name=remark" json:"remark,omitempty"`
CreateTime uint32 `protobuf:"varint,3,opt,name=createTime" json:"createTime,omitempty"`
FriendUser *UserInfo `protobuf:"bytes,4,opt,name=friendUser" json:"friendUser,omitempty"`
AddSource int32 `protobuf:"varint,5,opt,name=addSource" json:"addSource,omitempty"`
OperatorUserID string `protobuf:"bytes,6,opt,name=operatorUserID" json:"operatorUserID,omitempty"`
Ex string `protobuf:"bytes,7,opt,name=ex" json:"ex,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
3 years ago
func (m *FriendInfo) Reset() { *m = FriendInfo{} }
func (m *FriendInfo) String() string { return proto.CompactTextString(m) }
func (*FriendInfo) ProtoMessage() {}
func (*FriendInfo) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{4}
}
3 years ago
func (m *FriendInfo) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FriendInfo.Unmarshal(m, b)
}
3 years ago
func (m *FriendInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_FriendInfo.Marshal(b, m, deterministic)
}
3 years ago
func (dst *FriendInfo) XXX_Merge(src proto.Message) {
xxx_messageInfo_FriendInfo.Merge(dst, src)
}
3 years ago
func (m *FriendInfo) XXX_Size() int {
return xxx_messageInfo_FriendInfo.Size(m)
}
3 years ago
func (m *FriendInfo) XXX_DiscardUnknown() {
xxx_messageInfo_FriendInfo.DiscardUnknown(m)
}
3 years ago
var xxx_messageInfo_FriendInfo proto.InternalMessageInfo
3 years ago
func (m *FriendInfo) GetOwnerUserID() string {
if m != nil {
3 years ago
return m.OwnerUserID
}
return ""
}
3 years ago
func (m *FriendInfo) GetRemark() string {
if m != nil {
3 years ago
return m.Remark
}
return ""
}
3 years ago
func (m *FriendInfo) GetCreateTime() uint32 {
3 years ago
if m != nil {
3 years ago
return m.CreateTime
3 years ago
}
3 years ago
return 0
3 years ago
}
3 years ago
func (m *FriendInfo) GetFriendUser() *UserInfo {
3 years ago
if m != nil {
3 years ago
return m.FriendUser
3 years ago
}
3 years ago
return nil
3 years ago
}
3 years ago
func (m *FriendInfo) GetAddSource() int32 {
3 years ago
if m != nil {
3 years ago
return m.AddSource
3 years ago
}
3 years ago
return 0
3 years ago
}
3 years ago
func (m *FriendInfo) GetOperatorUserID() string {
3 years ago
if m != nil {
3 years ago
return m.OperatorUserID
3 years ago
}
3 years ago
return ""
3 years ago
}
3 years ago
func (m *FriendInfo) GetEx() string {
3 years ago
if m != nil {
3 years ago
return m.Ex
3 years ago
}
return ""
}
3 years ago
type BlackInfo struct {
OwnerUserID string `protobuf:"bytes,1,opt,name=ownerUserID" json:"ownerUserID,omitempty"`
CreateTime uint32 `protobuf:"varint,2,opt,name=createTime" json:"createTime,omitempty"`
BlackUserInfo *PublicUserInfo `protobuf:"bytes,3,opt,name=blackUserInfo" json:"blackUserInfo,omitempty"`
AddSource int32 `protobuf:"varint,4,opt,name=addSource" json:"addSource,omitempty"`
OperatorUserID string `protobuf:"bytes,5,opt,name=operatorUserID" json:"operatorUserID,omitempty"`
Ex string `protobuf:"bytes,6,opt,name=ex" json:"ex,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *BlackInfo) Reset() { *m = BlackInfo{} }
func (m *BlackInfo) String() string { return proto.CompactTextString(m) }
func (*BlackInfo) ProtoMessage() {}
func (*BlackInfo) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{5}
3 years ago
}
func (m *BlackInfo) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BlackInfo.Unmarshal(m, b)
}
func (m *BlackInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_BlackInfo.Marshal(b, m, deterministic)
}
func (dst *BlackInfo) XXX_Merge(src proto.Message) {
xxx_messageInfo_BlackInfo.Merge(dst, src)
}
func (m *BlackInfo) XXX_Size() int {
return xxx_messageInfo_BlackInfo.Size(m)
}
func (m *BlackInfo) XXX_DiscardUnknown() {
xxx_messageInfo_BlackInfo.DiscardUnknown(m)
}
var xxx_messageInfo_BlackInfo proto.InternalMessageInfo
func (m *BlackInfo) GetOwnerUserID() string {
3 years ago
if m != nil {
3 years ago
return m.OwnerUserID
3 years ago
}
return ""
}
3 years ago
func (m *BlackInfo) GetCreateTime() uint32 {
if m != nil {
3 years ago
return m.CreateTime
}
return 0
}
3 years ago
func (m *BlackInfo) GetBlackUserInfo() *PublicUserInfo {
if m != nil {
3 years ago
return m.BlackUserInfo
}
3 years ago
return nil
}
3 years ago
func (m *BlackInfo) GetAddSource() int32 {
if m != nil {
3 years ago
return m.AddSource
}
return 0
}
3 years ago
func (m *BlackInfo) GetOperatorUserID() string {
if m != nil {
3 years ago
return m.OperatorUserID
}
3 years ago
return ""
}
3 years ago
func (m *BlackInfo) GetEx() string {
if m != nil {
3 years ago
return m.Ex
}
3 years ago
return ""
}
3 years ago
type GroupRequest struct {
3 years ago
UserInfo *PublicUserInfo `protobuf:"bytes,1,opt,name=userInfo" json:"userInfo,omitempty"`
GroupInfo *GroupInfo `protobuf:"bytes,2,opt,name=groupInfo" json:"groupInfo,omitempty"`
3 years ago
HandleResult int32 `protobuf:"varint,3,opt,name=handleResult" json:"handleResult,omitempty"`
3 years ago
ReqMsg string `protobuf:"bytes,4,opt,name=reqMsg" json:"reqMsg,omitempty"`
HandleMsg string `protobuf:"bytes,5,opt,name=handleMsg" json:"handleMsg,omitempty"`
ReqTime uint32 `protobuf:"varint,6,opt,name=reqTime" json:"reqTime,omitempty"`
HandleUserID string `protobuf:"bytes,7,opt,name=handleUserID" json:"handleUserID,omitempty"`
HandleTime uint32 `protobuf:"varint,8,opt,name=handleTime" json:"handleTime,omitempty"`
Ex string `protobuf:"bytes,9,opt,name=ex" json:"ex,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
func (m *GroupRequest) Reset() { *m = GroupRequest{} }
func (m *GroupRequest) String() string { return proto.CompactTextString(m) }
func (*GroupRequest) ProtoMessage() {}
func (*GroupRequest) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{6}
3 years ago
}
func (m *GroupRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GroupRequest.Unmarshal(m, b)
}
func (m *GroupRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GroupRequest.Marshal(b, m, deterministic)
}
func (dst *GroupRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_GroupRequest.Merge(dst, src)
}
func (m *GroupRequest) XXX_Size() int {
return xxx_messageInfo_GroupRequest.Size(m)
}
func (m *GroupRequest) XXX_DiscardUnknown() {
xxx_messageInfo_GroupRequest.DiscardUnknown(m)
}
var xxx_messageInfo_GroupRequest proto.InternalMessageInfo
3 years ago
func (m *GroupRequest) GetUserInfo() *PublicUserInfo {
if m != nil {
3 years ago
return m.UserInfo
}
3 years ago
return nil
}
3 years ago
func (m *GroupRequest) GetGroupInfo() *GroupInfo {
if m != nil {
3 years ago
return m.GroupInfo
}
3 years ago
return nil
}
3 years ago
func (m *GroupRequest) GetHandleResult() int32 {
if m != nil {
3 years ago
return m.HandleResult
}
3 years ago
return 0
3 years ago
}
func (m *GroupRequest) GetReqMsg() string {
if m != nil {
return m.ReqMsg
}
return ""
}
func (m *GroupRequest) GetHandleMsg() string {
if m != nil {
return m.HandleMsg
}
return ""
}
3 years ago
func (m *GroupRequest) GetReqTime() uint32 {
3 years ago
if m != nil {
return m.ReqTime
}
3 years ago
return 0
}
3 years ago
func (m *GroupRequest) GetHandleUserID() string {
if m != nil {
3 years ago
return m.HandleUserID
}
3 years ago
return ""
}
3 years ago
func (m *GroupRequest) GetHandleTime() uint32 {
if m != nil {
3 years ago
return m.HandleTime
}
3 years ago
return 0
}
3 years ago
func (m *GroupRequest) GetEx() string {
if m != nil {
return m.Ex
}
return ""
}
type FriendRequest struct {
FromUserID string `protobuf:"bytes,1,opt,name=fromUserID" json:"fromUserID,omitempty"`
3 years ago
FromNickname string `protobuf:"bytes,2,opt,name=fromNickname" json:"fromNickname,omitempty"`
FromFaceURL string `protobuf:"bytes,3,opt,name=fromFaceURL" json:"fromFaceURL,omitempty"`
3 years ago
FromGender int32 `protobuf:"varint,4,opt,name=fromGender" json:"fromGender,omitempty"`
3 years ago
ToUserID string `protobuf:"bytes,5,opt,name=toUserID" json:"toUserID,omitempty"`
ToNickname string `protobuf:"bytes,6,opt,name=toNickname" json:"toNickname,omitempty"`
ToFaceURL string `protobuf:"bytes,7,opt,name=toFaceURL" json:"toFaceURL,omitempty"`
3 years ago
ToGender int32 `protobuf:"varint,8,opt,name=toGender" json:"toGender,omitempty"`
3 years ago
HandleResult int32 `protobuf:"varint,9,opt,name=handleResult" json:"handleResult,omitempty"`
ReqMsg string `protobuf:"bytes,10,opt,name=reqMsg" json:"reqMsg,omitempty"`
CreateTime uint32 `protobuf:"varint,11,opt,name=createTime" json:"createTime,omitempty"`
HandlerUserID string `protobuf:"bytes,12,opt,name=handlerUserID" json:"handlerUserID,omitempty"`
HandleMsg string `protobuf:"bytes,13,opt,name=handleMsg" json:"handleMsg,omitempty"`
HandleTime uint32 `protobuf:"varint,14,opt,name=handleTime" json:"handleTime,omitempty"`
Ex string `protobuf:"bytes,15,opt,name=ex" json:"ex,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
3 years ago
func (m *FriendRequest) Reset() { *m = FriendRequest{} }
func (m *FriendRequest) String() string { return proto.CompactTextString(m) }
func (*FriendRequest) ProtoMessage() {}
func (*FriendRequest) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{7}
}
3 years ago
func (m *FriendRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FriendRequest.Unmarshal(m, b)
}
3 years ago
func (m *FriendRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_FriendRequest.Marshal(b, m, deterministic)
}
3 years ago
func (dst *FriendRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_FriendRequest.Merge(dst, src)
}
3 years ago
func (m *FriendRequest) XXX_Size() int {
return xxx_messageInfo_FriendRequest.Size(m)
}
3 years ago
func (m *FriendRequest) XXX_DiscardUnknown() {
xxx_messageInfo_FriendRequest.DiscardUnknown(m)
}
3 years ago
var xxx_messageInfo_FriendRequest proto.InternalMessageInfo
3 years ago
func (m *FriendRequest) GetFromUserID() string {
if m != nil {
3 years ago
return m.FromUserID
}
return ""
}
3 years ago
func (m *FriendRequest) GetFromNickname() string {
if m != nil {
return m.FromNickname
}
return ""
}
func (m *FriendRequest) GetFromFaceURL() string {
if m != nil {
return m.FromFaceURL
}
return ""
}
3 years ago
func (m *FriendRequest) GetFromGender() int32 {
3 years ago
if m != nil {
return m.FromGender
}
3 years ago
return 0
3 years ago
}
3 years ago
func (m *FriendRequest) GetToUserID() string {
if m != nil {
3 years ago
return m.ToUserID
}
return ""
}
3 years ago
func (m *FriendRequest) GetToNickname() string {
if m != nil {
return m.ToNickname
}
return ""
}
func (m *FriendRequest) GetToFaceURL() string {
if m != nil {
return m.ToFaceURL
}
return ""
}
3 years ago
func (m *FriendRequest) GetToGender() int32 {
3 years ago
if m != nil {
return m.ToGender
}
3 years ago
return 0
3 years ago
}
3 years ago
func (m *FriendRequest) GetHandleResult() int32 {
if m != nil {
3 years ago
return m.HandleResult
}
3 years ago
return 0
}
3 years ago
func (m *FriendRequest) GetReqMsg() string {
3 years ago
if m != nil {
3 years ago
return m.ReqMsg
3 years ago
}
return ""
}
3 years ago
func (m *FriendRequest) GetCreateTime() uint32 {
3 years ago
if m != nil {
3 years ago
return m.CreateTime
3 years ago
}
3 years ago
return 0
3 years ago
}
3 years ago
func (m *FriendRequest) GetHandlerUserID() string {
if m != nil {
return m.HandlerUserID
}
return ""
3 years ago
}
3 years ago
func (m *FriendRequest) GetHandleMsg() string {
3 years ago
if m != nil {
3 years ago
return m.HandleMsg
3 years ago
}
return ""
}
3 years ago
func (m *FriendRequest) GetHandleTime() uint32 {
3 years ago
if m != nil {
3 years ago
return m.HandleTime
3 years ago
}
3 years ago
return 0
3 years ago
}
3 years ago
func (m *FriendRequest) GetEx() string {
3 years ago
if m != nil {
3 years ago
return m.Ex
3 years ago
}
return ""
}
3 years ago
type PullMessageBySeqListResp struct {
3 years ago
ErrCode int32 `protobuf:"varint,1,opt,name=errCode" json:"errCode,omitempty"`
ErrMsg string `protobuf:"bytes,2,opt,name=errMsg" json:"errMsg,omitempty"`
List []*MsgData `protobuf:"bytes,3,rep,name=list" json:"list,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
func (m *PullMessageBySeqListResp) Reset() { *m = PullMessageBySeqListResp{} }
func (m *PullMessageBySeqListResp) String() string { return proto.CompactTextString(m) }
func (*PullMessageBySeqListResp) ProtoMessage() {}
func (*PullMessageBySeqListResp) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{8}
3 years ago
}
func (m *PullMessageBySeqListResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PullMessageBySeqListResp.Unmarshal(m, b)
}
func (m *PullMessageBySeqListResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_PullMessageBySeqListResp.Marshal(b, m, deterministic)
}
func (dst *PullMessageBySeqListResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_PullMessageBySeqListResp.Merge(dst, src)
}
func (m *PullMessageBySeqListResp) XXX_Size() int {
return xxx_messageInfo_PullMessageBySeqListResp.Size(m)
}
func (m *PullMessageBySeqListResp) XXX_DiscardUnknown() {
xxx_messageInfo_PullMessageBySeqListResp.DiscardUnknown(m)
}
var xxx_messageInfo_PullMessageBySeqListResp proto.InternalMessageInfo
func (m *PullMessageBySeqListResp) GetErrCode() int32 {
3 years ago
if m != nil {
3 years ago
return m.ErrCode
3 years ago
}
3 years ago
return 0
3 years ago
}
3 years ago
func (m *PullMessageBySeqListResp) GetErrMsg() string {
3 years ago
if m != nil {
3 years ago
return m.ErrMsg
3 years ago
}
return ""
}
3 years ago
func (m *PullMessageBySeqListResp) GetList() []*MsgData {
3 years ago
if m != nil {
3 years ago
return m.List
}
3 years ago
return nil
}
3 years ago
type PullMessageBySeqListReq struct {
UserID string `protobuf:"bytes,1,opt,name=userID" json:"userID,omitempty"`
OperationID string `protobuf:"bytes,2,opt,name=operationID" json:"operationID,omitempty"`
3 years ago
SeqList []uint32 `protobuf:"varint,3,rep,packed,name=seqList" json:"seqList,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
3 years ago
func (m *PullMessageBySeqListReq) Reset() { *m = PullMessageBySeqListReq{} }
func (m *PullMessageBySeqListReq) String() string { return proto.CompactTextString(m) }
func (*PullMessageBySeqListReq) ProtoMessage() {}
func (*PullMessageBySeqListReq) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{9}
3 years ago
}
3 years ago
func (m *PullMessageBySeqListReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PullMessageBySeqListReq.Unmarshal(m, b)
3 years ago
}
3 years ago
func (m *PullMessageBySeqListReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_PullMessageBySeqListReq.Marshal(b, m, deterministic)
3 years ago
}
3 years ago
func (dst *PullMessageBySeqListReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_PullMessageBySeqListReq.Merge(dst, src)
3 years ago
}
3 years ago
func (m *PullMessageBySeqListReq) XXX_Size() int {
return xxx_messageInfo_PullMessageBySeqListReq.Size(m)
}
func (m *PullMessageBySeqListReq) XXX_DiscardUnknown() {
xxx_messageInfo_PullMessageBySeqListReq.DiscardUnknown(m)
}
var xxx_messageInfo_PullMessageBySeqListReq proto.InternalMessageInfo
func (m *PullMessageBySeqListReq) GetUserID() string {
if m != nil {
return m.UserID
}
return ""
}
func (m *PullMessageBySeqListReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
3 years ago
func (m *PullMessageBySeqListReq) GetSeqList() []uint32 {
3 years ago
if m != nil {
return m.SeqList
}
return nil
}
type GetMaxAndMinSeqReq struct {
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetMaxAndMinSeqReq) Reset() { *m = GetMaxAndMinSeqReq{} }
func (m *GetMaxAndMinSeqReq) String() string { return proto.CompactTextString(m) }
func (*GetMaxAndMinSeqReq) ProtoMessage() {}
func (*GetMaxAndMinSeqReq) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{10}
3 years ago
}
func (m *GetMaxAndMinSeqReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetMaxAndMinSeqReq.Unmarshal(m, b)
}
func (m *GetMaxAndMinSeqReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetMaxAndMinSeqReq.Marshal(b, m, deterministic)
}
func (dst *GetMaxAndMinSeqReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetMaxAndMinSeqReq.Merge(dst, src)
}
func (m *GetMaxAndMinSeqReq) XXX_Size() int {
return xxx_messageInfo_GetMaxAndMinSeqReq.Size(m)
}
func (m *GetMaxAndMinSeqReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetMaxAndMinSeqReq.DiscardUnknown(m)
}
var xxx_messageInfo_GetMaxAndMinSeqReq proto.InternalMessageInfo
type GetMaxAndMinSeqResp struct {
3 years ago
MaxSeq uint32 `protobuf:"varint,1,opt,name=maxSeq" json:"maxSeq,omitempty"`
MinSeq uint32 `protobuf:"varint,2,opt,name=minSeq" json:"minSeq,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetMaxAndMinSeqResp) Reset() { *m = GetMaxAndMinSeqResp{} }
func (m *GetMaxAndMinSeqResp) String() string { return proto.CompactTextString(m) }
func (*GetMaxAndMinSeqResp) ProtoMessage() {}
func (*GetMaxAndMinSeqResp) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{11}
3 years ago
}
func (m *GetMaxAndMinSeqResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetMaxAndMinSeqResp.Unmarshal(m, b)
}
func (m *GetMaxAndMinSeqResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetMaxAndMinSeqResp.Marshal(b, m, deterministic)
}
func (dst *GetMaxAndMinSeqResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetMaxAndMinSeqResp.Merge(dst, src)
}
func (m *GetMaxAndMinSeqResp) XXX_Size() int {
return xxx_messageInfo_GetMaxAndMinSeqResp.Size(m)
}
func (m *GetMaxAndMinSeqResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetMaxAndMinSeqResp.DiscardUnknown(m)
}
var xxx_messageInfo_GetMaxAndMinSeqResp proto.InternalMessageInfo
3 years ago
func (m *GetMaxAndMinSeqResp) GetMaxSeq() uint32 {
3 years ago
if m != nil {
return m.MaxSeq
}
return 0
}
3 years ago
func (m *GetMaxAndMinSeqResp) GetMinSeq() uint32 {
3 years ago
if m != nil {
return m.MinSeq
}
return 0
}
type UserSendMsgResp struct {
ServerMsgID string `protobuf:"bytes,1,opt,name=serverMsgID" json:"serverMsgID,omitempty"`
ClientMsgID string `protobuf:"bytes,2,opt,name=clientMsgID" json:"clientMsgID,omitempty"`
3 years ago
SendTime int64 `protobuf:"varint,3,opt,name=sendTime" json:"sendTime,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *UserSendMsgResp) Reset() { *m = UserSendMsgResp{} }
func (m *UserSendMsgResp) String() string { return proto.CompactTextString(m) }
func (*UserSendMsgResp) ProtoMessage() {}
func (*UserSendMsgResp) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{12}
3 years ago
}
func (m *UserSendMsgResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_UserSendMsgResp.Unmarshal(m, b)
}
func (m *UserSendMsgResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_UserSendMsgResp.Marshal(b, m, deterministic)
}
func (dst *UserSendMsgResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_UserSendMsgResp.Merge(dst, src)
}
func (m *UserSendMsgResp) XXX_Size() int {
return xxx_messageInfo_UserSendMsgResp.Size(m)
}
func (m *UserSendMsgResp) XXX_DiscardUnknown() {
xxx_messageInfo_UserSendMsgResp.DiscardUnknown(m)
}
var xxx_messageInfo_UserSendMsgResp proto.InternalMessageInfo
func (m *UserSendMsgResp) GetServerMsgID() string {
if m != nil {
return m.ServerMsgID
}
return ""
}
func (m *UserSendMsgResp) GetClientMsgID() string {
if m != nil {
return m.ClientMsgID
}
return ""
}
func (m *UserSendMsgResp) GetSendTime() int64 {
if m != nil {
return m.SendTime
}
return 0
}
type MsgData struct {
SendID string `protobuf:"bytes,1,opt,name=sendID" json:"sendID,omitempty"`
RecvID string `protobuf:"bytes,2,opt,name=recvID" json:"recvID,omitempty"`
GroupID string `protobuf:"bytes,3,opt,name=groupID" json:"groupID,omitempty"`
ClientMsgID string `protobuf:"bytes,4,opt,name=clientMsgID" json:"clientMsgID,omitempty"`
ServerMsgID string `protobuf:"bytes,5,opt,name=serverMsgID" json:"serverMsgID,omitempty"`
SenderPlatformID int32 `protobuf:"varint,6,opt,name=senderPlatformID" json:"senderPlatformID,omitempty"`
SenderNickname string `protobuf:"bytes,7,opt,name=senderNickname" json:"senderNickname,omitempty"`
SenderFaceURL string `protobuf:"bytes,8,opt,name=senderFaceURL" json:"senderFaceURL,omitempty"`
SessionType int32 `protobuf:"varint,9,opt,name=sessionType" json:"sessionType,omitempty"`
MsgFrom int32 `protobuf:"varint,10,opt,name=msgFrom" json:"msgFrom,omitempty"`
ContentType int32 `protobuf:"varint,11,opt,name=contentType" json:"contentType,omitempty"`
Content []byte `protobuf:"bytes,12,opt,name=content,proto3" json:"content,omitempty"`
3 years ago
Seq uint32 `protobuf:"varint,14,opt,name=seq" json:"seq,omitempty"`
3 years ago
SendTime int64 `protobuf:"varint,15,opt,name=sendTime" json:"sendTime,omitempty"`
CreateTime int64 `protobuf:"varint,16,opt,name=createTime" json:"createTime,omitempty"`
3 years ago
Status int32 `protobuf:"varint,17,opt,name=status" json:"status,omitempty"`
Options map[string]bool `protobuf:"bytes,18,rep,name=options" json:"options,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
OfflinePushInfo *OfflinePushInfo `protobuf:"bytes,19,opt,name=offlinePushInfo" json:"offlinePushInfo,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *MsgData) Reset() { *m = MsgData{} }
func (m *MsgData) String() string { return proto.CompactTextString(m) }
func (*MsgData) ProtoMessage() {}
func (*MsgData) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{13}
3 years ago
}
func (m *MsgData) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_MsgData.Unmarshal(m, b)
}
func (m *MsgData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_MsgData.Marshal(b, m, deterministic)
}
func (dst *MsgData) XXX_Merge(src proto.Message) {
xxx_messageInfo_MsgData.Merge(dst, src)
3 years ago
}
3 years ago
func (m *MsgData) XXX_Size() int {
return xxx_messageInfo_MsgData.Size(m)
}
func (m *MsgData) XXX_DiscardUnknown() {
xxx_messageInfo_MsgData.DiscardUnknown(m)
3 years ago
}
3 years ago
var xxx_messageInfo_MsgData proto.InternalMessageInfo
3 years ago
3 years ago
func (m *MsgData) GetSendID() string {
3 years ago
if m != nil {
3 years ago
return m.SendID
3 years ago
}
return ""
}
3 years ago
func (m *MsgData) GetRecvID() string {
3 years ago
if m != nil {
3 years ago
return m.RecvID
3 years ago
}
return ""
}
3 years ago
func (m *MsgData) GetGroupID() string {
3 years ago
if m != nil {
3 years ago
return m.GroupID
3 years ago
}
3 years ago
return ""
3 years ago
}
3 years ago
func (m *MsgData) GetClientMsgID() string {
3 years ago
if m != nil {
3 years ago
return m.ClientMsgID
3 years ago
}
3 years ago
return ""
3 years ago
}
3 years ago
func (m *MsgData) GetServerMsgID() string {
3 years ago
if m != nil {
3 years ago
return m.ServerMsgID
3 years ago
}
return ""
}
3 years ago
func (m *MsgData) GetSenderPlatformID() int32 {
3 years ago
if m != nil {
3 years ago
return m.SenderPlatformID
3 years ago
}
3 years ago
return 0
3 years ago
}
3 years ago
func (m *MsgData) GetSenderNickname() string {
3 years ago
if m != nil {
3 years ago
return m.SenderNickname
3 years ago
}
return ""
}
3 years ago
func (m *MsgData) GetSenderFaceURL() string {
3 years ago
if m != nil {
3 years ago
return m.SenderFaceURL
3 years ago
}
3 years ago
return ""
3 years ago
}
3 years ago
func (m *MsgData) GetSessionType() int32 {
if m != nil {
return m.SessionType
}
return 0
3 years ago
}
3 years ago
func (m *MsgData) GetMsgFrom() int32 {
if m != nil {
return m.MsgFrom
}
return 0
3 years ago
}
3 years ago
func (m *MsgData) GetContentType() int32 {
3 years ago
if m != nil {
3 years ago
return m.ContentType
3 years ago
}
3 years ago
return 0
3 years ago
}
3 years ago
func (m *MsgData) GetContent() []byte {
3 years ago
if m != nil {
3 years ago
return m.Content
3 years ago
}
3 years ago
return nil
3 years ago
}
3 years ago
func (m *MsgData) GetSeq() uint32 {
3 years ago
if m != nil {
3 years ago
return m.Seq
3 years ago
}
return 0
}
3 years ago
func (m *MsgData) GetSendTime() int64 {
3 years ago
if m != nil {
3 years ago
return m.SendTime
3 years ago
}
3 years ago
return 0
3 years ago
}
3 years ago
func (m *MsgData) GetCreateTime() int64 {
3 years ago
if m != nil {
3 years ago
return m.CreateTime
3 years ago
}
3 years ago
return 0
3 years ago
}
3 years ago
func (m *MsgData) GetStatus() int32 {
if m != nil {
return m.Status
}
return 0
}
3 years ago
func (m *MsgData) GetOptions() map[string]bool {
3 years ago
if m != nil {
3 years ago
return m.Options
3 years ago
}
3 years ago
return nil
3 years ago
}
3 years ago
func (m *MsgData) GetOfflinePushInfo() *OfflinePushInfo {
if m != nil {
3 years ago
return m.OfflinePushInfo
}
3 years ago
return nil
}
3 years ago
type OfflinePushInfo struct {
Title string `protobuf:"bytes,1,opt,name=title" json:"title,omitempty"`
Desc string `protobuf:"bytes,2,opt,name=desc" json:"desc,omitempty"`
Ex string `protobuf:"bytes,3,opt,name=ex" json:"ex,omitempty"`
3 years ago
IOSPushSound string `protobuf:"bytes,4,opt,name=iOSPushSound" json:"iOSPushSound,omitempty"`
IOSBadgeCount bool `protobuf:"varint,5,opt,name=iOSBadgeCount" json:"iOSBadgeCount,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
3 years ago
func (m *OfflinePushInfo) Reset() { *m = OfflinePushInfo{} }
func (m *OfflinePushInfo) String() string { return proto.CompactTextString(m) }
func (*OfflinePushInfo) ProtoMessage() {}
func (*OfflinePushInfo) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{14}
3 years ago
}
3 years ago
func (m *OfflinePushInfo) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_OfflinePushInfo.Unmarshal(m, b)
3 years ago
}
3 years ago
func (m *OfflinePushInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_OfflinePushInfo.Marshal(b, m, deterministic)
3 years ago
}
3 years ago
func (dst *OfflinePushInfo) XXX_Merge(src proto.Message) {
xxx_messageInfo_OfflinePushInfo.Merge(dst, src)
3 years ago
}
3 years ago
func (m *OfflinePushInfo) XXX_Size() int {
return xxx_messageInfo_OfflinePushInfo.Size(m)
3 years ago
}
3 years ago
func (m *OfflinePushInfo) XXX_DiscardUnknown() {
xxx_messageInfo_OfflinePushInfo.DiscardUnknown(m)
3 years ago
}
3 years ago
var xxx_messageInfo_OfflinePushInfo proto.InternalMessageInfo
3 years ago
3 years ago
func (m *OfflinePushInfo) GetTitle() string {
3 years ago
if m != nil {
3 years ago
return m.Title
3 years ago
}
return ""
}
3 years ago
func (m *OfflinePushInfo) GetDesc() string {
3 years ago
if m != nil {
3 years ago
return m.Desc
3 years ago
}
return ""
}
3 years ago
func (m *OfflinePushInfo) GetEx() string {
3 years ago
if m != nil {
3 years ago
return m.Ex
3 years ago
}
return ""
}
3 years ago
func (m *OfflinePushInfo) GetIOSPushSound() string {
3 years ago
if m != nil {
3 years ago
return m.IOSPushSound
3 years ago
}
3 years ago
return ""
}
func (m *OfflinePushInfo) GetIOSBadgeCount() bool {
if m != nil {
return m.IOSBadgeCount
}
return false
3 years ago
}
type TipsComm struct {
Detail []byte `protobuf:"bytes,1,opt,name=detail,proto3" json:"detail,omitempty"`
DefaultTips string `protobuf:"bytes,2,opt,name=defaultTips" json:"defaultTips,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *TipsComm) Reset() { *m = TipsComm{} }
func (m *TipsComm) String() string { return proto.CompactTextString(m) }
func (*TipsComm) ProtoMessage() {}
func (*TipsComm) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{15}
3 years ago
}
func (m *TipsComm) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_TipsComm.Unmarshal(m, b)
}
func (m *TipsComm) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_TipsComm.Marshal(b, m, deterministic)
}
func (dst *TipsComm) XXX_Merge(src proto.Message) {
xxx_messageInfo_TipsComm.Merge(dst, src)
}
func (m *TipsComm) XXX_Size() int {
return xxx_messageInfo_TipsComm.Size(m)
}
func (m *TipsComm) XXX_DiscardUnknown() {
xxx_messageInfo_TipsComm.DiscardUnknown(m)
}
var xxx_messageInfo_TipsComm proto.InternalMessageInfo
func (m *TipsComm) GetDetail() []byte {
3 years ago
if m != nil {
3 years ago
return m.Detail
}
return nil
}
func (m *TipsComm) GetDefaultTips() string {
if m != nil {
return m.DefaultTips
3 years ago
}
return ""
}
3 years ago
// OnGroupCreated()
type GroupCreatedTips struct {
Group *GroupInfo `protobuf:"bytes,1,opt,name=group" json:"group,omitempty"`
OpUser *GroupMemberFullInfo `protobuf:"bytes,2,opt,name=opUser" json:"opUser,omitempty"`
MemberList []*GroupMemberFullInfo `protobuf:"bytes,3,rep,name=memberList" json:"memberList,omitempty"`
OperationTime int64 `protobuf:"varint,4,opt,name=operationTime" json:"operationTime,omitempty"`
GroupOwnerUser *GroupMemberFullInfo `protobuf:"bytes,5,opt,name=groupOwnerUser" json:"groupOwnerUser,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
3 years ago
func (m *GroupCreatedTips) Reset() { *m = GroupCreatedTips{} }
func (m *GroupCreatedTips) String() string { return proto.CompactTextString(m) }
func (*GroupCreatedTips) ProtoMessage() {}
func (*GroupCreatedTips) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{16}
3 years ago
}
3 years ago
func (m *GroupCreatedTips) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GroupCreatedTips.Unmarshal(m, b)
3 years ago
}
3 years ago
func (m *GroupCreatedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GroupCreatedTips.Marshal(b, m, deterministic)
3 years ago
}
3 years ago
func (dst *GroupCreatedTips) XXX_Merge(src proto.Message) {
xxx_messageInfo_GroupCreatedTips.Merge(dst, src)
3 years ago
}
3 years ago
func (m *GroupCreatedTips) XXX_Size() int {
return xxx_messageInfo_GroupCreatedTips.Size(m)
3 years ago
}
3 years ago
func (m *GroupCreatedTips) XXX_DiscardUnknown() {
xxx_messageInfo_GroupCreatedTips.DiscardUnknown(m)
3 years ago
}
3 years ago
var xxx_messageInfo_GroupCreatedTips proto.InternalMessageInfo
3 years ago
3 years ago
func (m *GroupCreatedTips) GetGroup() *GroupInfo {
3 years ago
if m != nil {
return m.Group
}
return nil
}
3 years ago
func (m *GroupCreatedTips) GetOpUser() *GroupMemberFullInfo {
3 years ago
if m != nil {
3 years ago
return m.OpUser
3 years ago
}
return nil
}
3 years ago
func (m *GroupCreatedTips) GetMemberList() []*GroupMemberFullInfo {
if m != nil {
return m.MemberList
}
return nil
}
func (m *GroupCreatedTips) GetOperationTime() int64 {
3 years ago
if m != nil {
3 years ago
return m.OperationTime
}
return 0
}
3 years ago
func (m *GroupCreatedTips) GetGroupOwnerUser() *GroupMemberFullInfo {
if m != nil {
return m.GroupOwnerUser
}
return nil
}
// OnGroupInfoSet()
type GroupInfoSetTips struct {
OpUser *GroupMemberFullInfo `protobuf:"bytes,1,opt,name=opUser" json:"opUser,omitempty"`
MuteTime int64 `protobuf:"varint,2,opt,name=muteTime" json:"muteTime,omitempty"`
Group *GroupInfo `protobuf:"bytes,3,opt,name=group" json:"group,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
3 years ago
func (m *GroupInfoSetTips) Reset() { *m = GroupInfoSetTips{} }
func (m *GroupInfoSetTips) String() string { return proto.CompactTextString(m) }
func (*GroupInfoSetTips) ProtoMessage() {}
func (*GroupInfoSetTips) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{17}
3 years ago
}
3 years ago
func (m *GroupInfoSetTips) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GroupInfoSetTips.Unmarshal(m, b)
3 years ago
}
3 years ago
func (m *GroupInfoSetTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GroupInfoSetTips.Marshal(b, m, deterministic)
3 years ago
}
3 years ago
func (dst *GroupInfoSetTips) XXX_Merge(src proto.Message) {
xxx_messageInfo_GroupInfoSetTips.Merge(dst, src)
3 years ago
}
3 years ago
func (m *GroupInfoSetTips) XXX_Size() int {
return xxx_messageInfo_GroupInfoSetTips.Size(m)
3 years ago
}
3 years ago
func (m *GroupInfoSetTips) XXX_DiscardUnknown() {
xxx_messageInfo_GroupInfoSetTips.DiscardUnknown(m)
3 years ago
}
3 years ago
var xxx_messageInfo_GroupInfoSetTips proto.InternalMessageInfo
3 years ago
3 years ago
func (m *GroupInfoSetTips) GetOpUser() *GroupMemberFullInfo {
3 years ago
if m != nil {
3 years ago
return m.OpUser
3 years ago
}
return nil
}
3 years ago
func (m *GroupInfoSetTips) GetMuteTime() int64 {
3 years ago
if m != nil {
3 years ago
return m.MuteTime
3 years ago
}
3 years ago
return 0
3 years ago
}
3 years ago
func (m *GroupInfoSetTips) GetGroup() *GroupInfo {
3 years ago
if m != nil {
3 years ago
return m.Group
3 years ago
}
3 years ago
return nil
3 years ago
}
3 years ago
// OnJoinGroupApplication()
type JoinGroupApplicationTips struct {
Group *GroupInfo `protobuf:"bytes,1,opt,name=group" json:"group,omitempty"`
Applicant *PublicUserInfo `protobuf:"bytes,2,opt,name=applicant" json:"applicant,omitempty"`
ReqMsg string `protobuf:"bytes,3,opt,name=reqMsg" json:"reqMsg,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
3 years ago
func (m *JoinGroupApplicationTips) Reset() { *m = JoinGroupApplicationTips{} }
func (m *JoinGroupApplicationTips) String() string { return proto.CompactTextString(m) }
func (*JoinGroupApplicationTips) ProtoMessage() {}
func (*JoinGroupApplicationTips) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{18}
3 years ago
}
3 years ago
func (m *JoinGroupApplicationTips) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_JoinGroupApplicationTips.Unmarshal(m, b)
3 years ago
}
3 years ago
func (m *JoinGroupApplicationTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_JoinGroupApplicationTips.Marshal(b, m, deterministic)
3 years ago
}
3 years ago
func (dst *JoinGroupApplicationTips) XXX_Merge(src proto.Message) {
xxx_messageInfo_JoinGroupApplicationTips.Merge(dst, src)
3 years ago
}
3 years ago
func (m *JoinGroupApplicationTips) XXX_Size() int {
return xxx_messageInfo_JoinGroupApplicationTips.Size(m)
3 years ago
}
3 years ago
func (m *JoinGroupApplicationTips) XXX_DiscardUnknown() {
xxx_messageInfo_JoinGroupApplicationTips.DiscardUnknown(m)
3 years ago
}
3 years ago
var xxx_messageInfo_JoinGroupApplicationTips proto.InternalMessageInfo
3 years ago
3 years ago
func (m *JoinGroupApplicationTips) GetGroup() *GroupInfo {
3 years ago
if m != nil {
return m.Group
}
return nil
}
3 years ago
func (m *JoinGroupApplicationTips) GetApplicant() *PublicUserInfo {
3 years ago
if m != nil {
3 years ago
return m.Applicant
3 years ago
}
return nil
}
3 years ago
func (m *JoinGroupApplicationTips) GetReqMsg() string {
3 years ago
if m != nil {
3 years ago
return m.ReqMsg
3 years ago
}
3 years ago
return ""
3 years ago
}
3 years ago
// OnQuitGroup()
// Actively leave the group
type MemberQuitTips struct {
Group *GroupInfo `protobuf:"bytes,1,opt,name=group" json:"group,omitempty"`
QuitUser *GroupMemberFullInfo `protobuf:"bytes,2,opt,name=quitUser" json:"quitUser,omitempty"`
OperationTime int64 `protobuf:"varint,3,opt,name=operationTime" json:"operationTime,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
3 years ago
func (m *MemberQuitTips) Reset() { *m = MemberQuitTips{} }
func (m *MemberQuitTips) String() string { return proto.CompactTextString(m) }
func (*MemberQuitTips) ProtoMessage() {}
func (*MemberQuitTips) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{19}
3 years ago
}
3 years ago
func (m *MemberQuitTips) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_MemberQuitTips.Unmarshal(m, b)
3 years ago
}
3 years ago
func (m *MemberQuitTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_MemberQuitTips.Marshal(b, m, deterministic)
3 years ago
}
3 years ago
func (dst *MemberQuitTips) XXX_Merge(src proto.Message) {
xxx_messageInfo_MemberQuitTips.Merge(dst, src)
3 years ago
}
3 years ago
func (m *MemberQuitTips) XXX_Size() int {
return xxx_messageInfo_MemberQuitTips.Size(m)
3 years ago
}
3 years ago
func (m *MemberQuitTips) XXX_DiscardUnknown() {
xxx_messageInfo_MemberQuitTips.DiscardUnknown(m)
3 years ago
}
3 years ago
var xxx_messageInfo_MemberQuitTips proto.InternalMessageInfo
3 years ago
3 years ago
func (m *MemberQuitTips) GetGroup() *GroupInfo {
3 years ago
if m != nil {
return m.Group
}
return nil
}
3 years ago
func (m *MemberQuitTips) GetQuitUser() *GroupMemberFullInfo {
3 years ago
if m != nil {
3 years ago
return m.QuitUser
3 years ago
}
return nil
}
3 years ago
func (m *MemberQuitTips) GetOperationTime() int64 {
3 years ago
if m != nil {
return m.OperationTime
}
return 0
}
3 years ago
// OnApplicationGroupAccepted()
type GroupApplicationAcceptedTips struct {
Group *GroupInfo `protobuf:"bytes,1,opt,name=group" json:"group,omitempty"`
OpUser *GroupMemberFullInfo `protobuf:"bytes,2,opt,name=opUser" json:"opUser,omitempty"`
3 years ago
HandleMsg string `protobuf:"bytes,4,opt,name=handleMsg" json:"handleMsg,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
3 years ago
func (m *GroupApplicationAcceptedTips) Reset() { *m = GroupApplicationAcceptedTips{} }
func (m *GroupApplicationAcceptedTips) String() string { return proto.CompactTextString(m) }
func (*GroupApplicationAcceptedTips) ProtoMessage() {}
func (*GroupApplicationAcceptedTips) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{20}
3 years ago
}
3 years ago
func (m *GroupApplicationAcceptedTips) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GroupApplicationAcceptedTips.Unmarshal(m, b)
3 years ago
}
3 years ago
func (m *GroupApplicationAcceptedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GroupApplicationAcceptedTips.Marshal(b, m, deterministic)
3 years ago
}
3 years ago
func (dst *GroupApplicationAcceptedTips) XXX_Merge(src proto.Message) {
xxx_messageInfo_GroupApplicationAcceptedTips.Merge(dst, src)
3 years ago
}
3 years ago
func (m *GroupApplicationAcceptedTips) XXX_Size() int {
return xxx_messageInfo_GroupApplicationAcceptedTips.Size(m)
3 years ago
}
3 years ago
func (m *GroupApplicationAcceptedTips) XXX_DiscardUnknown() {
xxx_messageInfo_GroupApplicationAcceptedTips.DiscardUnknown(m)
3 years ago
}
3 years ago
var xxx_messageInfo_GroupApplicationAcceptedTips proto.InternalMessageInfo
3 years ago
3 years ago
func (m *GroupApplicationAcceptedTips) GetGroup() *GroupInfo {
3 years ago
if m != nil {
3 years ago
return m.Group
3 years ago
}
3 years ago
return nil
3 years ago
}
3 years ago
func (m *GroupApplicationAcceptedTips) GetOpUser() *GroupMemberFullInfo {
3 years ago
if m != nil {
return m.OpUser
}
return nil
}
3 years ago
func (m *GroupApplicationAcceptedTips) GetHandleMsg() string {
3 years ago
if m != nil {
3 years ago
return m.HandleMsg
3 years ago
}
3 years ago
return ""
}
// OnApplicationGroupRejected()
type GroupApplicationRejectedTips struct {
Group *GroupInfo `protobuf:"bytes,1,opt,name=group" json:"group,omitempty"`
OpUser *GroupMemberFullInfo `protobuf:"bytes,2,opt,name=opUser" json:"opUser,omitempty"`
HandleMsg string `protobuf:"bytes,4,opt,name=handleMsg" json:"handleMsg,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GroupApplicationRejectedTips) Reset() { *m = GroupApplicationRejectedTips{} }
func (m *GroupApplicationRejectedTips) String() string { return proto.CompactTextString(m) }
func (*GroupApplicationRejectedTips) ProtoMessage() {}
func (*GroupApplicationRejectedTips) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{21}
3 years ago
}
func (m *GroupApplicationRejectedTips) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GroupApplicationRejectedTips.Unmarshal(m, b)
}
func (m *GroupApplicationRejectedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GroupApplicationRejectedTips.Marshal(b, m, deterministic)
}
func (dst *GroupApplicationRejectedTips) XXX_Merge(src proto.Message) {
xxx_messageInfo_GroupApplicationRejectedTips.Merge(dst, src)
}
func (m *GroupApplicationRejectedTips) XXX_Size() int {
return xxx_messageInfo_GroupApplicationRejectedTips.Size(m)
}
func (m *GroupApplicationRejectedTips) XXX_DiscardUnknown() {
xxx_messageInfo_GroupApplicationRejectedTips.DiscardUnknown(m)
3 years ago
}
3 years ago
var xxx_messageInfo_GroupApplicationRejectedTips proto.InternalMessageInfo
func (m *GroupApplicationRejectedTips) GetGroup() *GroupInfo {
3 years ago
if m != nil {
3 years ago
return m.Group
3 years ago
}
3 years ago
return nil
3 years ago
}
3 years ago
func (m *GroupApplicationRejectedTips) GetOpUser() *GroupMemberFullInfo {
3 years ago
if m != nil {
3 years ago
return m.OpUser
3 years ago
}
return nil
}
3 years ago
func (m *GroupApplicationRejectedTips) GetHandleMsg() string {
if m != nil {
return m.HandleMsg
}
return ""
3 years ago
}
3 years ago
// OnTransferGroupOwner()
type GroupOwnerTransferredTips struct {
Group *GroupInfo `protobuf:"bytes,1,opt,name=group" json:"group,omitempty"`
OpUser *GroupMemberFullInfo `protobuf:"bytes,2,opt,name=opUser" json:"opUser,omitempty"`
NewGroupOwner *GroupMemberFullInfo `protobuf:"bytes,3,opt,name=newGroupOwner" json:"newGroupOwner,omitempty"`
OperationTime int64 `protobuf:"varint,4,opt,name=operationTime" json:"operationTime,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
3 years ago
func (m *GroupOwnerTransferredTips) Reset() { *m = GroupOwnerTransferredTips{} }
func (m *GroupOwnerTransferredTips) String() string { return proto.CompactTextString(m) }
func (*GroupOwnerTransferredTips) ProtoMessage() {}
func (*GroupOwnerTransferredTips) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{22}
3 years ago
}
3 years ago
func (m *GroupOwnerTransferredTips) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GroupOwnerTransferredTips.Unmarshal(m, b)
3 years ago
}
3 years ago
func (m *GroupOwnerTransferredTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GroupOwnerTransferredTips.Marshal(b, m, deterministic)
3 years ago
}
3 years ago
func (dst *GroupOwnerTransferredTips) XXX_Merge(src proto.Message) {
xxx_messageInfo_GroupOwnerTransferredTips.Merge(dst, src)
3 years ago
}
3 years ago
func (m *GroupOwnerTransferredTips) XXX_Size() int {
return xxx_messageInfo_GroupOwnerTransferredTips.Size(m)
}
func (m *GroupOwnerTransferredTips) XXX_DiscardUnknown() {
xxx_messageInfo_GroupOwnerTransferredTips.DiscardUnknown(m)
3 years ago
}
3 years ago
var xxx_messageInfo_GroupOwnerTransferredTips proto.InternalMessageInfo
3 years ago
3 years ago
func (m *GroupOwnerTransferredTips) GetGroup() *GroupInfo {
3 years ago
if m != nil {
return m.Group
}
return nil
}
3 years ago
func (m *GroupOwnerTransferredTips) GetOpUser() *GroupMemberFullInfo {
3 years ago
if m != nil {
3 years ago
return m.OpUser
3 years ago
}
return nil
}
3 years ago
func (m *GroupOwnerTransferredTips) GetNewGroupOwner() *GroupMemberFullInfo {
3 years ago
if m != nil {
3 years ago
return m.NewGroupOwner
3 years ago
}
return nil
}
3 years ago
func (m *GroupOwnerTransferredTips) GetOperationTime() int64 {
3 years ago
if m != nil {
return m.OperationTime
}
return 0
}
3 years ago
// OnMemberKicked()
type MemberKickedTips struct {
Group *GroupInfo `protobuf:"bytes,1,opt,name=group" json:"group,omitempty"`
OpUser *GroupMemberFullInfo `protobuf:"bytes,2,opt,name=opUser" json:"opUser,omitempty"`
KickedUserList []*GroupMemberFullInfo `protobuf:"bytes,3,rep,name=kickedUserList" json:"kickedUserList,omitempty"`
OperationTime int64 `protobuf:"varint,4,opt,name=operationTime" json:"operationTime,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
3 years ago
func (m *MemberKickedTips) Reset() { *m = MemberKickedTips{} }
func (m *MemberKickedTips) String() string { return proto.CompactTextString(m) }
func (*MemberKickedTips) ProtoMessage() {}
func (*MemberKickedTips) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{23}
3 years ago
}
3 years ago
func (m *MemberKickedTips) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_MemberKickedTips.Unmarshal(m, b)
3 years ago
}
3 years ago
func (m *MemberKickedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_MemberKickedTips.Marshal(b, m, deterministic)
3 years ago
}
3 years ago
func (dst *MemberKickedTips) XXX_Merge(src proto.Message) {
xxx_messageInfo_MemberKickedTips.Merge(dst, src)
3 years ago
}
3 years ago
func (m *MemberKickedTips) XXX_Size() int {
return xxx_messageInfo_MemberKickedTips.Size(m)
3 years ago
}
3 years ago
func (m *MemberKickedTips) XXX_DiscardUnknown() {
xxx_messageInfo_MemberKickedTips.DiscardUnknown(m)
3 years ago
}
3 years ago
var xxx_messageInfo_MemberKickedTips proto.InternalMessageInfo
3 years ago
3 years ago
func (m *MemberKickedTips) GetGroup() *GroupInfo {
3 years ago
if m != nil {
3 years ago
return m.Group
3 years ago
}
3 years ago
return nil
3 years ago
}
3 years ago
func (m *MemberKickedTips) GetOpUser() *GroupMemberFullInfo {
3 years ago
if m != nil {
3 years ago
return m.OpUser
3 years ago
}
return nil
}
3 years ago
func (m *MemberKickedTips) GetKickedUserList() []*GroupMemberFullInfo {
3 years ago
if m != nil {
3 years ago
return m.KickedUserList
3 years ago
}
return nil
}
3 years ago
func (m *MemberKickedTips) GetOperationTime() int64 {
if m != nil {
return m.OperationTime
}
return 0
3 years ago
}
3 years ago
// OnMemberInvited()
type MemberInvitedTips struct {
Group *GroupInfo `protobuf:"bytes,1,opt,name=group" json:"group,omitempty"`
OpUser *GroupMemberFullInfo `protobuf:"bytes,2,opt,name=opUser" json:"opUser,omitempty"`
InvitedUserList []*GroupMemberFullInfo `protobuf:"bytes,3,rep,name=invitedUserList" json:"invitedUserList,omitempty"`
OperationTime int64 `protobuf:"varint,4,opt,name=operationTime" json:"operationTime,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
3 years ago
func (m *MemberInvitedTips) Reset() { *m = MemberInvitedTips{} }
func (m *MemberInvitedTips) String() string { return proto.CompactTextString(m) }
func (*MemberInvitedTips) ProtoMessage() {}
func (*MemberInvitedTips) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{24}
3 years ago
}
3 years ago
func (m *MemberInvitedTips) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_MemberInvitedTips.Unmarshal(m, b)
3 years ago
}
3 years ago
func (m *MemberInvitedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_MemberInvitedTips.Marshal(b, m, deterministic)
3 years ago
}
3 years ago
func (dst *MemberInvitedTips) XXX_Merge(src proto.Message) {
xxx_messageInfo_MemberInvitedTips.Merge(dst, src)
3 years ago
}
3 years ago
func (m *MemberInvitedTips) XXX_Size() int {
return xxx_messageInfo_MemberInvitedTips.Size(m)
}
func (m *MemberInvitedTips) XXX_DiscardUnknown() {
xxx_messageInfo_MemberInvitedTips.DiscardUnknown(m)
3 years ago
}
3 years ago
var xxx_messageInfo_MemberInvitedTips proto.InternalMessageInfo
3 years ago
3 years ago
func (m *MemberInvitedTips) GetGroup() *GroupInfo {
3 years ago
if m != nil {
return m.Group
}
return nil
}
3 years ago
func (m *MemberInvitedTips) GetOpUser() *GroupMemberFullInfo {
3 years ago
if m != nil {
3 years ago
return m.OpUser
}
return nil
}
func (m *MemberInvitedTips) GetInvitedUserList() []*GroupMemberFullInfo {
if m != nil {
return m.InvitedUserList
3 years ago
}
return nil
}
3 years ago
func (m *MemberInvitedTips) GetOperationTime() int64 {
3 years ago
if m != nil {
3 years ago
return m.OperationTime
3 years ago
}
3 years ago
return 0
3 years ago
}
3 years ago
// Actively join the group
type MemberEnterTips struct {
Group *GroupInfo `protobuf:"bytes,1,opt,name=group" json:"group,omitempty"`
3 years ago
EntrantUser *GroupMemberFullInfo `protobuf:"bytes,2,opt,name=entrantUser" json:"entrantUser,omitempty"`
OperationTime int64 `protobuf:"varint,3,opt,name=operationTime" json:"operationTime,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
3 years ago
func (m *MemberEnterTips) Reset() { *m = MemberEnterTips{} }
func (m *MemberEnterTips) String() string { return proto.CompactTextString(m) }
func (*MemberEnterTips) ProtoMessage() {}
func (*MemberEnterTips) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{25}
3 years ago
}
3 years ago
func (m *MemberEnterTips) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_MemberEnterTips.Unmarshal(m, b)
3 years ago
}
3 years ago
func (m *MemberEnterTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_MemberEnterTips.Marshal(b, m, deterministic)
3 years ago
}
3 years ago
func (dst *MemberEnterTips) XXX_Merge(src proto.Message) {
xxx_messageInfo_MemberEnterTips.Merge(dst, src)
3 years ago
}
3 years ago
func (m *MemberEnterTips) XXX_Size() int {
return xxx_messageInfo_MemberEnterTips.Size(m)
3 years ago
}
3 years ago
func (m *MemberEnterTips) XXX_DiscardUnknown() {
xxx_messageInfo_MemberEnterTips.DiscardUnknown(m)
3 years ago
}
3 years ago
var xxx_messageInfo_MemberEnterTips proto.InternalMessageInfo
3 years ago
3 years ago
func (m *MemberEnterTips) GetGroup() *GroupInfo {
3 years ago
if m != nil {
return m.Group
}
return nil
}
3 years ago
func (m *MemberEnterTips) GetEntrantUser() *GroupMemberFullInfo {
3 years ago
if m != nil {
3 years ago
return m.EntrantUser
3 years ago
}
return nil
}
3 years ago
func (m *MemberEnterTips) GetOperationTime() int64 {
3 years ago
if m != nil {
3 years ago
return m.OperationTime
3 years ago
}
return 0
}
type FriendApplication struct {
AddTime int64 `protobuf:"varint,1,opt,name=addTime" json:"addTime,omitempty"`
AddSource string `protobuf:"bytes,2,opt,name=addSource" json:"addSource,omitempty"`
AddWording string `protobuf:"bytes,3,opt,name=addWording" json:"addWording,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *FriendApplication) Reset() { *m = FriendApplication{} }
func (m *FriendApplication) String() string { return proto.CompactTextString(m) }
func (*FriendApplication) ProtoMessage() {}
func (*FriendApplication) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{26}
3 years ago
}
func (m *FriendApplication) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FriendApplication.Unmarshal(m, b)
}
func (m *FriendApplication) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_FriendApplication.Marshal(b, m, deterministic)
}
func (dst *FriendApplication) XXX_Merge(src proto.Message) {
xxx_messageInfo_FriendApplication.Merge(dst, src)
}
func (m *FriendApplication) XXX_Size() int {
return xxx_messageInfo_FriendApplication.Size(m)
}
func (m *FriendApplication) XXX_DiscardUnknown() {
xxx_messageInfo_FriendApplication.DiscardUnknown(m)
}
var xxx_messageInfo_FriendApplication proto.InternalMessageInfo
3 years ago
func (m *FriendApplication) GetAddTime() int64 {
3 years ago
if m != nil {
return m.AddTime
}
return 0
}
func (m *FriendApplication) GetAddSource() string {
if m != nil {
return m.AddSource
}
return ""
}
func (m *FriendApplication) GetAddWording() string {
if m != nil {
return m.AddWording
}
return ""
}
3 years ago
type FromToUserID struct {
FromUserID string `protobuf:"bytes,1,opt,name=fromUserID" json:"fromUserID,omitempty"`
ToUserID string `protobuf:"bytes,2,opt,name=toUserID" json:"toUserID,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *FromToUserID) Reset() { *m = FromToUserID{} }
func (m *FromToUserID) String() string { return proto.CompactTextString(m) }
func (*FromToUserID) ProtoMessage() {}
func (*FromToUserID) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{27}
3 years ago
}
func (m *FromToUserID) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FromToUserID.Unmarshal(m, b)
}
func (m *FromToUserID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_FromToUserID.Marshal(b, m, deterministic)
}
func (dst *FromToUserID) XXX_Merge(src proto.Message) {
xxx_messageInfo_FromToUserID.Merge(dst, src)
}
func (m *FromToUserID) XXX_Size() int {
return xxx_messageInfo_FromToUserID.Size(m)
}
func (m *FromToUserID) XXX_DiscardUnknown() {
xxx_messageInfo_FromToUserID.DiscardUnknown(m)
}
var xxx_messageInfo_FromToUserID proto.InternalMessageInfo
func (m *FromToUserID) GetFromUserID() string {
if m != nil {
return m.FromUserID
}
return ""
}
func (m *FromToUserID) GetToUserID() string {
if m != nil {
return m.ToUserID
}
return ""
}
// FromUserID apply to add ToUserID
3 years ago
type FriendApplicationTips struct {
FromToUserID *FromToUserID `protobuf:"bytes,1,opt,name=fromToUserID" json:"fromToUserID,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
3 years ago
func (m *FriendApplicationTips) Reset() { *m = FriendApplicationTips{} }
func (m *FriendApplicationTips) String() string { return proto.CompactTextString(m) }
func (*FriendApplicationTips) ProtoMessage() {}
func (*FriendApplicationTips) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{28}
3 years ago
}
3 years ago
func (m *FriendApplicationTips) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FriendApplicationTips.Unmarshal(m, b)
3 years ago
}
3 years ago
func (m *FriendApplicationTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_FriendApplicationTips.Marshal(b, m, deterministic)
3 years ago
}
3 years ago
func (dst *FriendApplicationTips) XXX_Merge(src proto.Message) {
xxx_messageInfo_FriendApplicationTips.Merge(dst, src)
3 years ago
}
3 years ago
func (m *FriendApplicationTips) XXX_Size() int {
return xxx_messageInfo_FriendApplicationTips.Size(m)
3 years ago
}
3 years ago
func (m *FriendApplicationTips) XXX_DiscardUnknown() {
xxx_messageInfo_FriendApplicationTips.DiscardUnknown(m)
3 years ago
}
3 years ago
var xxx_messageInfo_FriendApplicationTips proto.InternalMessageInfo
3 years ago
3 years ago
func (m *FriendApplicationTips) GetFromToUserID() *FromToUserID {
3 years ago
if m != nil {
3 years ago
return m.FromToUserID
3 years ago
}
return nil
}
3 years ago
// FromUserID accept or reject ToUserID
3 years ago
type FriendApplicationApprovedTips struct {
FromToUserID *FromToUserID `protobuf:"bytes,1,opt,name=fromToUserID" json:"fromToUserID,omitempty"`
3 years ago
HandleMsg string `protobuf:"bytes,2,opt,name=handleMsg" json:"handleMsg,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
3 years ago
func (m *FriendApplicationApprovedTips) Reset() { *m = FriendApplicationApprovedTips{} }
func (m *FriendApplicationApprovedTips) String() string { return proto.CompactTextString(m) }
func (*FriendApplicationApprovedTips) ProtoMessage() {}
func (*FriendApplicationApprovedTips) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{29}
3 years ago
}
3 years ago
func (m *FriendApplicationApprovedTips) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FriendApplicationApprovedTips.Unmarshal(m, b)
3 years ago
}
3 years ago
func (m *FriendApplicationApprovedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_FriendApplicationApprovedTips.Marshal(b, m, deterministic)
3 years ago
}
3 years ago
func (dst *FriendApplicationApprovedTips) XXX_Merge(src proto.Message) {
xxx_messageInfo_FriendApplicationApprovedTips.Merge(dst, src)
3 years ago
}
3 years ago
func (m *FriendApplicationApprovedTips) XXX_Size() int {
return xxx_messageInfo_FriendApplicationApprovedTips.Size(m)
3 years ago
}
3 years ago
func (m *FriendApplicationApprovedTips) XXX_DiscardUnknown() {
xxx_messageInfo_FriendApplicationApprovedTips.DiscardUnknown(m)
3 years ago
}
3 years ago
var xxx_messageInfo_FriendApplicationApprovedTips proto.InternalMessageInfo
3 years ago
3 years ago
func (m *FriendApplicationApprovedTips) GetFromToUserID() *FromToUserID {
3 years ago
if m != nil {
3 years ago
return m.FromToUserID
3 years ago
}
return nil
}
3 years ago
func (m *FriendApplicationApprovedTips) GetHandleMsg() string {
3 years ago
if m != nil {
3 years ago
return m.HandleMsg
3 years ago
}
3 years ago
return ""
}
// FromUserID accept or reject ToUserID
type FriendApplicationRejectedTips struct {
FromToUserID *FromToUserID `protobuf:"bytes,1,opt,name=fromToUserID" json:"fromToUserID,omitempty"`
HandleMsg string `protobuf:"bytes,2,opt,name=handleMsg" json:"handleMsg,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *FriendApplicationRejectedTips) Reset() { *m = FriendApplicationRejectedTips{} }
func (m *FriendApplicationRejectedTips) String() string { return proto.CompactTextString(m) }
func (*FriendApplicationRejectedTips) ProtoMessage() {}
func (*FriendApplicationRejectedTips) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{30}
3 years ago
}
func (m *FriendApplicationRejectedTips) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FriendApplicationRejectedTips.Unmarshal(m, b)
}
func (m *FriendApplicationRejectedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_FriendApplicationRejectedTips.Marshal(b, m, deterministic)
}
func (dst *FriendApplicationRejectedTips) XXX_Merge(src proto.Message) {
xxx_messageInfo_FriendApplicationRejectedTips.Merge(dst, src)
}
func (m *FriendApplicationRejectedTips) XXX_Size() int {
return xxx_messageInfo_FriendApplicationRejectedTips.Size(m)
}
func (m *FriendApplicationRejectedTips) XXX_DiscardUnknown() {
xxx_messageInfo_FriendApplicationRejectedTips.DiscardUnknown(m)
}
var xxx_messageInfo_FriendApplicationRejectedTips proto.InternalMessageInfo
func (m *FriendApplicationRejectedTips) GetFromToUserID() *FromToUserID {
if m != nil {
return m.FromToUserID
}
return nil
}
func (m *FriendApplicationRejectedTips) GetHandleMsg() string {
if m != nil {
return m.HandleMsg
}
return ""
3 years ago
}
3 years ago
// FromUserID Added a friend ToUserID
3 years ago
type FriendAddedTips struct {
Friend *FriendInfo `protobuf:"bytes,1,opt,name=friend" json:"friend,omitempty"`
OperationTime int64 `protobuf:"varint,2,opt,name=operationTime" json:"operationTime,omitempty"`
OpUser *PublicUserInfo `protobuf:"bytes,3,opt,name=opUser" json:"opUser,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
3 years ago
func (m *FriendAddedTips) Reset() { *m = FriendAddedTips{} }
func (m *FriendAddedTips) String() string { return proto.CompactTextString(m) }
func (*FriendAddedTips) ProtoMessage() {}
func (*FriendAddedTips) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{31}
3 years ago
}
func (m *FriendAddedTips) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FriendAddedTips.Unmarshal(m, b)
3 years ago
}
3 years ago
func (m *FriendAddedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_FriendAddedTips.Marshal(b, m, deterministic)
3 years ago
}
3 years ago
func (dst *FriendAddedTips) XXX_Merge(src proto.Message) {
xxx_messageInfo_FriendAddedTips.Merge(dst, src)
3 years ago
}
3 years ago
func (m *FriendAddedTips) XXX_Size() int {
return xxx_messageInfo_FriendAddedTips.Size(m)
}
func (m *FriendAddedTips) XXX_DiscardUnknown() {
xxx_messageInfo_FriendAddedTips.DiscardUnknown(m)
3 years ago
}
3 years ago
var xxx_messageInfo_FriendAddedTips proto.InternalMessageInfo
3 years ago
3 years ago
func (m *FriendAddedTips) GetFriend() *FriendInfo {
3 years ago
if m != nil {
3 years ago
return m.Friend
3 years ago
}
return nil
}
3 years ago
func (m *FriendAddedTips) GetOperationTime() int64 {
3 years ago
if m != nil {
3 years ago
return m.OperationTime
3 years ago
}
3 years ago
return 0
3 years ago
}
3 years ago
func (m *FriendAddedTips) GetOpUser() *PublicUserInfo {
if m != nil {
return m.OpUser
}
return nil
}
// FromUserID deleted a friend ToUserID
3 years ago
type FriendDeletedTips struct {
FromToUserID *FromToUserID `protobuf:"bytes,1,opt,name=fromToUserID" json:"fromToUserID,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
3 years ago
func (m *FriendDeletedTips) Reset() { *m = FriendDeletedTips{} }
func (m *FriendDeletedTips) String() string { return proto.CompactTextString(m) }
func (*FriendDeletedTips) ProtoMessage() {}
func (*FriendDeletedTips) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{32}
3 years ago
}
3 years ago
func (m *FriendDeletedTips) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FriendDeletedTips.Unmarshal(m, b)
3 years ago
}
3 years ago
func (m *FriendDeletedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_FriendDeletedTips.Marshal(b, m, deterministic)
3 years ago
}
3 years ago
func (dst *FriendDeletedTips) XXX_Merge(src proto.Message) {
xxx_messageInfo_FriendDeletedTips.Merge(dst, src)
3 years ago
}
3 years ago
func (m *FriendDeletedTips) XXX_Size() int {
return xxx_messageInfo_FriendDeletedTips.Size(m)
3 years ago
}
3 years ago
func (m *FriendDeletedTips) XXX_DiscardUnknown() {
xxx_messageInfo_FriendDeletedTips.DiscardUnknown(m)
3 years ago
}
3 years ago
var xxx_messageInfo_FriendDeletedTips proto.InternalMessageInfo
3 years ago
3 years ago
func (m *FriendDeletedTips) GetFromToUserID() *FromToUserID {
3 years ago
if m != nil {
3 years ago
return m.FromToUserID
3 years ago
}
return nil
}
type BlackAddedTips struct {
FromToUserID *FromToUserID `protobuf:"bytes,1,opt,name=fromToUserID" json:"fromToUserID,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
func (m *BlackAddedTips) Reset() { *m = BlackAddedTips{} }
func (m *BlackAddedTips) String() string { return proto.CompactTextString(m) }
func (*BlackAddedTips) ProtoMessage() {}
func (*BlackAddedTips) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{33}
3 years ago
}
3 years ago
func (m *BlackAddedTips) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BlackAddedTips.Unmarshal(m, b)
3 years ago
}
3 years ago
func (m *BlackAddedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_BlackAddedTips.Marshal(b, m, deterministic)
3 years ago
}
3 years ago
func (dst *BlackAddedTips) XXX_Merge(src proto.Message) {
xxx_messageInfo_BlackAddedTips.Merge(dst, src)
3 years ago
}
3 years ago
func (m *BlackAddedTips) XXX_Size() int {
return xxx_messageInfo_BlackAddedTips.Size(m)
3 years ago
}
3 years ago
func (m *BlackAddedTips) XXX_DiscardUnknown() {
xxx_messageInfo_BlackAddedTips.DiscardUnknown(m)
3 years ago
}
3 years ago
var xxx_messageInfo_BlackAddedTips proto.InternalMessageInfo
3 years ago
3 years ago
func (m *BlackAddedTips) GetFromToUserID() *FromToUserID {
3 years ago
if m != nil {
3 years ago
return m.FromToUserID
3 years ago
}
return nil
}
3 years ago
type BlackDeletedTips struct {
FromToUserID *FromToUserID `protobuf:"bytes,1,opt,name=fromToUserID" json:"fromToUserID,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
3 years ago
func (m *BlackDeletedTips) Reset() { *m = BlackDeletedTips{} }
func (m *BlackDeletedTips) String() string { return proto.CompactTextString(m) }
func (*BlackDeletedTips) ProtoMessage() {}
func (*BlackDeletedTips) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{34}
3 years ago
}
func (m *BlackDeletedTips) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BlackDeletedTips.Unmarshal(m, b)
3 years ago
}
3 years ago
func (m *BlackDeletedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_BlackDeletedTips.Marshal(b, m, deterministic)
3 years ago
}
3 years ago
func (dst *BlackDeletedTips) XXX_Merge(src proto.Message) {
xxx_messageInfo_BlackDeletedTips.Merge(dst, src)
3 years ago
}
3 years ago
func (m *BlackDeletedTips) XXX_Size() int {
return xxx_messageInfo_BlackDeletedTips.Size(m)
3 years ago
}
3 years ago
func (m *BlackDeletedTips) XXX_DiscardUnknown() {
xxx_messageInfo_BlackDeletedTips.DiscardUnknown(m)
3 years ago
}
3 years ago
var xxx_messageInfo_BlackDeletedTips proto.InternalMessageInfo
3 years ago
3 years ago
func (m *BlackDeletedTips) GetFromToUserID() *FromToUserID {
3 years ago
if m != nil {
3 years ago
return m.FromToUserID
3 years ago
}
return nil
}
type FriendInfoChangedTips struct {
FromToUserID *FromToUserID `protobuf:"bytes,1,opt,name=fromToUserID" json:"fromToUserID,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
func (m *FriendInfoChangedTips) Reset() { *m = FriendInfoChangedTips{} }
func (m *FriendInfoChangedTips) String() string { return proto.CompactTextString(m) }
func (*FriendInfoChangedTips) ProtoMessage() {}
func (*FriendInfoChangedTips) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{35}
3 years ago
}
func (m *FriendInfoChangedTips) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FriendInfoChangedTips.Unmarshal(m, b)
}
func (m *FriendInfoChangedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_FriendInfoChangedTips.Marshal(b, m, deterministic)
}
func (dst *FriendInfoChangedTips) XXX_Merge(src proto.Message) {
xxx_messageInfo_FriendInfoChangedTips.Merge(dst, src)
}
func (m *FriendInfoChangedTips) XXX_Size() int {
return xxx_messageInfo_FriendInfoChangedTips.Size(m)
}
func (m *FriendInfoChangedTips) XXX_DiscardUnknown() {
xxx_messageInfo_FriendInfoChangedTips.DiscardUnknown(m)
}
var xxx_messageInfo_FriendInfoChangedTips proto.InternalMessageInfo
3 years ago
func (m *FriendInfoChangedTips) GetFromToUserID() *FromToUserID {
3 years ago
if m != nil {
3 years ago
return m.FromToUserID
3 years ago
}
return nil
}
// ////////////////////user/////////////////////
3 years ago
type UserInfoUpdatedTips struct {
UserID string `protobuf:"bytes,1,opt,name=userID" json:"userID,omitempty"`
3 years ago
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
3 years ago
}
3 years ago
func (m *UserInfoUpdatedTips) Reset() { *m = UserInfoUpdatedTips{} }
func (m *UserInfoUpdatedTips) String() string { return proto.CompactTextString(m) }
func (*UserInfoUpdatedTips) ProtoMessage() {}
func (*UserInfoUpdatedTips) Descriptor() ([]byte, []int) {
3 years ago
return fileDescriptor_ws_dd0597f97f3a9074, []int{36}
3 years ago
}
3 years ago
func (m *UserInfoUpdatedTips) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_UserInfoUpdatedTips.Unmarshal(m, b)
3 years ago
}
3 years ago
func (m *UserInfoUpdatedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_UserInfoUpdatedTips.Marshal(b, m, deterministic)
3 years ago
}
3 years ago
func (dst *UserInfoUpdatedTips) XXX_Merge(src proto.Message) {
xxx_messageInfo_UserInfoUpdatedTips.Merge(dst, src)
3 years ago
}
3 years ago
func (m *UserInfoUpdatedTips) XXX_Size() int {
return xxx_messageInfo_UserInfoUpdatedTips.Size(m)
3 years ago
}
3 years ago
func (m *UserInfoUpdatedTips) XXX_DiscardUnknown() {
xxx_messageInfo_UserInfoUpdatedTips.DiscardUnknown(m)
3 years ago
}
3 years ago
var xxx_messageInfo_UserInfoUpdatedTips proto.InternalMessageInfo
3 years ago
3 years ago
func (m *UserInfoUpdatedTips) GetUserID() string {
3 years ago
if m != nil {
3 years ago
return m.UserID
3 years ago
}
3 years ago
return ""
3 years ago
}
func init() {
3 years ago
proto.RegisterType((*GroupInfo)(nil), "server_api_params.GroupInfo")
proto.RegisterType((*GroupMemberFullInfo)(nil), "server_api_params.GroupMemberFullInfo")
proto.RegisterType((*PublicUserInfo)(nil), "server_api_params.PublicUserInfo")
proto.RegisterType((*UserInfo)(nil), "server_api_params.UserInfo")
proto.RegisterType((*FriendInfo)(nil), "server_api_params.FriendInfo")
proto.RegisterType((*BlackInfo)(nil), "server_api_params.BlackInfo")
proto.RegisterType((*GroupRequest)(nil), "server_api_params.GroupRequest")
proto.RegisterType((*FriendRequest)(nil), "server_api_params.FriendRequest")
proto.RegisterType((*PullMessageBySeqListResp)(nil), "server_api_params.PullMessageBySeqListResp")
proto.RegisterType((*PullMessageBySeqListReq)(nil), "server_api_params.PullMessageBySeqListReq")
proto.RegisterType((*GetMaxAndMinSeqReq)(nil), "server_api_params.GetMaxAndMinSeqReq")
proto.RegisterType((*GetMaxAndMinSeqResp)(nil), "server_api_params.GetMaxAndMinSeqResp")
proto.RegisterType((*UserSendMsgResp)(nil), "server_api_params.UserSendMsgResp")
proto.RegisterType((*MsgData)(nil), "server_api_params.MsgData")
proto.RegisterMapType((map[string]bool)(nil), "server_api_params.MsgData.OptionsEntry")
proto.RegisterType((*OfflinePushInfo)(nil), "server_api_params.OfflinePushInfo")
proto.RegisterType((*TipsComm)(nil), "server_api_params.TipsComm")
proto.RegisterType((*GroupCreatedTips)(nil), "server_api_params.GroupCreatedTips")
3 years ago
proto.RegisterType((*GroupInfoSetTips)(nil), "server_api_params.GroupInfoSetTips")
3 years ago
proto.RegisterType((*JoinGroupApplicationTips)(nil), "server_api_params.JoinGroupApplicationTips")
3 years ago
proto.RegisterType((*MemberQuitTips)(nil), "server_api_params.MemberQuitTips")
proto.RegisterType((*GroupApplicationAcceptedTips)(nil), "server_api_params.GroupApplicationAcceptedTips")
proto.RegisterType((*GroupApplicationRejectedTips)(nil), "server_api_params.GroupApplicationRejectedTips")
proto.RegisterType((*GroupOwnerTransferredTips)(nil), "server_api_params.GroupOwnerTransferredTips")
proto.RegisterType((*MemberKickedTips)(nil), "server_api_params.MemberKickedTips")
proto.RegisterType((*MemberInvitedTips)(nil), "server_api_params.MemberInvitedTips")
proto.RegisterType((*MemberEnterTips)(nil), "server_api_params.MemberEnterTips")
3 years ago
proto.RegisterType((*FriendApplication)(nil), "server_api_params.FriendApplication")
proto.RegisterType((*FromToUserID)(nil), "server_api_params.FromToUserID")
3 years ago
proto.RegisterType((*FriendApplicationTips)(nil), "server_api_params.FriendApplicationTips")
3 years ago
proto.RegisterType((*FriendApplicationApprovedTips)(nil), "server_api_params.FriendApplicationApprovedTips")
proto.RegisterType((*FriendApplicationRejectedTips)(nil), "server_api_params.FriendApplicationRejectedTips")
3 years ago
proto.RegisterType((*FriendAddedTips)(nil), "server_api_params.FriendAddedTips")
proto.RegisterType((*FriendDeletedTips)(nil), "server_api_params.FriendDeletedTips")
proto.RegisterType((*BlackAddedTips)(nil), "server_api_params.BlackAddedTips")
proto.RegisterType((*BlackDeletedTips)(nil), "server_api_params.BlackDeletedTips")
proto.RegisterType((*FriendInfoChangedTips)(nil), "server_api_params.FriendInfoChangedTips")
3 years ago
proto.RegisterType((*UserInfoUpdatedTips)(nil), "server_api_params.UserInfoUpdatedTips")
3 years ago
}
3 years ago
func init() { proto.RegisterFile("sdk_ws/ws.proto", fileDescriptor_ws_dd0597f97f3a9074) }
var fileDescriptor_ws_dd0597f97f3a9074 = []byte{
// 1901 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x59, 0x4f, 0x6f, 0x23, 0x4b,
0x11, 0xd7, 0xd8, 0xb1, 0x63, 0x97, 0xe3, 0x38, 0x3b, 0xfb, 0x58, 0xcc, 0xb2, 0x6f, 0x09, 0xa3,
0xa7, 0xc7, 0x0a, 0x89, 0x20, 0x2d, 0x42, 0x82, 0x45, 0x80, 0xb2, 0xc9, 0x26, 0xec, 0x23, 0x4e,
0xc2, 0x38, 0xab, 0xc7, 0x01, 0x69, 0x35, 0xf1, 0xb4, 0x9d, 0x79, 0x19, 0x77, 0x8f, 0xbb, 0x67,
0xb2, 0xbb, 0x12, 0x27, 0xf8, 0x0c, 0x70, 0xe4, 0xc0, 0x05, 0x71, 0x41, 0x5c, 0x10, 0x17, 0x8e,
0x7c, 0x01, 0xce, 0x7c, 0x05, 0xae, 0x1c, 0x90, 0x90, 0x40, 0x5d, 0xdd, 0x33, 0xd3, 0x3d, 0x76,
0xf2, 0x2c, 0x2b, 0xda, 0xbc, 0x9b, 0xab, 0xa6, 0xab, 0xba, 0xea, 0x57, 0x7f, 0xba, 0xba, 0x0d,
0x3d, 0x11, 0x5e, 0xbe, 0x7e, 0x23, 0xbe, 0xfd, 0x46, 0xec, 0x24, 0x9c, 0xa5, 0xcc, 0xbd, 0x27,
0x08, 0xbf, 0x22, 0xfc, 0x75, 0x90, 0x44, 0xaf, 0x93, 0x80, 0x07, 0x53, 0xe1, 0xfd, 0xbb, 0x06,
0xed, 0x43, 0xce, 0xb2, 0xe4, 0x25, 0x1d, 0x33, 0xb7, 0x0f, 0xeb, 0x13, 0x24, 0xf6, 0xfb, 0xce,
0xb6, 0xf3, 0xa4, 0xed, 0xe7, 0xa4, 0xfb, 0x08, 0xda, 0xf8, 0xf3, 0x38, 0x98, 0x92, 0x7e, 0x0d,
0xbf, 0x95, 0x0c, 0xd7, 0x83, 0x0d, 0xca, 0xd2, 0x68, 0x1c, 0x8d, 0x82, 0x34, 0x62, 0xb4, 0x5f,
0xc7, 0x05, 0x16, 0x4f, 0xae, 0x89, 0x68, 0xca, 0x59, 0x98, 0x8d, 0x70, 0xcd, 0x9a, 0x5a, 0x63,
0xf2, 0xe4, 0xfe, 0xe3, 0x60, 0x44, 0x5e, 0xf9, 0x47, 0xfd, 0x86, 0xda, 0x5f, 0x93, 0xee, 0x36,
0x74, 0xd8, 0x1b, 0x4a, 0xf8, 0x2b, 0x41, 0xf8, 0xcb, 0xfd, 0x7e, 0x13, 0xbf, 0x9a, 0x2c, 0xf7,
0x31, 0xc0, 0x88, 0x93, 0x20, 0x25, 0x67, 0xd1, 0x94, 0xf4, 0xd7, 0xb7, 0x9d, 0x27, 0x5d, 0xdf,
0xe0, 0x48, 0x0d, 0x53, 0x32, 0x3d, 0x27, 0x7c, 0x8f, 0x65, 0x34, 0xed, 0xb7, 0x70, 0x81, 0xc9,
0x72, 0x37, 0xa1, 0x46, 0xde, 0xf6, 0xdb, 0xa8, 0xba, 0x46, 0xde, 0xba, 0x0f, 0xa0, 0x29, 0xd2,
0x20, 0xcd, 0x44, 0x1f, 0xb6, 0x9d, 0x27, 0x0d, 0x5f, 0x53, 0xee, 0x47, 0xd0, 0x45, 0xbd, 0x2c,
0xb7, 0xa6, 0x83, 0x22, 0x36, 0xb3, 0x40, 0xec, 0xec, 0x5d, 0x42, 0xfa, 0x1b, 0xa8, 0xa0, 0x64,
0x78, 0x7f, 0xad, 0xc1, 0x7d, 0xc4, 0x7d, 0x80, 0x06, 0x1c, 0x64, 0x71, 0xfc, 0x39, 0x11, 0x78,
0x00, 0xcd, 0x4c, 0x6d, 0xa7, 0xe0, 0xd7, 0x94, 0xdc, 0x87, 0xb3, 0x98, 0x1c, 0x91, 0x2b, 0x12,
0x23, 0xf0, 0x0d, 0xbf, 0x64, 0xb8, 0x0f, 0xa1, 0xf5, 0x19, 0x8b, 0x28, 0x62, 0x22, 0x11, 0xaf,
0xfb, 0x05, 0x2d, 0xbf, 0xd1, 0x68, 0x74, 0x49, 0x65, 0x48, 0x15, 0xdc, 0x05, 0x6d, 0x46, 0xa2,
0x69, 0x47, 0xe2, 0x63, 0xd8, 0x0c, 0x92, 0x64, 0x10, 0xd0, 0x09, 0xe1, 0x6a, 0xd3, 0x75, 0xdc,
0xb4, 0xc2, 0x95, 0xf1, 0x90, 0x3b, 0x0d, 0x59, 0xc6, 0x47, 0x04, 0xe1, 0x6e, 0xf8, 0x06, 0x47,
0xea, 0x61, 0x09, 0xe1, 0x06, 0x8c, 0x0a, 0xf9, 0x0a, 0x57, 0x47, 0x05, 0xf2, 0xa8, 0x78, 0xbf,
0x73, 0x60, 0xf3, 0x34, 0x3b, 0x8f, 0xa3, 0x11, 0x2e, 0x90, 0xa0, 0x95, 0xd0, 0x38, 0x16, 0x34,
0xa6, 0x83, 0xb5, 0xeb, 0x1d, 0xac, 0xdb, 0x0e, 0x3e, 0x80, 0xe6, 0x84, 0xd0, 0x90, 0x70, 0x04,
0xac, 0xe1, 0x6b, 0x6a, 0x81, 0xe3, 0x8d, 0x45, 0x8e, 0x7b, 0xbf, 0xad, 0x41, 0xeb, 0x3d, 0x9b,
0xb6, 0x0d, 0x9d, 0xe4, 0x82, 0x51, 0x72, 0x9c, 0xc9, 0x64, 0xd2, 0xc1, 0x34, 0x59, 0xee, 0x07,
0xd0, 0x38, 0x8f, 0x78, 0x7a, 0x81, 0xd1, 0xec, 0xfa, 0x8a, 0x90, 0x5c, 0x32, 0x0d, 0x22, 0x15,
0xc2, 0xb6, 0xaf, 0x08, 0x8d, 0x78, 0xab, 0xa8, 0x03, 0xbb, 0xb2, 0xda, 0x73, 0x95, 0x35, 0x0f,
0x0c, 0x2c, 0x04, 0xe6, 0x3f, 0x0e, 0xc0, 0x01, 0x8f, 0x08, 0x0d, 0x11, 0x9a, 0x4a, 0x49, 0x3b,
0xf3, 0x25, 0xfd, 0x00, 0x9a, 0x9c, 0x4c, 0x03, 0x7e, 0x99, 0xa7, 0xbc, 0xa2, 0x2a, 0x06, 0xd5,
0xe7, 0x0c, 0xfa, 0x01, 0xc0, 0x18, 0xf7, 0x91, 0x7a, 0x10, 0xaa, 0xce, 0xd3, 0xaf, 0xee, 0xcc,
0x35, 0xbf, 0x9d, 0x3c, 0x4a, 0xbe, 0xb1, 0x5c, 0xd6, 0x53, 0x10, 0x86, 0x3a, 0x6d, 0x55, 0x84,
0x4b, 0xc6, 0x82, 0xac, 0x6d, 0xde, 0x90, 0xb5, 0xeb, 0x45, 0xd6, 0xfe, 0xcb, 0x81, 0xf6, 0xf3,
0x38, 0x18, 0x5d, 0x2e, 0xe9, 0xba, 0xed, 0x62, 0x6d, 0xce, 0xc5, 0x43, 0xe8, 0x9e, 0x4b, 0x75,
0xb9, 0x0b, 0x88, 0x42, 0xe7, 0xe9, 0xd7, 0x17, 0x78, 0x69, 0x17, 0x8b, 0x6f, 0xcb, 0xd9, 0xee,
0xae, 0x7d, 0xbe, 0xbb, 0x8d, 0x1b, 0xdc, 0x6d, 0x16, 0xee, 0xfe, 0xa3, 0x06, 0x1b, 0xd8, 0xde,
0x7c, 0x32, 0xcb, 0x88, 0x48, 0xdd, 0x1f, 0x42, 0x2b, 0xcb, 0x4d, 0x75, 0x96, 0x35, 0xb5, 0x10,
0x71, 0x9f, 0xe9, 0x66, 0x8a, 0xf2, 0x35, 0x94, 0x7f, 0xb4, 0x40, 0xbe, 0x38, 0xc9, 0xfc, 0x72,
0xb9, 0x3c, 0x78, 0x2e, 0x02, 0x1a, 0xc6, 0xc4, 0x27, 0x22, 0x8b, 0x53, 0xdd, 0x23, 0x2d, 0x9e,
0xca, 0xb4, 0xd9, 0x40, 0x4c, 0xf4, 0xb1, 0xa4, 0x29, 0x89, 0x8e, 0x5a, 0x27, 0x3f, 0x29, 0xd7,
0x4b, 0x86, 0x2c, 0x54, 0x4e, 0x66, 0x18, 0x21, 0x55, 0x56, 0x39, 0x59, 0xee, 0xa9, 0x51, 0x53,
0x89, 0x60, 0xf1, 0x64, 0x88, 0x15, 0x8d, 0x0a, 0xd4, 0x79, 0x64, 0x70, 0xaa, 0xc7, 0x91, 0xf7,
0xcf, 0x3a, 0x74, 0x55, 0xf9, 0xe4, 0xa0, 0x3e, 0x96, 0x79, 0xce, 0xa6, 0x56, 0x16, 0x19, 0x1c,
0x69, 0x85, 0xa4, 0x8e, 0xed, 0x46, 0x63, 0xf1, 0x64, 0x2a, 0x4a, 0xfa, 0xc0, 0x6a, 0x38, 0x26,
0x2b, 0xdf, 0xe5, 0xd0, 0x6c, 0x3c, 0x06, 0x47, 0xb6, 0xb2, 0x94, 0x59, 0xd9, 0x51, 0xd0, 0x52,
0x36, 0x65, 0xc5, 0xfe, 0x2a, 0x3f, 0x0c, 0x8e, 0xc4, 0x37, 0x65, 0xf9, 0xde, 0x0a, 0xa4, 0x92,
0xa1, 0x34, 0xeb, 0x7d, 0xd5, 0x01, 0x52, 0xd0, 0x73, 0x51, 0x6d, 0xdf, 0x18, 0x55, 0xb0, 0xa2,
0x6a, 0x17, 0x57, 0x67, 0xae, 0xb8, 0x3e, 0x82, 0xae, 0xd2, 0x93, 0x27, 0xfd, 0x86, 0x3a, 0xe0,
0x2d, 0xa6, 0x9d, 0x1b, 0xdd, 0x6a, 0x6e, 0xd8, 0xd1, 0xdd, 0xbc, 0x26, 0xba, 0xbd, 0x22, 0xba,
0xbf, 0x84, 0xfe, 0x69, 0x16, 0xc7, 0x03, 0x22, 0x44, 0x30, 0x21, 0xcf, 0xdf, 0x0d, 0xc9, 0xec,
0x28, 0x12, 0xa9, 0x4f, 0x44, 0x22, 0xf3, 0x8c, 0x70, 0xbe, 0xc7, 0x42, 0x82, 0x41, 0x6e, 0xf8,
0x39, 0x29, 0x3d, 0x24, 0x9c, 0x4b, 0x03, 0x74, 0x87, 0x54, 0x94, 0xbb, 0x03, 0x6b, 0x71, 0x24,
0x64, 0xae, 0xd7, 0x9f, 0x74, 0x9e, 0x3e, 0x5c, 0x50, 0x2a, 0x03, 0x31, 0xd9, 0x0f, 0xd2, 0xc0,
0xc7, 0x75, 0xde, 0x14, 0xbe, 0xbc, 0x78, 0xf7, 0xd9, 0xb5, 0x27, 0x98, 0xec, 0x61, 0xd8, 0x04,
0x22, 0x46, 0x8b, 0xa1, 0xc4, 0x64, 0x49, 0xb3, 0x85, 0xd2, 0x83, 0x76, 0x74, 0xfd, 0x9c, 0xf4,
0x3e, 0x00, 0xf7, 0x90, 0xa4, 0x83, 0xe0, 0xed, 0x2e, 0x0d, 0x07, 0x11, 0x1d, 0x92, 0x99, 0x4f,
0x66, 0xde, 0x0b, 0xb8, 0x3f, 0xc7, 0x15, 0x89, 0x34, 0x60, 0x1a, 0xbc, 0x1d, 0x92, 0x19, 0x1a,
0xd0, 0xf5, 0x35, 0x85, 0x7c, 0x5c, 0xa5, 0xdb, 0xa3, 0xa6, 0xbc, 0x19, 0xf4, 0x64, 0x84, 0x86,
0x84, 0x86, 0x03, 0x31, 0x41, 0x15, 0xdb, 0xd0, 0x51, 0x08, 0x0c, 0xc4, 0xa4, 0xec, 0xb7, 0x06,
0x4b, 0xae, 0x18, 0xc5, 0x11, 0xa1, 0xa9, 0x5a, 0xa1, 0xbd, 0x31, 0x58, 0x32, 0x19, 0x05, 0xa1,
0x61, 0x71, 0xe4, 0xd4, 0xfd, 0x82, 0xf6, 0xfe, 0xd6, 0x80, 0x75, 0x0d, 0x28, 0x4e, 0x8d, 0xf2,
0x88, 0x2b, 0xf0, 0x52, 0x94, 0x4a, 0xc6, 0xd1, 0x55, 0x39, 0xbf, 0x29, 0xca, 0x9c, 0xf8, 0xea,
0xf6, 0xc4, 0x57, 0xb1, 0x69, 0x6d, 0xde, 0xa6, 0x8a, 0x5f, 0x8d, 0x79, 0xbf, 0xbe, 0x09, 0x5b,
0x02, 0x0b, 0xe6, 0x34, 0x0e, 0xd2, 0x31, 0xe3, 0x53, 0x7d, 0x62, 0x35, 0xfc, 0x39, 0xbe, 0x6c,
0xf6, 0x8a, 0x57, 0x14, 0xac, 0xaa, 0xc8, 0x0a, 0x57, 0x96, 0x87, 0xe2, 0xe4, 0x85, 0xab, 0x46,
0x05, 0x9b, 0xa9, 0x6c, 0x13, 0x22, 0x62, 0x14, 0x27, 0x60, 0x55, 0x9f, 0x26, 0x4b, 0x7a, 0x3e,
0x15, 0x93, 0x03, 0xce, 0xa6, 0x7a, 0x60, 0xc8, 0x49, 0xf4, 0x9c, 0xd1, 0x94, 0xd0, 0x14, 0x65,
0x3b, 0x4a, 0xd6, 0x60, 0x49, 0x59, 0x4d, 0x62, 0x71, 0x6e, 0xf8, 0x39, 0xe9, 0x6e, 0x41, 0x5d,
0x90, 0x99, 0xae, 0x38, 0xf9, 0xd3, 0x8a, 0x5c, 0xcf, 0x8e, 0x5c, 0xa5, 0x15, 0x6c, 0xe1, 0x57,
0xb3, 0x15, 0x94, 0x77, 0x80, 0x7b, 0xd6, 0x1d, 0x60, 0x17, 0xd6, 0x59, 0x22, 0xf3, 0x5c, 0xf4,
0x5d, 0xac, 0xb1, 0x6f, 0x5c, 0x5f, 0x63, 0x3b, 0x27, 0x6a, 0xe5, 0x0b, 0x9a, 0xf2, 0x77, 0x7e,
0x2e, 0xe7, 0x1e, 0x41, 0x8f, 0x8d, 0xc7, 0x71, 0x44, 0xc9, 0x69, 0x26, 0x2e, 0xf0, 0x64, 0xbb,
0x8f, 0x27, 0x9b, 0xb7, 0x40, 0xd5, 0x89, 0xbd, 0xd2, 0xaf, 0x8a, 0x3e, 0x7c, 0x06, 0x1b, 0xe6,
0x36, 0x12, 0x86, 0x4b, 0xf2, 0x4e, 0xe7, 0xa0, 0xfc, 0x29, 0x87, 0xbd, 0xab, 0x20, 0xce, 0xd4,
0x31, 0xd0, 0xf2, 0x15, 0xf1, 0xac, 0xf6, 0x3d, 0xc7, 0xfb, 0x8d, 0x03, 0xbd, 0xca, 0x06, 0x72,
0x75, 0x1a, 0xa5, 0x31, 0xd1, 0x1a, 0x14, 0xe1, 0xba, 0xb0, 0x16, 0x12, 0x31, 0xd2, 0x29, 0x8c,
0xbf, 0x75, 0x27, 0xab, 0x17, 0xe3, 0xa2, 0xbc, 0xe8, 0x9d, 0x0c, 0xa5, 0xa2, 0x21, 0xcb, 0x68,
0x58, 0x5c, 0xf4, 0x0c, 0x9e, 0x4c, 0xa1, 0xe8, 0x64, 0xf8, 0x3c, 0x08, 0x27, 0x44, 0x5d, 0xc7,
0x1a, 0x68, 0x93, 0xcd, 0xf4, 0xf6, 0xa1, 0x75, 0x16, 0x25, 0x62, 0x8f, 0x4d, 0xa7, 0x32, 0x10,
0x21, 0x49, 0xe5, 0xac, 0xea, 0x60, 0xbc, 0x35, 0x25, 0x53, 0x25, 0x24, 0xe3, 0x20, 0x8b, 0x53,
0xb9, 0x34, 0x2f, 0x5c, 0x83, 0xe5, 0xfd, 0xbd, 0x06, 0x5b, 0x38, 0x18, 0xec, 0x61, 0x58, 0x43,
0xc9, 0x74, 0x9f, 0x42, 0x03, 0xcb, 0x4c, 0x0f, 0x23, 0x37, 0x0f, 0x13, 0x6a, 0xa9, 0xfb, 0x23,
0x68, 0xb2, 0x04, 0x47, 0x4a, 0x35, 0x81, 0x7c, 0x7c, 0x9d, 0x90, 0x7d, 0xa7, 0xf3, 0xb5, 0x94,
0x7b, 0x00, 0xa0, 0xae, 0x9b, 0x47, 0x65, 0x6b, 0x5e, 0x56, 0x87, 0x21, 0x29, 0xc1, 0x2b, 0xda,
0xac, 0x71, 0xb1, 0xb3, 0x99, 0xee, 0x31, 0x6c, 0xa2, 0xd9, 0x27, 0xf9, 0x54, 0x89, 0x18, 0x2f,
0xbf, 0x63, 0x45, 0xda, 0xfb, 0xbd, 0xa3, 0x61, 0x94, 0x5f, 0x87, 0x04, 0xb1, 0x35, 0x20, 0x71,
0x56, 0x82, 0xe4, 0x21, 0xb4, 0xa6, 0x99, 0x31, 0xe4, 0xd6, 0xfd, 0x82, 0x2e, 0x43, 0x54, 0x5f,
0x3a, 0x44, 0xde, 0x1f, 0x1c, 0xe8, 0x7f, 0xc2, 0x22, 0x8a, 0x1f, 0x76, 0x93, 0x24, 0xd6, 0xaf,
0x0f, 0x2b, 0xc7, 0xfc, 0xc7, 0xd0, 0x0e, 0x94, 0x1a, 0x9a, 0xea, 0xb0, 0x2f, 0x31, 0xb8, 0x96,
0x32, 0xc6, 0x0c, 0x52, 0x37, 0x67, 0x10, 0xef, 0x4f, 0x0e, 0x6c, 0x2a, 0x50, 0x7e, 0x96, 0x45,
0xe9, 0xca, 0xf6, 0x3d, 0x87, 0xd6, 0x2c, 0x8b, 0xd2, 0x15, 0xb2, 0xb2, 0x90, 0x9b, 0xcf, 0xa7,
0xfa, 0x82, 0x7c, 0xf2, 0xfe, 0xec, 0xc0, 0xa3, 0x2a, 0xac, 0xbb, 0xa3, 0x11, 0x49, 0xee, 0xb2,
0xa4, 0xac, 0x19, 0x6c, 0xad, 0x32, 0x83, 0x2d, 0x34, 0xd9, 0x27, 0x9f, 0x91, 0xd1, 0x17, 0xd7,
0xe4, 0x5f, 0xd7, 0xe0, 0x2b, 0x87, 0x45, 0xe1, 0x9d, 0xf1, 0x80, 0x8a, 0x31, 0xe1, 0xfc, 0x0e,
0xed, 0x3d, 0x82, 0x2e, 0x25, 0x6f, 0x4a, 0x9b, 0x74, 0x39, 0x2e, 0xab, 0xc6, 0x16, 0x5e, 0xae,
0x77, 0x79, 0xff, 0x75, 0x60, 0x4b, 0xe9, 0xf9, 0x69, 0x34, 0xba, 0xbc, 0x43, 0xe7, 0x8f, 0x61,
0xf3, 0x12, 0x2d, 0x90, 0xd4, 0x0a, 0x6d, 0xbb, 0x22, 0xbd, 0xa4, 0xfb, 0xff, 0x73, 0xe0, 0x9e,
0x52, 0xf4, 0x92, 0x5e, 0x45, 0x77, 0x99, 0xac, 0xa7, 0xd0, 0x8b, 0x94, 0x09, 0x2b, 0x02, 0x50,
0x15, 0x5f, 0x12, 0x81, 0xbf, 0x38, 0xd0, 0x53, 0x9a, 0x5e, 0xd0, 0x94, 0xf0, 0x95, 0xfd, 0xff,
0x09, 0x74, 0x08, 0x4d, 0x79, 0x40, 0x57, 0xe9, 0x90, 0xa6, 0xe8, 0x92, 0x4d, 0xf2, 0x12, 0xee,
0xa9, 0x2b, 0xba, 0xd1, 0x71, 0xe4, 0xac, 0x1a, 0x84, 0x6a, 0xfc, 0x74, 0x50, 0x28, 0x27, 0xed,
0xc7, 0x17, 0xfd, 0xaa, 0x5e, 0x3e, 0xbe, 0x3c, 0x06, 0x08, 0xc2, 0xf0, 0x53, 0xc6, 0xc3, 0x88,
0xe6, 0xc7, 0x87, 0xc1, 0xf1, 0x3e, 0x81, 0x0d, 0x39, 0x2d, 0x9f, 0x19, 0x97, 0xed, 0x1b, 0x9f,
0x03, 0xcc, 0x8b, 0x7a, 0xcd, 0xbe, 0xa8, 0x7b, 0xbf, 0x80, 0x2f, 0xcd, 0x19, 0x8e, 0xa8, 0xef,
0xa9, 0x37, 0x84, 0x7c, 0x13, 0x0d, 0xfe, 0xd7, 0x16, 0x40, 0x68, 0xda, 0xe2, 0x5b, 0x42, 0xde,
0xaf, 0x1c, 0xf8, 0x70, 0x4e, 0xfd, 0x6e, 0x92, 0x70, 0x76, 0xa5, 0x93, 0xfb, 0x36, 0xb6, 0xb1,
0x5b, 0x6b, 0xad, 0xda, 0x5a, 0x17, 0x1a, 0x61, 0x1d, 0x07, 0xef, 0xc1, 0x88, 0x3f, 0x3a, 0xd0,
0xd3, 0x46, 0x84, 0xa1, 0xde, 0xf6, 0xbb, 0xd0, 0x54, 0xef, 0x8f, 0x7a, 0xc3, 0x0f, 0x17, 0x6e,
0x98, 0xbf, 0x9b, 0xfa, 0x7a, 0xf1, 0x7c, 0x46, 0xd6, 0x16, 0x8d, 0x81, 0xdf, 0x2f, 0x3a, 0xc0,
0xd2, 0x2f, 0x84, 0x5a, 0xc0, 0xfb, 0x79, 0x9e, 0xcc, 0xfb, 0x24, 0x26, 0xb7, 0x89, 0x91, 0xf7,
0x0a, 0x36, 0xf1, 0x31, 0xb4, 0xc4, 0xe0, 0x56, 0xd4, 0x7e, 0x0a, 0x5b, 0xa8, 0xf6, 0xd6, 0xed,
0x2d, 0xaa, 0x43, 0xe2, 0xb3, 0x77, 0x11, 0xd0, 0xc9, 0x6d, 0x6a, 0xff, 0x16, 0xdc, 0xcf, 0xb1,
0x7f, 0x95, 0x84, 0xc5, 0x15, 0xe5, 0x9a, 0x87, 0x97, 0xf3, 0x26, 0xfe, 0x99, 0xf7, 0x9d, 0xff,
0x07, 0x00, 0x00, 0xff, 0xff, 0x5a, 0xb7, 0x8c, 0x6a, 0xdf, 0x1b, 0x00, 0x00,
}