ws.pb.go 97.6 KB
Newer Older
1
// Code generated by protoc-gen-go. DO NOT EDIT.
programor_guo's avatar
programor_guo 已提交
2
// source: sdk_ws/ws.proto
3

W
wenxu12345 已提交
4
package server_api_params
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20

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

W
wenxu12345 已提交
21
type GroupInfo struct {
programor_guo's avatar
programor_guo 已提交
22 23 24 25 26 27 28 29 30 31 32 33
	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"`
W
wenxu12345 已提交
34 35 36
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
37 38
}

W
wenxu12345 已提交
39 40 41 42
func (m *GroupInfo) Reset()         { *m = GroupInfo{} }
func (m *GroupInfo) String() string { return proto.CompactTextString(m) }
func (*GroupInfo) ProtoMessage()    {}
func (*GroupInfo) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
43
	return fileDescriptor_ws_44bd6efa690189ed, []int{0}
44
}
W
wenxu12345 已提交
45 46
func (m *GroupInfo) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_GroupInfo.Unmarshal(m, b)
47
}
W
wenxu12345 已提交
48 49
func (m *GroupInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_GroupInfo.Marshal(b, m, deterministic)
50
}
W
wenxu12345 已提交
51 52
func (dst *GroupInfo) XXX_Merge(src proto.Message) {
	xxx_messageInfo_GroupInfo.Merge(dst, src)
53
}
W
wenxu12345 已提交
54 55
func (m *GroupInfo) XXX_Size() int {
	return xxx_messageInfo_GroupInfo.Size(m)
56
}
W
wenxu12345 已提交
57 58
func (m *GroupInfo) XXX_DiscardUnknown() {
	xxx_messageInfo_GroupInfo.DiscardUnknown(m)
59 60
}

W
wenxu12345 已提交
61
var xxx_messageInfo_GroupInfo proto.InternalMessageInfo
62

W
wenxu12345 已提交
63
func (m *GroupInfo) GetGroupID() string {
programor_guo's avatar
programor_guo 已提交
64
	if m != nil {
W
wenxu12345 已提交
65
		return m.GroupID
programor_guo's avatar
programor_guo 已提交
66
	}
W
wenxu12345 已提交
67
	return ""
programor_guo's avatar
programor_guo 已提交
68 69
}

W
wenxu12345 已提交
70
func (m *GroupInfo) GetGroupName() string {
programor_guo's avatar
programor_guo 已提交
71
	if m != nil {
W
wenxu12345 已提交
72
		return m.GroupName
programor_guo's avatar
programor_guo 已提交
73 74 75 76
	}
	return ""
}

W
wenxu12345 已提交
77
func (m *GroupInfo) GetNotification() string {
78
	if m != nil {
W
wenxu12345 已提交
79
		return m.Notification
80
	}
W
wenxu12345 已提交
81
	return ""
82 83
}

W
wenxu12345 已提交
84
func (m *GroupInfo) GetIntroduction() string {
85
	if m != nil {
W
wenxu12345 已提交
86
		return m.Introduction
87
	}
W
wenxu12345 已提交
88
	return ""
89 90
}

programor_guo's avatar
programor_guo 已提交
91
func (m *GroupInfo) GetFaceURL() string {
92
	if m != nil {
programor_guo's avatar
programor_guo 已提交
93
		return m.FaceURL
94
	}
W
wenxu12345 已提交
95
	return ""
96 97
}

W
wenxu12345 已提交
98
func (m *GroupInfo) GetOwnerUserID() string {
99
	if m != nil {
W
wenxu12345 已提交
100
		return m.OwnerUserID
101
	}
W
wenxu12345 已提交
102
	return ""
103 104
}

W
wenxu12345 已提交
105
func (m *GroupInfo) GetCreateTime() uint32 {
W
wenxu12345 已提交
106 107 108 109
	if m != nil {
		return m.CreateTime
	}
	return 0
110 111
}

W
wenxu12345 已提交
112 113 114 115 116
func (m *GroupInfo) GetMemberCount() uint32 {
	if m != nil {
		return m.MemberCount
	}
	return 0
117 118
}

W
wenxu12345 已提交
119
func (m *GroupInfo) GetEx() string {
programor_guo's avatar
programor_guo 已提交
120
	if m != nil {
W
wenxu12345 已提交
121
		return m.Ex
programor_guo's avatar
programor_guo 已提交
122 123 124 125
	}
	return ""
}

W
wenxu12345 已提交
126
func (m *GroupInfo) GetStatus() int32 {
programor_guo's avatar
programor_guo 已提交
127
	if m != nil {
W
wenxu12345 已提交
128 129 130 131 132 133 134 135
		return m.Status
	}
	return 0
}

func (m *GroupInfo) GetCreatorUserID() string {
	if m != nil {
		return m.CreatorUserID
programor_guo's avatar
programor_guo 已提交
136 137 138 139
	}
	return ""
}

W
wenxu12345 已提交
140
func (m *GroupInfo) GetGroupType() int32 {
141
	if m != nil {
W
wenxu12345 已提交
142
		return m.GroupType
143
	}
W
wenxu12345 已提交
144
	return 0
145 146
}

W
wenxu12345 已提交
147
type GroupMemberFullInfo struct {
programor_guo's avatar
programor_guo 已提交
148 149
	GroupID              string   `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"`
	UserID               string   `protobuf:"bytes,2,opt,name=userID" json:"userID,omitempty"`
W
wenxu12345 已提交
150
	RoleLevel            int32    `protobuf:"varint,3,opt,name=roleLevel" json:"roleLevel,omitempty"`
programor_guo's avatar
programor_guo 已提交
151 152 153 154 155 156 157
	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"`
programor_guo's avatar
programor_guo 已提交
158 159 160 161 162
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

W
wenxu12345 已提交
163 164 165 166
func (m *GroupMemberFullInfo) Reset()         { *m = GroupMemberFullInfo{} }
func (m *GroupMemberFullInfo) String() string { return proto.CompactTextString(m) }
func (*GroupMemberFullInfo) ProtoMessage()    {}
func (*GroupMemberFullInfo) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
167
	return fileDescriptor_ws_44bd6efa690189ed, []int{1}
programor_guo's avatar
programor_guo 已提交
168
}
W
wenxu12345 已提交
169 170
func (m *GroupMemberFullInfo) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_GroupMemberFullInfo.Unmarshal(m, b)
programor_guo's avatar
programor_guo 已提交
171
}
W
wenxu12345 已提交
172 173
func (m *GroupMemberFullInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_GroupMemberFullInfo.Marshal(b, m, deterministic)
programor_guo's avatar
programor_guo 已提交
174
}
W
wenxu12345 已提交
175 176
func (dst *GroupMemberFullInfo) XXX_Merge(src proto.Message) {
	xxx_messageInfo_GroupMemberFullInfo.Merge(dst, src)
programor_guo's avatar
programor_guo 已提交
177
}
W
wenxu12345 已提交
178 179
func (m *GroupMemberFullInfo) XXX_Size() int {
	return xxx_messageInfo_GroupMemberFullInfo.Size(m)
programor_guo's avatar
programor_guo 已提交
180
}
W
wenxu12345 已提交
181 182
func (m *GroupMemberFullInfo) XXX_DiscardUnknown() {
	xxx_messageInfo_GroupMemberFullInfo.DiscardUnknown(m)
programor_guo's avatar
programor_guo 已提交
183 184
}

W
wenxu12345 已提交
185
var xxx_messageInfo_GroupMemberFullInfo proto.InternalMessageInfo
programor_guo's avatar
programor_guo 已提交
186

W
wenxu12345 已提交
187 188 189 190 191 192 193 194
func (m *GroupMemberFullInfo) GetGroupID() string {
	if m != nil {
		return m.GroupID
	}
	return ""
}

func (m *GroupMemberFullInfo) GetUserID() string {
programor_guo's avatar
programor_guo 已提交
195 196 197 198 199 200
	if m != nil {
		return m.UserID
	}
	return ""
}

W
wenxu12345 已提交
201
func (m *GroupMemberFullInfo) GetRoleLevel() int32 {
programor_guo's avatar
programor_guo 已提交
202
	if m != nil {
W
wenxu12345 已提交
203
		return m.RoleLevel
programor_guo's avatar
programor_guo 已提交
204 205 206 207
	}
	return 0
}

W
wenxu12345 已提交
208
func (m *GroupMemberFullInfo) GetJoinTime() int64 {
programor_guo's avatar
programor_guo 已提交
209
	if m != nil {
W
wenxu12345 已提交
210
		return m.JoinTime
programor_guo's avatar
programor_guo 已提交
211 212 213 214
	}
	return 0
}

W
wenxu12345 已提交
215
func (m *GroupMemberFullInfo) GetNickname() string {
programor_guo's avatar
programor_guo 已提交
216
	if m != nil {
W
wenxu12345 已提交
217
		return m.Nickname
programor_guo's avatar
programor_guo 已提交
218 219 220 221
	}
	return ""
}

programor_guo's avatar
programor_guo 已提交
222
func (m *GroupMemberFullInfo) GetFaceURL() string {
programor_guo's avatar
programor_guo 已提交
223
	if m != nil {
programor_guo's avatar
programor_guo 已提交
224
		return m.FaceURL
programor_guo's avatar
programor_guo 已提交
225
	}
W
wenxu12345 已提交
226
	return ""
programor_guo's avatar
programor_guo 已提交
227 228
}

W
wenxu12345 已提交
229
func (m *GroupMemberFullInfo) GetAppMangerLevel() int32 {
programor_guo's avatar
programor_guo 已提交
230
	if m != nil {
W
wenxu12345 已提交
231
		return m.AppMangerLevel
programor_guo's avatar
programor_guo 已提交
232 233 234 235
	}
	return 0
}

W
wenxu12345 已提交
236
func (m *GroupMemberFullInfo) GetJoinSource() int32 {
programor_guo's avatar
programor_guo 已提交
237
	if m != nil {
W
wenxu12345 已提交
238
		return m.JoinSource
programor_guo's avatar
programor_guo 已提交
239 240 241 242
	}
	return 0
}

W
wenxu12345 已提交
243
func (m *GroupMemberFullInfo) GetOperatorUserID() string {
programor_guo's avatar
programor_guo 已提交
244
	if m != nil {
W
wenxu12345 已提交
245
		return m.OperatorUserID
programor_guo's avatar
programor_guo 已提交
246
	}
W
wenxu12345 已提交
247
	return ""
programor_guo's avatar
programor_guo 已提交
248 249
}

W
wenxu12345 已提交
250
func (m *GroupMemberFullInfo) GetEx() string {
programor_guo's avatar
programor_guo 已提交
251
	if m != nil {
W
wenxu12345 已提交
252
		return m.Ex
programor_guo's avatar
programor_guo 已提交
253
	}
W
wenxu12345 已提交
254
	return ""
programor_guo's avatar
programor_guo 已提交
255 256
}

W
wenxu12345 已提交
257
type PublicUserInfo struct {
programor_guo's avatar
programor_guo 已提交
258 259 260 261 262
	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"`
263 264 265 266 267
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

W
wenxu12345 已提交
268 269 270 271
func (m *PublicUserInfo) Reset()         { *m = PublicUserInfo{} }
func (m *PublicUserInfo) String() string { return proto.CompactTextString(m) }
func (*PublicUserInfo) ProtoMessage()    {}
func (*PublicUserInfo) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
272
	return fileDescriptor_ws_44bd6efa690189ed, []int{2}
273
}
W
wenxu12345 已提交
274 275
func (m *PublicUserInfo) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_PublicUserInfo.Unmarshal(m, b)
276
}
W
wenxu12345 已提交
277 278
func (m *PublicUserInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_PublicUserInfo.Marshal(b, m, deterministic)
279
}
W
wenxu12345 已提交
280 281
func (dst *PublicUserInfo) XXX_Merge(src proto.Message) {
	xxx_messageInfo_PublicUserInfo.Merge(dst, src)
282
}
W
wenxu12345 已提交
283 284
func (m *PublicUserInfo) XXX_Size() int {
	return xxx_messageInfo_PublicUserInfo.Size(m)
285
}
W
wenxu12345 已提交
286 287
func (m *PublicUserInfo) XXX_DiscardUnknown() {
	xxx_messageInfo_PublicUserInfo.DiscardUnknown(m)
288 289
}

W
wenxu12345 已提交
290
var xxx_messageInfo_PublicUserInfo proto.InternalMessageInfo
291

W
wenxu12345 已提交
292 293 294 295 296
func (m *PublicUserInfo) GetUserID() string {
	if m != nil {
		return m.UserID
	}
	return ""
297 298
}

W
wenxu12345 已提交
299 300 301 302 303
func (m *PublicUserInfo) GetNickname() string {
	if m != nil {
		return m.Nickname
	}
	return ""
304 305
}

programor_guo's avatar
programor_guo 已提交
306
func (m *PublicUserInfo) GetFaceURL() string {
W
wenxu12345 已提交
307
	if m != nil {
programor_guo's avatar
programor_guo 已提交
308
		return m.FaceURL
W
wenxu12345 已提交
309 310 311
	}
	return ""
}
312

W
wenxu12345 已提交
313
func (m *PublicUserInfo) GetGender() int32 {
314
	if m != nil {
W
wenxu12345 已提交
315
		return m.Gender
316 317 318 319
	}
	return 0
}

W
wenxu12345 已提交
320
func (m *PublicUserInfo) GetAppMangerLevel() int32 {
321
	if m != nil {
W
wenxu12345 已提交
322
		return m.AppMangerLevel
323 324 325 326
	}
	return 0
}

W
wenxu12345 已提交
327
type UserInfo struct {
programor_guo's avatar
programor_guo 已提交
328 329 330 331 332 333 334 335 336 337
	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"`
W
wenxu12345 已提交
338 339 340
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
341 342
}

W
wenxu12345 已提交
343 344 345 346
func (m *UserInfo) Reset()         { *m = UserInfo{} }
func (m *UserInfo) String() string { return proto.CompactTextString(m) }
func (*UserInfo) ProtoMessage()    {}
func (*UserInfo) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
347
	return fileDescriptor_ws_44bd6efa690189ed, []int{3}
348
}
W
wenxu12345 已提交
349 350
func (m *UserInfo) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_UserInfo.Unmarshal(m, b)
351
}
W
wenxu12345 已提交
352 353
func (m *UserInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_UserInfo.Marshal(b, m, deterministic)
354
}
W
wenxu12345 已提交
355 356
func (dst *UserInfo) XXX_Merge(src proto.Message) {
	xxx_messageInfo_UserInfo.Merge(dst, src)
357
}
W
wenxu12345 已提交
358 359
func (m *UserInfo) XXX_Size() int {
	return xxx_messageInfo_UserInfo.Size(m)
360
}
W
wenxu12345 已提交
361 362
func (m *UserInfo) XXX_DiscardUnknown() {
	xxx_messageInfo_UserInfo.DiscardUnknown(m)
363 364
}

W
wenxu12345 已提交
365
var xxx_messageInfo_UserInfo proto.InternalMessageInfo
366

W
wenxu12345 已提交
367
func (m *UserInfo) GetUserID() string {
368
	if m != nil {
W
wenxu12345 已提交
369
		return m.UserID
370 371 372 373
	}
	return ""
}

W
wenxu12345 已提交
374
func (m *UserInfo) GetNickname() string {
375
	if m != nil {
W
wenxu12345 已提交
376
		return m.Nickname
377
	}
W
wenxu12345 已提交
378
	return ""
379 380
}

programor_guo's avatar
programor_guo 已提交
381
func (m *UserInfo) GetFaceURL() string {
W
wenxu12345 已提交
382
	if m != nil {
programor_guo's avatar
programor_guo 已提交
383
		return m.FaceURL
W
wenxu12345 已提交
384 385
	}
	return ""
386 387
}

W
wenxu12345 已提交
388 389 390 391 392
func (m *UserInfo) GetGender() int32 {
	if m != nil {
		return m.Gender
	}
	return 0
393 394
}

W
wenxu12345 已提交
395 396 397 398 399 400
func (m *UserInfo) GetPhoneNumber() string {
	if m != nil {
		return m.PhoneNumber
	}
	return ""
}
401

W
wenxu12345 已提交
402
func (m *UserInfo) GetBirth() uint32 {
403
	if m != nil {
W
wenxu12345 已提交
404
		return m.Birth
405
	}
W
wenxu12345 已提交
406
	return 0
407 408
}

W
wenxu12345 已提交
409
func (m *UserInfo) GetEmail() string {
410
	if m != nil {
W
wenxu12345 已提交
411
		return m.Email
412 413 414 415
	}
	return ""
}

W
wenxu12345 已提交
416
func (m *UserInfo) GetEx() string {
417
	if m != nil {
W
wenxu12345 已提交
418
		return m.Ex
419
	}
W
wenxu12345 已提交
420
	return ""
421 422
}

W
wenxu12345 已提交
423
func (m *UserInfo) GetCreateTime() uint32 {
W
wenxu12345 已提交
424 425 426 427 428 429 430 431 432 433 434 435 436
	if m != nil {
		return m.CreateTime
	}
	return 0
}

