ws.pb.go 91.4 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 open_im_sdk
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) {
programor_guo's avatar
programor_guo 已提交
43
	return fileDescriptor_ws_f46b8824c5dbc584, []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) {
programor_guo's avatar
programor_guo 已提交
167
	return fileDescriptor_ws_f46b8824c5dbc584, []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) {
programor_guo's avatar
programor_guo 已提交
272
	return fileDescriptor_ws_f46b8824c5dbc584, []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) {
programor_guo's avatar
programor_guo 已提交
347
	return fileDescriptor_ws_f46b8824c5dbc584, []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) {
programor_guo's avatar
programor_guo 已提交
454
	return fileDescriptor_ws_f46b8824c5dbc584, []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) {
programor_guo's avatar
programor_guo 已提交
539
	return fileDescriptor_ws_f46b8824c5dbc584, []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 {
programor_guo's avatar
programor_guo 已提交
602 603 604 605 606 607 608 609 610
	UserID               string   `protobuf:"bytes,1,opt,name=userID" json:"userID,omitempty"`
	GroupID              string   `protobuf:"bytes,2,opt,name=groupID" json:"groupID,omitempty"`
	HandleResult         string   `protobuf:"bytes,3,opt,name=handleResult" json:"handleResult,omitempty"`
	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"`
W
wenxu12345 已提交
611 612 613 614 615 616 617 618 619
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

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

func (m *GroupRequest) GetUserID() string {
641
	if m != nil {
W
wenxu12345 已提交
642
		return m.UserID
643
	}
W
wenxu12345 已提交
644
	return ""
645 646
}

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

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

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 705 706 707 708 709 710 711 712
	FromUserID           string   `protobuf:"bytes,1,opt,name=fromUserID" json:"fromUserID,omitempty"`
	ToUserID             string   `protobuf:"bytes,2,opt,name=toUserID" json:"toUserID,omitempty"`
	HandleResult         int32    `protobuf:"varint,3,opt,name=handleResult" json:"handleResult,omitempty"`
	ReqMsg               string   `protobuf:"bytes,4,opt,name=reqMsg" json:"reqMsg,omitempty"`
	CreateTime           uint32   `protobuf:"varint,5,opt,name=createTime" json:"createTime,omitempty"`
	HandlerUserID        string   `protobuf:"bytes,6,opt,name=handlerUserID" json:"handlerUserID,omitempty"`
	HandleMsg            string   `protobuf:"bytes,7,opt,name=handleMsg" json:"handleMsg,omitempty"`
	HandleTime           uint32   `protobuf:"varint,8,opt,name=handleTime" json:"handleTime,omitempty"`
	Ex                   string   `protobuf:"bytes,9,opt,name=ex" json:"ex,omitempty"`
W
wenxu12345 已提交
713 714 715 716 717
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

W
wenxu12345 已提交
718 719 720 721
func (m *FriendRequest) Reset()         { *m = FriendRequest{} }
func (m *FriendRequest) String() string { return proto.CompactTextString(m) }
func (*FriendRequest) ProtoMessage()    {}
func (*FriendRequest) Descriptor() ([]byte, []int) {
programor_guo's avatar
programor_guo 已提交
722
	return fileDescriptor_ws_f46b8824c5dbc584, []int{7}
W
wenxu12345 已提交
723
}
W
wenxu12345 已提交
724 725
func (m *FriendRequest) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_FriendRequest.Unmarshal(m, b)
W
wenxu12345 已提交
726
}
W
wenxu12345 已提交
727 728
func (m *FriendRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_FriendRequest.Marshal(b, m, deterministic)
W
wenxu12345 已提交
729
}
W
wenxu12345 已提交
730 731
func (dst *FriendRequest) XXX_Merge(src proto.Message) {
	xxx_messageInfo_FriendRequest.Merge(dst, src)
W
wenxu12345 已提交
732
}
W
wenxu12345 已提交
733 734
func (m *FriendRequest) XXX_Size() int {
	return xxx_messageInfo_FriendRequest.Size(m)
W
wenxu12345 已提交
735
}
W
wenxu12345 已提交
736 737
func (m *FriendRequest) XXX_DiscardUnknown() {
	xxx_messageInfo_FriendRequest.DiscardUnknown(m)
W
wenxu12345 已提交
738 739
}

W
wenxu12345 已提交
740
var xxx_messageInfo_FriendRequest proto.InternalMessageInfo
W
wenxu12345 已提交
741

W
wenxu12345 已提交
742
func (m *FriendRequest) GetFromUserID() string {
W
wenxu12345 已提交
743
	if m != nil {
W
wenxu12345 已提交
744
		return m.FromUserID
W
wenxu12345 已提交
745 746 747 748
	}
	return ""
}

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

W
wenxu12345 已提交
756
func (m *FriendRequest) GetHandleResult() int32 {
W
wenxu12345 已提交
757
	if m != nil {
W
wenxu12345 已提交
758
		return m.HandleResult
W
wenxu12345 已提交
759
	}
W
wenxu12345 已提交
760
	return 0
W
wenxu12345 已提交
761 762
}

W
wenxu12345 已提交
763
func (m *FriendRequest) GetReqMsg() string {
W
wenxu12345 已提交
764
	if m != nil {
W
wenxu12345 已提交
765
		return m.ReqMsg
W
wenxu12345 已提交
766 767 768 769
	}
	return ""
}

W
wenxu12345 已提交
770
func (m *FriendRequest) GetCreateTime() uint32 {
W
wenxu12345 已提交
771
	if m != nil {
W
wenxu12345 已提交
772
		return m.CreateTime
W
wenxu12345 已提交
773
	}
W
wenxu12345 已提交
774
	return 0
W
pb  
wenxu12345 已提交
775 776
}

W
wenxu12345 已提交
777 778 779 780 781
func (m *FriendRequest) GetHandlerUserID() string {
	if m != nil {
		return m.HandlerUserID
	}
	return ""
W
pb  
wenxu12345 已提交
782 783
}

W
wenxu12345 已提交
784
func (m *FriendRequest) GetHandleMsg() string {
W
pb  
wenxu12345 已提交
785
	if m != nil {
W
wenxu12345 已提交
786
		return m.HandleMsg
W
pb  
wenxu12345 已提交
787 788 789 790
	}
	return ""
}

W
wenxu12345 已提交
791
func (m *FriendRequest) GetHandleTime() uint32 {
W
pb  
wenxu12345 已提交
792
	if m != nil {
W
wenxu12345 已提交
793
		return m.HandleTime
W
pb  
wenxu12345 已提交
794
	}
W
wenxu12345 已提交
795
	return 0
W
pb  
wenxu12345 已提交
796 797
}

W
wenxu12345 已提交
798
func (m *FriendRequest) GetEx() string {
W
pb  
wenxu12345 已提交
799
	if m != nil {
W
wenxu12345 已提交
800
		return m.Ex
W
pb  
wenxu12345 已提交
801 802 803 804
	}
	return ""
}

W
wenxu12345 已提交
805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820
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) {
programor_guo's avatar
programor_guo 已提交
821
	return fileDescriptor_ws_f46b8824c5dbc584, []int{8}
W
wenxu12345 已提交
822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841
}
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 已提交
842
	if m != nil {
W
wenxu12345 已提交
843
		return m.ErrCode
W
pb  
wenxu12345 已提交
844
	}
W
wenxu12345 已提交
845
	return 0
W
pb  
wenxu12345 已提交
846 847
}

W
wenxu12345 已提交
848
func (m *PullMessageBySeqListResp) GetErrMsg() string {
W
pb  
wenxu12345 已提交
849
	if m != nil {
W
wenxu12345 已提交
850
		return m.ErrMsg
W
pb  
wenxu12345 已提交
851 852 853 854
	}
	return ""
}

W
wenxu12345 已提交
855
func (m *PullMessageBySeqListResp) GetMaxSeq() int64 {
W
wenxu12345 已提交
856
	if m != nil {
W
wenxu12345 已提交
857
		return m.MaxSeq
W
wenxu12345 已提交
858
	}
W
wenxu12345 已提交
859
	return 0
W
wenxu12345 已提交
860 861
}

W
wenxu12345 已提交
862
func (m *PullMessageBySeqListResp) GetMinSeq() int64 {
W
wenxu12345 已提交
863
	if m != nil {
W
wenxu12345 已提交
864
		return m.MinSeq
W
wenxu12345 已提交
865 866 867 868
	}
	return 0
}

W
wenxu12345 已提交
869
func (m *PullMessageBySeqListResp) GetSingleUserMsg() []*GatherFormat {
W
wenxu12345 已提交
870
	if m != nil {
W
wenxu12345 已提交
871
		return m.SingleUserMsg
W
wenxu12345 已提交
872
	}
W
wenxu12345 已提交
873
	return nil
W
wenxu12345 已提交
874 875
}

W
wenxu12345 已提交
876
func (m *PullMessageBySeqListResp) GetGroupUserMsg() []*GatherFormat {
programor_guo's avatar
programor_guo 已提交
877
	if m != nil {
W
wenxu12345 已提交
878
		return m.GroupUserMsg
programor_guo's avatar
programor_guo 已提交
879
	}
W
wenxu12345 已提交
880
	return nil
programor_guo's avatar
programor_guo 已提交
881 882
}

W
wenxu12345 已提交
883 884 885 886
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 已提交
887 888 889 890 891
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

W
wenxu12345 已提交
892 893 894 895
func (m *PullMessageBySeqListReq) Reset()         { *m = PullMessageBySeqListReq{} }
func (m *PullMessageBySeqListReq) String() string { return proto.CompactTextString(m) }
func (*PullMessageBySeqListReq) ProtoMessage()    {}
func (*PullMessageBySeqListReq) Descriptor() ([]byte, []int) {
programor_guo's avatar
programor_guo 已提交
896
	return fileDescriptor_ws_f46b8824c5dbc584, []int{9}
W
wenxu12345 已提交
897
}
W
wenxu12345 已提交
898 899
func (m *PullMessageBySeqListReq) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_PullMessageBySeqListReq.Unmarshal(m, b)
W
wenxu12345 已提交
900
}
W
wenxu12345 已提交
901 902
func (m *PullMessageBySeqListReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_PullMessageBySeqListReq.Marshal(b, m, deterministic)
W
wenxu12345 已提交
903
}
W
wenxu12345 已提交
904 905
func (dst *PullMessageBySeqListReq) XXX_Merge(src proto.Message) {
	xxx_messageInfo_PullMessageBySeqListReq.Merge(dst, src)
W
wenxu12345 已提交
906
}
W
wenxu12345 已提交
907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950
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) {
programor_guo's avatar
programor_guo 已提交
951
	return fileDescriptor_ws_f46b8824c5dbc584, []int{10}
W
wenxu12345 已提交
952 953 954 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 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014
}
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) {
programor_guo's avatar
programor_guo 已提交
1015
	return fileDescriptor_ws_f46b8824c5dbc584, []int{11}
W
wenxu12345 已提交
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 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086
}
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) {
programor_guo's avatar
programor_guo 已提交
1087
	return fileDescriptor_ws_f46b8824c5dbc584, []int{12}
W
wenxu12345 已提交
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
}
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) {
programor_guo's avatar
programor_guo 已提交
1119
	return fileDescriptor_ws_f46b8824c5dbc584, []int{13}
W
wenxu12345 已提交
1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 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 *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) {
programor_guo's avatar
programor_guo 已提交
1167
	return fileDescriptor_ws_f46b8824c5dbc584, []int{14}
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
}
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 已提交
1202 1203
	ServerMsgID          string   `protobuf:"bytes,1,opt,name=serverMsgID" json:"serverMsgID,omitempty"`
	ClientMsgID          string   `protobuf:"bytes,2,opt,name=clientMsgID" json:"clientMsgID,omitempty"`
W
wenxu12345 已提交
1204 1205 1206 1207 1208 1209 1210 1211 1212 1213
	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) {
programor_guo's avatar
programor_guo 已提交
1214
	return fileDescriptor_ws_f46b8824c5dbc584, []int{15}
W
wenxu12345 已提交
1215 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 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271
}
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"`
	ForceList            []string         `protobuf:"bytes,13,rep,name=forceList" json:"forceList,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"`