func (m *UserInfo) GetAppMangerLevel() int32 {
	if m != nil {
		return m.AppMangerLevel
	}
	return 0
}

W
wenxu12345 已提交
437
type FriendInfo struct {
programor_guo's avatar
programor_guo 已提交
438 439 440 441 442 443 444
	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"`
W
wenxu12345 已提交
445 446 447
	XXX_NoUnkeyedLiteral struct{}  `json:"-"`
	XXX_unrecognized     []byte    `json:"-"`
	XXX_sizecache        int32     `json:"-"`
448 449
}

W
wenxu12345 已提交
450 451 452 453
func (m *FriendInfo) Reset()         { *m = FriendInfo{} }
func (m *FriendInfo) String() string { return proto.CompactTextString(m) }
func (*FriendInfo) ProtoMessage()    {}
func (*FriendInfo) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
454
	return fileDescriptor_ws_44bd6efa690189ed, []int{4}
455
}
W
wenxu12345 已提交
456 457
func (m *FriendInfo) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_FriendInfo.Unmarshal(m, b)
458
}
W
wenxu12345 已提交
459 460
func (m *FriendInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_FriendInfo.Marshal(b, m, deterministic)
461
}
W
wenxu12345 已提交
462 463
func (dst *FriendInfo) XXX_Merge(src proto.Message) {
	xxx_messageInfo_FriendInfo.Merge(dst, src)
464
}
W
wenxu12345 已提交
465 466
func (m *FriendInfo) XXX_Size() int {
	return xxx_messageInfo_FriendInfo.Size(m)
467
}
W
wenxu12345 已提交
468 469
func (m *FriendInfo) XXX_DiscardUnknown() {
	xxx_messageInfo_FriendInfo.DiscardUnknown(m)
470 471
}

W
wenxu12345 已提交
472
var xxx_messageInfo_FriendInfo proto.InternalMessageInfo
473

W
wenxu12345 已提交
474
func (m *FriendInfo) GetOwnerUserID() string {
475
	if m != nil {
W
wenxu12345 已提交
476
		return m.OwnerUserID
477 478 479 480
	}
	return ""
}

W
wenxu12345 已提交
481
func (m *FriendInfo) GetRemark() string {
482
	if m != nil {
W
wenxu12345 已提交
483
		return m.Remark
484 485 486 487
	}
	return ""
}

W
wenxu12345 已提交
488
func (m *FriendInfo) GetCreateTime() uint32 {
programor_guo's avatar
programor_guo 已提交
489
	if m != nil {
W
wenxu12345 已提交
490
		return m.CreateTime
programor_guo's avatar
programor_guo 已提交
491
	}
W
wenxu12345 已提交
492
	return 0
programor_guo's avatar
programor_guo 已提交
493 494
}

W
wenxu12345 已提交
495
func (m *FriendInfo) GetFriendUser() *UserInfo {
programor_guo's avatar
programor_guo 已提交
496
	if m != nil {
W
wenxu12345 已提交
497
		return m.FriendUser
programor_guo's avatar
programor_guo 已提交
498
	}
W
wenxu12345 已提交
499
	return nil
programor_guo's avatar
programor_guo 已提交
500 501
}

W
wenxu12345 已提交
502
func (m *FriendInfo) GetAddSource() int32 {
programor_guo's avatar
programor_guo 已提交
503
	if m != nil {
W
wenxu12345 已提交
504
		return m.AddSource
programor_guo's avatar
programor_guo 已提交
505
	}
W
wenxu12345 已提交
506
	return 0
programor_guo's avatar
programor_guo 已提交
507 508
}

W
wenxu12345 已提交
509
func (m *FriendInfo) GetOperatorUserID() string {
programor_guo's avatar
programor_guo 已提交
510
	if m != nil {
W
wenxu12345 已提交
511
		return m.OperatorUserID
programor_guo's avatar
programor_guo 已提交
512
	}
W
wenxu12345 已提交
513
	return ""
programor_guo's avatar
programor_guo 已提交
514 515
}

W
wenxu12345 已提交
516
func (m *FriendInfo) GetEx() string {
programor_guo's avatar
programor_guo 已提交
517
	if m != nil {
W
wenxu12345 已提交
518
		return m.Ex
programor_guo's avatar
programor_guo 已提交
519 520 521 522
	}
	return ""
}

W
wenxu12345 已提交
523
type BlackInfo struct {
programor_guo's avatar
programor_guo 已提交
524 525 526 527 528 529
	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"`
W
wenxu12345 已提交
530 531 532 533 534 535 536 537 538
	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) {
W
wenxu12345 已提交
539
	return fileDescriptor_ws_44bd6efa690189ed, []int{5}
W
wenxu12345 已提交
540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559
}
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 {
programor_guo's avatar
programor_guo 已提交
560
	if m != nil {
W
wenxu12345 已提交
561
		return m.OwnerUserID
programor_guo's avatar
programor_guo 已提交
562 563 564 565
	}
	return ""
}

W
wenxu12345 已提交
566
func (m *BlackInfo) GetCreateTime() uint32 {
567
	if m != nil {
W
wenxu12345 已提交
568
		return m.CreateTime
569 570 571 572
	}
	return 0
}

W
wenxu12345 已提交
573
func (m *BlackInfo) GetBlackUserInfo() *PublicUserInfo {
574
	if m != nil {
W
wenxu12345 已提交
575
		return m.BlackUserInfo
576
	}
W
wenxu12345 已提交
577
	return nil
578 579
}

W
wenxu12345 已提交
580
func (m *BlackInfo) GetAddSource() int32 {
581
	if m != nil {
W
wenxu12345 已提交
582
		return m.AddSource
583 584 585 586
	}
	return 0
}

W
wenxu12345 已提交
587
func (m *BlackInfo) GetOperatorUserID() string {
588
	if m != nil {
W
wenxu12345 已提交
589
		return m.OperatorUserID
590
	}
W
wenxu12345 已提交
591
	return ""
592 593
}

W
wenxu12345 已提交
594
func (m *BlackInfo) GetEx() string {
595
	if m != nil {
W
wenxu12345 已提交
596
		return m.Ex
597
	}
W
wenxu12345 已提交
598
	return ""
599 600
}

W
wenxu12345 已提交
601
type GroupRequest struct {
W
wenxu12345 已提交
602 603
	UserInfo             *PublicUserInfo `protobuf:"bytes,1,opt,name=userInfo" json:"userInfo,omitempty"`
	GroupInfo            *GroupInfo      `protobuf:"bytes,2,opt,name=groupInfo" json:"groupInfo,omitempty"`
W
wenxu12345 已提交
604
	HandleResult         int32           `protobuf:"varint,3,opt,name=handleResult" json:"handleResult,omitempty"`
W
wenxu12345 已提交
605 606 607 608 609 610 611 612 613
	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:"-"`
W
wenxu12345 已提交
614 615 616 617 618 619
}

func (m *GroupRequest) Reset()         { *m = GroupRequest{} }
func (m *GroupRequest) String() string { return proto.CompactTextString(m) }
func (*GroupRequest) ProtoMessage()    {}
func (*GroupRequest) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
620
	return fileDescriptor_ws_44bd6efa690189ed, []int{6}
W
wenxu12345 已提交
621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639
}
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

W
wenxu12345 已提交
640
func (m *GroupRequest) GetUserInfo() *PublicUserInfo {
641
	if m != nil {
W
wenxu12345 已提交
642
		return m.UserInfo
643
	}
W
wenxu12345 已提交
644
	return nil
645 646
}

W
wenxu12345 已提交
647
func (m *GroupRequest) GetGroupInfo() *GroupInfo {
648
	if m != nil {
W
wenxu12345 已提交
649
		return m.GroupInfo
650
	}
W
wenxu12345 已提交
651
	return nil
652 653
}

W
wenxu12345 已提交
654
func (m *GroupRequest) GetHandleResult() int32 {
655
	if m != nil {
W
wenxu12345 已提交
656 657
		return m.HandleResult
	}
W
wenxu12345 已提交
658
	return 0
W
wenxu12345 已提交
659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674
}

func (m *GroupRequest) GetReqMsg() string {
	if m != nil {
		return m.ReqMsg
	}
	return ""
}

func (m *GroupRequest) GetHandleMsg() string {
	if m != nil {
		return m.HandleMsg
	}
	return ""
}

W
wenxu12345 已提交
675
func (m *GroupRequest) GetReqTime() uint32 {
W
wenxu12345 已提交
676 677
	if m != nil {
		return m.ReqTime
678
	}
programor_guo's avatar
programor_guo 已提交
679
	return 0
680 681
}

W
wenxu12345 已提交
682
func (m *GroupRequest) GetHandleUserID() string {
683
	if m != nil {
W
wenxu12345 已提交
684
		return m.HandleUserID
685
	}
W
wenxu12345 已提交
686
	return ""
687 688
}

W
wenxu12345 已提交
689
func (m *GroupRequest) GetHandleTime() uint32 {
690
	if m != nil {
W
wenxu12345 已提交
691
		return m.HandleTime
692
	}
W
wenxu12345 已提交
693
	return 0
694 695
}

W
wenxu12345 已提交
696 697 698 699 700 701 702 703
func (m *GroupRequest) GetEx() string {
	if m != nil {
		return m.Ex
	}
	return ""
}

type FriendRequest struct {
programor_guo's avatar
programor_guo 已提交
704
	FromUserID           string   `protobuf:"bytes,1,opt,name=fromUserID" json:"fromUserID,omitempty"`
W
wenxu12345 已提交
705 706
	FromNickname         string   `protobuf:"bytes,2,opt,name=fromNickname" json:"fromNickname,omitempty"`
	FromFaceURL          string   `protobuf:"bytes,3,opt,name=fromFaceURL" json:"fromFaceURL,omitempty"`
W
wenxu12345 已提交
707
	FromGender           int32    `protobuf:"varint,4,opt,name=fromGender" json:"fromGender,omitempty"`
W
wenxu12345 已提交
708 709 710
	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"`
W
wenxu12345 已提交
711
	ToGender             int32    `protobuf:"varint,8,opt,name=toGender" json:"toGender,omitempty"`
W
wenxu12345 已提交
712 713 714 715 716 717 718
	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"`
W
wenxu12345 已提交
719 720 721 722 723
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

W
wenxu12345 已提交
724 725 726 727
func (m *FriendRequest) Reset()         { *m = FriendRequest{} }
func (m *FriendRequest) String() string { return proto.CompactTextString(m) }
func (*FriendRequest) ProtoMessage()    {}
func (*FriendRequest) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
728
	return fileDescriptor_ws_44bd6efa690189ed, []int{7}
W
wenxu12345 已提交
729
}
W
wenxu12345 已提交
730 731
func (m *FriendRequest) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_FriendRequest.Unmarshal(m, b)
W
wenxu12345 已提交
732
}
W
wenxu12345 已提交
733 734
func (m *FriendRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_FriendRequest.Marshal(b, m, deterministic)
W
wenxu12345 已提交
735
}
W
wenxu12345 已提交
736 737
func (dst *FriendRequest) XXX_Merge(src proto.Message) {
	xxx_messageInfo_FriendRequest.Merge(dst, src)
W
wenxu12345 已提交
738
}
W
wenxu12345 已提交
739 740
func (m *FriendRequest) XXX_Size() int {
	return xxx_messageInfo_FriendRequest.Size(m)
W
wenxu12345 已提交
741
}
W
wenxu12345 已提交
742 743
func (m *FriendRequest) XXX_DiscardUnknown() {
	xxx_messageInfo_FriendRequest.DiscardUnknown(m)
W
wenxu12345 已提交
744 745
}

W
wenxu12345 已提交
746
var xxx_messageInfo_FriendRequest proto.InternalMessageInfo
W
wenxu12345 已提交
747

W
wenxu12345 已提交
748
func (m *FriendRequest) GetFromUserID() string {
W
wenxu12345 已提交
749
	if m != nil {
W
wenxu12345 已提交
750
		return m.FromUserID
W
wenxu12345 已提交
751 752 753 754
	}
	return ""
}

W
wenxu12345 已提交
755 756 757 758 759 760 761 762 763 764 765 766 767 768
func (m *FriendRequest) GetFromNickname() string {
	if m != nil {
		return m.FromNickname
	}
	return ""
}

func (m *FriendRequest) GetFromFaceURL() string {
	if m != nil {
		return m.FromFaceURL
	}
	return ""
}

W
wenxu12345 已提交
769
func (m *FriendRequest) GetFromGender() int32 {
W
wenxu12345 已提交
770 771 772
	if m != nil {
		return m.FromGender
	}
W
wenxu12345 已提交
773
	return 0
W
wenxu12345 已提交
774 775
}

W
wenxu12345 已提交
776
func (m *FriendRequest) GetToUserID() string {
W
wenxu12345 已提交
777
	if m != nil {
W
wenxu12345 已提交
778
		return m.ToUserID
W
wenxu12345 已提交
779 780 781 782
	}
	return ""
}

W
wenxu12345 已提交
783 784 785 786 787 788 789 790 791 792 793 794 795 796
func (m *FriendRequest) GetToNickname() string {
	if m != nil {
		return m.ToNickname
	}
	return ""
}

func (m *FriendRequest) GetToFaceURL() string {
	if m != nil {
		return m.ToFaceURL
	}
	return ""
}

W
wenxu12345 已提交
797
func (m *FriendRequest) GetToGender() int32 {
W
wenxu12345 已提交
798 799 800
	if m != nil {
		return m.ToGender
	}
W
wenxu12345 已提交
801
	return 0
W
wenxu12345 已提交
802 803
}

W
wenxu12345 已提交
804
func (m *FriendRequest) GetHandleResult() int32 {
W
wenxu12345 已提交
805
	if m != nil {
W
wenxu12345 已提交
806
		return m.HandleResult
W
wenxu12345 已提交
807
	}
W
wenxu12345 已提交
808
	return 0
W
wenxu12345 已提交
809 810
}

W
wenxu12345 已提交
811
func (m *FriendRequest) GetReqMsg() string {
W
wenxu12345 已提交
812
	if m != nil {
W
wenxu12345 已提交
813
		return m.ReqMsg
W
wenxu12345 已提交
814 815 816 817
	}
	return ""
}

W
wenxu12345 已提交
818
func (m *FriendRequest) GetCreateTime() uint32 {
W
wenxu12345 已提交
819
	if m != nil {
W
wenxu12345 已提交
820
		return m.CreateTime
W
wenxu12345 已提交
821
	}
W
wenxu12345 已提交
822
	return 0
W
pb  
wenxu12345 已提交
823 824
}

W
wenxu12345 已提交
825 826 827 828 829
func (m *FriendRequest) GetHandlerUserID() string {
	if m != nil {
		return m.HandlerUserID
	}
	return ""
W
pb  
wenxu12345 已提交
830 831
}

W
wenxu12345 已提交
832
func (m *FriendRequest) GetHandleMsg() string {
W
pb  
wenxu12345 已提交
833
	if m != nil {
W
wenxu12345 已提交
834
		return m.HandleMsg
W
pb  
wenxu12345 已提交
835 836 837 838
	}
	return ""
}

W
wenxu12345 已提交
839
func (m *FriendRequest) GetHandleTime() uint32 {
W
pb  
wenxu12345 已提交
840
	if m != nil {
W
wenxu12345 已提交
841
		return m.HandleTime
W
pb  
wenxu12345 已提交
842
	}
W
wenxu12345 已提交
843
	return 0
W
pb  
wenxu12345 已提交
844 845
}

W
wenxu12345 已提交
846
func (m *FriendRequest) GetEx() string {
W
pb  
wenxu12345 已提交
847
	if m != nil {
W
wenxu12345 已提交
848
		return m.Ex
W
pb  
wenxu12345 已提交
849 850 851 852
	}
	return ""
}

W
wenxu12345 已提交
853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868
type PullMessageBySeqListResp struct {
	ErrCode              int32           `protobuf:"varint,1,opt,name=errCode" json:"errCode,omitempty"`
	ErrMsg               string          `protobuf:"bytes,2,opt,name=errMsg" json:"errMsg,omitempty"`
	MaxSeq               int64           `protobuf:"varint,3,opt,name=maxSeq" json:"maxSeq,omitempty"`
	MinSeq               int64           `protobuf:"varint,4,opt,name=minSeq" json:"minSeq,omitempty"`
	SingleUserMsg        []*GatherFormat `protobuf:"bytes,5,rep,name=singleUserMsg" json:"singleUserMsg,omitempty"`
	GroupUserMsg         []*GatherFormat `protobuf:"bytes,6,rep,name=groupUserMsg" json:"groupUserMsg,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (m *PullMessageBySeqListResp) Reset()         { *m = PullMessageBySeqListResp{} }
func (m *PullMessageBySeqListResp) String() string { return proto.CompactTextString(m) }
func (*PullMessageBySeqListResp) ProtoMessage()    {}
func (*PullMessageBySeqListResp) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
869
	return fileDescriptor_ws_44bd6efa690189ed, []int{8}
W
wenxu12345 已提交
870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889
}
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 {
W
pb  
wenxu12345 已提交
890
	if m != nil {
W
wenxu12345 已提交
891
		return m.ErrCode
W
pb  
wenxu12345 已提交
892
	}
W
wenxu12345 已提交
893
	return 0
W
pb  
wenxu12345 已提交
894 895
}

W
wenxu12345 已提交
896
func (m *PullMessageBySeqListResp) GetErrMsg() string {
W
pb  
wenxu12345 已提交
897
	if m != nil {
W
wenxu12345 已提交
898
		return m.ErrMsg
W
pb  
wenxu12345 已提交
899 900 901 902
	}
	return ""
}

W
wenxu12345 已提交
903
func (m *PullMessageBySeqListResp) GetMaxSeq() int64 {
W
wenxu12345 已提交
904
	if m != nil {
W
wenxu12345 已提交
905
		return m.MaxSeq
W
wenxu12345 已提交
906
	}
W
wenxu12345 已提交
907
	return 0
W
wenxu12345 已提交
908 909
}

W
wenxu12345 已提交
910
func (m *PullMessageBySeqListResp) GetMinSeq() int64 {
W
wenxu12345 已提交
911
	if m != nil {
W
wenxu12345 已提交
912
		return m.MinSeq
W
wenxu12345 已提交
913 914 915 916
	}
	return 0
}

W
wenxu12345 已提交
917
func (m *PullMessageBySeqListResp) GetSingleUserMsg() []*GatherFormat {
W
wenxu12345 已提交
918
	if m != nil {
W
wenxu12345 已提交
919
		return m.SingleUserMsg
W
wenxu12345 已提交
920
	}
W
wenxu12345 已提交
921
	return nil
W
wenxu12345 已提交
922 923
}

W
wenxu12345 已提交
924
func (m *PullMessageBySeqListResp) GetGroupUserMsg() []*GatherFormat {
programor_guo's avatar
programor_guo 已提交
925
	if m != nil {
W
wenxu12345 已提交
926
		return m.GroupUserMsg
programor_guo's avatar
programor_guo 已提交
927
	}
W
wenxu12345 已提交
928
	return nil
programor_guo's avatar
programor_guo 已提交
929 930
}

W
wenxu12345 已提交
931 932 933 934
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"`
	SeqList              []int64  `protobuf:"varint,3,rep,packed,name=seqList" json:"seqList,omitempty"`
W
wenxu12345 已提交
935 936 937 938 939
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

W
wenxu12345 已提交
940 941 942 943
func (m *PullMessageBySeqListReq) Reset()         { *m = PullMessageBySeqListReq{} }
func (m *PullMessageBySeqListReq) String() string { return proto.CompactTextString(m) }
func (*PullMessageBySeqListReq) ProtoMessage()    {}
func (*PullMessageBySeqListReq) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
944
	return fileDescriptor_ws_44bd6efa690189ed, []int{9}
W
wenxu12345 已提交
945
}
W
wenxu12345 已提交
946 947
func (m *PullMessageBySeqListReq) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_PullMessageBySeqListReq.Unmarshal(m, b)
W
wenxu12345 已提交
948
}
W
wenxu12345 已提交
949 950
func (m *PullMessageBySeqListReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_PullMessageBySeqListReq.Marshal(b, m, deterministic)
W
wenxu12345 已提交
951
}
W
wenxu12345 已提交
952 953
func (dst *PullMessageBySeqListReq) XXX_Merge(src proto.Message) {
	xxx_messageInfo_PullMessageBySeqListReq.Merge(dst, src)
W
wenxu12345 已提交
954
}
W
wenxu12345 已提交
955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998
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 ""
}

func (m *PullMessageBySeqListReq) GetSeqList() []int64 {
	if m != nil {
		return m.SeqList
	}
	return nil
}

type PullMessageReq struct {
	UserID               string   `protobuf:"bytes,1,opt,name=userID" json:"userID,omitempty"`
	SeqBegin             int64    `protobuf:"varint,2,opt,name=seqBegin" json:"seqBegin,omitempty"`
	SeqEnd               int64    `protobuf:"varint,3,opt,name=seqEnd" json:"seqEnd,omitempty"`
	OperationID          string   `protobuf:"bytes,4,opt,name=operationID" json:"operationID,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (m *PullMessageReq) Reset()         { *m = PullMessageReq{} }
func (m *PullMessageReq) String() string { return proto.CompactTextString(m) }
func (*PullMessageReq) ProtoMessage()    {}
func (*PullMessageReq) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
999
	return fileDescriptor_ws_44bd6efa690189ed, []int{10}
W
wenxu12345 已提交
1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062
}
func (m *PullMessageReq) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_PullMessageReq.Unmarshal(m, b)
}
func (m *PullMessageReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_PullMessageReq.Marshal(b, m, deterministic)
}
func (dst *PullMessageReq) XXX_Merge(src proto.Message) {
	xxx_messageInfo_PullMessageReq.Merge(dst, src)
}
func (m *PullMessageReq) XXX_Size() int {
	return xxx_messageInfo_PullMessageReq.Size(m)
}
func (m *PullMessageReq) XXX_DiscardUnknown() {
	xxx_messageInfo_PullMessageReq.DiscardUnknown(m)
}

var xxx_messageInfo_PullMessageReq proto.InternalMessageInfo

func (m *PullMessageReq) GetUserID() string {
	if m != nil {
		return m.UserID
	}
	return ""
}

func (m *PullMessageReq) GetSeqBegin() int64 {
	if m != nil {
		return m.SeqBegin
	}
	return 0
}

func (m *PullMessageReq) GetSeqEnd() int64 {
	if m != nil {
		return m.SeqEnd
	}
	return 0
}

func (m *PullMessageReq) GetOperationID() string {
	if m != nil {
		return m.OperationID
	}
	return ""
}

type PullMessageResp struct {
	ErrCode              int32           `protobuf:"varint,1,opt,name=errCode" json:"errCode,omitempty"`
	ErrMsg               string          `protobuf:"bytes,2,opt,name=errMsg" json:"errMsg,omitempty"`
	MaxSeq               int64           `protobuf:"varint,3,opt,name=maxSeq" json:"maxSeq,omitempty"`
	MinSeq               int64           `protobuf:"varint,4,opt,name=minSeq" json:"minSeq,omitempty"`
	SingleUserMsg        []*GatherFormat `protobuf:"bytes,5,rep,name=singleUserMsg" json:"singleUserMsg,omitempty"`
	GroupUserMsg         []*GatherFormat `protobuf:"bytes,6,rep,name=groupUserMsg" json:"groupUserMsg,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (m *PullMessageResp) Reset()         { *m = PullMessageResp{} }
func (m *PullMessageResp) String() string { return proto.CompactTextString(m) }
func (*PullMessageResp) ProtoMessage()    {}
func (*PullMessageResp) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
1063
	return fileDescriptor_ws_44bd6efa690189ed, []int{11}
W
wenxu12345 已提交
1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134
}
func (m *PullMessageResp) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_PullMessageResp.Unmarshal(m, b)
}
func (m *PullMessageResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_PullMessageResp.Marshal(b, m, deterministic)
}
func (dst *PullMessageResp) XXX_Merge(src proto.Message) {
	xxx_messageInfo_PullMessageResp.Merge(dst, src)
}
func (m *PullMessageResp) XXX_Size() int {
	return xxx_messageInfo_PullMessageResp.Size(m)
}
func (m *PullMessageResp) XXX_DiscardUnknown() {
	xxx_messageInfo_PullMessageResp.DiscardUnknown(m)
}

var xxx_messageInfo_PullMessageResp proto.InternalMessageInfo

func (m *PullMessageResp) GetErrCode() int32 {
	if m != nil {
		return m.ErrCode
	}
	return 0
}

func (m *PullMessageResp) GetErrMsg() string {
	if m != nil {
		return m.ErrMsg
	}
	return ""
}

func (m *PullMessageResp) GetMaxSeq() int64 {
	if m != nil {
		return m.MaxSeq
	}
	return 0
}

func (m *PullMessageResp) GetMinSeq() int64 {
	if m != nil {
		return m.MinSeq
	}
	return 0
}

func (m *PullMessageResp) GetSingleUserMsg() []*GatherFormat {
	if m != nil {
		return m.SingleUserMsg
	}
	return nil
}

func (m *PullMessageResp) GetGroupUserMsg() []*GatherFormat {
	if m != nil {
		return m.GroupUserMsg
	}
	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) {
W
wenxu12345 已提交
1135
	return fileDescriptor_ws_44bd6efa690189ed, []int{12}
W
wenxu12345 已提交
1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166
}
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 {
	MaxSeq               int64    `protobuf:"varint,1,opt,name=maxSeq" json:"maxSeq,omitempty"`
	MinSeq               int64    `protobuf:"varint,2,opt,name=minSeq" json:"minSeq,omitempty"`
	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) {
W
wenxu12345 已提交
1167
	return fileDescriptor_ws_44bd6efa690189ed, []int{13}
W
wenxu12345 已提交
1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214
}
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

func (m *GetMaxAndMinSeqResp) GetMaxSeq() int64 {
	if m != nil {
		return m.MaxSeq
	}
	return 0
}

func (m *GetMaxAndMinSeqResp) GetMinSeq() int64 {
	if m != nil {
		return m.MinSeq
	}
	return 0
}

type GatherFormat struct {
	// @inject_tag: json:"id"
	Id string `protobuf:"bytes,1,opt,name=id" json:"id"`
	// @inject_tag: json:"list"
	List                 []*MsgData `protobuf:"bytes,2,rep,name=list" json:"list"`
	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
	XXX_unrecognized     []byte     `json:"-"`
	XXX_sizecache        int32      `json:"-"`
}

func (m *GatherFormat) Reset()         { *m = GatherFormat{} }
func (m *GatherFormat) String() string { return proto.CompactTextString(m) }
func (*GatherFormat) ProtoMessage()    {}
func (*GatherFormat) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
1215
	return fileDescriptor_ws_44bd6efa690189ed, []int{14}
W
wenxu12345 已提交
1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249
}
func (m *GatherFormat) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_GatherFormat.Unmarshal(m, b)
}
func (m *GatherFormat) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_GatherFormat.Marshal(b, m, deterministic)
}
func (dst *GatherFormat) XXX_Merge(src proto.Message) {
	xxx_messageInfo_GatherFormat.Merge(dst, src)
}
func (m *GatherFormat) XXX_Size() int {
	return xxx_messageInfo_GatherFormat.Size(m)
}
func (m *GatherFormat) XXX_DiscardUnknown() {
	xxx_messageInfo_GatherFormat.DiscardUnknown(m)
}

var xxx_messageInfo_GatherFormat proto.InternalMessageInfo

func (m *GatherFormat) GetId() string {
	if m != nil {
		return m.Id
	}
	return ""
}

func (m *GatherFormat) GetList() []*MsgData {
	if m != nil {
		return m.List
	}
	return nil
}

type UserSendMsgResp struct {
programor_guo's avatar
programor_guo 已提交
1250 1251
	ServerMsgID          string   `protobuf:"bytes,1,opt,name=serverMsgID" json:"serverMsgID,omitempty"`
	ClientMsgID          string   `protobuf:"bytes,2,opt,name=clientMsgID" json:"clientMsgID,omitempty"`
W
wenxu12345 已提交
1252 1253 1254 1255 1256 1257 1258 1259 1260 1261
	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) {
W
wenxu12345 已提交
1262
	return fileDescriptor_ws_44bd6efa690189ed, []int{15}
W
wenxu12345 已提交
1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318
}
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"`
	Seq                  int64            `protobuf:"varint,14,opt,name=seq" json:"seq,omitempty"`
	SendTime             int64            `protobuf:"varint,15,opt,name=sendTime" json:"sendTime,omitempty"`
	CreateTime           int64            `protobuf:"varint,16,opt,name=createTime" json:"createTime,omitempty"`
W
wenxu12345 已提交
1319 1320 1321
	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"`
W
wenxu12345 已提交
1322 1323 1324 1325 1326 1327 1328 1329 1330
	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) {
W
wenxu12345 已提交
1331
	return fileDescriptor_ws_44bd6efa690189ed, []int{16}
W
wenxu12345 已提交
1332 1333 1334 1335 1336 1337 1338 1339 1340
}
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)
W
wenxu12345 已提交
1341
}
W
wenxu12345 已提交
1342 1343 1344 1345 1346
func (m *MsgData) XXX_Size() int {
	return xxx_messageInfo_MsgData.Size(m)
}
func (m *MsgData) XXX_DiscardUnknown() {
	xxx_messageInfo_MsgData.DiscardUnknown(m)
W
wenxu12345 已提交
1347 1348
}

W
wenxu12345 已提交
1349
var xxx_messageInfo_MsgData proto.InternalMessageInfo
W
wenxu12345 已提交
1350

W
wenxu12345 已提交
1351
func (m *MsgData) GetSendID() string {
W
pb  
wenxu12345 已提交
1352
	if m != nil {
W
wenxu12345 已提交
1353
		return m.SendID
W
pb  
wenxu12345 已提交
1354 1355 1356 1357
	}
	return ""
}

W
wenxu12345 已提交
1358
func (m *MsgData) GetRecvID() string {
W
pb  
wenxu12345 已提交
1359
	if m != nil {
W
wenxu12345 已提交
1360
		return m.RecvID
W
pb  
wenxu12345 已提交
1361 1362 1363 1364
	}
	return ""
}

W
wenxu12345 已提交
1365
func (m *MsgData) GetGroupID() string {
W
pb  
wenxu12345 已提交
1366
	if m != nil {
W
wenxu12345 已提交
1367
		return m.GroupID
W
pb  
wenxu12345 已提交
1368
	}
W
wenxu12345 已提交
1369
	return ""
W
pb  
wenxu12345 已提交
1370 1371
}

W
wenxu12345 已提交
1372
func (m *MsgData) GetClientMsgID() string {
W
pb  
wenxu12345 已提交
1373
	if m != nil {
W
wenxu12345 已提交
1374
		return m.ClientMsgID
W
pb  
wenxu12345 已提交
1375
	}
W
wenxu12345 已提交
1376
	return ""
W
pb  
wenxu12345 已提交
1377 1378
}

W
wenxu12345 已提交
1379
func (m *MsgData) GetServerMsgID() string {
W
wenxu12345 已提交
1380
	if m != nil {
W
wenxu12345 已提交
1381
		return m.ServerMsgID
W
wenxu12345 已提交
1382 1383 1384 1385
	}
	return ""
}

W
wenxu12345 已提交
1386
func (m *MsgData) GetSenderPlatformID() int32 {
W
wenxu12345 已提交
1387
	if m != nil {
W
wenxu12345 已提交
1388
		return m.SenderPlatformID
W
wenxu12345 已提交
1389
	}
W
wenxu12345 已提交
1390
	return 0
W
wenxu12345 已提交
1391 1392
}

W
wenxu12345 已提交
1393
func (m *MsgData) GetSenderNickname() string {
W
wenxu12345 已提交
1394
	if m != nil {
W
wenxu12345 已提交
1395
		return m.SenderNickname
W
wenxu12345 已提交
1396 1397 1398 1399
	}
	return ""
}

W
wenxu12345 已提交
1400
func (m *MsgData) GetSenderFaceURL() string {
W
wenxu12345 已提交
1401
	if m != nil {
W
wenxu12345 已提交
1402
		return m.SenderFaceURL
W
wenxu12345 已提交
1403
	}
W
wenxu12345 已提交
1404
	return ""
W
wenxu12345 已提交
1405 1406
}

W
wenxu12345 已提交
1407 1408 1409 1410 1411
func (m *MsgData) GetSessionType() int32 {
	if m != nil {
		return m.SessionType
	}
	return 0
W
pb  
wenxu12345 已提交
1412 1413
}

W
wenxu12345 已提交
1414 1415 1416 1417 1418
func (m *MsgData) GetMsgFrom() int32 {
	if m != nil {
		return m.MsgFrom
	}
	return 0
W
pb  
wenxu12345 已提交
1419 1420
}

W
wenxu12345 已提交
1421
func (m *MsgData) GetContentType() int32 {
W
pb  
wenxu12345 已提交
1422
	if m != nil {
W
wenxu12345 已提交
1423
		return m.ContentType
W
pb  
wenxu12345 已提交
1424
	}
W
wenxu12345 已提交
1425
	return 0
W
pb  
wenxu12345 已提交
1426 1427
}

W
wenxu12345 已提交
1428
func (m *MsgData) GetContent() []byte {
W
pb  
wenxu12345 已提交
1429
	if m != nil {
W
wenxu12345 已提交
1430
		return m.Content
W
pb  
wenxu12345 已提交
1431
	}
W
wenxu12345 已提交
1432
	return nil
W
pb  
wenxu12345 已提交
1433 1434
}

W
wenxu12345 已提交
1435
func (m *MsgData) GetSeq() int64 {
W
pb  
wenxu12345 已提交
1436
	if m != nil {
W
wenxu12345 已提交
1437
		return m.Seq
W
pb  
wenxu12345 已提交
1438 1439 1440 1441
	}
	return 0
}