programor_guo's avatar
programor_guo 已提交
1272
	Options              map[string]bool  `protobuf:"bytes,17,rep,name=options" json:"options,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
W
wenxu12345 已提交
1273 1274 1275 1276 1277 1278 1279 1280 1281 1282
	OfflinePushInfo      *OfflinePushInfo `protobuf:"bytes,18,opt,name=offlinePushInfo" json:"offlinePushInfo,omitempty"`
	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) {
programor_guo's avatar
programor_guo 已提交
1283
	return fileDescriptor_ws_f46b8824c5dbc584, []int{16}
W
wenxu12345 已提交
1284 1285 1286 1287 1288 1289 1290 1291 1292
}
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 已提交
1293
}
W
wenxu12345 已提交
1294 1295 1296 1297 1298
func (m *MsgData) XXX_Size() int {
	return xxx_messageInfo_MsgData.Size(m)
}
func (m *MsgData) XXX_DiscardUnknown() {
	xxx_messageInfo_MsgData.DiscardUnknown(m)
W
wenxu12345 已提交
1299 1300
}

W
wenxu12345 已提交
1301
var xxx_messageInfo_MsgData proto.InternalMessageInfo
W
wenxu12345 已提交
1302

W
wenxu12345 已提交
1303
func (m *MsgData) GetSendID() string {
W
pb  
wenxu12345 已提交
1304
	if m != nil {
W
wenxu12345 已提交
1305
		return m.SendID
W
pb  
wenxu12345 已提交
1306 1307 1308 1309
	}
	return ""
}

W
wenxu12345 已提交
1310
func (m *MsgData) GetRecvID() string {
W
pb  
wenxu12345 已提交
1311
	if m != nil {
W
wenxu12345 已提交
1312
		return m.RecvID
W
pb  
wenxu12345 已提交
1313 1314 1315 1316
	}
	return ""
}

W
wenxu12345 已提交
1317
func (m *MsgData) GetGroupID() string {
W
pb  
wenxu12345 已提交
1318
	if m != nil {
W
wenxu12345 已提交
1319
		return m.GroupID
W
pb  
wenxu12345 已提交
1320
	}
W
wenxu12345 已提交
1321
	return ""
W
pb  
wenxu12345 已提交
1322 1323
}

W
wenxu12345 已提交
1324
func (m *MsgData) GetClientMsgID() string {
W
pb  
wenxu12345 已提交
1325
	if m != nil {
W
wenxu12345 已提交
1326
		return m.ClientMsgID
W
pb  
wenxu12345 已提交
1327
	}
W
wenxu12345 已提交
1328
	return ""
W
pb  
wenxu12345 已提交
1329 1330
}

W
wenxu12345 已提交
1331
func (m *MsgData) GetServerMsgID() string {
W
wenxu12345 已提交
1332
	if m != nil {
W
wenxu12345 已提交
1333
		return m.ServerMsgID
W
wenxu12345 已提交
1334 1335 1336 1337
	}
	return ""
}

W
wenxu12345 已提交
1338
func (m *MsgData) GetSenderPlatformID() int32 {
W
wenxu12345 已提交
1339
	if m != nil {
W
wenxu12345 已提交
1340
		return m.SenderPlatformID
W
wenxu12345 已提交
1341
	}
W
wenxu12345 已提交
1342
	return 0
W
wenxu12345 已提交
1343 1344
}

W
wenxu12345 已提交
1345
func (m *MsgData) GetSenderNickname() string {
W
wenxu12345 已提交
1346
	if m != nil {
W
wenxu12345 已提交
1347
		return m.SenderNickname
W
wenxu12345 已提交
1348 1349 1350 1351
	}
	return ""
}

W
wenxu12345 已提交
1352
func (m *MsgData) GetSenderFaceURL() string {
W
wenxu12345 已提交
1353
	if m != nil {
W
wenxu12345 已提交
1354
		return m.SenderFaceURL
W
wenxu12345 已提交
1355
	}
W
wenxu12345 已提交
1356
	return ""
W
wenxu12345 已提交
1357 1358
}

W
wenxu12345 已提交
1359 1360 1361 1362 1363
func (m *MsgData) GetSessionType() int32 {
	if m != nil {
		return m.SessionType
	}
	return 0
W
pb  
wenxu12345 已提交
1364 1365
}

W
wenxu12345 已提交
1366 1367 1368 1369 1370
func (m *MsgData) GetMsgFrom() int32 {
	if m != nil {
		return m.MsgFrom
	}
	return 0
W
pb  
wenxu12345 已提交
1371 1372
}

W
wenxu12345 已提交
1373
func (m *MsgData) GetContentType() int32 {
W
pb  
wenxu12345 已提交
1374
	if m != nil {
W
wenxu12345 已提交
1375
		return m.ContentType
W
pb  
wenxu12345 已提交
1376
	}
W
wenxu12345 已提交
1377
	return 0
W
pb  
wenxu12345 已提交
1378 1379
}

W
wenxu12345 已提交
1380
func (m *MsgData) GetContent() []byte {
W
pb  
wenxu12345 已提交
1381
	if m != nil {
W
wenxu12345 已提交
1382
		return m.Content
W
pb  
wenxu12345 已提交
1383
	}
W
wenxu12345 已提交
1384
	return nil
W
pb  
wenxu12345 已提交
1385 1386
}

W
wenxu12345 已提交
1387
func (m *MsgData) GetForceList() []string {
W
pb  
wenxu12345 已提交
1388
	if m != nil {
W
wenxu12345 已提交
1389
		return m.ForceList
W
pb  
wenxu12345 已提交
1390
	}
W
wenxu12345 已提交
1391
	return nil
W
pb  
wenxu12345 已提交
1392 1393
}

W
wenxu12345 已提交
1394
func (m *MsgData) GetSeq() int64 {
W
pb  
wenxu12345 已提交
1395
	if m != nil {
W
wenxu12345 已提交
1396
		return m.Seq
W
pb  
wenxu12345 已提交
1397 1398 1399 1400
	}
	return 0
}

W
wenxu12345 已提交
1401
func (m *MsgData) GetSendTime() int64 {
W
pb  
wenxu12345 已提交
1402
	if m != nil {
W
wenxu12345 已提交
1403
		return m.SendTime
W
pb  
wenxu12345 已提交
1404
	}
W
wenxu12345 已提交
1405
	return 0
W
pb  
wenxu12345 已提交
1406 1407
}

W
wenxu12345 已提交
1408
func (m *MsgData) GetCreateTime() int64 {
W
pb  
wenxu12345 已提交
1409
	if m != nil {
W
wenxu12345 已提交
1410
		return m.CreateTime
W
pb  
wenxu12345 已提交
1411
	}
W
wenxu12345 已提交
1412
	return 0
W
pb  
wenxu12345 已提交
1413 1414
}

W
wenxu12345 已提交
1415
func (m *MsgData) GetOptions() map[string]bool {
W
pb  
wenxu12345 已提交
1416
	if m != nil {
W
wenxu12345 已提交
1417
		return m.Options
W
pb  
wenxu12345 已提交
1418
	}
W
wenxu12345 已提交
1419
	return nil
W
pb  
wenxu12345 已提交
1420 1421
}

W
wenxu12345 已提交
1422
func (m *MsgData) GetOfflinePushInfo() *OfflinePushInfo {
programor_guo's avatar
programor_guo 已提交
1423
	if m != nil {
W
wenxu12345 已提交
1424
		return m.OfflinePushInfo
programor_guo's avatar
programor_guo 已提交
1425
	}
W
wenxu12345 已提交
1426
	return nil
programor_guo's avatar
programor_guo 已提交
1427 1428
}

W
wenxu12345 已提交
1429
type OfflinePushInfo struct {
programor_guo's avatar
programor_guo 已提交
1430 1431 1432
	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 已提交
1433 1434
	IOSPushSound         string   `protobuf:"bytes,4,opt,name=iOSPushSound" json:"iOSPushSound,omitempty"`
	IOSBadgeCount        bool     `protobuf:"varint,5,opt,name=iOSBadgeCount" json:"iOSBadgeCount,omitempty"`
W
wenxu12345 已提交
1435 1436 1437 1438 1439
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

W
wenxu12345 已提交
1440 1441 1442 1443
func (m *OfflinePushInfo) Reset()         { *m = OfflinePushInfo{} }
func (m *OfflinePushInfo) String() string { return proto.CompactTextString(m) }
func (*OfflinePushInfo) ProtoMessage()    {}
func (*OfflinePushInfo) Descriptor() ([]byte, []int) {
programor_guo's avatar
programor_guo 已提交
1444
	return fileDescriptor_ws_f46b8824c5dbc584, []int{17}
W
wenxu12345 已提交
1445
}
W
wenxu12345 已提交
1446 1447
func (m *OfflinePushInfo) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_OfflinePushInfo.Unmarshal(m, b)
W
wenxu12345 已提交
1448
}
W
wenxu12345 已提交
1449 1450
func (m *OfflinePushInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_OfflinePushInfo.Marshal(b, m, deterministic)
W
wenxu12345 已提交
1451
}
W
wenxu12345 已提交
1452 1453
func (dst *OfflinePushInfo) XXX_Merge(src proto.Message) {
	xxx_messageInfo_OfflinePushInfo.Merge(dst, src)
W
wenxu12345 已提交
1454
}
W
wenxu12345 已提交
1455 1456
func (m *OfflinePushInfo) XXX_Size() int {
	return xxx_messageInfo_OfflinePushInfo.Size(m)
W
wenxu12345 已提交
1457
}
W
wenxu12345 已提交
1458 1459
func (m *OfflinePushInfo) XXX_DiscardUnknown() {
	xxx_messageInfo_OfflinePushInfo.DiscardUnknown(m)
W
wenxu12345 已提交
1460 1461
}

W
wenxu12345 已提交
1462
var xxx_messageInfo_OfflinePushInfo proto.InternalMessageInfo
W
wenxu12345 已提交
1463

W
wenxu12345 已提交
1464
func (m *OfflinePushInfo) GetTitle() string {
W
wenxu12345 已提交
1465
	if m != nil {
W
wenxu12345 已提交
1466
		return m.Title
W
wenxu12345 已提交
1467 1468 1469 1470
	}
	return ""
}

W
wenxu12345 已提交
1471
func (m *OfflinePushInfo) GetDesc() string {
W
wenxu12345 已提交
1472
	if m != nil {
W
wenxu12345 已提交
1473
		return m.Desc
W
wenxu12345 已提交
1474 1475 1476 1477
	}
	return ""
}

W
wenxu12345 已提交
1478
func (m *OfflinePushInfo) GetEx() string {
W
wenxu12345 已提交
1479
	if m != nil {
W
wenxu12345 已提交
1480
		return m.Ex
W
wenxu12345 已提交
1481 1482 1483 1484
	}
	return ""
}

W
wenxu12345 已提交
1485
func (m *OfflinePushInfo) GetIOSPushSound() string {
W
wenxu12345 已提交
1486
	if m != nil {
W
wenxu12345 已提交
1487
		return m.IOSPushSound
W
wenxu12345 已提交
1488
	}
W
wenxu12345 已提交
1489 1490 1491 1492 1493 1494 1495 1496
	return ""
}

func (m *OfflinePushInfo) GetIOSBadgeCount() bool {
	if m != nil {
		return m.IOSBadgeCount
	}
	return false
W
wenxu12345 已提交
1497 1498 1499
}

type TipsComm struct {
programor_guo's avatar
programor_guo 已提交
1500 1501
	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 已提交
1502 1503 1504 1505 1506 1507 1508 1509 1510
	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) {
programor_guo's avatar
programor_guo 已提交
1511
	return fileDescriptor_ws_f46b8824c5dbc584, []int{18}
W
wenxu12345 已提交
1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531
}
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 已提交
1532
	if m != nil {
W
wenxu12345 已提交
1533 1534 1535 1536 1537 1538 1539 1540
		return m.Detail
	}
	return nil
}

func (m *TipsComm) GetDefaultTips() string {
	if m != nil {
		return m.DefaultTips
W
pb  
wenxu12345 已提交
1541 1542 1543 1544
	}
	return ""
}

W
wenxu12345 已提交
1545 1546 1547
// ////////////////////group/////////////////////
// Actively join the group
type MemberEnterTips struct {
programor_guo's avatar
programor_guo 已提交
1548 1549 1550
	Group                *GroupInfo           `protobuf:"bytes,1,opt,name=group" json:"group,omitempty"`
	EntrantUser          *GroupMemberFullInfo `protobuf:"bytes,2,opt,name=entrantUser" json:"entrantUser,omitempty"`
	OperationTime        int64                `protobuf:"varint,3,opt,name=operationTime" json:"operationTime,omitempty"`
W
wenxu12345 已提交
1551 1552 1553
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
W
pb  
wenxu12345 已提交
1554 1555
}

W
wenxu12345 已提交
1556 1557 1558 1559
func (m *MemberEnterTips) Reset()         { *m = MemberEnterTips{} }
func (m *MemberEnterTips) String() string { return proto.CompactTextString(m) }
func (*MemberEnterTips) ProtoMessage()    {}
func (*MemberEnterTips) Descriptor() ([]byte, []int) {
programor_guo's avatar
programor_guo 已提交
1560
	return fileDescriptor_ws_f46b8824c5dbc584, []int{19}
W
pb  
wenxu12345 已提交
1561
}
W
wenxu12345 已提交
1562 1563
func (m *MemberEnterTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_MemberEnterTips.Unmarshal(m, b)
W
pb  
wenxu12345 已提交
1564
}
W
wenxu12345 已提交
1565 1566
func (m *MemberEnterTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_MemberEnterTips.Marshal(b, m, deterministic)
W
pb  
wenxu12345 已提交
1567
}
W
wenxu12345 已提交
1568 1569
func (dst *MemberEnterTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_MemberEnterTips.Merge(dst, src)
W
pb  
wenxu12345 已提交
1570
}
W
wenxu12345 已提交
1571 1572
func (m *MemberEnterTips) XXX_Size() int {
	return xxx_messageInfo_MemberEnterTips.Size(m)
W
pb  
wenxu12345 已提交
1573
}
W
wenxu12345 已提交
1574 1575
func (m *MemberEnterTips) XXX_DiscardUnknown() {
	xxx_messageInfo_MemberEnterTips.DiscardUnknown(m)
W
pb  
wenxu12345 已提交
1576 1577
}

W
wenxu12345 已提交
1578
var xxx_messageInfo_MemberEnterTips proto.InternalMessageInfo
W
pb  
wenxu12345 已提交
1579

W
wenxu12345 已提交
1580
func (m *MemberEnterTips) GetGroup() *GroupInfo {
W
pb  
wenxu12345 已提交
1581 1582 1583 1584 1585 1586
	if m != nil {
		return m.Group
	}
	return nil
}

programor_guo's avatar
programor_guo 已提交
1587
func (m *MemberEnterTips) GetEntrantUser() *GroupMemberFullInfo {
W
pb  
wenxu12345 已提交
1588
	if m != nil {
programor_guo's avatar
programor_guo 已提交
1589
		return m.EntrantUser
W
pb  
wenxu12345 已提交
1590 1591 1592 1593
	}
	return nil
}

W
wenxu12345 已提交
1594
func (m *MemberEnterTips) GetOperationTime() int64 {
W
pb  
wenxu12345 已提交
1595
	if m != nil {
W
wenxu12345 已提交
1596 1597 1598 1599 1600 1601 1602
		return m.OperationTime
	}
	return 0
}

// Actively leave the group
type MemberLeaveTips struct {
programor_guo's avatar
programor_guo 已提交
1603 1604 1605
	Group                *GroupInfo           `protobuf:"bytes,1,opt,name=group" json:"group,omitempty"`
	LeaverUser           *GroupMemberFullInfo `protobuf:"bytes,2,opt,name=leaverUser" json:"leaverUser,omitempty"`
	OperationTime        int64                `protobuf:"varint,3,opt,name=operationTime" json:"operationTime,omitempty"`
W
wenxu12345 已提交
1606 1607 1608 1609 1610 1611 1612 1613 1614
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (m *MemberLeaveTips) Reset()         { *m = MemberLeaveTips{} }
func (m *MemberLeaveTips) String() string { return proto.CompactTextString(m) }
func (*MemberLeaveTips) ProtoMessage()    {}
func (*MemberLeaveTips) Descriptor() ([]byte, []int) {
programor_guo's avatar
programor_guo 已提交
1615
	return fileDescriptor_ws_f46b8824c5dbc584, []int{20}
W
wenxu12345 已提交
1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641
}
func (m *MemberLeaveTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_MemberLeaveTips.Unmarshal(m, b)
}
func (m *MemberLeaveTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_MemberLeaveTips.Marshal(b, m, deterministic)
}
func (dst *MemberLeaveTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_MemberLeaveTips.Merge(dst, src)
}
func (m *MemberLeaveTips) XXX_Size() int {
	return xxx_messageInfo_MemberLeaveTips.Size(m)
}
func (m *MemberLeaveTips) XXX_DiscardUnknown() {
	xxx_messageInfo_MemberLeaveTips.DiscardUnknown(m)
}

var xxx_messageInfo_MemberLeaveTips proto.InternalMessageInfo

func (m *MemberLeaveTips) GetGroup() *GroupInfo {
	if m != nil {
		return m.Group
	}
	return nil
}

programor_guo's avatar
programor_guo 已提交
1642
func (m *MemberLeaveTips) GetLeaverUser() *GroupMemberFullInfo {
W
wenxu12345 已提交
1643
	if m != nil {
programor_guo's avatar
programor_guo 已提交
1644
		return m.LeaverUser
W
wenxu12345 已提交
1645 1646 1647 1648
	}
	return nil
}

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

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

func (m *MemberInvitedTips) Reset()         { *m = MemberInvitedTips{} }
func (m *MemberInvitedTips) String() string { return proto.CompactTextString(m) }
func (*MemberInvitedTips) ProtoMessage()    {}
func (*MemberInvitedTips) Descriptor() ([]byte, []int) {
programor_guo's avatar
programor_guo 已提交
1670
	return fileDescriptor_ws_f46b8824c5dbc584, []int{21}
W
wenxu12345 已提交
1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703
}
func (m *MemberInvitedTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_MemberInvitedTips.Unmarshal(m, b)
}
func (m *MemberInvitedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_MemberInvitedTips.Marshal(b, m, deterministic)
}
func (dst *MemberInvitedTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_MemberInvitedTips.Merge(dst, src)
}
func (m *MemberInvitedTips) XXX_Size() int {
	return xxx_messageInfo_MemberInvitedTips.Size(m)
}
func (m *MemberInvitedTips) XXX_DiscardUnknown() {
	xxx_messageInfo_MemberInvitedTips.DiscardUnknown(m)
}

var xxx_messageInfo_MemberInvitedTips proto.InternalMessageInfo

func (m *MemberInvitedTips) GetGroup() *GroupInfo {
	if m != nil {
		return m.Group
	}
	return nil
}

func (m *MemberInvitedTips) GetOpUser() *GroupMemberFullInfo {
	if m != nil {
		return m.OpUser
	}
	return nil
}

W
wenxu12345 已提交
1704
func (m *MemberInvitedTips) GetInvitedUserList() []*GroupMemberFullInfo {
W
wenxu12345 已提交
1705
	if m != nil {
W
wenxu12345 已提交
1706
		return m.InvitedUserList
W
wenxu12345 已提交
1707 1708 1709 1710
	}
	return nil
}

W
wenxu12345 已提交
1711
func (m *MemberInvitedTips) GetOperationTime() int64 {
W
wenxu12345 已提交
1712 1713 1714 1715 1716 1717 1718
	if m != nil {
		return m.OperationTime
	}
	return 0
}

type MemberKickedTips struct {
programor_guo's avatar
programor_guo 已提交
1719 1720 1721 1722
	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"`