W
wenxu12345 已提交
1442
func (m *MsgData) GetSendTime() int64 {
W
pb  
wenxu12345 已提交
1443
	if m != nil {
W
wenxu12345 已提交
1444
		return m.SendTime
W
pb  
wenxu12345 已提交
1445
	}
W
wenxu12345 已提交
1446
	return 0
W
pb  
wenxu12345 已提交
1447 1448
}

W
wenxu12345 已提交
1449
func (m *MsgData) GetCreateTime() int64 {
W
pb  
wenxu12345 已提交
1450
	if m != nil {
W
wenxu12345 已提交
1451
		return m.CreateTime
W
pb  
wenxu12345 已提交
1452
	}
W
wenxu12345 已提交
1453
	return 0
W
pb  
wenxu12345 已提交
1454 1455
}

W
wenxu12345 已提交
1456 1457 1458 1459 1460 1461 1462
func (m *MsgData) GetStatus() int32 {
	if m != nil {
		return m.Status
	}
	return 0
}

W
wenxu12345 已提交
1463
func (m *MsgData) GetOptions() map[string]bool {
W
pb  
wenxu12345 已提交
1464
	if m != nil {
W
wenxu12345 已提交
1465
		return m.Options
W
pb  
wenxu12345 已提交
1466
	}
W
wenxu12345 已提交
1467
	return nil
W
pb  
wenxu12345 已提交
1468 1469
}

W
wenxu12345 已提交
1470
func (m *MsgData) GetOfflinePushInfo() *OfflinePushInfo {
programor_guo's avatar
programor_guo 已提交
1471
	if m != nil {
W
wenxu12345 已提交
1472
		return m.OfflinePushInfo
programor_guo's avatar
programor_guo 已提交
1473
	}
W
wenxu12345 已提交
1474
	return nil
programor_guo's avatar
programor_guo 已提交
1475 1476
}

W
wenxu12345 已提交
1477
type OfflinePushInfo struct {
programor_guo's avatar
programor_guo 已提交
1478 1479 1480
	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"`
W
wenxu12345 已提交
1481 1482
	IOSPushSound         string   `protobuf:"bytes,4,opt,name=iOSPushSound" json:"iOSPushSound,omitempty"`
	IOSBadgeCount        bool     `protobuf:"varint,5,opt,name=iOSBadgeCount" json:"iOSBadgeCount,omitempty"`
W
wenxu12345 已提交
1483 1484 1485 1486 1487
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

W
wenxu12345 已提交
1488 1489 1490 1491
func (m *OfflinePushInfo) Reset()         { *m = OfflinePushInfo{} }
func (m *OfflinePushInfo) String() string { return proto.CompactTextString(m) }
func (*OfflinePushInfo) ProtoMessage()    {}
func (*OfflinePushInfo) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
1492
	return fileDescriptor_ws_44bd6efa690189ed, []int{17}
W
wenxu12345 已提交
1493
}
W
wenxu12345 已提交
1494 1495
func (m *OfflinePushInfo) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_OfflinePushInfo.Unmarshal(m, b)
W
wenxu12345 已提交
1496
}
W
wenxu12345 已提交
1497 1498
func (m *OfflinePushInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_OfflinePushInfo.Marshal(b, m, deterministic)
W
wenxu12345 已提交
1499
}
W
wenxu12345 已提交
1500 1501
func (dst *OfflinePushInfo) XXX_Merge(src proto.Message) {
	xxx_messageInfo_OfflinePushInfo.Merge(dst, src)
W
wenxu12345 已提交
1502
}
W
wenxu12345 已提交
1503 1504
func (m *OfflinePushInfo) XXX_Size() int {
	return xxx_messageInfo_OfflinePushInfo.Size(m)
W
wenxu12345 已提交
1505
}
W
wenxu12345 已提交
1506 1507
func (m *OfflinePushInfo) XXX_DiscardUnknown() {
	xxx_messageInfo_OfflinePushInfo.DiscardUnknown(m)
W
wenxu12345 已提交
1508 1509
}

W
wenxu12345 已提交
1510
var xxx_messageInfo_OfflinePushInfo proto.InternalMessageInfo
W
wenxu12345 已提交
1511

W
wenxu12345 已提交
1512
func (m *OfflinePushInfo) GetTitle() string {
W
wenxu12345 已提交
1513
	if m != nil {
W
wenxu12345 已提交
1514
		return m.Title
W
wenxu12345 已提交
1515 1516 1517 1518
	}
	return ""
}

W
wenxu12345 已提交
1519
func (m *OfflinePushInfo) GetDesc() string {
W
wenxu12345 已提交
1520
	if m != nil {
W
wenxu12345 已提交
1521
		return m.Desc
W
wenxu12345 已提交
1522 1523 1524 1525
	}
	return ""
}

W
wenxu12345 已提交
1526
func (m *OfflinePushInfo) GetEx() string {
W
wenxu12345 已提交
1527
	if m != nil {
W
wenxu12345 已提交
1528
		return m.Ex
W
wenxu12345 已提交
1529 1530 1531 1532
	}
	return ""
}

W
wenxu12345 已提交
1533
func (m *OfflinePushInfo) GetIOSPushSound() string {
W
wenxu12345 已提交
1534
	if m != nil {
W
wenxu12345 已提交
1535
		return m.IOSPushSound
W
wenxu12345 已提交
1536
	}
W
wenxu12345 已提交
1537 1538 1539 1540 1541 1542 1543 1544
	return ""
}

func (m *OfflinePushInfo) GetIOSBadgeCount() bool {
	if m != nil {
		return m.IOSBadgeCount
	}
	return false
W
wenxu12345 已提交
1545 1546 1547
}

type TipsComm struct {
programor_guo's avatar
programor_guo 已提交
1548 1549
	Detail               []byte   `protobuf:"bytes,1,opt,name=detail,proto3" json:"detail,omitempty"`
	DefaultTips          string   `protobuf:"bytes,2,opt,name=defaultTips" json:"defaultTips,omitempty"`
W
wenxu12345 已提交
1550 1551 1552 1553 1554 1555 1556 1557 1558
	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) {
W
wenxu12345 已提交
1559
	return fileDescriptor_ws_44bd6efa690189ed, []int{18}
W
wenxu12345 已提交
1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579
}
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 {
W
pb  
wenxu12345 已提交
1580
	if m != nil {
W
wenxu12345 已提交
1581 1582 1583 1584 1585 1586 1587 1588
		return m.Detail
	}
	return nil
}

func (m *TipsComm) GetDefaultTips() string {
	if m != nil {
		return m.DefaultTips
W
pb  
wenxu12345 已提交
1589 1590 1591 1592
	}
	return ""
}

W
wenxu12345 已提交
1593 1594 1595 1596 1597 1598 1599 1600 1601 1602
// 	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:"-"`
W
pb  
wenxu12345 已提交
1603 1604
}

W
wenxu12345 已提交
1605 1606 1607 1608
func (m *GroupCreatedTips) Reset()         { *m = GroupCreatedTips{} }
func (m *GroupCreatedTips) String() string { return proto.CompactTextString(m) }
func (*GroupCreatedTips) ProtoMessage()    {}
func (*GroupCreatedTips) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
1609
	return fileDescriptor_ws_44bd6efa690189ed, []int{19}
W
pb  
wenxu12345 已提交
1610
}
W
wenxu12345 已提交
1611 1612
func (m *GroupCreatedTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_GroupCreatedTips.Unmarshal(m, b)
W
pb  
wenxu12345 已提交
1613
}
W
wenxu12345 已提交
1614 1615
func (m *GroupCreatedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_GroupCreatedTips.Marshal(b, m, deterministic)
W
pb  
wenxu12345 已提交
1616
}
W
wenxu12345 已提交
1617 1618
func (dst *GroupCreatedTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_GroupCreatedTips.Merge(dst, src)
W
pb  
wenxu12345 已提交
1619
}
W
wenxu12345 已提交
1620 1621
func (m *GroupCreatedTips) XXX_Size() int {
	return xxx_messageInfo_GroupCreatedTips.Size(m)
W
pb  
wenxu12345 已提交
1622
}
W
wenxu12345 已提交
1623 1624
func (m *GroupCreatedTips) XXX_DiscardUnknown() {
	xxx_messageInfo_GroupCreatedTips.DiscardUnknown(m)
W
pb  
wenxu12345 已提交
1625 1626
}

W
wenxu12345 已提交
1627
var xxx_messageInfo_GroupCreatedTips proto.InternalMessageInfo
W
pb  
wenxu12345 已提交
1628

W
wenxu12345 已提交
1629
func (m *GroupCreatedTips) GetGroup() *GroupInfo {
W
pb  
wenxu12345 已提交
1630 1631 1632 1633 1634 1635
	if m != nil {
		return m.Group
	}
	return nil
}

W
wenxu12345 已提交
1636
func (m *GroupCreatedTips) GetOpUser() *GroupMemberFullInfo {
W
pb  
wenxu12345 已提交
1637
	if m != nil {
W
wenxu12345 已提交
1638
		return m.OpUser
W
pb  
wenxu12345 已提交
1639 1640 1641 1642
	}
	return nil
}

W
wenxu12345 已提交
1643 1644 1645 1646 1647 1648 1649 1650
func (m *GroupCreatedTips) GetMemberList() []*GroupMemberFullInfo {
	if m != nil {
		return m.MemberList
	}
	return nil
}

func (m *GroupCreatedTips) GetOperationTime() int64 {
W
pb  
wenxu12345 已提交
1651
	if m != nil {
W
wenxu12345 已提交
1652 1653 1654 1655 1656
		return m.OperationTime
	}
	return 0
}

W
wenxu12345 已提交
1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668
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"`
W
wenxu12345 已提交
1669 1670 1671 1672 1673
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

W
wenxu12345 已提交
1674 1675 1676 1677
func (m *GroupInfoSetTips) Reset()         { *m = GroupInfoSetTips{} }
func (m *GroupInfoSetTips) String() string { return proto.CompactTextString(m) }
func (*GroupInfoSetTips) ProtoMessage()    {}
func (*GroupInfoSetTips) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
1678
	return fileDescriptor_ws_44bd6efa690189ed, []int{20}
W
wenxu12345 已提交
1679
}
W
wenxu12345 已提交
1680 1681
func (m *GroupInfoSetTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_GroupInfoSetTips.Unmarshal(m, b)
W
wenxu12345 已提交
1682
}
W
wenxu12345 已提交
1683 1684
func (m *GroupInfoSetTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_GroupInfoSetTips.Marshal(b, m, deterministic)
W
wenxu12345 已提交
1685
}
W
wenxu12345 已提交
1686 1687
func (dst *GroupInfoSetTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_GroupInfoSetTips.Merge(dst, src)
W
wenxu12345 已提交
1688
}
W
wenxu12345 已提交
1689 1690
func (m *GroupInfoSetTips) XXX_Size() int {
	return xxx_messageInfo_GroupInfoSetTips.Size(m)
W
wenxu12345 已提交
1691
}
W
wenxu12345 已提交
1692 1693
func (m *GroupInfoSetTips) XXX_DiscardUnknown() {
	xxx_messageInfo_GroupInfoSetTips.DiscardUnknown(m)
W
wenxu12345 已提交
1694 1695
}

W
wenxu12345 已提交
1696
var xxx_messageInfo_GroupInfoSetTips proto.InternalMessageInfo
W
wenxu12345 已提交
1697

W
wenxu12345 已提交
1698
func (m *GroupInfoSetTips) GetOpUser() *GroupMemberFullInfo {
W
wenxu12345 已提交
1699
	if m != nil {
W
wenxu12345 已提交
1700
		return m.OpUser
W
wenxu12345 已提交
1701 1702 1703 1704
	}
	return nil
}

W
wenxu12345 已提交
1705
func (m *GroupInfoSetTips) GetMuteTime() int64 {
W
wenxu12345 已提交
1706
	if m != nil {
W
wenxu12345 已提交
1707
		return m.MuteTime
W
wenxu12345 已提交
1708
	}
W
wenxu12345 已提交
1709
	return 0
W
wenxu12345 已提交
1710 1711
}

W
wenxu12345 已提交
1712
func (m *GroupInfoSetTips) GetGroup() *GroupInfo {
W
wenxu12345 已提交
1713
	if m != nil {
W
wenxu12345 已提交
1714
		return m.Group
W
wenxu12345 已提交
1715
	}
W
wenxu12345 已提交
1716
	return nil
W
wenxu12345 已提交
1717 1718
}

W
wenxu12345 已提交
1719 1720 1721 1722 1723 1724 1725 1726
// 	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:"-"`
W
wenxu12345 已提交
1727 1728
}

W
wenxu12345 已提交
1729 1730 1731 1732
func (m *JoinGroupApplicationTips) Reset()         { *m = JoinGroupApplicationTips{} }
func (m *JoinGroupApplicationTips) String() string { return proto.CompactTextString(m) }
func (*JoinGroupApplicationTips) ProtoMessage()    {}
func (*JoinGroupApplicationTips) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
1733
	return fileDescriptor_ws_44bd6efa690189ed, []int{21}
W
wenxu12345 已提交
1734
}
W
wenxu12345 已提交
1735 1736
func (m *JoinGroupApplicationTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_JoinGroupApplicationTips.Unmarshal(m, b)
W
wenxu12345 已提交
1737
}
W
wenxu12345 已提交
1738 1739
func (m *JoinGroupApplicationTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_JoinGroupApplicationTips.Marshal(b, m, deterministic)
W
wenxu12345 已提交
1740
}
W
wenxu12345 已提交
1741 1742
func (dst *JoinGroupApplicationTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_JoinGroupApplicationTips.Merge(dst, src)
W
wenxu12345 已提交
1743
}
W
wenxu12345 已提交
1744 1745
func (m *JoinGroupApplicationTips) XXX_Size() int {
	return xxx_messageInfo_JoinGroupApplicationTips.Size(m)
W
wenxu12345 已提交
1746
}
W
wenxu12345 已提交
1747 1748
func (m *JoinGroupApplicationTips) XXX_DiscardUnknown() {
	xxx_messageInfo_JoinGroupApplicationTips.DiscardUnknown(m)
W
wenxu12345 已提交
1749 1750
}

W
wenxu12345 已提交
1751
var xxx_messageInfo_JoinGroupApplicationTips proto.InternalMessageInfo
W
wenxu12345 已提交
1752

W
wenxu12345 已提交
1753
func (m *JoinGroupApplicationTips) GetGroup() *GroupInfo {
W
wenxu12345 已提交
1754 1755 1756 1757 1758 1759
	if m != nil {
		return m.Group
	}
	return nil
}

W
wenxu12345 已提交
1760
func (m *JoinGroupApplicationTips) GetApplicant() *PublicUserInfo {
W
wenxu12345 已提交
1761
	if m != nil {
W
wenxu12345 已提交
1762
		return m.Applicant
W
wenxu12345 已提交
1763 1764 1765 1766
	}
	return nil
}

W
wenxu12345 已提交
1767
func (m *JoinGroupApplicationTips) GetReqMsg() string {
W
wenxu12345 已提交
1768
	if m != nil {
W
wenxu12345 已提交
1769
		return m.ReqMsg
W
wenxu12345 已提交
1770
	}
W
wenxu12345 已提交
1771
	return ""
W
wenxu12345 已提交
1772 1773
}

W
wenxu12345 已提交
1774 1775 1776 1777 1778 1779 1780 1781 1782
// 	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:"-"`
W
wenxu12345 已提交
1783 1784
}

W
wenxu12345 已提交
1785 1786 1787 1788
func (m *MemberQuitTips) Reset()         { *m = MemberQuitTips{} }
func (m *MemberQuitTips) String() string { return proto.CompactTextString(m) }
func (*MemberQuitTips) ProtoMessage()    {}
func (*MemberQuitTips) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
1789
	return fileDescriptor_ws_44bd6efa690189ed, []int{22}
W
wenxu12345 已提交
1790
}
W
wenxu12345 已提交
1791 1792
func (m *MemberQuitTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_MemberQuitTips.Unmarshal(m, b)
W
wenxu12345 已提交
1793
}
W
wenxu12345 已提交
1794 1795
func (m *MemberQuitTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_MemberQuitTips.Marshal(b, m, deterministic)
W
wenxu12345 已提交
1796
}
W
wenxu12345 已提交
1797 1798
func (dst *MemberQuitTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_MemberQuitTips.Merge(dst, src)
W
wenxu12345 已提交
1799
}
W
wenxu12345 已提交
1800 1801
func (m *MemberQuitTips) XXX_Size() int {
	return xxx_messageInfo_MemberQuitTips.Size(m)
W
wenxu12345 已提交
1802
}
W
wenxu12345 已提交
1803 1804
func (m *MemberQuitTips) XXX_DiscardUnknown() {
	xxx_messageInfo_MemberQuitTips.DiscardUnknown(m)
W
wenxu12345 已提交
1805 1806
}

W
wenxu12345 已提交
1807
var xxx_messageInfo_MemberQuitTips proto.InternalMessageInfo
W
wenxu12345 已提交
1808

W
wenxu12345 已提交
1809
func (m *MemberQuitTips) GetGroup() *GroupInfo {
W
wenxu12345 已提交
1810 1811 1812 1813 1814 1815
	if m != nil {
		return m.Group
	}
	return nil
}

W
wenxu12345 已提交
1816
func (m *MemberQuitTips) GetQuitUser() *GroupMemberFullInfo {
W
wenxu12345 已提交
1817
	if m != nil {
W
wenxu12345 已提交
1818
		return m.QuitUser
W
wenxu12345 已提交
1819 1820 1821 1822
	}
	return nil
}

W
wenxu12345 已提交
1823
func (m *MemberQuitTips) GetOperationTime() int64 {
W
wenxu12345 已提交
1824 1825 1826 1827 1828 1829
	if m != nil {
		return m.OperationTime
	}
	return 0
}

W
wenxu12345 已提交
1830 1831 1832
// 	OnApplicationGroupAccepted()
type GroupApplicationAcceptedTips struct {
	Group                *GroupInfo           `protobuf:"bytes,1,opt,name=group" json:"group,omitempty"`
programor_guo's avatar
programor_guo 已提交
1833
	OpUser               *GroupMemberFullInfo `protobuf:"bytes,2,opt,name=opUser" json:"opUser,omitempty"`
W
wenxu12345 已提交
1834
	HandleMsg            string               `protobuf:"bytes,4,opt,name=handleMsg" json:"handleMsg,omitempty"`
W
wenxu12345 已提交
1835 1836 1837 1838 1839
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

W
wenxu12345 已提交
1840 1841 1842 1843
func (m *GroupApplicationAcceptedTips) Reset()         { *m = GroupApplicationAcceptedTips{} }
func (m *GroupApplicationAcceptedTips) String() string { return proto.CompactTextString(m) }
func (*GroupApplicationAcceptedTips) ProtoMessage()    {}
func (*GroupApplicationAcceptedTips) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
1844
	return fileDescriptor_ws_44bd6efa690189ed, []int{23}
W
wenxu12345 已提交
1845
}
W
wenxu12345 已提交
1846 1847
func (m *GroupApplicationAcceptedTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_GroupApplicationAcceptedTips.Unmarshal(m, b)
W
wenxu12345 已提交
1848
}
W
wenxu12345 已提交
1849 1850
func (m *GroupApplicationAcceptedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_GroupApplicationAcceptedTips.Marshal(b, m, deterministic)
W
wenxu12345 已提交
1851
}
W
wenxu12345 已提交
1852 1853
func (dst *GroupApplicationAcceptedTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_GroupApplicationAcceptedTips.Merge(dst, src)
W
wenxu12345 已提交
1854
}
W
wenxu12345 已提交
1855 1856
func (m *GroupApplicationAcceptedTips) XXX_Size() int {
	return xxx_messageInfo_GroupApplicationAcceptedTips.Size(m)
W
wenxu12345 已提交
1857
}
W
wenxu12345 已提交
1858 1859
func (m *GroupApplicationAcceptedTips) XXX_DiscardUnknown() {
	xxx_messageInfo_GroupApplicationAcceptedTips.DiscardUnknown(m)
W
wenxu12345 已提交
1860 1861
}

W
wenxu12345 已提交
1862
var xxx_messageInfo_GroupApplicationAcceptedTips proto.InternalMessageInfo
W
wenxu12345 已提交
1863

W
wenxu12345 已提交
1864
func (m *GroupApplicationAcceptedTips) GetGroup() *GroupInfo {
W
wenxu12345 已提交
1865
	if m != nil {
W
wenxu12345 已提交
1866
		return m.Group
W
wenxu12345 已提交
1867
	}
W
wenxu12345 已提交
1868
	return nil
W
wenxu12345 已提交
1869 1870
}

W
wenxu12345 已提交
1871
func (m *GroupApplicationAcceptedTips) GetOpUser() *GroupMemberFullInfo {
W
wenxu12345 已提交
1872 1873 1874 1875 1876 1877
	if m != nil {
		return m.OpUser
	}
	return nil
}

W
wenxu12345 已提交
1878
func (m *GroupApplicationAcceptedTips) GetHandleMsg() string {
W
wenxu12345 已提交
1879
	if m != nil {
W
wenxu12345 已提交
1880
		return m.HandleMsg
W
wenxu12345 已提交
1881
	}
W
wenxu12345 已提交
1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898
	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) {
W
wenxu12345 已提交
1899
	return fileDescriptor_ws_44bd6efa690189ed, []int{24}
W
wenxu12345 已提交
1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914
}
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)
W
wenxu12345 已提交
1915 1916
}

W
wenxu12345 已提交
1917 1918 1919
var xxx_messageInfo_GroupApplicationRejectedTips proto.InternalMessageInfo

func (m *GroupApplicationRejectedTips) GetGroup() *GroupInfo {
W
wenxu12345 已提交
1920
	if m != nil {
W
wenxu12345 已提交
1921
		return m.Group
W
wenxu12345 已提交
1922
	}
W
wenxu12345 已提交
1923
	return nil
W
wenxu12345 已提交
1924 1925
}

W
wenxu12345 已提交
1926
func (m *GroupApplicationRejectedTips) GetOpUser() *GroupMemberFullInfo {
W
wenxu12345 已提交
1927
	if m != nil {
W
wenxu12345 已提交
1928
		return m.OpUser
W
wenxu12345 已提交
1929 1930 1931 1932
	}
	return nil
}

W
wenxu12345 已提交
1933 1934 1935 1936 1937
func (m *GroupApplicationRejectedTips) GetHandleMsg() string {
	if m != nil {
		return m.HandleMsg
	}
	return ""
W
wenxu12345 已提交
1938 1939
}

W
wenxu12345 已提交
1940 1941 1942 1943 1944 1945 1946 1947 1948
// 	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:"-"`
W
wenxu12345 已提交
1949
}
W
wenxu12345 已提交
1950 1951 1952 1953 1954

func (m *GroupOwnerTransferredTips) Reset()         { *m = GroupOwnerTransferredTips{} }
func (m *GroupOwnerTransferredTips) String() string { return proto.CompactTextString(m) }
func (*GroupOwnerTransferredTips) ProtoMessage()    {}
func (*GroupOwnerTransferredTips) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
1955
	return fileDescriptor_ws_44bd6efa690189ed, []int{25}
W
wenxu12345 已提交
1956
}
W
wenxu12345 已提交
1957 1958
func (m *GroupOwnerTransferredTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_GroupOwnerTransferredTips.Unmarshal(m, b)
W
wenxu12345 已提交
1959
}
W
wenxu12345 已提交
1960 1961
func (m *GroupOwnerTransferredTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_GroupOwnerTransferredTips.Marshal(b, m, deterministic)
W
wenxu12345 已提交
1962
}
W
wenxu12345 已提交
1963 1964
func (dst *GroupOwnerTransferredTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_GroupOwnerTransferredTips.Merge(dst, src)
W
wenxu12345 已提交
1965
}
W
wenxu12345 已提交
1966 1967 1968 1969 1970
func (m *GroupOwnerTransferredTips) XXX_Size() int {
	return xxx_messageInfo_GroupOwnerTransferredTips.Size(m)
}
func (m *GroupOwnerTransferredTips) XXX_DiscardUnknown() {
	xxx_messageInfo_GroupOwnerTransferredTips.DiscardUnknown(m)
W
wenxu12345 已提交
1971 1972
}

W
wenxu12345 已提交
1973
var xxx_messageInfo_GroupOwnerTransferredTips proto.InternalMessageInfo
W
wenxu12345 已提交
1974

W
wenxu12345 已提交
1975
func (m *GroupOwnerTransferredTips) GetGroup() *GroupInfo {
W
wenxu12345 已提交
1976 1977 1978 1979 1980 1981
	if m != nil {
		return m.Group
	}
	return nil
}

W
wenxu12345 已提交
1982
func (m *GroupOwnerTransferredTips) GetOpUser() *GroupMemberFullInfo {
W
wenxu12345 已提交
1983
	if m != nil {
W
wenxu12345 已提交
1984
		return m.OpUser
W
wenxu12345 已提交
1985 1986 1987 1988
	}
	return nil
}

W
wenxu12345 已提交
1989
func (m *GroupOwnerTransferredTips) GetNewGroupOwner() *GroupMemberFullInfo {
W
wenxu12345 已提交
1990
	if m != nil {
W
wenxu12345 已提交
1991
		return m.NewGroupOwner
W
wenxu12345 已提交
1992 1993 1994 1995
	}
	return nil
}

W
wenxu12345 已提交
1996
func (m *GroupOwnerTransferredTips) GetOperationTime() int64 {
W
wenxu12345 已提交
1997 1998 1999 2000 2001 2002
	if m != nil {
		return m.OperationTime
	}
	return 0
}

W
wenxu12345 已提交
2003 2004 2005 2006 2007 2008 2009 2010 2011
// 	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:"-"`
W
wenxu12345 已提交
2012 2013
}

W
wenxu12345 已提交
2014 2015 2016 2017
func (m *MemberKickedTips) Reset()         { *m = MemberKickedTips{} }
func (m *MemberKickedTips) String() string { return proto.CompactTextString(m) }
func (*MemberKickedTips) ProtoMessage()    {}
func (*MemberKickedTips) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
2018
	return fileDescriptor_ws_44bd6efa690189ed, []int{26}
W
wenxu12345 已提交
2019
}
W
wenxu12345 已提交
2020 2021
func (m *MemberKickedTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_MemberKickedTips.Unmarshal(m, b)
W
wenxu12345 已提交
2022
}
W
wenxu12345 已提交
2023 2024
func (m *MemberKickedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_MemberKickedTips.Marshal(b, m, deterministic)
W
wenxu12345 已提交
2025
}
W
wenxu12345 已提交
2026 2027
func (dst *MemberKickedTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_MemberKickedTips.Merge(dst, src)
W
wenxu12345 已提交
2028
}
W
wenxu12345 已提交
2029 2030
func (m *MemberKickedTips) XXX_Size() int {
	return xxx_messageInfo_MemberKickedTips.Size(m)
W
wenxu12345 已提交
2031
}
W
wenxu12345 已提交
2032 2033
func (m *MemberKickedTips) XXX_DiscardUnknown() {
	xxx_messageInfo_MemberKickedTips.DiscardUnknown(m)
W
wenxu12345 已提交
2034 2035
}

W
wenxu12345 已提交
2036
var xxx_messageInfo_MemberKickedTips proto.InternalMessageInfo
W
wenxu12345 已提交
2037

W
wenxu12345 已提交
2038
func (m *MemberKickedTips) GetGroup() *GroupInfo {
W
wenxu12345 已提交
2039
	if m != nil {
W
wenxu12345 已提交
2040
		return m.Group
W
wenxu12345 已提交
2041
	}
W
wenxu12345 已提交
2042
	return nil
W
wenxu12345 已提交
2043 2044
}

W
wenxu12345 已提交
2045
func (m *MemberKickedTips) GetOpUser() *GroupMemberFullInfo {
W
wenxu12345 已提交
2046
	if m != nil {
W
wenxu12345 已提交
2047
		return m.OpUser
W
wenxu12345 已提交
2048 2049 2050 2051
	}
	return nil
}

W
wenxu12345 已提交
2052
func (m *MemberKickedTips) GetKickedUserList() []*GroupMemberFullInfo {
W
wenxu12345 已提交
2053
	if m != nil {
W
wenxu12345 已提交
2054
		return m.KickedUserList
W
wenxu12345 已提交
2055 2056 2057 2058
	}
	return nil
}

W
wenxu12345 已提交
2059 2060 2061 2062 2063
func (m *MemberKickedTips) GetOperationTime() int64 {
	if m != nil {
		return m.OperationTime
	}
	return 0
W
wenxu12345 已提交
2064 2065
}

W
wenxu12345 已提交
2066 2067 2068 2069 2070 2071 2072 2073 2074
// 	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:"-"`
W
wenxu12345 已提交
2075
}
W
wenxu12345 已提交
2076 2077 2078 2079 2080

func (m *MemberInvitedTips) Reset()         { *m = MemberInvitedTips{} }
func (m *MemberInvitedTips) String() string { return proto.CompactTextString(m) }
func (*MemberInvitedTips) ProtoMessage()    {}
func (*MemberInvitedTips) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
2081
	return fileDescriptor_ws_44bd6efa690189ed, []int{27}
W
wenxu12345 已提交
2082
}
W
wenxu12345 已提交
2083 2084
func (m *MemberInvitedTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_MemberInvitedTips.Unmarshal(m, b)
W
wenxu12345 已提交
2085
}
W
wenxu12345 已提交
2086 2087
func (m *MemberInvitedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_MemberInvitedTips.Marshal(b, m, deterministic)
W
wenxu12345 已提交
2088
}
W
wenxu12345 已提交
2089 2090
func (dst *MemberInvitedTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_MemberInvitedTips.Merge(dst, src)
W
wenxu12345 已提交
2091
}
W
wenxu12345 已提交
2092 2093 2094 2095 2096
func (m *MemberInvitedTips) XXX_Size() int {
	return xxx_messageInfo_MemberInvitedTips.Size(m)
}
func (m *MemberInvitedTips) XXX_DiscardUnknown() {
	xxx_messageInfo_MemberInvitedTips.DiscardUnknown(m)
W
wenxu12345 已提交
2097 2098
}

W
wenxu12345 已提交
2099
var xxx_messageInfo_MemberInvitedTips proto.InternalMessageInfo
W
wenxu12345 已提交
2100

W
wenxu12345 已提交
2101
func (m *MemberInvitedTips) GetGroup() *GroupInfo {
W
wenxu12345 已提交
2102 2103 2104 2105 2106 2107
	if m != nil {
		return m.Group
	}
	return nil
}

W
wenxu12345 已提交
2108
func (m *MemberInvitedTips) GetOpUser() *GroupMemberFullInfo {
W
wenxu12345 已提交
2109
	if m != nil {
W
wenxu12345 已提交
2110 2111 2112 2113 2114 2115 2116 2117
		return m.OpUser
	}
	return nil
}

func (m *MemberInvitedTips) GetInvitedUserList() []*GroupMemberFullInfo {
	if m != nil {
		return m.InvitedUserList
W
wenxu12345 已提交
2118 2119 2120 2121
	}
	return nil
}

W
wenxu12345 已提交
2122
func (m *MemberInvitedTips) GetOperationTime() int64 {
W
wenxu12345 已提交
2123
	if m != nil {
W
wenxu12345 已提交
2124
		return m.OperationTime
W
wenxu12345 已提交
2125
	}
W
wenxu12345 已提交
2126
	return 0
W
wenxu12345 已提交
2127 2128
}

W
wenxu12345 已提交
2129 2130
// Actively join the group
type MemberEnterTips struct {
programor_guo's avatar
programor_guo 已提交
2131
	Group                *GroupInfo           `protobuf:"bytes,1,opt,name=group" json:"group,omitempty"`
W
wenxu12345 已提交
2132 2133
	EntrantUser          *GroupMemberFullInfo `protobuf:"bytes,2,opt,name=entrantUser" json:"entrantUser,omitempty"`
	OperationTime        int64                `protobuf:"varint,3,opt,name=operationTime" json:"operationTime,omitempty"`
W
wenxu12345 已提交
2134 2135 2136 2137 2138
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

W
wenxu12345 已提交
2139 2140 2141 2142
func (m *MemberEnterTips) Reset()         { *m = MemberEnterTips{} }
func (m *MemberEnterTips) String() string { return proto.CompactTextString(m) }
func (*MemberEnterTips) ProtoMessage()    {}
func (*MemberEnterTips) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
2143
	return fileDescriptor_ws_44bd6efa690189ed, []int{28}
W
wenxu12345 已提交
2144
}
W
wenxu12345 已提交
2145 2146
func (m *MemberEnterTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_MemberEnterTips.Unmarshal(m, b)
W
wenxu12345 已提交
2147
}
W
wenxu12345 已提交
2148 2149
func (m *MemberEnterTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_MemberEnterTips.Marshal(b, m, deterministic)
W
wenxu12345 已提交
2150
}
W
wenxu12345 已提交
2151 2152
func (dst *MemberEnterTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_MemberEnterTips.Merge(dst, src)
W
wenxu12345 已提交
2153
}
W
wenxu12345 已提交
2154 2155
func (m *MemberEnterTips) XXX_Size() int {
	return xxx_messageInfo_MemberEnterTips.Size(m)
W
wenxu12345 已提交
2156
}
W
wenxu12345 已提交
2157 2158
func (m *MemberEnterTips) XXX_DiscardUnknown() {
	xxx_messageInfo_MemberEnterTips.DiscardUnknown(m)
W
wenxu12345 已提交
2159 2160
}

W
wenxu12345 已提交
2161
var xxx_messageInfo_MemberEnterTips proto.InternalMessageInfo
W
wenxu12345 已提交
2162

W
wenxu12345 已提交
2163
func (m *MemberEnterTips) GetGroup() *GroupInfo {
W
wenxu12345 已提交
2164 2165 2166 2167 2168 2169
	if m != nil {
		return m.Group
	}
	return nil
}