W
wenxu12345 已提交
1723 1724 1725
	XXX_NoUnkeyedLiteral struct{}               `json:"-"`
	XXX_unrecognized     []byte                 `json:"-"`
	XXX_sizecache        int32                  `json:"-"`
W
wenxu12345 已提交
1726 1727 1728 1729 1730 1731
}

func (m *MemberKickedTips) Reset()         { *m = MemberKickedTips{} }
func (m *MemberKickedTips) String() string { return proto.CompactTextString(m) }
func (*MemberKickedTips) ProtoMessage()    {}
func (*MemberKickedTips) Descriptor() ([]byte, []int) {
programor_guo's avatar
programor_guo 已提交
1732
	return fileDescriptor_ws_f46b8824c5dbc584, []int{22}
W
wenxu12345 已提交
1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765
}
func (m *MemberKickedTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_MemberKickedTips.Unmarshal(m, b)
}
func (m *MemberKickedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_MemberKickedTips.Marshal(b, m, deterministic)
}
func (dst *MemberKickedTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_MemberKickedTips.Merge(dst, src)
}
func (m *MemberKickedTips) XXX_Size() int {
	return xxx_messageInfo_MemberKickedTips.Size(m)
}
func (m *MemberKickedTips) XXX_DiscardUnknown() {
	xxx_messageInfo_MemberKickedTips.DiscardUnknown(m)
}

var xxx_messageInfo_MemberKickedTips proto.InternalMessageInfo

func (m *MemberKickedTips) GetGroup() *GroupInfo {
	if m != nil {
		return m.Group
	}
	return nil
}

func (m *MemberKickedTips) GetOpUser() *GroupMemberFullInfo {
	if m != nil {
		return m.OpUser
	}
	return nil
}

W
wenxu12345 已提交
1766
func (m *MemberKickedTips) GetKickedUserList() []*GroupMemberFullInfo {
W
wenxu12345 已提交
1767
	if m != nil {
W
wenxu12345 已提交
1768
		return m.KickedUserList
W
wenxu12345 已提交
1769 1770 1771 1772
	}
	return nil
}

W
wenxu12345 已提交
1773
func (m *MemberKickedTips) GetOperationTime() int64 {
W
wenxu12345 已提交
1774 1775 1776 1777 1778 1779
	if m != nil {
		return m.OperationTime
	}
	return 0
}

programor_guo's avatar
programor_guo 已提交
1780
type MemberInfoChangedTips struct {
programor_guo's avatar
programor_guo 已提交
1781 1782 1783 1784 1785
	ChangeType           int32                `protobuf:"varint,1,opt,name=changeType" json:"changeType,omitempty"`
	OpUser               *GroupMemberFullInfo `protobuf:"bytes,2,opt,name=opUser" json:"opUser,omitempty"`
	FinalInfo            *GroupMemberFullInfo `protobuf:"bytes,3,opt,name=finalInfo" json:"finalInfo,omitempty"`
	MuteTime             int64                `protobuf:"varint,4,opt,name=muteTime" json:"muteTime,omitempty"`
	Group                *GroupInfo           `protobuf:"bytes,5,opt,name=group" json:"group,omitempty"`
W
wenxu12345 已提交
1786 1787 1788 1789 1790
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

programor_guo's avatar
programor_guo 已提交
1791 1792 1793 1794
func (m *MemberInfoChangedTips) Reset()         { *m = MemberInfoChangedTips{} }
func (m *MemberInfoChangedTips) String() string { return proto.CompactTextString(m) }
func (*MemberInfoChangedTips) ProtoMessage()    {}
func (*MemberInfoChangedTips) Descriptor() ([]byte, []int) {
programor_guo's avatar
programor_guo 已提交
1795
	return fileDescriptor_ws_f46b8824c5dbc584, []int{23}
W
wenxu12345 已提交
1796
}
programor_guo's avatar
programor_guo 已提交
1797 1798
func (m *MemberInfoChangedTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_MemberInfoChangedTips.Unmarshal(m, b)
W
wenxu12345 已提交
1799
}
programor_guo's avatar
programor_guo 已提交
1800 1801
func (m *MemberInfoChangedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_MemberInfoChangedTips.Marshal(b, m, deterministic)
W
wenxu12345 已提交
1802
}
programor_guo's avatar
programor_guo 已提交
1803 1804
func (dst *MemberInfoChangedTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_MemberInfoChangedTips.Merge(dst, src)
W
wenxu12345 已提交
1805
}
programor_guo's avatar
programor_guo 已提交
1806 1807
func (m *MemberInfoChangedTips) XXX_Size() int {
	return xxx_messageInfo_MemberInfoChangedTips.Size(m)
W
wenxu12345 已提交
1808
}
programor_guo's avatar
programor_guo 已提交
1809 1810
func (m *MemberInfoChangedTips) XXX_DiscardUnknown() {
	xxx_messageInfo_MemberInfoChangedTips.DiscardUnknown(m)
W
wenxu12345 已提交
1811 1812
}

programor_guo's avatar
programor_guo 已提交
1813
var xxx_messageInfo_MemberInfoChangedTips proto.InternalMessageInfo
W
wenxu12345 已提交
1814

programor_guo's avatar
programor_guo 已提交
1815
func (m *MemberInfoChangedTips) GetChangeType() int32 {
W
wenxu12345 已提交
1816 1817 1818 1819 1820 1821
	if m != nil {
		return m.ChangeType
	}
	return 0
}

programor_guo's avatar
programor_guo 已提交
1822
func (m *MemberInfoChangedTips) GetOpUser() *GroupMemberFullInfo {
W
wenxu12345 已提交
1823 1824 1825 1826 1827 1828
	if m != nil {
		return m.OpUser
	}
	return nil
}

programor_guo's avatar
programor_guo 已提交
1829
func (m *MemberInfoChangedTips) GetFinalInfo() *GroupMemberFullInfo {
W
wenxu12345 已提交
1830
	if m != nil {
programor_guo's avatar
programor_guo 已提交
1831
		return m.FinalInfo
W
wenxu12345 已提交
1832 1833 1834 1835
	}
	return nil
}

W
wenxu12345 已提交
1836
func (m *MemberInfoChangedTips) GetMuteTime() int64 {
W
wenxu12345 已提交
1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850
	if m != nil {
		return m.MuteTime
	}
	return 0
}

func (m *MemberInfoChangedTips) GetGroup() *GroupInfo {
	if m != nil {
		return m.Group
	}
	return nil
}

type GroupCreatedTips struct {
programor_guo's avatar
programor_guo 已提交
1851 1852 1853 1854
	Group                *GroupInfo             `protobuf:"bytes,1,opt,name=group" json:"group,omitempty"`
	Creator              *GroupMemberFullInfo   `protobuf:"bytes,2,opt,name=creator" json:"creator,omitempty"`
	MemberList           []*GroupMemberFullInfo `protobuf:"bytes,3,rep,name=memberList" json:"memberList,omitempty"`
	OperationTime        int64                  `protobuf:"varint,4,opt,name=operationTime" json:"operationTime,omitempty"`
W
wenxu12345 已提交
1855 1856 1857 1858 1859 1860 1861 1862 1863
	XXX_NoUnkeyedLiteral struct{}               `json:"-"`
	XXX_unrecognized     []byte                 `json:"-"`
	XXX_sizecache        int32                  `json:"-"`
}

func (m *GroupCreatedTips) Reset()         { *m = GroupCreatedTips{} }
func (m *GroupCreatedTips) String() string { return proto.CompactTextString(m) }
func (*GroupCreatedTips) ProtoMessage()    {}
func (*GroupCreatedTips) Descriptor() ([]byte, []int) {
programor_guo's avatar
programor_guo 已提交
1864
	return fileDescriptor_ws_f46b8824c5dbc584, []int{24}
W
wenxu12345 已提交
1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904
}
func (m *GroupCreatedTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_GroupCreatedTips.Unmarshal(m, b)
}
func (m *GroupCreatedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_GroupCreatedTips.Marshal(b, m, deterministic)
}
func (dst *GroupCreatedTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_GroupCreatedTips.Merge(dst, src)
}
func (m *GroupCreatedTips) XXX_Size() int {
	return xxx_messageInfo_GroupCreatedTips.Size(m)
}
func (m *GroupCreatedTips) XXX_DiscardUnknown() {
	xxx_messageInfo_GroupCreatedTips.DiscardUnknown(m)
}

var xxx_messageInfo_GroupCreatedTips proto.InternalMessageInfo

func (m *GroupCreatedTips) GetGroup() *GroupInfo {
	if m != nil {
		return m.Group
	}
	return nil
}

func (m *GroupCreatedTips) GetCreator() *GroupMemberFullInfo {
	if m != nil {
		return m.Creator
	}
	return nil
}

func (m *GroupCreatedTips) GetMemberList() []*GroupMemberFullInfo {
	if m != nil {
		return m.MemberList
	}
	return nil
}

W
wenxu12345 已提交
1905
func (m *GroupCreatedTips) GetOperationTime() int64 {
W
wenxu12345 已提交
1906 1907 1908 1909 1910 1911 1912
	if m != nil {
		return m.OperationTime
	}
	return 0
}

type GroupInfoChangedTips struct {
programor_guo's avatar
programor_guo 已提交
1913 1914 1915
	ChangedType          int32                `protobuf:"varint,1,opt,name=changedType" json:"changedType,omitempty"`
	Group                *GroupInfo           `protobuf:"bytes,2,opt,name=group" json:"group,omitempty"`
	OpUser               *GroupMemberFullInfo `protobuf:"bytes,3,opt,name=opUser" json:"opUser,omitempty"`
W
wenxu12345 已提交
1916 1917 1918 1919 1920 1921 1922 1923 1924
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (m *GroupInfoChangedTips) Reset()         { *m = GroupInfoChangedTips{} }
func (m *GroupInfoChangedTips) String() string { return proto.CompactTextString(m) }
func (*GroupInfoChangedTips) ProtoMessage()    {}
func (*GroupInfoChangedTips) Descriptor() ([]byte, []int) {
programor_guo's avatar
programor_guo 已提交
1925
	return fileDescriptor_ws_f46b8824c5dbc584, []int{25}
W
wenxu12345 已提交
1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965
}
func (m *GroupInfoChangedTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_GroupInfoChangedTips.Unmarshal(m, b)
}
func (m *GroupInfoChangedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_GroupInfoChangedTips.Marshal(b, m, deterministic)
}
func (dst *GroupInfoChangedTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_GroupInfoChangedTips.Merge(dst, src)
}
func (m *GroupInfoChangedTips) XXX_Size() int {
	return xxx_messageInfo_GroupInfoChangedTips.Size(m)
}
func (m *GroupInfoChangedTips) XXX_DiscardUnknown() {
	xxx_messageInfo_GroupInfoChangedTips.DiscardUnknown(m)
}

var xxx_messageInfo_GroupInfoChangedTips proto.InternalMessageInfo

func (m *GroupInfoChangedTips) GetChangedType() int32 {
	if m != nil {
		return m.ChangedType
	}
	return 0
}

func (m *GroupInfoChangedTips) GetGroup() *GroupInfo {
	if m != nil {
		return m.Group
	}
	return nil
}

func (m *GroupInfoChangedTips) GetOpUser() *GroupMemberFullInfo {
	if m != nil {
		return m.OpUser
	}
	return nil
}

W
wenxu12345 已提交
1966
type JoinGroupApplicationTips struct {
programor_guo's avatar
programor_guo 已提交
1967 1968 1969
	Group                *GroupInfo      `protobuf:"bytes,1,opt,name=group" json:"group,omitempty"`
	Applicant            *PublicUserInfo `protobuf:"bytes,2,opt,name=applicant" json:"applicant,omitempty"`
	Reason               string          `protobuf:"bytes,3,opt,name=reason" json:"reason,omitempty"`
W
wenxu12345 已提交
1970 1971 1972 1973 1974
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

W
wenxu12345 已提交
1975 1976 1977 1978
func (m *JoinGroupApplicationTips) Reset()         { *m = JoinGroupApplicationTips{} }
func (m *JoinGroupApplicationTips) String() string { return proto.CompactTextString(m) }
func (*JoinGroupApplicationTips) ProtoMessage()    {}
func (*JoinGroupApplicationTips) Descriptor() ([]byte, []int) {
programor_guo's avatar
programor_guo 已提交
1979
	return fileDescriptor_ws_f46b8824c5dbc584, []int{26}
W
wenxu12345 已提交
1980
}
W
wenxu12345 已提交
1981 1982
func (m *JoinGroupApplicationTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_JoinGroupApplicationTips.Unmarshal(m, b)
W
wenxu12345 已提交
1983
}
W
wenxu12345 已提交
1984 1985
func (m *JoinGroupApplicationTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_JoinGroupApplicationTips.Marshal(b, m, deterministic)
W
wenxu12345 已提交
1986
}
W
wenxu12345 已提交
1987 1988
func (dst *JoinGroupApplicationTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_JoinGroupApplicationTips.Merge(dst, src)
W
wenxu12345 已提交
1989
}
W
wenxu12345 已提交
1990 1991
func (m *JoinGroupApplicationTips) XXX_Size() int {
	return xxx_messageInfo_JoinGroupApplicationTips.Size(m)
W
wenxu12345 已提交
1992
}
W
wenxu12345 已提交
1993 1994
func (m *JoinGroupApplicationTips) XXX_DiscardUnknown() {
	xxx_messageInfo_JoinGroupApplicationTips.DiscardUnknown(m)
W
wenxu12345 已提交
1995 1996
}

W
wenxu12345 已提交
1997
var xxx_messageInfo_JoinGroupApplicationTips proto.InternalMessageInfo
W
wenxu12345 已提交
1998

W
wenxu12345 已提交
1999
func (m *JoinGroupApplicationTips) GetGroup() *GroupInfo {
W
wenxu12345 已提交
2000 2001 2002 2003 2004 2005
	if m != nil {
		return m.Group
	}
	return nil
}

W
wenxu12345 已提交
2006
func (m *JoinGroupApplicationTips) GetApplicant() *PublicUserInfo {
W
wenxu12345 已提交
2007 2008 2009 2010 2011 2012
	if m != nil {
		return m.Applicant
	}
	return nil
}

W
wenxu12345 已提交
2013
func (m *JoinGroupApplicationTips) GetReason() string {
W
wenxu12345 已提交
2014 2015 2016 2017 2018 2019 2020
	if m != nil {
		return m.Reason
	}
	return ""
}

type ApplicationProcessedTips struct {
programor_guo's avatar
programor_guo 已提交
2021 2022 2023 2024
	Group                *GroupInfo           `protobuf:"bytes,1,opt,name=group" json:"group,omitempty"`
	OpUser               *GroupMemberFullInfo `protobuf:"bytes,2,opt,name=opUser" json:"opUser,omitempty"`
	Result               int32                `protobuf:"varint,3,opt,name=result" json:"result,omitempty"`
	Reason               string               `protobuf:"bytes,4,opt,name=reason" json:"reason,omitempty"`
W
wenxu12345 已提交
2025 2026 2027 2028 2029 2030 2031 2032 2033
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (m *ApplicationProcessedTips) Reset()         { *m = ApplicationProcessedTips{} }
func (m *ApplicationProcessedTips) String() string { return proto.CompactTextString(m) }
func (*ApplicationProcessedTips) ProtoMessage()    {}
func (*ApplicationProcessedTips) Descriptor() ([]byte, []int) {
programor_guo's avatar
programor_guo 已提交
2034
	return fileDescriptor_ws_f46b8824c5dbc584, []int{27}
W
wenxu12345 已提交
2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082
}
func (m *ApplicationProcessedTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_ApplicationProcessedTips.Unmarshal(m, b)
}
func (m *ApplicationProcessedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_ApplicationProcessedTips.Marshal(b, m, deterministic)
}
func (dst *ApplicationProcessedTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_ApplicationProcessedTips.Merge(dst, src)
}
func (m *ApplicationProcessedTips) XXX_Size() int {
	return xxx_messageInfo_ApplicationProcessedTips.Size(m)
}
func (m *ApplicationProcessedTips) XXX_DiscardUnknown() {
	xxx_messageInfo_ApplicationProcessedTips.DiscardUnknown(m)
}

var xxx_messageInfo_ApplicationProcessedTips proto.InternalMessageInfo

func (m *ApplicationProcessedTips) GetGroup() *GroupInfo {
	if m != nil {
		return m.Group
	}
	return nil
}

func (m *ApplicationProcessedTips) GetOpUser() *GroupMemberFullInfo {
	if m != nil {
		return m.OpUser
	}
	return nil
}

func (m *ApplicationProcessedTips) GetResult() int32 {
	if m != nil {
		return m.Result
	}
	return 0
}

func (m *ApplicationProcessedTips) GetReason() string {
	if m != nil {
		return m.Reason
	}
	return ""
}

type FriendApplication struct {
programor_guo's avatar
programor_guo 已提交
2083 2084 2085
	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 已提交
2086 2087 2088 2089 2090 2091 2092 2093 2094
	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) {
programor_guo's avatar
programor_guo 已提交
2095
	return fileDescriptor_ws_f46b8824c5dbc584, []int{28}
W
wenxu12345 已提交
2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114
}
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 已提交
2115
func (m *FriendApplication) GetAddTime() int64 {
W
wenxu12345 已提交
2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135
	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 已提交
2136
type FromToUserID struct {
programor_guo's avatar
programor_guo 已提交
2137 2138
	FromUserID           string   `protobuf:"bytes,1,opt,name=fromUserID" json:"fromUserID,omitempty"`
	ToUserID             string   `protobuf:"bytes,2,opt,name=toUserID" json:"toUserID,omitempty"`
W
wenxu12345 已提交
2139 2140 2141 2142 2143 2144 2145 2146 2147
	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) {
programor_guo's avatar
programor_guo 已提交
2148
	return fileDescriptor_ws_f46b8824c5dbc584, []int{29}
W
wenxu12345 已提交
2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182
}
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
programor_guo's avatar
programor_guo 已提交
2183
type FriendApplicationAddedTips struct {
programor_guo's avatar
programor_guo 已提交
2184
	FromToUserID         *FromToUserID `protobuf:"bytes,1,opt,name=fromToUserID" json:"fromToUserID,omitempty"`
W
wenxu12345 已提交
2185 2186 2187
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
W
wenxu12345 已提交
2188 2189
}

programor_guo's avatar
programor_guo 已提交
2190 2191 2192 2193
func (m *FriendApplicationAddedTips) Reset()         { *m = FriendApplicationAddedTips{} }
func (m *FriendApplicationAddedTips) String() string { return proto.CompactTextString(m) }
func (*FriendApplicationAddedTips) ProtoMessage()    {}
func (*FriendApplicationAddedTips) Descriptor() ([]byte, []int) {
programor_guo's avatar
programor_guo 已提交
2194
	return fileDescriptor_ws_f46b8824c5dbc584, []int{30}
W
wenxu12345 已提交
2195
}
programor_guo's avatar
programor_guo 已提交
2196 2197
func (m *FriendApplicationAddedTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_FriendApplicationAddedTips.Unmarshal(m, b)
W
wenxu12345 已提交
2198
}
programor_guo's avatar
programor_guo 已提交
2199 2200
func (m *FriendApplicationAddedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_FriendApplicationAddedTips.Marshal(b, m, deterministic)
W
wenxu12345 已提交
2201
}
programor_guo's avatar
programor_guo 已提交
2202 2203
func (dst *FriendApplicationAddedTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_FriendApplicationAddedTips.Merge(dst, src)
W
wenxu12345 已提交
2204
}
programor_guo's avatar
programor_guo 已提交
2205 2206
func (m *FriendApplicationAddedTips) XXX_Size() int {
	return xxx_messageInfo_FriendApplicationAddedTips.Size(m)
W
wenxu12345 已提交
2207
}
programor_guo's avatar
programor_guo 已提交
2208 2209
func (m *FriendApplicationAddedTips) XXX_DiscardUnknown() {
	xxx_messageInfo_FriendApplicationAddedTips.DiscardUnknown(m)
W
wenxu12345 已提交
2210 2211
}

programor_guo's avatar
programor_guo 已提交
2212
var xxx_messageInfo_FriendApplicationAddedTips proto.InternalMessageInfo
W
wenxu12345 已提交
2213

W
wenxu12345 已提交
2214
func (m *FriendApplicationAddedTips) GetFromToUserID() *FromToUserID {
W
wenxu12345 已提交
2215
	if m != nil {
W
wenxu12345 已提交
2216
		return m.FromToUserID
W
wenxu12345 已提交
2217 2218 2219 2220
	}
	return nil
}

W
wenxu12345 已提交
2221
// FromUserID accept or reject ToUserID
programor_guo's avatar
programor_guo 已提交
2222
type FriendApplicationProcessedTips struct {
programor_guo's avatar
programor_guo 已提交
2223
	FromToUserID         *FromToUserID `protobuf:"bytes,1,opt,name=fromToUserID" json:"fromToUserID,omitempty"`
W
wenxu12345 已提交
2224 2225 2226
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
W
wenxu12345 已提交
2227 2228
}

programor_guo's avatar
programor_guo 已提交
2229 2230 2231 2232
func (m *FriendApplicationProcessedTips) Reset()         { *m = FriendApplicationProcessedTips{} }
func (m *FriendApplicationProcessedTips) String() string { return proto.CompactTextString(m) }
func (*FriendApplicationProcessedTips) ProtoMessage()    {}
func (*FriendApplicationProcessedTips) Descriptor() ([]byte, []int) {
programor_guo's avatar
programor_guo 已提交
2233
	return fileDescriptor_ws_f46b8824c5dbc584, []int{31}
W
wenxu12345 已提交
2234
}
programor_guo's avatar
programor_guo 已提交
2235 2236
func (m *FriendApplicationProcessedTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_FriendApplicationProcessedTips.Unmarshal(m, b)
W
wenxu12345 已提交
2237
}
programor_guo's avatar
programor_guo 已提交
2238 2239
func (m *FriendApplicationProcessedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_FriendApplicationProcessedTips.Marshal(b, m, deterministic)
W
wenxu12345 已提交
2240
}
programor_guo's avatar
programor_guo 已提交
2241 2242
func (dst *FriendApplicationProcessedTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_FriendApplicationProcessedTips.Merge(dst, src)
W
wenxu12345 已提交
2243
}
programor_guo's avatar
programor_guo 已提交
2244 2245
func (m *FriendApplicationProcessedTips) XXX_Size() int {
	return xxx_messageInfo_FriendApplicationProcessedTips.Size(m)
W
wenxu12345 已提交
2246
}
programor_guo's avatar
programor_guo 已提交
2247 2248
func (m *FriendApplicationProcessedTips) XXX_DiscardUnknown() {
	xxx_messageInfo_FriendApplicationProcessedTips.DiscardUnknown(m)
W
wenxu12345 已提交
2249 2250
}

programor_guo's avatar
programor_guo 已提交
2251
var xxx_messageInfo_FriendApplicationProcessedTips proto.InternalMessageInfo
W
wenxu12345 已提交
2252

W
wenxu12345 已提交
2253
func (m *FriendApplicationProcessedTips) GetFromToUserID() *FromToUserID {
W
wenxu12345 已提交
2254
	if m != nil {
W
wenxu12345 已提交
2255
		return m.FromToUserID
W
wenxu12345 已提交
2256 2257 2258 2259
	}
	return nil
}

W
wenxu12345 已提交
2260
// FromUserID  Added a friend ToUserID
programor_guo's avatar
programor_guo 已提交
2261
type FriendAddedTips struct {
programor_guo's avatar
programor_guo 已提交
2262 2263 2264
	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 已提交
2265 2266 2267
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
W
wenxu12345 已提交
2268
}
programor_guo's avatar
programor_guo 已提交
2269 2270 2271 2272 2273

func (m *FriendAddedTips) Reset()         { *m = FriendAddedTips{} }
func (m *FriendAddedTips) String() string { return proto.CompactTextString(m) }
func (*FriendAddedTips) ProtoMessage()    {}
func (*FriendAddedTips) Descriptor() ([]byte, []int) {
programor_guo's avatar
programor_guo 已提交
2274
	return fileDescriptor_ws_f46b8824c5dbc584, []int{32}
programor_guo's avatar
programor_guo 已提交
2275 2276 2277
}
func (m *FriendAddedTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_FriendAddedTips.Unmarshal(m, b)
W
wenxu12345 已提交
2278
}
programor_guo's avatar
programor_guo 已提交
2279 2280
func (m *FriendAddedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_FriendAddedTips.Marshal(b, m, deterministic)
W
wenxu12345 已提交
2281
}
programor_guo's avatar
programor_guo 已提交
2282 2283
func (dst *FriendAddedTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_FriendAddedTips.Merge(dst, src)
W
wenxu12345 已提交
2284
}
programor_guo's avatar
programor_guo 已提交
2285 2286 2287 2288 2289
func (m *FriendAddedTips) XXX_Size() int {
	return xxx_messageInfo_FriendAddedTips.Size(m)
}
func (m *FriendAddedTips) XXX_DiscardUnknown() {
	xxx_messageInfo_FriendAddedTips.DiscardUnknown(m)
W
wenxu12345 已提交
2290 2291
}

programor_guo's avatar
programor_guo 已提交
2292
var xxx_messageInfo_FriendAddedTips proto.InternalMessageInfo
W
wenxu12345 已提交
2293

programor_guo's avatar
programor_guo 已提交
2294
func (m *FriendAddedTips) GetFriend() *FriendInfo {
W
wenxu12345 已提交
2295
	if m != nil {
programor_guo's avatar
programor_guo 已提交
2296
		return m.Friend
W
wenxu12345 已提交
2297 2298 2299 2300
	}
	return nil
}

W
wenxu12345 已提交
2301
func (m *FriendAddedTips) GetOperationTime() int64 {
W
wenxu12345 已提交
2302
	if m != nil {
programor_guo's avatar
programor_guo 已提交
2303
		return m.OperationTime
W
wenxu12345 已提交
2304
	}
programor_guo's avatar
programor_guo 已提交
2305
	return 0
W
wenxu12345 已提交
2306 2307
}

W
wenxu12345 已提交
2308 2309 2310 2311 2312 2313 2314 2315
func (m *FriendAddedTips) GetOpUser() *PublicUserInfo {
	if m != nil {
		return m.OpUser
	}
	return nil
}

// FromUserID  deleted a friend ToUserID
programor_guo's avatar
programor_guo 已提交
2316
type FriendDeletedTips struct {
programor_guo's avatar
programor_guo 已提交
2317
	FromToUserID         *FromToUserID `protobuf:"bytes,1,opt,name=fromToUserID" json:"fromToUserID,omitempty"`
W
wenxu12345 已提交
2318 2319 2320
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
W
wenxu12345 已提交
2321 2322
}

programor_guo's avatar
programor_guo 已提交
2323 2324 2325 2326
func (m *FriendDeletedTips) Reset()         { *m = FriendDeletedTips{} }
func (m *FriendDeletedTips) String() string { return proto.CompactTextString(m) }
func (*FriendDeletedTips) ProtoMessage()    {}
func (*FriendDeletedTips) Descriptor() ([]byte, []int) {
programor_guo's avatar
programor_guo 已提交
2327
	return fileDescriptor_ws_f46b8824c5dbc584, []int{33}
W
wenxu12345 已提交
2328
}
programor_guo's avatar
programor_guo 已提交
2329 2330
func (m *FriendDeletedTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_FriendDeletedTips.Unmarshal(m, b)
W
wenxu12345 已提交
2331
}
programor_guo's avatar
programor_guo 已提交
2332 2333
func (m *FriendDeletedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_FriendDeletedTips.Marshal(b, m, deterministic)
W
wenxu12345 已提交
2334
}
programor_guo's avatar
programor_guo 已提交
2335 2336
func (dst *FriendDeletedTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_FriendDeletedTips.Merge(dst, src)
W
wenxu12345 已提交
2337
}
programor_guo's avatar
programor_guo 已提交
2338 2339
func (m *FriendDeletedTips) XXX_Size() int {
	return xxx_messageInfo_FriendDeletedTips.Size(m)
W
wenxu12345 已提交
2340
}
programor_guo's avatar
programor_guo 已提交
2341 2342
func (m *FriendDeletedTips) XXX_DiscardUnknown() {
	xxx_messageInfo_FriendDeletedTips.DiscardUnknown(m)
W
wenxu12345 已提交
2343 2344
}

programor_guo's avatar
programor_guo 已提交
2345
var xxx_messageInfo_FriendDeletedTips proto.InternalMessageInfo
W
wenxu12345 已提交
2346

W
wenxu12345 已提交
2347
func (m *FriendDeletedTips) GetFromToUserID() *FromToUserID {
W
wenxu12345 已提交
2348
	if m != nil {
W
wenxu12345 已提交
2349
		return m.FromToUserID
programor_guo's avatar
programor_guo 已提交
2350 2351 2352 2353 2354
	}
	return nil
}

type BlackAddedTips struct {
programor_guo's avatar
programor_guo 已提交
2355
	FromToUserID         *FromToUserID `protobuf:"bytes,1,opt,name=fromToUserID" json:"fromToUserID,omitempty"`
W
wenxu12345 已提交
2356 2357 2358
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
programor_guo's avatar
programor_guo 已提交
2359 2360 2361 2362 2363 2364
}

func (m *BlackAddedTips) Reset()         { *m = BlackAddedTips{} }
func (m *BlackAddedTips) String() string { return proto.CompactTextString(m) }
func (*BlackAddedTips) ProtoMessage()    {}
func (*BlackAddedTips) Descriptor() ([]byte, []int) {
programor_guo's avatar
programor_guo 已提交
2365
	return fileDescriptor_ws_f46b8824c5dbc584, []int{34}
W
wenxu12345 已提交
2366
}
programor_guo's avatar
programor_guo 已提交
2367 2368
func (m *BlackAddedTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_BlackAddedTips.Unmarshal(m, b)
W
wenxu12345 已提交
2369
}
programor_guo's avatar
programor_guo 已提交
2370 2371
func (m *BlackAddedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_BlackAddedTips.Marshal(b, m, deterministic)
W
wenxu12345 已提交
2372
}
programor_guo's avatar
programor_guo 已提交
2373 2374
func (dst *BlackAddedTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_BlackAddedTips.Merge(dst, src)
W
wenxu12345 已提交
2375
}
programor_guo's avatar
programor_guo 已提交
2376 2377
func (m *BlackAddedTips) XXX_Size() int {
	return xxx_messageInfo_BlackAddedTips.Size(m)
W
wenxu12345 已提交
2378
}
programor_guo's avatar
programor_guo 已提交
2379 2380
func (m *BlackAddedTips) XXX_DiscardUnknown() {
	xxx_messageInfo_BlackAddedTips.DiscardUnknown(m)
W
wenxu12345 已提交
2381 2382
}

programor_guo's avatar
programor_guo 已提交
2383
var xxx_messageInfo_BlackAddedTips proto.InternalMessageInfo
W
wenxu12345 已提交
2384

W
wenxu12345 已提交
2385
func (m *BlackAddedTips) GetFromToUserID() *FromToUserID {
W
wenxu12345 已提交
2386
	if m != nil {
W
wenxu12345 已提交
2387
		return m.FromToUserID
W
wenxu12345 已提交
2388 2389 2390 2391
	}
	return nil
}

programor_guo's avatar
programor_guo 已提交
2392
type BlackDeletedTips struct {
programor_guo's avatar
programor_guo 已提交
2393
	FromToUserID         *FromToUserID `protobuf:"bytes,1,opt,name=fromToUserID" json:"fromToUserID,omitempty"`
W
wenxu12345 已提交
2394 2395 2396
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
W
wenxu12345 已提交
2397
}
programor_guo's avatar
programor_guo 已提交
2398 2399 2400 2401 2402

func (m *BlackDeletedTips) Reset()         { *m = BlackDeletedTips{} }
func (m *BlackDeletedTips) String() string { return proto.CompactTextString(m) }
func (*BlackDeletedTips) ProtoMessage()    {}
func (*BlackDeletedTips) Descriptor() ([]byte, []int) {
programor_guo's avatar
programor_guo 已提交
2403
	return fileDescriptor_ws_f46b8824c5dbc584, []int{35}
programor_guo's avatar
programor_guo 已提交
2404 2405 2406
}
func (m *BlackDeletedTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_BlackDeletedTips.Unmarshal(m, b)
W
wenxu12345 已提交
2407
}
programor_guo's avatar
programor_guo 已提交
2408 2409
func (m *BlackDeletedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_BlackDeletedTips.Marshal(b, m, deterministic)
W
wenxu12345 已提交
2410
}
programor_guo's avatar
programor_guo 已提交
2411 2412
func (dst *BlackDeletedTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_BlackDeletedTips.Merge(dst, src)
W
wenxu12345 已提交
2413
}
programor_guo's avatar
programor_guo 已提交
2414 2415
func (m *BlackDeletedTips) XXX_Size() int {
	return xxx_messageInfo_BlackDeletedTips.Size(m)
W
wenxu12345 已提交
2416
}
programor_guo's avatar
programor_guo 已提交
2417 2418
func (m *BlackDeletedTips) XXX_DiscardUnknown() {
	xxx_messageInfo_BlackDeletedTips.DiscardUnknown(m)
W
wenxu12345 已提交
2419 2420
}

programor_guo's avatar
programor_guo 已提交
2421
var xxx_messageInfo_BlackDeletedTips proto.InternalMessageInfo
W
wenxu12345 已提交
2422

W
wenxu12345 已提交
2423
func (m *BlackDeletedTips) GetFromToUserID() *FromToUserID {
W
wenxu12345 已提交
2424
	if m != nil {
W
wenxu12345 已提交
2425
		return m.FromToUserID
W
wenxu12345 已提交
2426 2427 2428 2429 2430
	}
	return nil
}

type FriendInfoChangedTips struct {
programor_guo's avatar
programor_guo 已提交
2431
	FromToUserID         *FromToUserID `protobuf:"bytes,1,opt,name=fromToUserID" json:"fromToUserID,omitempty"`
W
wenxu12345 已提交
2432 2433 2434
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
W
wenxu12345 已提交
2435 2436 2437 2438 2439 2440
}

func (m *FriendInfoChangedTips) Reset()         { *m = FriendInfoChangedTips{} }
func (m *FriendInfoChangedTips) String() string { return proto.CompactTextString(m) }
func (*FriendInfoChangedTips) ProtoMessage()    {}
func (*FriendInfoChangedTips) Descriptor() ([]byte, []int) {
programor_guo's avatar
programor_guo 已提交
2441
	return fileDescriptor_ws_f46b8824c5dbc584, []int{36}
W
wenxu12345 已提交
2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460
}
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 已提交
2461
func (m *FriendInfoChangedTips) GetFromToUserID() *FromToUserID {
W
wenxu12345 已提交
2462
	if m != nil {
W
wenxu12345 已提交
2463
		return m.FromToUserID
W
wenxu12345 已提交
2464 2465 2466 2467 2468 2469
	}
	return nil
}

// ////////////////////user/////////////////////
type SelfInfoUpdatedTips struct {
programor_guo's avatar
programor_guo 已提交
2470
	UserID               string   `protobuf:"bytes,1,opt,name=userID" json:"userID,omitempty"`
W
wenxu12345 已提交
2471 2472 2473
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
W
wenxu12345 已提交
2474 2475 2476 2477 2478 2479
}

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

var xxx_messageInfo_SelfInfoUpdatedTips proto.InternalMessageInfo

W
wenxu12345 已提交
2500
func (m *SelfInfoUpdatedTips) GetUserID() string {
W
wenxu12345 已提交
2501
	if m != nil {
W
wenxu12345 已提交
2502
		return m.UserID
programor_guo's avatar
programor_guo 已提交
2503
	}
W
wenxu12345 已提交
2504
	return ""
programor_guo's avatar
programor_guo 已提交
2505 2506
}

2507
func init() {
W
wenxu12345 已提交
2508 2509 2510 2511 2512 2513 2514 2515
	proto.RegisterType((*GroupInfo)(nil), "open_im_sdk.GroupInfo")
	proto.RegisterType((*GroupMemberFullInfo)(nil), "open_im_sdk.GroupMemberFullInfo")
	proto.RegisterType((*PublicUserInfo)(nil), "open_im_sdk.PublicUserInfo")
	proto.RegisterType((*UserInfo)(nil), "open_im_sdk.UserInfo")
	proto.RegisterType((*FriendInfo)(nil), "open_im_sdk.FriendInfo")
	proto.RegisterType((*BlackInfo)(nil), "open_im_sdk.BlackInfo")
	proto.RegisterType((*GroupRequest)(nil), "open_im_sdk.GroupRequest")
	proto.RegisterType((*FriendRequest)(nil), "open_im_sdk.FriendRequest")
2516 2517
	proto.RegisterType((*PullMessageBySeqListResp)(nil), "open_im_sdk.PullMessageBySeqListResp")
	proto.RegisterType((*PullMessageBySeqListReq)(nil), "open_im_sdk.PullMessageBySeqListReq")
programor_guo's avatar
programor_guo 已提交
2518 2519
	proto.RegisterType((*PullMessageReq)(nil), "open_im_sdk.PullMessageReq")
	proto.RegisterType((*PullMessageResp)(nil), "open_im_sdk.PullMessageResp")
2520 2521 2522 2523 2524
	proto.RegisterType((*GetMaxAndMinSeqReq)(nil), "open_im_sdk.GetMaxAndMinSeqReq")
	proto.RegisterType((*GetMaxAndMinSeqResp)(nil), "open_im_sdk.GetMaxAndMinSeqResp")
	proto.RegisterType((*GatherFormat)(nil), "open_im_sdk.GatherFormat")
	proto.RegisterType((*UserSendMsgResp)(nil), "open_im_sdk.UserSendMsgResp")
	proto.RegisterType((*MsgData)(nil), "open_im_sdk.MsgData")
programor_guo's avatar
programor_guo 已提交
2525
	proto.RegisterMapType((map[string]bool)(nil), "open_im_sdk.MsgData.OptionsEntry")
W
wenxu12345 已提交
2526
	proto.RegisterType((*OfflinePushInfo)(nil), "open_im_sdk.OfflinePushInfo")
W
wenxu12345 已提交
2527 2528 2529 2530 2531 2532 2533 2534
	proto.RegisterType((*TipsComm)(nil), "open_im_sdk.TipsComm")
	proto.RegisterType((*MemberEnterTips)(nil), "open_im_sdk.MemberEnterTips")
	proto.RegisterType((*MemberLeaveTips)(nil), "open_im_sdk.MemberLeaveTips")
	proto.RegisterType((*MemberInvitedTips)(nil), "open_im_sdk.MemberInvitedTips")
	proto.RegisterType((*MemberKickedTips)(nil), "open_im_sdk.MemberKickedTips")
	proto.RegisterType((*MemberInfoChangedTips)(nil), "open_im_sdk.MemberInfoChangedTips")
	proto.RegisterType((*GroupCreatedTips)(nil), "open_im_sdk.GroupCreatedTips")
	proto.RegisterType((*GroupInfoChangedTips)(nil), "open_im_sdk.GroupInfoChangedTips")
W
wenxu12345 已提交
2535
	proto.RegisterType((*JoinGroupApplicationTips)(nil), "open_im_sdk.JoinGroupApplicationTips")
W
wenxu12345 已提交
2536 2537
	proto.RegisterType((*ApplicationProcessedTips)(nil), "open_im_sdk.ApplicationProcessedTips")
	proto.RegisterType((*FriendApplication)(nil), "open_im_sdk.FriendApplication")
W
wenxu12345 已提交
2538
	proto.RegisterType((*FromToUserID)(nil), "open_im_sdk.FromToUserID")
programor_guo's avatar
programor_guo 已提交
2539 2540 2541 2542 2543 2544
	proto.RegisterType((*FriendApplicationAddedTips)(nil), "open_im_sdk.FriendApplicationAddedTips")
	proto.RegisterType((*FriendApplicationProcessedTips)(nil), "open_im_sdk.FriendApplicationProcessedTips")
	proto.RegisterType((*FriendAddedTips)(nil), "open_im_sdk.FriendAddedTips")
	proto.RegisterType((*FriendDeletedTips)(nil), "open_im_sdk.FriendDeletedTips")
	proto.RegisterType((*BlackAddedTips)(nil), "open_im_sdk.BlackAddedTips")
	proto.RegisterType((*BlackDeletedTips)(nil), "open_im_sdk.BlackDeletedTips")
W
wenxu12345 已提交
2545 2546 2547 2548
	proto.RegisterType((*FriendInfoChangedTips)(nil), "open_im_sdk.FriendInfoChangedTips")
	proto.RegisterType((*SelfInfoUpdatedTips)(nil), "open_im_sdk.SelfInfoUpdatedTips")
}

programor_guo's avatar
programor_guo 已提交
2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672
func init() { proto.RegisterFile("sdk_ws/ws.proto", fileDescriptor_ws_f46b8824c5dbc584) }

var fileDescriptor_ws_f46b8824c5dbc584 = []byte{
	// 1917 bytes of a gzipped FileDescriptorProto
	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x59, 0x4f, 0x6f, 0x1c, 0x49,
	0x15, 0x57, 0xf7, 0x4c, 0xcf, 0x78, 0xde, 0x8c, 0x3d, 0x4e, 0xe7, 0xcf, 0x36, 0x61, 0x15, 0x0d,
	0xad, 0x15, 0xb2, 0x10, 0x64, 0xa5, 0xac, 0x90, 0x96, 0xa0, 0x05, 0x62, 0x3b, 0xce, 0x26, 0xc4,
	0xb1, 0x69, 0x27, 0x70, 0xe0, 0x10, 0xb5, 0xa7, 0x6b, 0xc6, 0xcd, 0x74, 0x57, 0xcd, 0x74, 0x75,
	0x3b, 0xc9, 0x85, 0x33, 0x5f, 0x00, 0x2e, 0x2b, 0x10, 0x37, 0xc4, 0x95, 0x03, 0x7c, 0x21, 0xc4,
	0x01, 0x89, 0x13, 0xe2, 0x04, 0x07, 0x54, 0xaf, 0xaa, 0xbb, 0xab, 0x7a, 0xc6, 0x8e, 0xed, 0x44,
	0xb9, 0xec, 0x6d, 0xde, 0xaf, 0x5f, 0xbd, 0xff, 0xf5, 0xea, 0x55, 0x0d, 0x0c, 0x79, 0x34, 0x7b,
	0xf9, 0x8a, 0x7f, 0xfa, 0x8a, 0xdf, 0x9d, 0x67, 0x2c, 0x67, 0x6e, 0x9f, 0xcd, 0x09, 0x7d, 0x19,
	0xa7, 0x2f, 0x79, 0x34, 0xf3, 0xff, 0x63, 0x43, 0xef, 0x51, 0xc6, 0x8a, 0xf9, 0x63, 0x3a, 0x61,
	0xae, 0x07, 0xdd, 0x29, 0x12, 0xbb, 0x9e, 0x35, 0xb2, 0xb6, 0x7a, 0x41, 0x49, 0xba, 0x1f, 0x43,
	0x0f, 0x7f, 0x3e, 0x0b, 0x53, 0xe2, 0xd9, 0xf8, 0xad, 0x06, 0x5c, 0x1f, 0x06, 0x94, 0xe5, 0xf1,
	0x24, 0x1e, 0x87, 0x79, 0xcc, 0xa8, 0xd7, 0x42, 0x06, 0x03, 0x13, 0x3c, 0x31, 0xcd, 0x33, 0x16,
	0x15, 0x63, 0xe4, 0x69, 0x4b, 0x1e, 0x1d, 0x13, 0xfa, 0x27, 0xe1, 0x98, 0xbc, 0x08, 0x9e, 0x7a,
	0x8e, 0xd4, 0xaf, 0x48, 0x77, 0x04, 0x7d, 0xf6, 0x8a, 0x92, 0xec, 0x05, 0x27, 0xd9, 0xe3, 0x5d,
	0xaf, 0x83, 0x5f, 0x75, 0xc8, 0xbd, 0x03, 0x30, 0xce, 0x48, 0x98, 0x93, 0xe7, 0x71, 0x4a, 0xbc,
	0xee, 0xc8, 0xda, 0x5a, 0x0f, 0x34, 0x44, 0x48, 0x48, 0x49, 0x7a, 0x4c, 0xb2, 0x1d, 0x56, 0xd0,
	0xdc, 0x5b, 0x43, 0x06, 0x1d, 0x72, 0x37, 0xc0, 0x26, 0xaf, 0xbd, 0x1e, 0x8a, 0xb6, 0xc9, 0x6b,
	0xf7, 0x16, 0x74, 0x78, 0x1e, 0xe6, 0x05, 0xf7, 0x60, 0x64, 0x6d, 0x39, 0x81, 0xa2, 0xdc, 0x4f,
	0x60, 0x1d, 0xe5, 0xb2, 0xd2, 0x9a, 0x3e, 0x2e, 0x31, 0xc1, 0x2a, 0x62, 0xcf, 0xdf, 0xcc, 0x89,
	0x37, 0x40, 0x01, 0x35, 0xe0, 0xff, 0xcd, 0x86, 0xeb, 0x18, 0xf7, 0x7d, 0x34, 0x60, 0xaf, 0x48,
	0x92, 0xb7, 0x64, 0xe0, 0x16, 0x74, 0x0a, 0xa9, 0x4e, 0x86, 0x5f, 0x51, 0x42, 0x4f, 0xc6, 0x12,
	0xf2, 0x94, 0x9c, 0x92, 0x04, 0x03, 0xef, 0x04, 0x35, 0xe0, 0xde, 0x86, 0xb5, 0x5f, 0xb1, 0x98,
	0x62, 0x4c, 0x44, 0xc4, 0x5b, 0x41, 0x45, 0x8b, 0x6f, 0x34, 0x1e, 0xcf, 0xa8, 0x48, 0xa9, 0x0c,
	0x77, 0x45, 0xeb, 0x99, 0xe8, 0x98, 0x99, 0xf8, 0x36, 0x6c, 0x84, 0xf3, 0xf9, 0x7e, 0x48, 0xa7,
	0x24, 0x93, 0x4a, 0xbb, 0xa8, 0xb4, 0x81, 0x8a, 0x7c, 0x08, 0x4d, 0x47, 0xac, 0xc8, 0xc6, 0x04,
	0xc3, 0xed, 0x04, 0x1a, 0x22, 0xe4, 0xb0, 0x39, 0xc9, 0xb4, 0x30, 0xca, 0xc8, 0x37, 0x50, 0x95,
	0x15, 0x28, 0xb3, 0xe2, 0xff, 0xc1, 0x82, 0x8d, 0xc3, 0xe2, 0x38, 0x89, 0xc7, 0xc8, 0x20, 0x82,
	0x56, 0x87, 0xc6, 0x32, 0x42, 0xa3, 0x3b, 0x68, 0x9f, 0xed, 0x60, 0xcb, 0x74, 0xf0, 0x16, 0x74,
	0xa6, 0x84, 0x46, 0x24, 0xc3, 0x80, 0x39, 0x81, 0xa2, 0x56, 0x38, 0xee, 0xac, 0x72, 0xdc, 0xff,
	0x9d, 0x0d, 0x6b, 0x1f, 0xd8, 0xb4, 0x11, 0xf4, 0xe7, 0x27, 0x8c, 0x92, 0x67, 0x85, 0x28, 0x26,
	0x95, 0x4c, 0x1d, 0x72, 0x6f, 0x80, 0x73, 0x1c, 0x67, 0xf9, 0x09, 0x66, 0x73, 0x3d, 0x90, 0x84,
	0x40, 0x49, 0x1a, 0xc6, 0x32, 0x85, 0xbd, 0x40, 0x12, 0x2a, 0xe2, 0x6b, 0xd5, 0x3e, 0x30, 0x77,
	0x56, 0x6f, 0x69, 0x67, 0x2d, 0x07, 0x06, 0x56, 0x06, 0xe6, 0xdf, 0x16, 0xc0, 0x5e, 0x16, 0x13,
	0x1a, 0x61, 0x68, 0x1a, 0x5b, 0xda, 0x5a, 0xde, 0xd2, 0xb7, 0xa0, 0x93, 0x91, 0x34, 0xcc, 0x66,
	0x65, 0xc9, 0x4b, 0xaa, 0x61, 0x50, 0x6b, 0xc9, 0xa0, 0xef, 0x03, 0x4c, 0x50, 0x8f, 0x90, 0x83,
	0xa1, 0xea, 0xdf, 0xbb, 0x79, 0x57, 0x6b, 0x7b, 0x77, 0xcb, 0xfc, 0x04, 0x1a, 0xa3, 0xd8, 0x49,
	0x61, 0x14, 0xa9, 0x82, 0x95, 0xb9, 0xad, 0x81, 0x15, 0xf5, 0xda, 0x39, 0xa7, 0x5e, 0xbb, 0x55,
	0xbd, 0xfe, 0xc3, 0x82, 0xde, 0x76, 0x12, 0x8e, 0x67, 0x17, 0x74, 0xda, 0x74, 0xce, 0x5e, 0x72,
	0xee, 0x01, 0xac, 0x1f, 0x0b, 0x71, 0xa5, 0x0b, 0xe8, 0x7f, 0xff, 0xde, 0x37, 0x0d, 0xff, 0xcc,
	0x0d, 0x12, 0x98, 0x2b, 0x4c, 0x47, 0xdb, 0x6f, 0x77, 0xd4, 0x39, 0xc7, 0xd1, 0x4e, 0xe5, 0xe8,
	0x6f, 0x6c, 0x18, 0x60, 0x4b, 0x0b, 0xc8, 0xa2, 0x20, 0x3c, 0x3f, 0xb3, 0xf6, 0xb5, 0x1e, 0x67,
	0x9b, 0x3d, 0xce, 0x87, 0xc1, 0x49, 0x48, 0xa3, 0x84, 0x04, 0x84, 0x17, 0x49, 0x5e, 0x9e, 0x23,
	0x3a, 0x26, 0x8b, 0x62, 0xb1, 0xcf, 0xa7, 0xea, 0x04, 0x51, 0x94, 0x70, 0x4a, 0xf2, 0x89, 0x4f,
	0xd2, 0xe2, 0x1a, 0x10, 0x3a, 0x33, 0xb2, 0xc0, 0x90, 0xca, 0x1d, 0x50, 0x92, 0xb5, 0x4e, 0xe5,
	0x6c, 0x57, 0xd7, 0x59, 0xe7, 0x44, 0xd2, 0x28, 0x40, 0x1e, 0x1d, 0x1a, 0xd2, 0x3c, 0x39, 0xfc,
	0xaf, 0x6c, 0x58, 0x97, 0x95, 0x5e, 0xc6, 0xe2, 0x8e, 0x28, 0x49, 0x96, 0x1a, 0x69, 0xd7, 0x10,
	0xd1, 0x0f, 0x72, 0xf6, 0x42, 0xef, 0xef, 0x15, 0xbd, 0x32, 0x2a, 0xce, 0x05, 0xa3, 0x62, 0x56,
	0x93, 0xb3, 0x54, 0x4d, 0x9f, 0xc0, 0xba, 0x94, 0x63, 0x16, 0xb5, 0x09, 0x9a, 0xb1, 0xed, 0x36,
	0x63, 0x7b, 0xd9, 0xe8, 0xfc, 0xcf, 0x02, 0xef, 0xb0, 0x48, 0x92, 0x7d, 0xc2, 0x79, 0x38, 0x25,
	0xdb, 0x6f, 0x8e, 0xc8, 0xe2, 0x69, 0xcc, 0xf3, 0x80, 0xf0, 0xb9, 0x48, 0x14, 0xc9, 0xb2, 0x1d,
	0x16, 0x11, 0x8c, 0x92, 0x13, 0x94, 0xa4, 0x70, 0x91, 0x64, 0x99, 0xb0, 0x40, 0x75, 0x03, 0x49,
	0x09, 0x3c, 0x0d, 0x5f, 0x1f, 0x91, 0x05, 0x06, 0xa6, 0x15, 0x28, 0x0a, 0xf1, 0x98, 0x0a, 0xbc,
	0xad, 0x70, 0xa4, 0xdc, 0x1f, 0xc3, 0x3a, 0x8f, 0xe9, 0x54, 0x26, 0x57, 0x16, 0x4b, 0x6b, 0xab,
	0x7f, 0xef, 0x1b, 0xc6, 0x06, 0x7a, 0x14, 0xe6, 0x27, 0x24, 0xdb, 0x63, 0x59, 0x1a, 0xe6, 0x81,
	0xc9, 0xef, 0x7e, 0x01, 0x03, 0x2c, 0xd8, 0x72, 0x7d, 0xe7, 0x6d, 0xeb, 0x0d, 0x76, 0x3f, 0x85,
	0x8f, 0x56, 0x7b, 0xbf, 0x38, 0x73, 0xc7, 0x88, 0xae, 0x81, 0x9b, 0x2f, 0x66, 0xb4, 0x2a, 0x10,
	0x1d, 0x12, 0x61, 0xe3, 0x52, 0x8e, 0xd7, 0x1a, 0xb5, 0xb6, 0x5a, 0x41, 0x49, 0xfa, 0xbf, 0x16,
	0xc7, 0x65, 0xa5, 0xee, 0x3c, 0x2d, 0xb7, 0x61, 0x8d, 0x93, 0xc5, 0x36, 0x99, 0xc6, 0x14, 0x55,
	0xb4, 0x82, 0x8a, 0xc6, 0x59, 0x88, 0x2c, 0x1e, 0xd2, 0xa8, 0x0c, 0xb2, 0xa4, 0x9a, 0x96, 0xb5,
	0x97, 0x2c, 0x13, 0x5d, 0x7f, 0x68, 0x18, 0xf0, 0xb5, 0x48, 0xf2, 0x0d, 0x70, 0x1f, 0x91, 0x7c,
	0x3f, 0x7c, 0xfd, 0x80, 0x46, 0xfb, 0x68, 0x52, 0x40, 0x16, 0xfe, 0x43, 0xb8, 0xbe, 0x84, 0xf2,
	0xb9, 0xe6, 0x9c, 0x75, 0x86, 0x73, 0xb6, 0xee, 0x9c, 0xff, 0x25, 0x0c, 0x74, 0xd5, 0x62, 0x83,
	0xc5, 0x91, 0x4a, 0xa6, 0x1d, 0x47, 0xee, 0x16, 0xb4, 0x13, 0x51, 0x09, 0x36, 0xda, 0x7c, 0xc3,
	0xb0, 0x79, 0x9f, 0x4f, 0x77, 0xc3, 0x3c, 0x0c, 0x90, 0xc3, 0x5f, 0xc0, 0x50, 0x58, 0x7c, 0x44,
	0x68, 0xb4, 0xcf, 0xa7, 0x68, 0xcc, 0x08, 0xfa, 0x9c, 0x64, 0xa7, 0xe8, 0x46, 0x7d, 0x42, 0x69,
	0x90, 0xe0, 0x18, 0x27, 0x31, 0xa1, 0xb9, 0xe4, 0x50, 0xd5, 0xa8, 0x41, 0xb2, 0x92, 0x68, 0x54,
	0x1d, 0xcf, 0x58, 0x49, 0x92, 0xf6, 0xff, 0xea, 0x40, 0x57, 0x19, 0x21, 0xab, 0x8a, 0x46, 0x75,
	0x25, 0x4a, 0x4a, 0x76, 0xb3, 0xf1, 0x69, 0x3d, 0xeb, 0x4a, 0x4a, 0x3f, 0x39, 0x5a, 0xe6, 0xc9,
	0xd1, 0xb0, 0xa9, 0xbd, 0x6c, 0x53, 0xc3, 0x2f, 0x67, 0xd9, 0xaf, 0xef, 0xc0, 0x26, 0xc7, 0x79,
	0xea, 0x30, 0x09, 0xf3, 0x09, 0xcb, 0x52, 0xd5, 0x0e, 0x9d, 0x60, 0x09, 0x17, 0x87, 0xa4, 0xc4,
	0x9e, 0x95, 0x53, 0x9c, 0x6c, 0x8b, 0x0d, 0x54, 0xf4, 0x57, 0x89, 0xec, 0xa9, 0x89, 0x4e, 0x8e,
	0x55, 0x26, 0x28, 0x6d, 0xe3, 0x3c, 0x66, 0x14, 0x6f, 0x0b, 0x3d, 0x54, 0xaa, 0x43, 0xc2, 0xf3,
	0x94, 0x4f, 0xf7, 0x32, 0x96, 0xaa, 0xe1, 0xaa, 0x24, 0xd1, 0x73, 0x46, 0x73, 0x42, 0x73, 0x5c,
	0xdb, 0x97, 0x6b, 0x35, 0x48, 0xac, 0x55, 0x24, 0xde, 0x43, 0x06, 0x41, 0x49, 0x8a, 0xbe, 0x3e,
	0x61, 0xd9, 0x98, 0x60, 0xdf, 0x58, 0x1f, 0xb5, 0x44, 0x5f, 0xaf, 0x00, 0x77, 0x13, 0x5a, 0x9c,
	0x2c, 0xbc, 0x0d, 0x4c, 0xa0, 0xf8, 0x69, 0xe4, 0x75, 0x68, 0xe6, 0xb5, 0x71, 0xd2, 0x6c, 0xe2,
	0x57, 0xfd, 0xa4, 0xf9, 0x21, 0x74, 0xd9, 0x5c, 0xf4, 0x04, 0xee, 0x5d, 0xc3, 0xba, 0xfc, 0xd6,
	0xaa, 0xba, 0xbc, 0x7b, 0x20, 0x79, 0x1e, 0xd2, 0x3c, 0x7b, 0x13, 0x94, 0x2b, 0xdc, 0x3d, 0x18,
	0xb2, 0xc9, 0x24, 0x89, 0x29, 0x39, 0x2c, 0xf8, 0x09, 0x8e, 0x3d, 0x2e, 0x8e, 0x3d, 0x1f, 0x1b,
	0x42, 0x0e, 0x4c, 0x9e, 0xa0, 0xb9, 0xe8, 0xf6, 0x7d, 0x18, 0xe8, 0x0a, 0x84, 0x8b, 0x33, 0xf2,
	0x46, 0x55, 0x9f, 0xf8, 0x29, 0x46, 0xe2, 0xd3, 0x30, 0x29, 0xe4, 0xe4, 0xb5, 0x16, 0x48, 0xe2,
	0xbe, 0xfd, 0xb9, 0xe5, 0xff, 0xd6, 0x82, 0x61, 0x43, 0x81, 0xe0, 0xce, 0xe3, 0x3c, 0x21, 0x4a,
	0x82, 0x24, 0x5c, 0x17, 0xda, 0x11, 0xe1, 0x63, 0x55, 0xbc, 0xf8, 0x5b, 0x1d, 0x82, 0xad, 0x6a,
	0xa8, 0x16, 0xd7, 0xe1, 0x83, 0x23, 0x21, 0xe8, 0x88, 0x15, 0x34, 0xaa, 0xae, 0xc3, 0x1a, 0x26,
	0x8a, 0x27, 0x3e, 0x38, 0xda, 0x0e, 0xa3, 0x29, 0x91, 0x97, 0x56, 0x07, 0x6d, 0x32, 0x41, 0x7f,
	0x17, 0xd6, 0x9e, 0xc7, 0x73, 0xbe, 0xc3, 0xd2, 0x54, 0x6c, 0x9c, 0x88, 0xe4, 0x62, 0xa2, 0xb7,
	0x30, 0xd3, 0x8a, 0x12, 0x45, 0x12, 0x91, 0x49, 0x58, 0x24, 0xb9, 0x60, 0x2d, 0xb7, 0xac, 0x06,
	0xf9, 0x7f, 0xb6, 0x60, 0x28, 0xef, 0xa2, 0x0f, 0x69, 0x4e, 0x32, 0x81, 0xb9, 0xdf, 0x05, 0x07,
	0xf7, 0x17, 0x0a, 0xeb, 0xdf, 0xbb, 0x65, 0x36, 0xbf, 0xf2, 0xd5, 0x20, 0x90, 0x4c, 0xee, 0x36,
	0xf4, 0x09, 0xcd, 0xb3, 0x90, 0xe6, 0x38, 0x76, 0xdb, 0xb8, 0x66, 0xb4, 0xbc, 0xc6, 0xbc, 0xf1,
	0x06, 0xfa, 0x22, 0xe1, 0x71, 0x75, 0x76, 0x68, 0xdd, 0xc3, 0x04, 0xfd, 0x3f, 0x55, 0xb6, 0x3e,
	0x25, 0xe1, 0x29, 0xb9, 0x82, 0xad, 0x3f, 0x01, 0x48, 0xc4, 0xd2, 0xec, 0x52, 0xa6, 0x6a, 0x6b,
	0x2e, 0x68, 0xe9, 0xbf, 0x2c, 0xb8, 0x26, 0x85, 0x3c, 0xa6, 0xa7, 0x71, 0x4e, 0xa2, 0x2b, 0xd8,
	0xfa, 0x39, 0x74, 0xd8, 0xfc, 0x52, 0x76, 0x2a, 0x7e, 0xf7, 0x09, 0x0c, 0x63, 0xa9, 0x56, 0x90,
	0xd5, 0x70, 0x70, 0x11, 0x11, 0xcd, 0x85, 0xcb, 0xfe, 0xb6, 0x57, 0xf9, 0xfb, 0x4f, 0x0b, 0x36,
	0xa5, 0xa4, 0x9f, 0xc6, 0xe3, 0xd9, 0x07, 0x76, 0xf7, 0x4b, 0xd8, 0x98, 0xa1, 0xd6, 0x4b, 0x7b,
	0xdb, 0x58, 0x77, 0x41, 0x67, 0xff, 0x6b, 0xc1, 0xcd, 0x32, 0xb9, 0x13, 0xb6, 0x73, 0x22, 0xae,
	0xba, 0xd2, 0x63, 0xd1, 0x0b, 0x91, 0xc4, 0x96, 0x2c, 0x47, 0x1c, 0x0d, 0x79, 0x07, 0x1f, 0x7f,
	0x04, 0xbd, 0x49, 0x4c, 0xc3, 0x44, 0xbb, 0xf9, 0xbd, 0x7d, 0x71, 0xbd, 0x44, 0x74, 0xf0, 0xb4,
	0x50, 0x3d, 0x5a, 0xbd, 0x07, 0x95, 0x74, 0x9d, 0x27, 0xe7, 0x02, 0x79, 0xf2, 0xff, 0x6e, 0xc1,
	0x26, 0x82, 0x3b, 0xd8, 0xe3, 0xaf, 0x92, 0xea, 0xfb, 0xd0, 0x55, 0x6f, 0x66, 0x17, 0x8e, 0x43,
	0xb9, 0x40, 0xec, 0x60, 0xf9, 0x76, 0x77, 0xa9, 0x44, 0x6b, 0x6b, 0x2e, 0x98, 0xe4, 0x3f, 0x5a,
	0x70, 0xa3, 0x32, 0x5c, 0xcf, 0xb1, 0x38, 0x77, 0x15, 0x59, 0x27, 0x59, 0x87, 0xea, 0x60, 0xd8,
	0x97, 0xab, 0xfb, 0xd6, 0xe5, 0x6a, 0xc2, 0xff, 0xca, 0x02, 0xef, 0x09, 0x8b, 0x29, 0xf2, 0x3c,
	0x98, 0xcf, 0x13, 0xf5, 0xe4, 0x7a, 0x85, 0x8c, 0xfc, 0x00, 0x7a, 0xa1, 0x14, 0x40, 0x73, 0x65,
	0xf6, 0xb9, 0x0f, 0x0b, 0x35, 0xb7, 0x9c, 0xd9, 0x42, 0x5e, 0xbd, 0xfe, 0x2a, 0xca, 0xff, 0x8b,
	0x05, 0x9e, 0x66, 0xd4, 0x61, 0xc6, 0xc6, 0x84, 0xf3, 0x0f, 0xdc, 0x1a, 0xd0, 0x38, 0xed, 0xf2,
	0xac, 0x28, 0xcd, 0xe8, 0xb6, 0x61, 0xf4, 0x0c, 0xae, 0xc9, 0xfb, 0xbb, 0x66, 0xb9, 0x98, 0xa3,
	0xc2, 0x48, 0x0e, 0x3f, 0x72, 0x4e, 0x2f, 0x49, 0xf3, 0x41, 0x45, 0xbd, 0x8e, 0xd7, 0x0f, 0x2a,
	0x77, 0x00, 0xc2, 0x28, 0xfa, 0x05, 0xcb, 0xa2, 0x98, 0x4e, 0x55, 0x74, 0x34, 0xc4, 0x7f, 0x02,
	0x03, 0x31, 0xc9, 0x3d, 0x67, 0xf5, 0x6b, 0xc3, 0x55, 0xdf, 0x0a, 0xfc, 0x5f, 0xc2, 0xed, 0x25,
	0xc3, 0x1f, 0x44, 0x91, 0x0a, 0xf7, 0x17, 0x30, 0x98, 0x68, 0x9a, 0x54, 0xd4, 0xcd, 0x4b, 0x8d,
	0x6e, 0x4a, 0x60, 0xb0, 0xfb, 0x2f, 0xe1, 0xce, 0x92, 0x70, 0x33, 0x9f, 0xef, 0xa8, 0xe0, 0xf7,
	0x16, 0x0c, 0x95, 0x86, 0xca, 0xe6, 0x4f, 0xa1, 0x23, 0xdf, 0xe8, 0x94, 0xb0, 0x8f, 0x1a, 0xc2,
	0xca, 0xf7, 0xc4, 0x40, 0xb1, 0x2d, 0xef, 0x6b, 0x7b, 0xc5, 0xbe, 0x76, 0x3f, 0x6b, 0x6c, 0xb7,
	0x73, 0xcb, 0xbc, 0xdc, 0x69, 0x41, 0x59, 0x16, 0xbb, 0x24, 0x21, 0xf9, 0xfb, 0xf1, 0xf9, 0x00,
	0x36, 0xf0, 0x79, 0xf0, 0xbd, 0x65, 0xe9, 0x67, 0xb0, 0x89, 0x02, 0xdf, 0xa3, 0x8d, 0x3f, 0x87,
	0x9b, 0x75, 0xa0, 0xf5, 0x26, 0xf8, 0x8e, 0x72, 0xbf, 0x07, 0xd7, 0x8f, 0x48, 0x32, 0x11, 0x52,
	0x5f, 0xcc, 0xa3, 0xea, 0x14, 0x39, 0xe3, 0x81, 0xe2, 0xb8, 0x83, 0x7f, 0x60, 0x7d, 0xf6, 0xff,
	0x00, 0x00, 0x00, 0xff, 0xff, 0x5a, 0xf7, 0xb0, 0x0f, 0xd3, 0x1a, 0x00, 0x00,
2673
}