W
wenxu12345 已提交
2170
func (m *MemberEnterTips) GetEntrantUser() *GroupMemberFullInfo {
W
wenxu12345 已提交
2171
	if m != nil {
W
wenxu12345 已提交
2172
		return m.EntrantUser
W
wenxu12345 已提交
2173 2174 2175 2176
	}
	return nil
}

W
wenxu12345 已提交
2177
func (m *MemberEnterTips) GetOperationTime() int64 {
W
wenxu12345 已提交
2178
	if m != nil {
W
wenxu12345 已提交
2179
		return m.OperationTime
W
wenxu12345 已提交
2180 2181 2182 2183 2184
	}
	return 0
}

type FriendApplication struct {
programor_guo's avatar
programor_guo 已提交
2185 2186 2187
	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"`
W
wenxu12345 已提交
2188 2189 2190 2191 2192 2193 2194 2195 2196
	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) {
W
wenxu12345 已提交
2197
	return fileDescriptor_ws_44bd6efa690189ed, []int{29}
W
wenxu12345 已提交
2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216
}
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

W
wenxu12345 已提交
2217
func (m *FriendApplication) GetAddTime() int64 {
W
wenxu12345 已提交
2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237
	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 ""
}

W
wenxu12345 已提交
2238
type FromToUserID struct {
programor_guo's avatar
programor_guo 已提交
2239 2240
	FromUserID           string   `protobuf:"bytes,1,opt,name=fromUserID" json:"fromUserID,omitempty"`
	ToUserID             string   `protobuf:"bytes,2,opt,name=toUserID" json:"toUserID,omitempty"`
W
wenxu12345 已提交
2241 2242 2243 2244 2245 2246 2247 2248 2249
	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) {
W
wenxu12345 已提交
2250
	return fileDescriptor_ws_44bd6efa690189ed, []int{30}
W
wenxu12345 已提交
2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284
}
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
W
wenxu12345 已提交
2285
type FriendApplicationTips struct {
programor_guo's avatar
programor_guo 已提交
2286
	FromToUserID         *FromToUserID `protobuf:"bytes,1,opt,name=fromToUserID" json:"fromToUserID,omitempty"`
W
wenxu12345 已提交
2287 2288 2289
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
W
wenxu12345 已提交
2290 2291
}

W
wenxu12345 已提交
2292 2293 2294 2295
func (m *FriendApplicationTips) Reset()         { *m = FriendApplicationTips{} }
func (m *FriendApplicationTips) String() string { return proto.CompactTextString(m) }
func (*FriendApplicationTips) ProtoMessage()    {}
func (*FriendApplicationTips) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
2296
	return fileDescriptor_ws_44bd6efa690189ed, []int{31}
W
wenxu12345 已提交
2297
}
W
wenxu12345 已提交
2298 2299
func (m *FriendApplicationTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_FriendApplicationTips.Unmarshal(m, b)
W
wenxu12345 已提交
2300
}
W
wenxu12345 已提交
2301 2302
func (m *FriendApplicationTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_FriendApplicationTips.Marshal(b, m, deterministic)
W
wenxu12345 已提交
2303
}
W
wenxu12345 已提交
2304 2305
func (dst *FriendApplicationTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_FriendApplicationTips.Merge(dst, src)
W
wenxu12345 已提交
2306
}
W
wenxu12345 已提交
2307 2308
func (m *FriendApplicationTips) XXX_Size() int {
	return xxx_messageInfo_FriendApplicationTips.Size(m)
W
wenxu12345 已提交
2309
}
W
wenxu12345 已提交
2310 2311
func (m *FriendApplicationTips) XXX_DiscardUnknown() {
	xxx_messageInfo_FriendApplicationTips.DiscardUnknown(m)
W
wenxu12345 已提交
2312 2313
}

W
wenxu12345 已提交
2314
var xxx_messageInfo_FriendApplicationTips proto.InternalMessageInfo
W
wenxu12345 已提交
2315

W
wenxu12345 已提交
2316
func (m *FriendApplicationTips) GetFromToUserID() *FromToUserID {
W
wenxu12345 已提交
2317
	if m != nil {
W
wenxu12345 已提交
2318
		return m.FromToUserID
W
wenxu12345 已提交
2319 2320 2321 2322
	}
	return nil
}

W
wenxu12345 已提交
2323
// FromUserID accept or reject ToUserID
W
wenxu12345 已提交
2324
type FriendApplicationApprovedTips struct {
programor_guo's avatar
programor_guo 已提交
2325
	FromToUserID         *FromToUserID `protobuf:"bytes,1,opt,name=fromToUserID" json:"fromToUserID,omitempty"`
W
wenxu12345 已提交
2326
	HandleMsg            string        `protobuf:"bytes,2,opt,name=handleMsg" json:"handleMsg,omitempty"`
W
wenxu12345 已提交
2327 2328 2329
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
W
wenxu12345 已提交
2330 2331
}

W
wenxu12345 已提交
2332 2333 2334 2335
func (m *FriendApplicationApprovedTips) Reset()         { *m = FriendApplicationApprovedTips{} }
func (m *FriendApplicationApprovedTips) String() string { return proto.CompactTextString(m) }
func (*FriendApplicationApprovedTips) ProtoMessage()    {}
func (*FriendApplicationApprovedTips) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
2336
	return fileDescriptor_ws_44bd6efa690189ed, []int{32}
W
wenxu12345 已提交
2337
}
W
wenxu12345 已提交
2338 2339
func (m *FriendApplicationApprovedTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_FriendApplicationApprovedTips.Unmarshal(m, b)
W
wenxu12345 已提交
2340
}
W
wenxu12345 已提交
2341 2342
func (m *FriendApplicationApprovedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_FriendApplicationApprovedTips.Marshal(b, m, deterministic)
W
wenxu12345 已提交
2343
}
W
wenxu12345 已提交
2344 2345
func (dst *FriendApplicationApprovedTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_FriendApplicationApprovedTips.Merge(dst, src)
W
wenxu12345 已提交
2346
}
W
wenxu12345 已提交
2347 2348
func (m *FriendApplicationApprovedTips) XXX_Size() int {
	return xxx_messageInfo_FriendApplicationApprovedTips.Size(m)
W
wenxu12345 已提交
2349
}
W
wenxu12345 已提交
2350 2351
func (m *FriendApplicationApprovedTips) XXX_DiscardUnknown() {
	xxx_messageInfo_FriendApplicationApprovedTips.DiscardUnknown(m)
W
wenxu12345 已提交
2352 2353
}

W
wenxu12345 已提交
2354
var xxx_messageInfo_FriendApplicationApprovedTips proto.InternalMessageInfo
W
wenxu12345 已提交
2355

W
wenxu12345 已提交
2356
func (m *FriendApplicationApprovedTips) GetFromToUserID() *FromToUserID {
W
wenxu12345 已提交
2357
	if m != nil {
W
wenxu12345 已提交
2358
		return m.FromToUserID
W
wenxu12345 已提交
2359 2360 2361 2362
	}
	return nil
}

W
wenxu12345 已提交
2363
func (m *FriendApplicationApprovedTips) GetHandleMsg() string {
W
wenxu12345 已提交
2364
	if m != nil {
W
wenxu12345 已提交
2365
		return m.HandleMsg
W
wenxu12345 已提交
2366
	}
W
wenxu12345 已提交
2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382
	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) {
W
wenxu12345 已提交
2383
	return fileDescriptor_ws_44bd6efa690189ed, []int{33}
W
wenxu12345 已提交
2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414
}
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 ""
W
wenxu12345 已提交
2415 2416
}

W
wenxu12345 已提交
2417
// FromUserID  Added a friend ToUserID
programor_guo's avatar
programor_guo 已提交
2418
type FriendAddedTips struct {
programor_guo's avatar
programor_guo 已提交
2419 2420 2421
	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"`
W
wenxu12345 已提交
2422 2423 2424
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
W
wenxu12345 已提交
2425
}
programor_guo's avatar
programor_guo 已提交
2426 2427 2428 2429 2430

func (m *FriendAddedTips) Reset()         { *m = FriendAddedTips{} }
func (m *FriendAddedTips) String() string { return proto.CompactTextString(m) }
func (*FriendAddedTips) ProtoMessage()    {}
func (*FriendAddedTips) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
2431
	return fileDescriptor_ws_44bd6efa690189ed, []int{34}
programor_guo's avatar
programor_guo 已提交
2432 2433 2434
}
func (m *FriendAddedTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_FriendAddedTips.Unmarshal(m, b)
W
wenxu12345 已提交
2435
}
programor_guo's avatar
programor_guo 已提交
2436 2437
func (m *FriendAddedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_FriendAddedTips.Marshal(b, m, deterministic)
W
wenxu12345 已提交
2438
}
programor_guo's avatar
programor_guo 已提交
2439 2440
func (dst *FriendAddedTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_FriendAddedTips.Merge(dst, src)
W
wenxu12345 已提交
2441
}
programor_guo's avatar
programor_guo 已提交
2442 2443 2444 2445 2446
func (m *FriendAddedTips) XXX_Size() int {
	return xxx_messageInfo_FriendAddedTips.Size(m)
}
func (m *FriendAddedTips) XXX_DiscardUnknown() {
	xxx_messageInfo_FriendAddedTips.DiscardUnknown(m)
W
wenxu12345 已提交
2447 2448
}

programor_guo's avatar
programor_guo 已提交
2449
var xxx_messageInfo_FriendAddedTips proto.InternalMessageInfo
W
wenxu12345 已提交
2450

programor_guo's avatar
programor_guo 已提交
2451
func (m *FriendAddedTips) GetFriend() *FriendInfo {
W
wenxu12345 已提交
2452
	if m != nil {
programor_guo's avatar
programor_guo 已提交
2453
		return m.Friend
W
wenxu12345 已提交
2454 2455 2456 2457
	}
	return nil
}

W
wenxu12345 已提交
2458
func (m *FriendAddedTips) GetOperationTime() int64 {
W
wenxu12345 已提交
2459
	if m != nil {
programor_guo's avatar
programor_guo 已提交
2460
		return m.OperationTime
W
wenxu12345 已提交
2461
	}
programor_guo's avatar
programor_guo 已提交
2462
	return 0
W
wenxu12345 已提交
2463 2464
}

W
wenxu12345 已提交
2465 2466 2467 2468 2469 2470 2471 2472
func (m *FriendAddedTips) GetOpUser() *PublicUserInfo {
	if m != nil {
		return m.OpUser
	}
	return nil
}

// FromUserID  deleted a friend ToUserID
programor_guo's avatar
programor_guo 已提交
2473
type FriendDeletedTips struct {
programor_guo's avatar
programor_guo 已提交
2474
	FromToUserID         *FromToUserID `protobuf:"bytes,1,opt,name=fromToUserID" json:"fromToUserID,omitempty"`
W
wenxu12345 已提交
2475 2476 2477
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
W
wenxu12345 已提交
2478 2479
}

programor_guo's avatar
programor_guo 已提交
2480 2481 2482 2483
func (m *FriendDeletedTips) Reset()         { *m = FriendDeletedTips{} }
func (m *FriendDeletedTips) String() string { return proto.CompactTextString(m) }
func (*FriendDeletedTips) ProtoMessage()    {}
func (*FriendDeletedTips) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
2484
	return fileDescriptor_ws_44bd6efa690189ed, []int{35}
W
wenxu12345 已提交
2485
}
programor_guo's avatar
programor_guo 已提交
2486 2487
func (m *FriendDeletedTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_FriendDeletedTips.Unmarshal(m, b)
W
wenxu12345 已提交
2488
}
programor_guo's avatar
programor_guo 已提交
2489 2490
func (m *FriendDeletedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_FriendDeletedTips.Marshal(b, m, deterministic)
W
wenxu12345 已提交
2491
}
programor_guo's avatar
programor_guo 已提交
2492 2493
func (dst *FriendDeletedTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_FriendDeletedTips.Merge(dst, src)
W
wenxu12345 已提交
2494
}
programor_guo's avatar
programor_guo 已提交
2495 2496
func (m *FriendDeletedTips) XXX_Size() int {
	return xxx_messageInfo_FriendDeletedTips.Size(m)
W
wenxu12345 已提交
2497
}
programor_guo's avatar
programor_guo 已提交
2498 2499
func (m *FriendDeletedTips) XXX_DiscardUnknown() {
	xxx_messageInfo_FriendDeletedTips.DiscardUnknown(m)
W
wenxu12345 已提交
2500 2501
}

programor_guo's avatar
programor_guo 已提交
2502
var xxx_messageInfo_FriendDeletedTips proto.InternalMessageInfo
W
wenxu12345 已提交
2503

W
wenxu12345 已提交
2504
func (m *FriendDeletedTips) GetFromToUserID() *FromToUserID {
W
wenxu12345 已提交
2505
	if m != nil {
W
wenxu12345 已提交
2506
		return m.FromToUserID
programor_guo's avatar
programor_guo 已提交
2507 2508 2509 2510 2511
	}
	return nil
}

type BlackAddedTips struct {
programor_guo's avatar
programor_guo 已提交
2512
	FromToUserID         *FromToUserID `protobuf:"bytes,1,opt,name=fromToUserID" json:"fromToUserID,omitempty"`
W
wenxu12345 已提交
2513 2514 2515
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
programor_guo's avatar
programor_guo 已提交
2516 2517 2518 2519 2520 2521
}

func (m *BlackAddedTips) Reset()         { *m = BlackAddedTips{} }
func (m *BlackAddedTips) String() string { return proto.CompactTextString(m) }
func (*BlackAddedTips) ProtoMessage()    {}
func (*BlackAddedTips) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
2522
	return fileDescriptor_ws_44bd6efa690189ed, []int{36}
W
wenxu12345 已提交
2523
}
programor_guo's avatar
programor_guo 已提交
2524 2525
func (m *BlackAddedTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_BlackAddedTips.Unmarshal(m, b)
W
wenxu12345 已提交
2526
}
programor_guo's avatar
programor_guo 已提交
2527 2528
func (m *BlackAddedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_BlackAddedTips.Marshal(b, m, deterministic)
W
wenxu12345 已提交
2529
}
programor_guo's avatar
programor_guo 已提交
2530 2531
func (dst *BlackAddedTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_BlackAddedTips.Merge(dst, src)
W
wenxu12345 已提交
2532
}
programor_guo's avatar
programor_guo 已提交
2533 2534
func (m *BlackAddedTips) XXX_Size() int {
	return xxx_messageInfo_BlackAddedTips.Size(m)
W
wenxu12345 已提交
2535
}
programor_guo's avatar
programor_guo 已提交
2536 2537
func (m *BlackAddedTips) XXX_DiscardUnknown() {
	xxx_messageInfo_BlackAddedTips.DiscardUnknown(m)
W
wenxu12345 已提交
2538 2539
}

programor_guo's avatar
programor_guo 已提交
2540
var xxx_messageInfo_BlackAddedTips proto.InternalMessageInfo
W
wenxu12345 已提交
2541

W
wenxu12345 已提交
2542
func (m *BlackAddedTips) GetFromToUserID() *FromToUserID {
W
wenxu12345 已提交
2543
	if m != nil {
W
wenxu12345 已提交
2544
		return m.FromToUserID
W
wenxu12345 已提交
2545 2546 2547 2548
	}
	return nil
}

programor_guo's avatar
programor_guo 已提交
2549
type BlackDeletedTips struct {
programor_guo's avatar
programor_guo 已提交
2550
	FromToUserID         *FromToUserID `protobuf:"bytes,1,opt,name=fromToUserID" json:"fromToUserID,omitempty"`
W
wenxu12345 已提交
2551 2552 2553
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
W
wenxu12345 已提交
2554
}
programor_guo's avatar
programor_guo 已提交
2555 2556 2557 2558 2559

func (m *BlackDeletedTips) Reset()         { *m = BlackDeletedTips{} }
func (m *BlackDeletedTips) String() string { return proto.CompactTextString(m) }
func (*BlackDeletedTips) ProtoMessage()    {}
func (*BlackDeletedTips) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
2560
	return fileDescriptor_ws_44bd6efa690189ed, []int{37}
programor_guo's avatar
programor_guo 已提交
2561 2562 2563
}
func (m *BlackDeletedTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_BlackDeletedTips.Unmarshal(m, b)
W
wenxu12345 已提交
2564
}
programor_guo's avatar
programor_guo 已提交
2565 2566
func (m *BlackDeletedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_BlackDeletedTips.Marshal(b, m, deterministic)
W
wenxu12345 已提交
2567
}
programor_guo's avatar
programor_guo 已提交
2568 2569
func (dst *BlackDeletedTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_BlackDeletedTips.Merge(dst, src)
W
wenxu12345 已提交
2570
}
programor_guo's avatar
programor_guo 已提交
2571 2572
func (m *BlackDeletedTips) XXX_Size() int {
	return xxx_messageInfo_BlackDeletedTips.Size(m)
W
wenxu12345 已提交
2573
}
programor_guo's avatar
programor_guo 已提交
2574 2575
func (m *BlackDeletedTips) XXX_DiscardUnknown() {
	xxx_messageInfo_BlackDeletedTips.DiscardUnknown(m)
W
wenxu12345 已提交
2576 2577
}

programor_guo's avatar
programor_guo 已提交
2578
var xxx_messageInfo_BlackDeletedTips proto.InternalMessageInfo
W
wenxu12345 已提交
2579

W
wenxu12345 已提交
2580
func (m *BlackDeletedTips) GetFromToUserID() *FromToUserID {
W
wenxu12345 已提交
2581
	if m != nil {
W
wenxu12345 已提交
2582
		return m.FromToUserID
W
wenxu12345 已提交
2583 2584 2585 2586 2587
	}
	return nil
}

type FriendInfoChangedTips struct {
programor_guo's avatar
programor_guo 已提交
2588
	FromToUserID         *FromToUserID `protobuf:"bytes,1,opt,name=fromToUserID" json:"fromToUserID,omitempty"`
W
wenxu12345 已提交
2589 2590 2591
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
W
wenxu12345 已提交
2592 2593 2594 2595 2596 2597
}

func (m *FriendInfoChangedTips) Reset()         { *m = FriendInfoChangedTips{} }
func (m *FriendInfoChangedTips) String() string { return proto.CompactTextString(m) }
func (*FriendInfoChangedTips) ProtoMessage()    {}
func (*FriendInfoChangedTips) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
2598
	return fileDescriptor_ws_44bd6efa690189ed, []int{38}
W
wenxu12345 已提交
2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617
}
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

W
wenxu12345 已提交
2618
func (m *FriendInfoChangedTips) GetFromToUserID() *FromToUserID {
W
wenxu12345 已提交
2619
	if m != nil {
W
wenxu12345 已提交
2620
		return m.FromToUserID
W
wenxu12345 已提交
2621 2622 2623 2624 2625
	}
	return nil
}

// ////////////////////user/////////////////////
W
wenxu12345 已提交
2626
type UserInfoUpdatedTips struct {
programor_guo's avatar
programor_guo 已提交
2627
	UserID               string   `protobuf:"bytes,1,opt,name=userID" json:"userID,omitempty"`
W
wenxu12345 已提交
2628 2629 2630
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
W
wenxu12345 已提交
2631 2632
}

W
wenxu12345 已提交
2633 2634 2635 2636
func (m *UserInfoUpdatedTips) Reset()         { *m = UserInfoUpdatedTips{} }
func (m *UserInfoUpdatedTips) String() string { return proto.CompactTextString(m) }
func (*UserInfoUpdatedTips) ProtoMessage()    {}
func (*UserInfoUpdatedTips) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
2637
	return fileDescriptor_ws_44bd6efa690189ed, []int{39}
W
wenxu12345 已提交
2638
}
W
wenxu12345 已提交
2639 2640
func (m *UserInfoUpdatedTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_UserInfoUpdatedTips.Unmarshal(m, b)
W
wenxu12345 已提交
2641
}
W
wenxu12345 已提交
2642 2643
func (m *UserInfoUpdatedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_UserInfoUpdatedTips.Marshal(b, m, deterministic)
W
wenxu12345 已提交
2644
}
W
wenxu12345 已提交
2645 2646
func (dst *UserInfoUpdatedTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_UserInfoUpdatedTips.Merge(dst, src)
W
wenxu12345 已提交
2647
}
W
wenxu12345 已提交
2648 2649
func (m *UserInfoUpdatedTips) XXX_Size() int {
	return xxx_messageInfo_UserInfoUpdatedTips.Size(m)
W
wenxu12345 已提交
2650
}
W
wenxu12345 已提交
2651 2652
func (m *UserInfoUpdatedTips) XXX_DiscardUnknown() {
	xxx_messageInfo_UserInfoUpdatedTips.DiscardUnknown(m)
W
wenxu12345 已提交
2653 2654
}

W
wenxu12345 已提交
2655
var xxx_messageInfo_UserInfoUpdatedTips proto.InternalMessageInfo
W
wenxu12345 已提交
2656

W
wenxu12345 已提交
2657
func (m *UserInfoUpdatedTips) GetUserID() string {
W
wenxu12345 已提交
2658
	if m != nil {
W
wenxu12345 已提交
2659
		return m.UserID
programor_guo's avatar
programor_guo 已提交
2660
	}
W
wenxu12345 已提交
2661
	return ""
programor_guo's avatar
programor_guo 已提交
2662 2663
}

2664
func init() {
W
wenxu12345 已提交
2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685
	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((*PullMessageReq)(nil), "server_api_params.PullMessageReq")
	proto.RegisterType((*PullMessageResp)(nil), "server_api_params.PullMessageResp")
	proto.RegisterType((*GetMaxAndMinSeqReq)(nil), "server_api_params.GetMaxAndMinSeqReq")
	proto.RegisterType((*GetMaxAndMinSeqResp)(nil), "server_api_params.GetMaxAndMinSeqResp")
	proto.RegisterType((*GatherFormat)(nil), "server_api_params.GatherFormat")
	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")
W
wenxu12345 已提交
2686
	proto.RegisterType((*GroupInfoSetTips)(nil), "server_api_params.GroupInfoSetTips")
W
wenxu12345 已提交
2687
	proto.RegisterType((*JoinGroupApplicationTips)(nil), "server_api_params.JoinGroupApplicationTips")
W
wenxu12345 已提交
2688 2689 2690 2691 2692 2693 2694
	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")
W
wenxu12345 已提交
2695 2696
	proto.RegisterType((*FriendApplication)(nil), "server_api_params.FriendApplication")
	proto.RegisterType((*FromToUserID)(nil), "server_api_params.FromToUserID")
W
wenxu12345 已提交
2697
	proto.RegisterType((*FriendApplicationTips)(nil), "server_api_params.FriendApplicationTips")
W
wenxu12345 已提交
2698 2699
	proto.RegisterType((*FriendApplicationApprovedTips)(nil), "server_api_params.FriendApplicationApprovedTips")
	proto.RegisterType((*FriendApplicationRejectedTips)(nil), "server_api_params.FriendApplicationRejectedTips")
W
wenxu12345 已提交
2700 2701 2702 2703 2704
	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")
W
wenxu12345 已提交
2705
	proto.RegisterType((*UserInfoUpdatedTips)(nil), "server_api_params.UserInfoUpdatedTips")
W
wenxu12345 已提交
2706 2707
}

W
wenxu12345 已提交
2708
func init() { proto.RegisterFile("sdk_ws/ws.proto", fileDescriptor_ws_44bd6efa690189ed) }
W
wenxu12345 已提交
2709

W
wenxu12345 已提交
2710 2711
var fileDescriptor_ws_44bd6efa690189ed = []byte{
	// 2010 bytes of a gzipped FileDescriptorProto
W
wenxu12345 已提交
2712
	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x59, 0x4f, 0x6f, 0x23, 0x49,
W
wenxu12345 已提交
2713 2714
	0x15, 0x57, 0x77, 0xc7, 0x8e, 0xfd, 0x6c, 0xc7, 0x99, 0x9e, 0x65, 0x30, 0xc3, 0xec, 0x10, 0x5a,
	0xab, 0x25, 0x42, 0x22, 0x48, 0x83, 0x90, 0x60, 0x10, 0xa0, 0xfc, 0x67, 0x96, 0x38, 0x09, 0x9d,
W
wenxu12345 已提交
2715
	0x8c, 0x96, 0x03, 0xd2, 0xa8, 0xe3, 0x2e, 0x3b, 0xbd, 0x69, 0x57, 0xb5, 0xab, 0xbb, 0x33, 0x33,
W
wenxu12345 已提交
2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837
	0x17, 0x0e, 0x70, 0xe1, 0x0b, 0xc0, 0x91, 0x03, 0x17, 0xc4, 0x05, 0x71, 0x41, 0x5c, 0x38, 0xf2,
	0x05, 0x38, 0xf3, 0x15, 0xb8, 0x72, 0x40, 0x42, 0x5a, 0x54, 0xaf, 0xaa, 0xbb, 0xab, 0xda, 0x4e,
	0xd6, 0x8a, 0xa2, 0x1d, 0x24, 0x6e, 0x7e, 0xbf, 0xae, 0xf7, 0xff, 0xd5, 0xab, 0x57, 0x65, 0xe8,
	0xa7, 0xe1, 0xd5, 0xab, 0xd7, 0xe9, 0x37, 0x5f, 0xa7, 0x5b, 0x09, 0x67, 0x19, 0x73, 0x1f, 0xa4,
	0x84, 0x5f, 0x13, 0xfe, 0x2a, 0x48, 0xa2, 0x57, 0x49, 0xc0, 0x83, 0x69, 0xea, 0xfd, 0xcb, 0x86,
	0xf6, 0x21, 0x67, 0x79, 0xf2, 0x82, 0x8e, 0x99, 0x3b, 0x80, 0xd5, 0x09, 0x12, 0x7b, 0x03, 0x6b,
	0xc3, 0xda, 0x6c, 0xfb, 0x05, 0xe9, 0x3e, 0x81, 0x36, 0xfe, 0x3c, 0x0e, 0xa6, 0x64, 0x60, 0xe3,
	0xb7, 0x0a, 0x70, 0x3d, 0xe8, 0x52, 0x96, 0x45, 0xe3, 0x68, 0x14, 0x64, 0x11, 0xa3, 0x03, 0x07,
	0x17, 0x18, 0x98, 0x58, 0x13, 0xd1, 0x8c, 0xb3, 0x30, 0x1f, 0xe1, 0x9a, 0x15, 0xb9, 0x46, 0xc7,
	0x84, 0xfe, 0x71, 0x30, 0x22, 0x2f, 0xfd, 0xa3, 0x41, 0x43, 0xea, 0x57, 0xa4, 0xbb, 0x01, 0x1d,
	0xf6, 0x9a, 0x12, 0xfe, 0x32, 0x25, 0xfc, 0xc5, 0xde, 0xa0, 0x89, 0x5f, 0x75, 0xc8, 0x7d, 0x0a,
	0x30, 0xe2, 0x24, 0xc8, 0xc8, 0x79, 0x34, 0x25, 0x83, 0xd5, 0x0d, 0x6b, 0xb3, 0xe7, 0x6b, 0x88,
	0x90, 0x30, 0x25, 0xd3, 0x0b, 0xc2, 0x77, 0x59, 0x4e, 0xb3, 0x41, 0x0b, 0x17, 0xe8, 0x90, 0xbb,
	0x06, 0x36, 0x79, 0x33, 0x68, 0xa3, 0x68, 0x9b, 0xbc, 0x71, 0x1f, 0x41, 0x33, 0xcd, 0x82, 0x2c,
	0x4f, 0x07, 0xb0, 0x61, 0x6d, 0x36, 0x7c, 0x45, 0xb9, 0x1f, 0x40, 0x0f, 0xe5, 0xb2, 0xc2, 0x9a,
	0x0e, 0xb2, 0x98, 0x60, 0x19, 0xb1, 0xf3, 0xb7, 0x09, 0x19, 0x74, 0x51, 0x40, 0x05, 0x78, 0x7f,
	0xb1, 0xe1, 0x21, 0xc6, 0x7d, 0x88, 0x06, 0x1c, 0xe4, 0x71, 0xfc, 0x19, 0x19, 0x78, 0x04, 0xcd,
	0x5c, 0xaa, 0x93, 0xe1, 0x57, 0x94, 0xd0, 0xc3, 0x59, 0x4c, 0x8e, 0xc8, 0x35, 0x89, 0x31, 0xf0,
	0x0d, 0xbf, 0x02, 0xdc, 0xc7, 0xd0, 0xfa, 0x84, 0x45, 0x14, 0x63, 0x22, 0x22, 0xee, 0xf8, 0x25,
	0x2d, 0xbe, 0xd1, 0x68, 0x74, 0x45, 0x45, 0x4a, 0x65, 0xb8, 0x4b, 0x5a, 0xcf, 0x44, 0xd3, 0xcc,
	0xc4, 0x87, 0xb0, 0x16, 0x24, 0xc9, 0x30, 0xa0, 0x13, 0xc2, 0xa5, 0xd2, 0x55, 0x54, 0x5a, 0x43,
	0x45, 0x3e, 0x84, 0xa6, 0x33, 0x96, 0xf3, 0x11, 0xc1, 0x70, 0x37, 0x7c, 0x0d, 0x11, 0x72, 0x58,
	0x42, 0xb8, 0x16, 0x46, 0x19, 0xf9, 0x1a, 0xaa, 0xb2, 0x02, 0x45, 0x56, 0xbc, 0xdf, 0x5a, 0xb0,
	0x76, 0x9a, 0x5f, 0xc4, 0xd1, 0x08, 0x17, 0x88, 0xa0, 0x55, 0xa1, 0xb1, 0x8c, 0xd0, 0xe8, 0x0e,
	0xda, 0x37, 0x3b, 0xe8, 0x98, 0x0e, 0x3e, 0x82, 0xe6, 0x84, 0xd0, 0x90, 0x70, 0x0c, 0x58, 0xc3,
	0x57, 0xd4, 0x02, 0xc7, 0x1b, 0x8b, 0x1c, 0xf7, 0x7e, 0x63, 0x43, 0xeb, 0x73, 0x36, 0x6d, 0x03,
	0x3a, 0xc9, 0x25, 0xa3, 0xe4, 0x38, 0x17, 0xc5, 0xa4, 0x92, 0xa9, 0x43, 0xee, 0x7b, 0xd0, 0xb8,
	0x88, 0x78, 0x76, 0x89, 0xd9, 0xec, 0xf9, 0x92, 0x10, 0x28, 0x99, 0x06, 0x91, 0x4c, 0x61, 0xdb,
	0x97, 0x84, 0x8a, 0x78, 0xab, 0xdc, 0x07, 0xe6, 0xce, 0x6a, 0xcf, 0xed, 0xac, 0xf9, 0xc0, 0xc0,
	0xc2, 0xc0, 0xfc, 0xdb, 0x02, 0x38, 0xe0, 0x11, 0xa1, 0x21, 0x86, 0xa6, 0xb6, 0xa5, 0xad, 0xf9,
	0x2d, 0xfd, 0x08, 0x9a, 0x9c, 0x4c, 0x03, 0x7e, 0x55, 0x94, 0xbc, 0xa4, 0x6a, 0x06, 0x39, 0x73,
	0x06, 0x7d, 0x0f, 0x60, 0x8c, 0x7a, 0x84, 0x1c, 0x0c, 0x55, 0xe7, 0xd9, 0x97, 0xb7, 0xe6, 0x9a,
	0xdf, 0x56, 0x91, 0x25, 0x5f, 0x5b, 0x2e, 0xf6, 0x53, 0x10, 0x86, 0xaa, 0x6c, 0x65, 0x86, 0x2b,
	0x60, 0x41, 0xd5, 0x36, 0x6f, 0xa9, 0xda, 0xd5, 0xb2, 0x6a, 0xff, 0x69, 0x41, 0x7b, 0x27, 0x0e,
	0x46, 0x57, 0x4b, 0xba, 0x6e, 0xba, 0x68, 0xcf, 0xb9, 0x78, 0x08, 0xbd, 0x0b, 0x21, 0xae, 0x70,
	0x01, 0xa3, 0xd0, 0x79, 0xf6, 0xd5, 0x05, 0x5e, 0x9a, 0x9b, 0xc5, 0x37, 0xf9, 0x4c, 0x77, 0x57,
	0x3e, 0xdb, 0xdd, 0xc6, 0x2d, 0xee, 0x36, 0x4b, 0x77, 0xff, 0x6e, 0x43, 0x17, 0xdb, 0x9b, 0x4f,
	0x66, 0x39, 0x49, 0x33, 0xf7, 0xfb, 0xd0, 0xca, 0x0b, 0x53, 0xad, 0x65, 0x4d, 0x2d, 0x59, 0xdc,
	0xe7, 0xaa, 0x99, 0x22, 0xbf, 0x8d, 0xfc, 0x4f, 0x16, 0xf0, 0x97, 0x27, 0x99, 0x5f, 0x2d, 0x17,
	0x07, 0xcf, 0x65, 0x40, 0xc3, 0x98, 0xf8, 0x24, 0xcd, 0xe3, 0x4c, 0xf5, 0x48, 0x03, 0x93, 0x95,
	0x36, 0x1b, 0xa6, 0x13, 0x75, 0x2c, 0x29, 0x4a, 0x44, 0x47, 0xae, 0x13, 0x9f, 0xa4, 0xeb, 0x15,
	0x20, 0x36, 0x2a, 0x27, 0x33, 0xcc, 0x90, 0xdc, 0x56, 0x05, 0x59, 0xe9, 0x54, 0x51, 0x93, 0x85,
	0x60, 0x60, 0x22, 0xc5, 0x92, 0x46, 0x01, 0xf2, 0x3c, 0xd2, 0x90, 0xfa, 0x71, 0xe4, 0xfd, 0xc3,
	0x81, 0x9e, 0xdc, 0x3e, 0x45, 0x50, 0x9f, 0x8a, 0x3a, 0x67, 0x53, 0xa3, 0x8a, 0x34, 0x44, 0x58,
	0x21, 0xa8, 0x63, 0xb3, 0xd1, 0x18, 0x98, 0x28, 0x45, 0x41, 0x1f, 0x18, 0x0d, 0x47, 0x87, 0x0a,
	0x2d, 0x87, 0x7a, 0xe3, 0xd1, 0x10, 0xd1, 0xca, 0x32, 0x66, 0x54, 0x47, 0x49, 0x0b, 0xde, 0x8c,
	0x95, 0xfa, 0x65, 0x7d, 0x68, 0x88, 0x88, 0x6f, 0xc6, 0x0a, 0xdd, 0x32, 0x48, 0x15, 0x20, 0x25,
	0x2b, 0xbd, 0xf2, 0x00, 0x29, 0xe9, 0xb9, 0xac, 0xb6, 0x6f, 0xcd, 0x2a, 0x18, 0x59, 0x35, 0x37,
	0x57, 0x67, 0x6e, 0x73, 0x7d, 0x00, 0x3d, 0x29, 0xa7, 0x28, 0xfa, 0xae, 0x3c, 0xe0, 0x0d, 0xd0,
	0xac, 0x8d, 0x5e, 0xbd, 0x36, 0xcc, 0xec, 0xae, 0xdd, 0x90, 0xdd, 0x7e, 0x99, 0xdd, 0x5f, 0xd9,
	0x30, 0x38, 0xcd, 0xe3, 0x78, 0x48, 0xd2, 0x34, 0x98, 0x90, 0x9d, 0xb7, 0x67, 0x64, 0x76, 0x14,
	0xa5, 0x99, 0x4f, 0xd2, 0x44, 0x14, 0x1a, 0xe1, 0x7c, 0x97, 0x85, 0x04, 0xb3, 0xdc, 0xf0, 0x0b,
	0x52, 0xb8, 0x48, 0x38, 0x17, 0x16, 0xa8, 0x16, 0x29, 0x29, 0x81, 0x4f, 0x83, 0x37, 0x67, 0x64,
	0x86, 0x19, 0x75, 0x7c, 0x45, 0x21, 0x1e, 0x51, 0x81, 0xaf, 0x28, 0x1c, 0x29, 0x77, 0x1f, 0x7a,
	0x69, 0x44, 0x27, 0xb2, 0x38, 0x65, 0xb1, 0x3b, 0x9b, 0x9d, 0x67, 0x5f, 0x59, 0xb4, 0xc9, 0x82,
	0xec, 0x92, 0xf0, 0x03, 0xc6, 0xa7, 0x41, 0xe6, 0x9b, 0x5c, 0xee, 0x2e, 0x74, 0x71, 0xe3, 0x15,
	0x52, 0x9a, 0xcb, 0x49, 0x31, 0x98, 0xbc, 0x29, 0x7c, 0x71, 0x71, 0x24, 0x66, 0x37, 0x1e, 0xa7,
	0xa2, 0xa1, 0x62, 0x47, 0x8a, 0x18, 0x2d, 0x27, 0x24, 0x1d, 0x12, 0x21, 0x4c, 0xa5, 0x9c, 0x81,
	0xb3, 0xe1, 0x6c, 0x3a, 0x7e, 0x41, 0x7a, 0x3f, 0x17, 0xf3, 0x44, 0xa9, 0xee, 0x36, 0x2d, 0x8f,
	0xa1, 0x95, 0x92, 0xd9, 0x0e, 0x99, 0x44, 0x14, 0x55, 0x38, 0x7e, 0x49, 0xe3, 0xb0, 0x48, 0x66,
	0xfb, 0x34, 0x2c, 0x02, 0x2e, 0xa9, 0xba, 0x65, 0x2b, 0x73, 0x96, 0x79, 0x9f, 0x5a, 0xd0, 0x37,
	0x0c, 0xf8, 0xbf, 0x4b, 0xf8, 0x7b, 0xe0, 0x1e, 0x92, 0x6c, 0x18, 0xbc, 0xd9, 0xa6, 0xe1, 0x10,
	0xcd, 0xf3, 0xc9, 0xcc, 0xdb, 0x87, 0x87, 0x73, 0x68, 0x9a, 0x68, 0x8e, 0x5a, 0x37, 0x38, 0x6a,
	0xeb, 0x8e, 0x7a, 0xc7, 0xd0, 0xd5, 0x55, 0x8b, 0x8d, 0x17, 0x85, 0x2a, 0xb1, 0x76, 0x14, 0xba,
	0x5b, 0xb0, 0x12, 0x8b, 0xaa, 0xb0, 0xd1, 0xf2, 0xc7, 0x0b, 0x2c, 0x1f, 0xa6, 0x93, 0xbd, 0x20,
	0x0b, 0x7c, 0x5c, 0xe7, 0xcd, 0xa0, 0x2f, 0xec, 0x3e, 0x23, 0x34, 0x1c, 0xa6, 0x13, 0x34, 0x69,
	0x03, 0x3a, 0x92, 0x6b, 0x98, 0x4e, 0xaa, 0xe3, 0x5c, 0x83, 0xc4, 0x8a, 0x51, 0x1c, 0x11, 0x9a,
	0xc9, 0x15, 0xaa, 0x3e, 0x35, 0x48, 0xd6, 0x16, 0x0d, 0xcb, 0x89, 0x06, 0x6b, 0x4b, 0xd2, 0xde,
	0x5f, 0x1b, 0xb0, 0xaa, 0x8c, 0x90, 0x75, 0x46, 0xc3, 0xaa, 0x36, 0x25, 0x25, 0x7b, 0xdd, 0xe8,
	0xba, 0xba, 0x1e, 0x48, 0x4a, 0xbf, 0x50, 0x38, 0xe6, 0x85, 0xa2, 0x66, 0xd3, 0xca, 0xbc, 0x4d,
	0x35, 0xbf, 0x1a, 0xf3, 0x7e, 0x7d, 0x1d, 0xd6, 0x53, 0xec, 0xc7, 0xa7, 0x71, 0x90, 0x8d, 0x19,
	0x9f, 0xaa, 0x81, 0xa8, 0xe1, 0xcf, 0xe1, 0x62, 0x96, 0x90, 0x58, 0x79, 0x1e, 0xc8, 0x86, 0x5f,
	0x43, 0x45, 0xf7, 0x95, 0x48, 0x71, 0x2e, 0xc8, 0x49, 0xd4, 0x04, 0xa5, 0x6d, 0x69, 0x1a, 0x31,
	0x8a, 0x17, 0x2c, 0xd9, 0xfe, 0x75, 0x48, 0x78, 0x3e, 0x4d, 0x27, 0x07, 0x9c, 0x4d, 0xd5, 0x3c,
	0x5a, 0x90, 0xe8, 0x39, 0xa3, 0x19, 0xa1, 0x19, 0xf2, 0x76, 0x24, 0xaf, 0x06, 0x09, 0x5e, 0x45,
	0x62, 0xef, 0xef, 0xfa, 0x05, 0xe9, 0xae, 0x83, 0x93, 0x92, 0x19, 0x36, 0x74, 0xc7, 0x17, 0x3f,
	0x8d, 0xcc, 0xf5, 0xcd, 0xcc, 0xd5, 0x4e, 0x9a, 0x75, 0xfc, 0xaa, 0x9f, 0x34, 0xd5, 0x15, 0xf3,
	0x81, 0x71, 0xc5, 0xdc, 0x86, 0x55, 0x96, 0x88, 0xfe, 0x90, 0x0e, 0x5c, 0xac, 0xcb, 0xaf, 0xdd,
	0x5c, 0x97, 0x5b, 0x27, 0x72, 0xe5, 0x3e, 0xcd, 0xf8, 0x5b, 0xbf, 0xe0, 0x73, 0x8f, 0xa0, 0xcf,
	0xc6, 0xe3, 0x38, 0xa2, 0xe4, 0x34, 0x4f, 0x2f, 0x71, 0x70, 0x7a, 0x88, 0x83, 0x93, 0xb7, 0x40,
	0xd4, 0x89, 0xb9, 0xd2, 0xaf, 0xb3, 0x3e, 0x7e, 0x0e, 0x5d, 0x5d, 0x8d, 0x08, 0xc3, 0x15, 0x79,
	0xab, 0x6a, 0x50, 0xfc, 0x14, 0x77, 0x89, 0xeb, 0x20, 0xce, 0xe5, 0x94, 0xd1, 0xf2, 0x25, 0xf1,
	0xdc, 0xfe, 0x8e, 0xe5, 0xfd, 0xda, 0x82, 0x7e, 0x4d, 0x81, 0x58, 0x9d, 0x45, 0x59, 0x4c, 0x94,
	0x04, 0x49, 0xb8, 0x2e, 0xac, 0x84, 0x24, 0x1d, 0xa9, 0x12, 0xc6, 0xdf, 0xea, 0xa0, 0x74, 0xca,
	0xdb, 0x88, 0x07, 0xdd, 0xe8, 0xe4, 0x4c, 0x08, 0x3a, 0x63, 0x39, 0x0d, 0xcb, 0x77, 0x04, 0x0d,
	0x13, 0x25, 0x14, 0x9d, 0x9c, 0xed, 0x04, 0xe1, 0x84, 0xc8, 0xdb, 0x7e, 0x03, 0x6d, 0x32, 0x41,
	0x6f, 0x0f, 0x5a, 0xe7, 0x51, 0x92, 0xee, 0xb2, 0xe9, 0x54, 0x24, 0x22, 0x24, 0x99, 0xb8, 0x0a,
	0x59, 0x98, 0x6f, 0x45, 0x89, 0x52, 0x09, 0xc9, 0x38, 0xc8, 0xe3, 0x4c, 0x2c, 0x2d, 0x36, 0xae,
	0x06, 0x79, 0x7f, 0xb3, 0x61, 0x1d, 0xe7, 0xce, 0x5d, 0x4c, 0x6b, 0x28, 0x40, 0xf7, 0x19, 0x34,
	0x70, 0x9b, 0xa9, 0x59, 0xf7, 0xf6, 0x59, 0x55, 0x2e, 0x75, 0x7f, 0x00, 0x4d, 0x86, 0x2d, 0x51,
	0x0d, 0xb8, 0x1f, 0xde, 0xc4, 0x64, 0x3e, 0x19, 0xf8, 0x8a, 0xcb, 0x3d, 0x00, 0x90, 0xaf, 0x19,
	0xe5, 0x21, 0xb7, 0xbc, 0x0c, 0x8d, 0x53, 0x04, 0xaf, 0x3c, 0x9e, 0xb4, 0x77, 0x03, 0x13, 0x74,
	0x8f, 0x61, 0x0d, 0xcd, 0x3e, 0x29, 0x2e, 0x2d, 0x18, 0xe3, 0xe5, 0x35, 0xd6, 0xb8, 0xbd, 0xdf,
	0x59, 0x2a, 0x8c, 0xe2, 0xeb, 0x19, 0xc1, 0xd8, 0x6a, 0x21, 0xb1, 0xee, 0x14, 0x92, 0xc7, 0xd0,
	0x9a, 0xe6, 0xda, 0x1d, 0xca, 0xf1, 0x4b, 0xba, 0x4a, 0x91, 0xb3, 0x74, 0x8a, 0xbc, 0xdf, 0x5b,
	0x30, 0xf8, 0x88, 0x45, 0x14, 0x3f, 0x6c, 0x27, 0x49, 0xac, 0x1e, 0xb7, 0xee, 0x9c, 0xf3, 0x1f,
	0x42, 0x3b, 0x90, 0x62, 0x68, 0xa6, 0xd2, 0xbe, 0xc4, 0xbd, 0xa8, 0xe2, 0xd1, 0x46, 0x5c, 0x47,
	0x1f, 0x71, 0xbd, 0x3f, 0x5a, 0xb0, 0x26, 0x83, 0xf2, 0x93, 0x3c, 0xca, 0xee, 0x6c, 0xdf, 0x0e,
	0xb4, 0x66, 0x79, 0x94, 0xdd, 0xa1, 0x2a, 0x4b, 0xbe, 0xf9, 0x7a, 0x72, 0x16, 0xd4, 0x93, 0xf7,
	0x27, 0x0b, 0x9e, 0xd4, 0xc3, 0xba, 0x3d, 0x1a, 0x91, 0xe4, 0x5d, 0x6e, 0x29, 0x63, 0xc4, 0x5f,
	0xa9, 0x8d, 0xf8, 0x0b, 0x4d, 0xf6, 0xc9, 0x27, 0x64, 0xf4, 0xbf, 0x6b, 0xf2, 0x2f, 0x6d, 0xf8,
	0xd2, 0x61, 0xb9, 0xf1, 0xce, 0x79, 0x40, 0xd3, 0x31, 0xe1, 0xfc, 0x1d, 0xda, 0x7b, 0x04, 0x3d,
	0x4a, 0x5e, 0x57, 0x36, 0xa9, 0xed, 0xb8, 0xac, 0x18, 0x93, 0x79, 0xb9, 0xde, 0xe5, 0xfd, 0xc7,
	0x82, 0x75, 0x29, 0xe7, 0xc7, 0xd1, 0xe8, 0xea, 0x1d, 0x3a, 0x7f, 0x0c, 0x6b, 0x57, 0x68, 0x81,
	0xa0, 0xee, 0xd0, 0xb6, 0x6b, 0xdc, 0x4b, 0xba, 0xff, 0xa9, 0x05, 0x0f, 0xa4, 0xa0, 0x17, 0xf4,
	0x3a, 0x7a, 0x97, 0xc5, 0x7a, 0x0a, 0xfd, 0x48, 0x9a, 0x70, 0xc7, 0x00, 0xd4, 0xd9, 0x97, 0x8c,
	0xc0, 0x9f, 0x2d, 0xe8, 0x4b, 0x49, 0xfb, 0x34, 0x23, 0xfc, 0xce, 0xfe, 0xff, 0x08, 0x3a, 0x84,
	0x66, 0x3c, 0xa0, 0x77, 0xe9, 0x90, 0x3a, 0xeb, 0x92, 0x4d, 0xf2, 0x0a, 0x1e, 0xc8, 0x17, 0x20,
	0xad, 0xe3, 0x88, 0x59, 0x35, 0x08, 0xe5, 0xf8, 0x29, 0x6f, 0x44, 0x05, 0x69, 0xbe, 0xed, 0xa9,
	0x3f, 0x6d, 0xaa, 0xb7, 0xbd, 0xa7, 0x00, 0x41, 0x18, 0x7e, 0xcc, 0x78, 0x18, 0xd1, 0xe2, 0xf8,
	0xd0, 0x10, 0xef, 0x23, 0xe8, 0x8a, 0x69, 0xf9, 0x5c, 0x7b, 0xcb, 0xb9, 0xf5, 0xb5, 0x49, 0x7f,
	0x07, 0xb2, 0xcd, 0x77, 0x20, 0xef, 0x67, 0xf0, 0x85, 0x39, 0xc3, 0x31, 0xea, 0xbb, 0xf2, 0x89,
	0xaa, 0x50, 0xa2, 0x82, 0xbf, 0xe8, 0xfe, 0xa8, 0xdb, 0xe2, 0x1b, 0x4c, 0xde, 0x2f, 0x2c, 0x78,
	0x7f, 0x4e, 0xfc, 0x76, 0x92, 0x70, 0x76, 0xad, 0x8a, 0xfb, 0x3e, 0xd4, 0x98, 0xad, 0xd5, 0xae,
	0xb7, 0xd6, 0x85, 0x46, 0x18, 0xc7, 0xc1, 0xe7, 0x60, 0xc4, 0x1f, 0x2c, 0xe8, 0x2b, 0x23, 0xc2,
	0x50, 0xa9, 0xfd, 0x36, 0x34, 0xe5, 0xf3, 0xb6, 0x52, 0xf8, 0xfe, 0x42, 0x85, 0xc5, 0xb3, 0xbc,
	0xaf, 0x16, 0xcf, 0x57, 0xa4, 0xbd, 0x68, 0x0c, 0xfc, 0x6e, 0xd9, 0x01, 0x96, 0x7e, 0x80, 0x56,
	0x0c, 0xde, 0x4f, 0x8b, 0x62, 0xde, 0x23, 0x31, 0xb9, 0xcf, 0x18, 0x79, 0x2f, 0x61, 0x0d, 0xdf,
	0xda, 0xab, 0x18, 0xdc, 0x8b, 0xd8, 0x8f, 0x61, 0x1d, 0xc5, 0xde, 0xbb, 0xbd, 0xe5, 0xee, 0x10,
	0xf1, 0xd9, 0xbd, 0x0c, 0xe8, 0xe4, 0x3e, 0xa5, 0x7f, 0x03, 0x1e, 0x16, 0xb1, 0x7f, 0x99, 0x84,
	0xe5, 0x15, 0xe5, 0x86, 0x47, 0xae, 0x8b, 0x26, 0xfe, 0x57, 0xfc, 0xad, 0xff, 0x06, 0x00, 0x00,
	0xff, 0xff, 0xaf, 0x96, 0xca, 0x38, 0x3e, 0x1e, 0x00, 0x00,
2838
}