ws.pb.go 80.3 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 21

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

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

func (m *PullMessageBySeqListResp) Reset()         { *m = PullMessageBySeqListResp{} }
func (m *PullMessageBySeqListResp) String() string { return proto.CompactTextString(m) }
func (*PullMessageBySeqListResp) ProtoMessage()    {}
func (*PullMessageBySeqListResp) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
37
	return fileDescriptor_ws_1ed69884ac12b8b9, []int{0}
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
}
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

programor_guo's avatar
programor_guo 已提交
57 58 59 60 61 62 63 64 65 66 67 68 69 70
func (m *PullMessageBySeqListResp) GetErrCode() int32 {
	if m != nil {
		return m.ErrCode
	}
	return 0
}

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

71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
func (m *PullMessageBySeqListResp) GetMaxSeq() int64 {
	if m != nil {
		return m.MaxSeq
	}
	return 0
}

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

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

func (m *PullMessageBySeqListResp) GetGroupUserMsg() []*GatherFormat {
	if m != nil {
		return m.GroupUserMsg
	}
	return nil
}

type PullMessageBySeqListReq struct {
programor_guo's avatar
programor_guo 已提交
100 101 102
	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"`
103 104 105 106 107 108 109 110 111
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (m *PullMessageBySeqListReq) Reset()         { *m = PullMessageBySeqListReq{} }
func (m *PullMessageBySeqListReq) String() string { return proto.CompactTextString(m) }
func (*PullMessageBySeqListReq) ProtoMessage()    {}
func (*PullMessageBySeqListReq) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
112
	return fileDescriptor_ws_1ed69884ac12b8b9, []int{1}
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
}
func (m *PullMessageBySeqListReq) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_PullMessageBySeqListReq.Unmarshal(m, b)
}
func (m *PullMessageBySeqListReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_PullMessageBySeqListReq.Marshal(b, m, deterministic)
}
func (dst *PullMessageBySeqListReq) XXX_Merge(src proto.Message) {
	xxx_messageInfo_PullMessageBySeqListReq.Merge(dst, src)
}
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

programor_guo's avatar
programor_guo 已提交
132 133 134 135 136 137 138 139 140 141 142 143 144 145
func (m *PullMessageBySeqListReq) GetUserID() string {
	if m != nil {
		return m.UserID
	}
	return ""
}

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

146 147 148 149 150 151 152
func (m *PullMessageBySeqListReq) GetSeqList() []int64 {
	if m != nil {
		return m.SeqList
	}
	return nil
}

programor_guo's avatar
programor_guo 已提交
153 154 155 156 157 158 159 160 161 162 163 164 165 166
type PullMessageReq struct {
	UserID               string   `protobuf:"bytes,1,opt,name=userID" json:"userID,omitempty"`
	SeqBegin             int64    `protobuf:"varint,2,opt,name=seqBegin" json:"seqBegin,omitempty"`
	SeqEnd               int64    `protobuf:"varint,3,opt,name=seqEnd" json:"seqEnd,omitempty"`
	OperationID          string   `protobuf:"bytes,4,opt,name=operationID" json:"operationID,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (m *PullMessageReq) Reset()         { *m = PullMessageReq{} }
func (m *PullMessageReq) String() string { return proto.CompactTextString(m) }
func (*PullMessageReq) ProtoMessage()    {}
func (*PullMessageReq) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
167
	return fileDescriptor_ws_1ed69884ac12b8b9, []int{2}
programor_guo's avatar
programor_guo 已提交
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
}
func (m *PullMessageReq) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_PullMessageReq.Unmarshal(m, b)
}
func (m *PullMessageReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_PullMessageReq.Marshal(b, m, deterministic)
}
func (dst *PullMessageReq) XXX_Merge(src proto.Message) {
	xxx_messageInfo_PullMessageReq.Merge(dst, src)
}
func (m *PullMessageReq) XXX_Size() int {
	return xxx_messageInfo_PullMessageReq.Size(m)
}
func (m *PullMessageReq) XXX_DiscardUnknown() {
	xxx_messageInfo_PullMessageReq.DiscardUnknown(m)
}

var xxx_messageInfo_PullMessageReq proto.InternalMessageInfo

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

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

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

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

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

func (m *PullMessageResp) Reset()         { *m = PullMessageResp{} }
func (m *PullMessageResp) String() string { return proto.CompactTextString(m) }
func (*PullMessageResp) ProtoMessage()    {}
func (*PullMessageResp) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
231
	return fileDescriptor_ws_1ed69884ac12b8b9, []int{3}
programor_guo's avatar
programor_guo 已提交
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
}
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
}

293 294 295 296 297 298 299 300 301 302
type GetMaxAndMinSeqReq struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (m *GetMaxAndMinSeqReq) Reset()         { *m = GetMaxAndMinSeqReq{} }
func (m *GetMaxAndMinSeqReq) String() string { return proto.CompactTextString(m) }
func (*GetMaxAndMinSeqReq) ProtoMessage()    {}
func (*GetMaxAndMinSeqReq) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
303
	return fileDescriptor_ws_1ed69884ac12b8b9, []int{4}
304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334
}
func (m *GetMaxAndMinSeqReq) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_GetMaxAndMinSeqReq.Unmarshal(m, b)
}
func (m *GetMaxAndMinSeqReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_GetMaxAndMinSeqReq.Marshal(b, m, deterministic)
}
func (dst *GetMaxAndMinSeqReq) XXX_Merge(src proto.Message) {
	xxx_messageInfo_GetMaxAndMinSeqReq.Merge(dst, src)
}
func (m *GetMaxAndMinSeqReq) XXX_Size() int {
	return xxx_messageInfo_GetMaxAndMinSeqReq.Size(m)
}
func (m *GetMaxAndMinSeqReq) XXX_DiscardUnknown() {
	xxx_messageInfo_GetMaxAndMinSeqReq.DiscardUnknown(m)
}

var xxx_messageInfo_GetMaxAndMinSeqReq proto.InternalMessageInfo

type GetMaxAndMinSeqResp struct {
	MaxSeq               int64    `protobuf:"varint,1,opt,name=maxSeq" json:"maxSeq,omitempty"`
	MinSeq               int64    `protobuf:"varint,2,opt,name=minSeq" json:"minSeq,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (m *GetMaxAndMinSeqResp) Reset()         { *m = GetMaxAndMinSeqResp{} }
func (m *GetMaxAndMinSeqResp) String() string { return proto.CompactTextString(m) }
func (*GetMaxAndMinSeqResp) ProtoMessage()    {}
func (*GetMaxAndMinSeqResp) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
335
	return fileDescriptor_ws_1ed69884ac12b8b9, []int{5}
336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370
}
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"
programor_guo's avatar
programor_guo 已提交
371
	Id string `protobuf:"bytes,1,opt,name=id" json:"id"`
372
	// @inject_tag: json:"list"
programor_guo's avatar
programor_guo 已提交
373 374 375 376
	List                 []*MsgData `protobuf:"bytes,2,rep,name=list" json:"list"`
	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
	XXX_unrecognized     []byte     `json:"-"`
	XXX_sizecache        int32      `json:"-"`
377 378 379 380 381 382
}

func (m *GatherFormat) Reset()         { *m = GatherFormat{} }
func (m *GatherFormat) String() string { return proto.CompactTextString(m) }
func (*GatherFormat) ProtoMessage()    {}
func (*GatherFormat) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
383
	return fileDescriptor_ws_1ed69884ac12b8b9, []int{6}
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402
}
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

programor_guo's avatar
programor_guo 已提交
403
func (m *GatherFormat) GetId() string {
404
	if m != nil {
programor_guo's avatar
programor_guo 已提交
405
		return m.Id
406 407 408 409
	}
	return ""
}

programor_guo's avatar
programor_guo 已提交
410
func (m *GatherFormat) GetList() []*MsgData {
411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429
	if m != nil {
		return m.List
	}
	return nil
}

type UserSendMsgResp struct {
	ServerMsgID          string   `protobuf:"bytes,1,opt,name=ServerMsgID" json:"ServerMsgID,omitempty"`
	ClientMsgID          string   `protobuf:"bytes,2,opt,name=ClientMsgID" json:"ClientMsgID,omitempty"`
	SendTime             int64    `protobuf:"varint,3,opt,name=sendTime" json:"sendTime,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (m *UserSendMsgResp) Reset()         { *m = UserSendMsgResp{} }
func (m *UserSendMsgResp) String() string { return proto.CompactTextString(m) }
func (*UserSendMsgResp) ProtoMessage()    {}
func (*UserSendMsgResp) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
430
	return fileDescriptor_ws_1ed69884ac12b8b9, []int{7}
431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471
}
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 {
programor_guo's avatar
programor_guo 已提交
472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492
	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"`
	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"`
	OfflinePushInfo      *OfflinePushInfo `protobuf:"bytes,18,opt,name=offlinePushInfo" json:"offlinePushInfo,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
493 494 495 496 497 498
}

func (m *MsgData) Reset()         { *m = MsgData{} }
func (m *MsgData) String() string { return proto.CompactTextString(m) }
func (*MsgData) ProtoMessage()    {}
func (*MsgData) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
499
	return fileDescriptor_ws_1ed69884ac12b8b9, []int{8}
500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532
}
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)
}
func (m *MsgData) XXX_Size() int {
	return xxx_messageInfo_MsgData.Size(m)
}
func (m *MsgData) XXX_DiscardUnknown() {
	xxx_messageInfo_MsgData.DiscardUnknown(m)
}

var xxx_messageInfo_MsgData proto.InternalMessageInfo

func (m *MsgData) GetSendID() string {
	if m != nil {
		return m.SendID
	}
	return ""
}

func (m *MsgData) GetRecvID() string {
	if m != nil {
		return m.RecvID
	}
	return ""
}

programor_guo's avatar
programor_guo 已提交
533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574
func (m *MsgData) GetGroupID() string {
	if m != nil {
		return m.GroupID
	}
	return ""
}

func (m *MsgData) GetClientMsgID() string {
	if m != nil {
		return m.ClientMsgID
	}
	return ""
}

func (m *MsgData) GetServerMsgID() string {
	if m != nil {
		return m.ServerMsgID
	}
	return ""
}

func (m *MsgData) GetSenderPlatformID() int32 {
	if m != nil {
		return m.SenderPlatformID
	}
	return 0
}

func (m *MsgData) GetSenderNickName() string {
	if m != nil {
		return m.SenderNickName
	}
	return ""
}

func (m *MsgData) GetSenderFaceURL() string {
	if m != nil {
		return m.SenderFaceURL
	}
	return ""
}

575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595
func (m *MsgData) GetSessionType() int32 {
	if m != nil {
		return m.SessionType
	}
	return 0
}

func (m *MsgData) GetMsgFrom() int32 {
	if m != nil {
		return m.MsgFrom
	}
	return 0
}

func (m *MsgData) GetContentType() int32 {
	if m != nil {
		return m.ContentType
	}
	return 0
}

W
wenxu12345 已提交
596
func (m *MsgData) GetContent() []byte {
597 598 599
	if m != nil {
		return m.Content
	}
W
wenxu12345 已提交
600
	return nil
601 602
}

programor_guo's avatar
programor_guo 已提交
603
func (m *MsgData) GetForceList() []string {
604
	if m != nil {
programor_guo's avatar
programor_guo 已提交
605
		return m.ForceList
606
	}
programor_guo's avatar
programor_guo 已提交
607
	return nil
608 609 610 611 612 613 614 615 616
}

func (m *MsgData) GetSeq() int64 {
	if m != nil {
		return m.Seq
	}
	return 0
}

programor_guo's avatar
programor_guo 已提交
617
func (m *MsgData) GetSendTime() int64 {
618
	if m != nil {
programor_guo's avatar
programor_guo 已提交
619
		return m.SendTime
620 621 622 623
	}
	return 0
}

programor_guo's avatar
programor_guo 已提交
624
func (m *MsgData) GetCreateTime() int64 {
625
	if m != nil {
programor_guo's avatar
programor_guo 已提交
626
		return m.CreateTime
627
	}
programor_guo's avatar
programor_guo 已提交
628
	return 0
629 630
}

programor_guo's avatar
programor_guo 已提交
631
func (m *MsgData) GetOptions() map[string]bool {
632
	if m != nil {
programor_guo's avatar
programor_guo 已提交
633
		return m.Options
634
	}
programor_guo's avatar
programor_guo 已提交
635
	return nil
636 637
}

programor_guo's avatar
programor_guo 已提交
638
func (m *MsgData) GetOfflinePushInfo() *OfflinePushInfo {
639
	if m != nil {
programor_guo's avatar
programor_guo 已提交
640
		return m.OfflinePushInfo
641
	}
programor_guo's avatar
programor_guo 已提交
642
	return nil
643 644
}

W
wenxu12345 已提交
645 646 647 648
type OfflinePushInfo struct {
	Title                string   `protobuf:"bytes,1,opt,name=Title" json:"Title,omitempty"`
	Desc                 string   `protobuf:"bytes,2,opt,name=Desc" json:"Desc,omitempty"`
	Ext                  string   `protobuf:"bytes,3,opt,name=Ext" json:"Ext,omitempty"`
W
wenxu12345 已提交
649 650
	IOSPushSound         string   `protobuf:"bytes,4,opt,name=iOSPushSound" json:"iOSPushSound,omitempty"`
	IOSBadgeCount        bool     `protobuf:"varint,5,opt,name=iOSBadgeCount" json:"iOSBadgeCount,omitempty"`
W
wenxu12345 已提交
651 652 653 654 655 656 657 658 659
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (m *OfflinePushInfo) Reset()         { *m = OfflinePushInfo{} }
func (m *OfflinePushInfo) String() string { return proto.CompactTextString(m) }
func (*OfflinePushInfo) ProtoMessage()    {}
func (*OfflinePushInfo) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
660
	return fileDescriptor_ws_1ed69884ac12b8b9, []int{9}
W
wenxu12345 已提交
661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700
}
func (m *OfflinePushInfo) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_OfflinePushInfo.Unmarshal(m, b)
}
func (m *OfflinePushInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_OfflinePushInfo.Marshal(b, m, deterministic)
}
func (dst *OfflinePushInfo) XXX_Merge(src proto.Message) {
	xxx_messageInfo_OfflinePushInfo.Merge(dst, src)
}
func (m *OfflinePushInfo) XXX_Size() int {
	return xxx_messageInfo_OfflinePushInfo.Size(m)
}
func (m *OfflinePushInfo) XXX_DiscardUnknown() {
	xxx_messageInfo_OfflinePushInfo.DiscardUnknown(m)
}

var xxx_messageInfo_OfflinePushInfo proto.InternalMessageInfo

func (m *OfflinePushInfo) GetTitle() string {
	if m != nil {
		return m.Title
	}
	return ""
}

func (m *OfflinePushInfo) GetDesc() string {
	if m != nil {
		return m.Desc
	}
	return ""
}

func (m *OfflinePushInfo) GetExt() string {
	if m != nil {
		return m.Ext
	}
	return ""
}

W
wenxu12345 已提交
701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724
func (m *OfflinePushInfo) GetIOSPushSound() string {
	if m != nil {
		return m.IOSPushSound
	}
	return ""
}

func (m *OfflinePushInfo) GetIOSBadgeCount() bool {
	if m != nil {
		return m.IOSBadgeCount
	}
	return false
}

// public
type GroupInfo struct {
	GroupID              string          `protobuf:"bytes,1,opt,name=GroupID" json:"GroupID,omitempty"`
	GroupName            string          `protobuf:"bytes,2,opt,name=GroupName" json:"GroupName,omitempty"`
	Notification         string          `protobuf:"bytes,3,opt,name=Notification" json:"Notification,omitempty"`
	Introduction         string          `protobuf:"bytes,4,opt,name=Introduction" json:"Introduction,omitempty"`
	FaceUrl              string          `protobuf:"bytes,5,opt,name=FaceUrl" json:"FaceUrl,omitempty"`
	Owner                *PublicUserInfo `protobuf:"bytes,6,opt,name=Owner" json:"Owner,omitempty"`
	CreateTime           uint64          `protobuf:"varint,7,opt,name=CreateTime" json:"CreateTime,omitempty"`
	MemberCount          uint32          `protobuf:"varint,8,opt,name=MemberCount" json:"MemberCount,omitempty"`
programor_guo's avatar
programor_guo 已提交
725
	Ext                  string          `protobuf:"bytes,9,opt,name=Ext" json:"Ext,omitempty"`
W
wenxu12345 已提交
726 727 728
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
W
pb  
wenxu12345 已提交
729 730
}

W
wenxu12345 已提交
731 732 733 734
func (m *GroupInfo) Reset()         { *m = GroupInfo{} }
func (m *GroupInfo) String() string { return proto.CompactTextString(m) }
func (*GroupInfo) ProtoMessage()    {}
func (*GroupInfo) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
735
	return fileDescriptor_ws_1ed69884ac12b8b9, []int{10}
W
pb  
wenxu12345 已提交
736
}
W
wenxu12345 已提交
737 738
func (m *GroupInfo) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_GroupInfo.Unmarshal(m, b)
W
pb  
wenxu12345 已提交
739
}
W
wenxu12345 已提交
740 741
func (m *GroupInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_GroupInfo.Marshal(b, m, deterministic)
W
pb  
wenxu12345 已提交
742
}
W
wenxu12345 已提交
743 744
func (dst *GroupInfo) XXX_Merge(src proto.Message) {
	xxx_messageInfo_GroupInfo.Merge(dst, src)
W
pb  
wenxu12345 已提交
745
}
W
wenxu12345 已提交
746 747
func (m *GroupInfo) XXX_Size() int {
	return xxx_messageInfo_GroupInfo.Size(m)
W
pb  
wenxu12345 已提交
748
}
W
wenxu12345 已提交
749 750
func (m *GroupInfo) XXX_DiscardUnknown() {
	xxx_messageInfo_GroupInfo.DiscardUnknown(m)
W
pb  
wenxu12345 已提交
751 752
}

W
wenxu12345 已提交
753
var xxx_messageInfo_GroupInfo proto.InternalMessageInfo
W
pb  
wenxu12345 已提交
754

W
wenxu12345 已提交
755
func (m *GroupInfo) GetGroupID() string {
W
pb  
wenxu12345 已提交
756 757 758 759 760 761
	if m != nil {
		return m.GroupID
	}
	return ""
}

W
wenxu12345 已提交
762
func (m *GroupInfo) GetGroupName() string {
W
pb  
wenxu12345 已提交
763 764 765 766 767 768
	if m != nil {
		return m.GroupName
	}
	return ""
}

W
wenxu12345 已提交
769
func (m *GroupInfo) GetNotification() string {
W
pb  
wenxu12345 已提交
770 771 772 773 774 775
	if m != nil {
		return m.Notification
	}
	return ""
}

W
wenxu12345 已提交
776
func (m *GroupInfo) GetIntroduction() string {
W
pb  
wenxu12345 已提交
777 778 779 780 781 782
	if m != nil {
		return m.Introduction
	}
	return ""
}

W
wenxu12345 已提交
783
func (m *GroupInfo) GetFaceUrl() string {
W
pb  
wenxu12345 已提交
784 785 786 787 788 789
	if m != nil {
		return m.FaceUrl
	}
	return ""
}

W
wenxu12345 已提交
790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810
func (m *GroupInfo) GetOwner() *PublicUserInfo {
	if m != nil {
		return m.Owner
	}
	return nil
}

func (m *GroupInfo) GetCreateTime() uint64 {
	if m != nil {
		return m.CreateTime
	}
	return 0
}

func (m *GroupInfo) GetMemberCount() uint32 {
	if m != nil {
		return m.MemberCount
	}
	return 0
}

programor_guo's avatar
programor_guo 已提交
811 812 813 814 815 816 817
func (m *GroupInfo) GetExt() string {
	if m != nil {
		return m.Ext
	}
	return ""
}

W
wenxu12345 已提交
818 819 820 821 822 823 824 825 826
// private, Group members have permission to view
type GroupMemberFullInfo struct {
	GroupID              string   `protobuf:"bytes,1,opt,name=GroupID" json:"GroupID,omitempty"`
	UserID               string   `protobuf:"bytes,2,opt,name=UserID" json:"UserID,omitempty"`
	AdministratorLevel   int32    `protobuf:"varint,3,opt,name=AdministratorLevel" json:"AdministratorLevel,omitempty"`
	JoinTime             uint64   `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"`
	FriendRemark         string   `protobuf:"bytes,7,opt,name=FriendRemark" json:"FriendRemark,omitempty"`
W
wenxu12345 已提交
827
	AppMangerLevel       int32    `protobuf:"varint,8,opt,name=AppMangerLevel" json:"AppMangerLevel,omitempty"`
W
wenxu12345 已提交
828 829 830 831 832 833 834 835 836
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (m *GroupMemberFullInfo) Reset()         { *m = GroupMemberFullInfo{} }
func (m *GroupMemberFullInfo) String() string { return proto.CompactTextString(m) }
func (*GroupMemberFullInfo) ProtoMessage()    {}
func (*GroupMemberFullInfo) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
837
	return fileDescriptor_ws_1ed69884ac12b8b9, []int{11}
W
wenxu12345 已提交
838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857
}
func (m *GroupMemberFullInfo) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_GroupMemberFullInfo.Unmarshal(m, b)
}
func (m *GroupMemberFullInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_GroupMemberFullInfo.Marshal(b, m, deterministic)
}
func (dst *GroupMemberFullInfo) XXX_Merge(src proto.Message) {
	xxx_messageInfo_GroupMemberFullInfo.Merge(dst, src)
}
func (m *GroupMemberFullInfo) XXX_Size() int {
	return xxx_messageInfo_GroupMemberFullInfo.Size(m)
}
func (m *GroupMemberFullInfo) XXX_DiscardUnknown() {
	xxx_messageInfo_GroupMemberFullInfo.DiscardUnknown(m)
}

var xxx_messageInfo_GroupMemberFullInfo proto.InternalMessageInfo

func (m *GroupMemberFullInfo) GetGroupID() string {
W
pb  
wenxu12345 已提交
858
	if m != nil {
W
wenxu12345 已提交
859
		return m.GroupID
W
pb  
wenxu12345 已提交
860 861 862 863
	}
	return ""
}

W
wenxu12345 已提交
864
func (m *GroupMemberFullInfo) GetUserID() string {
W
pb  
wenxu12345 已提交
865
	if m != nil {
W
wenxu12345 已提交
866
		return m.UserID
W
pb  
wenxu12345 已提交
867 868 869 870
	}
	return ""
}

W
wenxu12345 已提交
871
func (m *GroupMemberFullInfo) GetAdministratorLevel() int32 {
W
pb  
wenxu12345 已提交
872
	if m != nil {
W
wenxu12345 已提交
873
		return m.AdministratorLevel
W
pb  
wenxu12345 已提交
874 875 876 877
	}
	return 0
}

W
wenxu12345 已提交
878
func (m *GroupMemberFullInfo) GetJoinTime() uint64 {
W
pb  
wenxu12345 已提交
879
	if m != nil {
W
wenxu12345 已提交
880
		return m.JoinTime
W
pb  
wenxu12345 已提交
881 882 883 884
	}
	return 0
}

W
wenxu12345 已提交
885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905
func (m *GroupMemberFullInfo) GetNickName() string {
	if m != nil {
		return m.NickName
	}
	return ""
}

func (m *GroupMemberFullInfo) GetFaceUrl() string {
	if m != nil {
		return m.FaceUrl
	}
	return ""
}

func (m *GroupMemberFullInfo) GetFriendRemark() string {
	if m != nil {
		return m.FriendRemark
	}
	return ""
}

W
wenxu12345 已提交
906 907 908 909 910 911 912
func (m *GroupMemberFullInfo) GetAppMangerLevel() int32 {
	if m != nil {
		return m.AppMangerLevel
	}
	return 0
}

W
wenxu12345 已提交
913 914
// private, Friends have permission to view
type UserInfo struct {
W
pb  
wenxu12345 已提交
915
	UserID               string   `protobuf:"bytes,1,opt,name=UserID" json:"UserID,omitempty"`
programor_guo's avatar
programor_guo 已提交
916 917
	Nickname             string   `protobuf:"bytes,2,opt,name=Nickname" json:"Nickname,omitempty"`
	FaceUrl              string   `protobuf:"bytes,3,opt,name=FaceUrl" json:"FaceUrl,omitempty"`
W
pb  
wenxu12345 已提交
918 919 920 921
	Gender               int32    `protobuf:"varint,4,opt,name=Gender" json:"Gender,omitempty"`
	Mobile               string   `protobuf:"bytes,5,opt,name=Mobile" json:"Mobile,omitempty"`
	Birth                string   `protobuf:"bytes,6,opt,name=Birth" json:"Birth,omitempty"`
	Email                string   `protobuf:"bytes,7,opt,name=Email" json:"Email,omitempty"`
programor_guo's avatar
programor_guo 已提交
922
	Ext                  string   `protobuf:"bytes,8,opt,name=Ext" json:"Ext,omitempty"`
W
pb  
wenxu12345 已提交
923 924 925 926 927
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

W
wenxu12345 已提交
928 929 930 931
func (m *UserInfo) Reset()         { *m = UserInfo{} }
func (m *UserInfo) String() string { return proto.CompactTextString(m) }
func (*UserInfo) ProtoMessage()    {}
func (*UserInfo) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
932
	return fileDescriptor_ws_1ed69884ac12b8b9, []int{12}
W
pb  
wenxu12345 已提交
933
}
W
wenxu12345 已提交
934 935
func (m *UserInfo) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_UserInfo.Unmarshal(m, b)
W
pb  
wenxu12345 已提交
936
}
W
wenxu12345 已提交
937 938
func (m *UserInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_UserInfo.Marshal(b, m, deterministic)
W
pb  
wenxu12345 已提交
939
}
W
wenxu12345 已提交
940 941
func (dst *UserInfo) XXX_Merge(src proto.Message) {
	xxx_messageInfo_UserInfo.Merge(dst, src)
W
pb  
wenxu12345 已提交
942
}
W
wenxu12345 已提交
943 944
func (m *UserInfo) XXX_Size() int {
	return xxx_messageInfo_UserInfo.Size(m)
W
pb  
wenxu12345 已提交
945
}
W
wenxu12345 已提交
946 947
func (m *UserInfo) XXX_DiscardUnknown() {
	xxx_messageInfo_UserInfo.DiscardUnknown(m)
W
pb  
wenxu12345 已提交
948 949
}

W
wenxu12345 已提交
950
var xxx_messageInfo_UserInfo proto.InternalMessageInfo
W
pb  
wenxu12345 已提交
951

W
wenxu12345 已提交
952
func (m *UserInfo) GetUserID() string {
W
pb  
wenxu12345 已提交
953 954 955 956 957 958
	if m != nil {
		return m.UserID
	}
	return ""
}

programor_guo's avatar
programor_guo 已提交
959
func (m *UserInfo) GetNickname() string {
W
pb  
wenxu12345 已提交
960
	if m != nil {
programor_guo's avatar
programor_guo 已提交
961
		return m.Nickname
W
pb  
wenxu12345 已提交
962 963 964 965
	}
	return ""
}

programor_guo's avatar
programor_guo 已提交
966
func (m *UserInfo) GetFaceUrl() string {
W
pb  
wenxu12345 已提交
967
	if m != nil {
programor_guo's avatar
programor_guo 已提交
968
		return m.FaceUrl
W
pb  
wenxu12345 已提交
969 970 971 972
	}
	return ""
}

W
wenxu12345 已提交
973
func (m *UserInfo) GetGender() int32 {
W
pb  
wenxu12345 已提交
974 975 976 977 978 979
	if m != nil {
		return m.Gender
	}
	return 0
}

W
wenxu12345 已提交
980
func (m *UserInfo) GetMobile() string {
W
pb  
wenxu12345 已提交
981 982 983 984 985 986
	if m != nil {
		return m.Mobile
	}
	return ""
}

W
wenxu12345 已提交
987
func (m *UserInfo) GetBirth() string {
W
pb  
wenxu12345 已提交
988 989 990 991 992 993
	if m != nil {
		return m.Birth
	}
	return ""
}

W
wenxu12345 已提交
994
func (m *UserInfo) GetEmail() string {
W
pb  
wenxu12345 已提交
995 996 997 998 999 1000
	if m != nil {
		return m.Email
	}
	return ""
}

programor_guo's avatar
programor_guo 已提交
1001 1002 1003 1004 1005 1006 1007
func (m *UserInfo) GetExt() string {
	if m != nil {
		return m.Ext
	}
	return ""
}

W
wenxu12345 已提交
1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022
// No permissions required
type PublicUserInfo struct {
	UserID               string   `protobuf:"bytes,1,opt,name=UserID" json:"UserID,omitempty"`
	Nickname             string   `protobuf:"bytes,2,opt,name=Nickname" json:"Nickname,omitempty"`
	FaceUrl              string   `protobuf:"bytes,3,opt,name=FaceUrl" json:"FaceUrl,omitempty"`
	Gender               int32    `protobuf:"varint,4,opt,name=Gender" json:"Gender,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (m *PublicUserInfo) Reset()         { *m = PublicUserInfo{} }
func (m *PublicUserInfo) String() string { return proto.CompactTextString(m) }
func (*PublicUserInfo) ProtoMessage()    {}
func (*PublicUserInfo) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
1023
	return fileDescriptor_ws_1ed69884ac12b8b9, []int{13}
W
wenxu12345 已提交
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
}
func (m *PublicUserInfo) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_PublicUserInfo.Unmarshal(m, b)
}
func (m *PublicUserInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_PublicUserInfo.Marshal(b, m, deterministic)
}
func (dst *PublicUserInfo) XXX_Merge(src proto.Message) {
	xxx_messageInfo_PublicUserInfo.Merge(dst, src)
}
func (m *PublicUserInfo) XXX_Size() int {
	return xxx_messageInfo_PublicUserInfo.Size(m)
}
func (m *PublicUserInfo) XXX_DiscardUnknown() {
	xxx_messageInfo_PublicUserInfo.DiscardUnknown(m)
}

var xxx_messageInfo_PublicUserInfo proto.InternalMessageInfo

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

func (m *PublicUserInfo) GetNickname() string {
	if m != nil {
		return m.Nickname
	}
	return ""
}

func (m *PublicUserInfo) GetFaceUrl() string {
	if m != nil {
		return m.FaceUrl
	}
	return ""
}

func (m *PublicUserInfo) GetGender() int32 {
	if m != nil {
		return m.Gender
	}
	return 0
}

type TipsComm struct {
	Detail               []byte   `protobuf:"bytes,1,opt,name=Detail,proto3" json:"Detail,omitempty"`
	DefaultTips          string   `protobuf:"bytes,2,opt,name=DefaultTips" json:"DefaultTips,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (m *TipsComm) Reset()         { *m = TipsComm{} }
func (m *TipsComm) String() string { return proto.CompactTextString(m) }
func (*TipsComm) ProtoMessage()    {}
func (*TipsComm) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
1083
	return fileDescriptor_ws_1ed69884ac12b8b9, []int{14}
W
wenxu12345 已提交
1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103
}
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 已提交
1104
	if m != nil {
W
wenxu12345 已提交
1105 1106 1107 1108 1109 1110 1111 1112
		return m.Detail
	}
	return nil
}

func (m *TipsComm) GetDefaultTips() string {
	if m != nil {
		return m.DefaultTips
W
pb  
wenxu12345 已提交
1113 1114 1115 1116
	}
	return ""
}

W
wenxu12345 已提交
1117 1118 1119 1120
// ////////////////////group/////////////////////
// Actively join the group
type MemberEnterTips struct {
	Group                *GroupInfo           `protobuf:"bytes,1,opt,name=Group" json:"Group,omitempty"`
programor_guo's avatar
programor_guo 已提交
1121
	EntrantUser          *GroupMemberFullInfo `protobuf:"bytes,2,opt,name=EntrantUser" json:"EntrantUser,omitempty"`
W
wenxu12345 已提交
1122 1123 1124 1125
	OperationTime        uint64               `protobuf:"varint,3,opt,name=OperationTime" json:"OperationTime,omitempty"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
W
pb  
wenxu12345 已提交
1126 1127
}

W
wenxu12345 已提交
1128 1129 1130 1131
func (m *MemberEnterTips) Reset()         { *m = MemberEnterTips{} }
func (m *MemberEnterTips) String() string { return proto.CompactTextString(m) }
func (*MemberEnterTips) ProtoMessage()    {}
func (*MemberEnterTips) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
1132
	return fileDescriptor_ws_1ed69884ac12b8b9, []int{15}
W
pb  
wenxu12345 已提交
1133
}
W
wenxu12345 已提交
1134 1135
func (m *MemberEnterTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_MemberEnterTips.Unmarshal(m, b)
W
pb  
wenxu12345 已提交
1136
}
W
wenxu12345 已提交
1137 1138
func (m *MemberEnterTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_MemberEnterTips.Marshal(b, m, deterministic)
W
pb  
wenxu12345 已提交
1139
}
W
wenxu12345 已提交
1140 1141
func (dst *MemberEnterTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_MemberEnterTips.Merge(dst, src)
W
pb  
wenxu12345 已提交
1142
}
W
wenxu12345 已提交
1143 1144
func (m *MemberEnterTips) XXX_Size() int {
	return xxx_messageInfo_MemberEnterTips.Size(m)
W
pb  
wenxu12345 已提交
1145
}
W
wenxu12345 已提交
1146 1147
func (m *MemberEnterTips) XXX_DiscardUnknown() {
	xxx_messageInfo_MemberEnterTips.DiscardUnknown(m)
W
pb  
wenxu12345 已提交
1148 1149
}

W
wenxu12345 已提交
1150
var xxx_messageInfo_MemberEnterTips proto.InternalMessageInfo
W
pb  
wenxu12345 已提交
1151

W
wenxu12345 已提交
1152
func (m *MemberEnterTips) GetGroup() *GroupInfo {
W
pb  
wenxu12345 已提交
1153 1154 1155 1156 1157 1158
	if m != nil {
		return m.Group
	}
	return nil
}

programor_guo's avatar
programor_guo 已提交
1159
func (m *MemberEnterTips) GetEntrantUser() *GroupMemberFullInfo {
W
pb  
wenxu12345 已提交
1160
	if m != nil {
programor_guo's avatar
programor_guo 已提交
1161
		return m.EntrantUser
W
pb  
wenxu12345 已提交
1162 1163 1164 1165
	}
	return nil
}

W
wenxu12345 已提交
1166
func (m *MemberEnterTips) GetOperationTime() uint64 {
W
pb  
wenxu12345 已提交
1167
	if m != nil {
W
wenxu12345 已提交
1168 1169 1170 1171 1172 1173 1174 1175
		return m.OperationTime
	}
	return 0
}

// Actively leave the group
type MemberLeaveTips struct {
	Group                *GroupInfo           `protobuf:"bytes,1,opt,name=Group" json:"Group,omitempty"`
programor_guo's avatar
programor_guo 已提交
1176
	LeaverUser           *GroupMemberFullInfo `protobuf:"bytes,2,opt,name=LeaverUser" json:"LeaverUser,omitempty"`
W
wenxu12345 已提交
1177 1178 1179 1180 1181 1182 1183 1184 1185 1186
	OperationTime        uint64               `protobuf:"varint,3,opt,name=OperationTime" json:"OperationTime,omitempty"`
	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) {
W
wenxu12345 已提交
1187
	return fileDescriptor_ws_1ed69884ac12b8b9, []int{16}
W
wenxu12345 已提交
1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213
}
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 已提交
1214
func (m *MemberLeaveTips) GetLeaverUser() *GroupMemberFullInfo {
W
wenxu12345 已提交
1215
	if m != nil {
programor_guo's avatar
programor_guo 已提交
1216
		return m.LeaverUser
W
wenxu12345 已提交
1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228
	}
	return nil
}

func (m *MemberLeaveTips) GetOperationTime() uint64 {
	if m != nil {
		return m.OperationTime
	}
	return 0
}

type MemberInvitedTips struct {
W
wenxu12345 已提交
1229 1230 1231 1232 1233 1234 1235
	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        uint64                 `protobuf:"varint,4,opt,name=OperationTime" json:"OperationTime,omitempty"`
	XXX_NoUnkeyedLiteral struct{}               `json:"-"`
	XXX_unrecognized     []byte                 `json:"-"`
	XXX_sizecache        int32                  `json:"-"`
W
wenxu12345 已提交
1236 1237 1238 1239 1240 1241
}

func (m *MemberInvitedTips) Reset()         { *m = MemberInvitedTips{} }
func (m *MemberInvitedTips) String() string { return proto.CompactTextString(m) }
func (*MemberInvitedTips) ProtoMessage()    {}
func (*MemberInvitedTips) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
1242
	return fileDescriptor_ws_1ed69884ac12b8b9, []int{17}
W
wenxu12345 已提交
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 1272 1273 1274 1275
}
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 已提交
1276
func (m *MemberInvitedTips) GetInvitedUserList() []*GroupMemberFullInfo {
W
wenxu12345 已提交
1277
	if m != nil {
W
wenxu12345 已提交
1278
		return m.InvitedUserList
W
wenxu12345 已提交
1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290
	}
	return nil
}

func (m *MemberInvitedTips) GetOperationTime() uint64 {
	if m != nil {
		return m.OperationTime
	}
	return 0
}

type MemberKickedTips struct {
W
wenxu12345 已提交
1291 1292 1293 1294 1295 1296 1297
	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        uint64                 `protobuf:"varint,4,opt,name=OperationTime" json:"OperationTime,omitempty"`
	XXX_NoUnkeyedLiteral struct{}               `json:"-"`
	XXX_unrecognized     []byte                 `json:"-"`
	XXX_sizecache        int32                  `json:"-"`
W
wenxu12345 已提交
1298 1299 1300 1301 1302 1303
}

func (m *MemberKickedTips) Reset()         { *m = MemberKickedTips{} }
func (m *MemberKickedTips) String() string { return proto.CompactTextString(m) }
func (*MemberKickedTips) ProtoMessage()    {}
func (*MemberKickedTips) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
1304
	return fileDescriptor_ws_1ed69884ac12b8b9, []int{18}
W
wenxu12345 已提交
1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337
}
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 已提交
1338
func (m *MemberKickedTips) GetKickedUserList() []*GroupMemberFullInfo {
W
wenxu12345 已提交
1339
	if m != nil {
W
wenxu12345 已提交
1340
		return m.KickedUserList
W
wenxu12345 已提交
1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351
	}
	return nil
}

func (m *MemberKickedTips) GetOperationTime() uint64 {
	if m != nil {
		return m.OperationTime
	}
	return 0
}

programor_guo's avatar
programor_guo 已提交
1352
type MemberInfoChangedTips struct {
W
wenxu12345 已提交
1353 1354
	ChangeType           int32                `protobuf:"varint,1,opt,name=ChangeType" json:"ChangeType,omitempty"`
	OpUser               *GroupMemberFullInfo `protobuf:"bytes,2,opt,name=OpUser" json:"OpUser,omitempty"`
programor_guo's avatar
programor_guo 已提交
1355
	FinalInfo            *GroupMemberFullInfo `protobuf:"bytes,3,opt,name=FinalInfo" json:"FinalInfo,omitempty"`
W
wenxu12345 已提交
1356
	MuteTime             uint64               `protobuf:"varint,4,opt,name=MuteTime" json:"MuteTime,omitempty"`
programor_guo's avatar
programor_guo 已提交
1357
	Group                *GroupInfo           `protobuf:"bytes,5,opt,name=Group" json:"Group,omitempty"`
W
wenxu12345 已提交
1358 1359 1360 1361 1362
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

programor_guo's avatar
programor_guo 已提交
1363 1364 1365 1366
func (m *MemberInfoChangedTips) Reset()         { *m = MemberInfoChangedTips{} }
func (m *MemberInfoChangedTips) String() string { return proto.CompactTextString(m) }
func (*MemberInfoChangedTips) ProtoMessage()    {}
func (*MemberInfoChangedTips) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
1367
	return fileDescriptor_ws_1ed69884ac12b8b9, []int{19}
W
wenxu12345 已提交
1368
}
programor_guo's avatar
programor_guo 已提交
1369 1370
func (m *MemberInfoChangedTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_MemberInfoChangedTips.Unmarshal(m, b)
W
wenxu12345 已提交
1371
}
programor_guo's avatar
programor_guo 已提交
1372 1373
func (m *MemberInfoChangedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_MemberInfoChangedTips.Marshal(b, m, deterministic)
W
wenxu12345 已提交
1374
}
programor_guo's avatar
programor_guo 已提交
1375 1376
func (dst *MemberInfoChangedTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_MemberInfoChangedTips.Merge(dst, src)
W
wenxu12345 已提交
1377
}
programor_guo's avatar
programor_guo 已提交
1378 1379
func (m *MemberInfoChangedTips) XXX_Size() int {
	return xxx_messageInfo_MemberInfoChangedTips.Size(m)
W
wenxu12345 已提交
1380
}
programor_guo's avatar
programor_guo 已提交
1381 1382
func (m *MemberInfoChangedTips) XXX_DiscardUnknown() {
	xxx_messageInfo_MemberInfoChangedTips.DiscardUnknown(m)
W
wenxu12345 已提交
1383 1384
}

programor_guo's avatar
programor_guo 已提交
1385
var xxx_messageInfo_MemberInfoChangedTips proto.InternalMessageInfo
W
wenxu12345 已提交
1386

programor_guo's avatar
programor_guo 已提交
1387
func (m *MemberInfoChangedTips) GetChangeType() int32 {
W
wenxu12345 已提交
1388 1389 1390 1391 1392 1393
	if m != nil {
		return m.ChangeType
	}
	return 0
}

programor_guo's avatar
programor_guo 已提交
1394
func (m *MemberInfoChangedTips) GetOpUser() *GroupMemberFullInfo {
W
wenxu12345 已提交
1395 1396 1397 1398 1399 1400
	if m != nil {
		return m.OpUser
	}
	return nil
}

programor_guo's avatar
programor_guo 已提交
1401
func (m *MemberInfoChangedTips) GetFinalInfo() *GroupMemberFullInfo {
W
wenxu12345 已提交
1402
	if m != nil {
programor_guo's avatar
programor_guo 已提交
1403
		return m.FinalInfo
W
wenxu12345 已提交
1404 1405 1406 1407
	}
	return nil
}

programor_guo's avatar
programor_guo 已提交
1408
func (m *MemberInfoChangedTips) GetMuteTime() uint64 {
W
wenxu12345 已提交
1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435
	if m != nil {
		return m.MuteTime
	}
	return 0
}

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

type GroupCreatedTips struct {
	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        uint64                 `protobuf:"varint,4,opt,name=OperationTime" json:"OperationTime,omitempty"`
	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) {
W
wenxu12345 已提交
1436
	return fileDescriptor_ws_1ed69884ac12b8b9, []int{20}
W
wenxu12345 已提交
1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496
}
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
}

func (m *GroupCreatedTips) GetOperationTime() uint64 {
	if m != nil {
		return m.OperationTime
	}
	return 0
}

type GroupInfoChangedTips struct {
	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"`
	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) {
W
wenxu12345 已提交
1497
	return fileDescriptor_ws_1ed69884ac12b8b9, []int{21}
W
wenxu12345 已提交
1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537
}
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 已提交
1538
type JoinGroupApplicationTips struct {
W
wenxu12345 已提交
1539 1540 1541 1542 1543 1544 1545 1546
	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"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

W
wenxu12345 已提交
1547 1548 1549 1550 1551
func (m *JoinGroupApplicationTips) Reset()         { *m = JoinGroupApplicationTips{} }
func (m *JoinGroupApplicationTips) String() string { return proto.CompactTextString(m) }
func (*JoinGroupApplicationTips) ProtoMessage()    {}
func (*JoinGroupApplicationTips) Descriptor() ([]byte, []int) {
	return fileDescriptor_ws_1ed69884ac12b8b9, []int{22}
W
wenxu12345 已提交
1552
}
W
wenxu12345 已提交
1553 1554
func (m *JoinGroupApplicationTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_JoinGroupApplicationTips.Unmarshal(m, b)
W
wenxu12345 已提交
1555
}
W
wenxu12345 已提交
1556 1557
func (m *JoinGroupApplicationTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_JoinGroupApplicationTips.Marshal(b, m, deterministic)
W
wenxu12345 已提交
1558
}
W
wenxu12345 已提交
1559 1560
func (dst *JoinGroupApplicationTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_JoinGroupApplicationTips.Merge(dst, src)
W
wenxu12345 已提交
1561
}
W
wenxu12345 已提交
1562 1563
func (m *JoinGroupApplicationTips) XXX_Size() int {
	return xxx_messageInfo_JoinGroupApplicationTips.Size(m)
W
wenxu12345 已提交
1564
}
W
wenxu12345 已提交
1565 1566
func (m *JoinGroupApplicationTips) XXX_DiscardUnknown() {
	xxx_messageInfo_JoinGroupApplicationTips.DiscardUnknown(m)
W
wenxu12345 已提交
1567 1568
}

W
wenxu12345 已提交
1569
var xxx_messageInfo_JoinGroupApplicationTips proto.InternalMessageInfo
W
wenxu12345 已提交
1570

W
wenxu12345 已提交
1571
func (m *JoinGroupApplicationTips) GetGroup() *GroupInfo {
W
wenxu12345 已提交
1572 1573 1574 1575 1576 1577
	if m != nil {
		return m.Group
	}
	return nil
}

W
wenxu12345 已提交
1578
func (m *JoinGroupApplicationTips) GetApplicant() *PublicUserInfo {
W
wenxu12345 已提交
1579 1580 1581 1582 1583 1584
	if m != nil {
		return m.Applicant
	}
	return nil
}

W
wenxu12345 已提交
1585
func (m *JoinGroupApplicationTips) GetReason() string {
W
wenxu12345 已提交
1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605
	if m != nil {
		return m.Reason
	}
	return ""
}

type ApplicationProcessedTips struct {
	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"`
	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) {
W
wenxu12345 已提交
1606
	return fileDescriptor_ws_1ed69884ac12b8b9, []int{23}
W
wenxu12345 已提交
1607 1608 1609 1610 1611 1612 1613 1614 1615 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 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655
}
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 ""
}

// ////////////////////friend/////////////////////
type FriendInfo struct {
programor_guo's avatar
programor_guo 已提交
1656
	OwnerUser            *UserInfo `protobuf:"bytes,1,opt,name=OwnerUser" json:"OwnerUser,omitempty"`
W
wenxu12345 已提交
1657 1658
	Remark               string    `protobuf:"bytes,2,opt,name=Remark" json:"Remark,omitempty"`
	CreateTime           uint64    `protobuf:"varint,3,opt,name=CreateTime" json:"CreateTime,omitempty"`
programor_guo's avatar
programor_guo 已提交
1659
	FriendUser           *UserInfo `protobuf:"bytes,4,opt,name=FriendUser" json:"FriendUser,omitempty"`
W
wenxu12345 已提交
1660 1661 1662 1663 1664 1665 1666 1667 1668
	XXX_NoUnkeyedLiteral struct{}  `json:"-"`
	XXX_unrecognized     []byte    `json:"-"`
	XXX_sizecache        int32     `json:"-"`
}

func (m *FriendInfo) Reset()         { *m = FriendInfo{} }
func (m *FriendInfo) String() string { return proto.CompactTextString(m) }
func (*FriendInfo) ProtoMessage()    {}
func (*FriendInfo) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
1669
	return fileDescriptor_ws_1ed69884ac12b8b9, []int{24}
W
wenxu12345 已提交
1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688
}
func (m *FriendInfo) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_FriendInfo.Unmarshal(m, b)
}
func (m *FriendInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_FriendInfo.Marshal(b, m, deterministic)
}
func (dst *FriendInfo) XXX_Merge(src proto.Message) {
	xxx_messageInfo_FriendInfo.Merge(dst, src)
}
func (m *FriendInfo) XXX_Size() int {
	return xxx_messageInfo_FriendInfo.Size(m)
}
func (m *FriendInfo) XXX_DiscardUnknown() {
	xxx_messageInfo_FriendInfo.DiscardUnknown(m)
}

var xxx_messageInfo_FriendInfo proto.InternalMessageInfo

programor_guo's avatar
programor_guo 已提交
1689
func (m *FriendInfo) GetOwnerUser() *UserInfo {
W
wenxu12345 已提交
1690
	if m != nil {
programor_guo's avatar
programor_guo 已提交
1691
		return m.OwnerUser
W
wenxu12345 已提交
1692
	}
programor_guo's avatar
programor_guo 已提交
1693
	return nil
W
wenxu12345 已提交
1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709
}

func (m *FriendInfo) GetRemark() string {
	if m != nil {
		return m.Remark
	}
	return ""
}

func (m *FriendInfo) GetCreateTime() uint64 {
	if m != nil {
		return m.CreateTime
	}
	return 0
}

programor_guo's avatar
programor_guo 已提交
1710
func (m *FriendInfo) GetFriendUser() *UserInfo {
W
wenxu12345 已提交
1711
	if m != nil {
programor_guo's avatar
programor_guo 已提交
1712
		return m.FriendUser
W
wenxu12345 已提交
1713 1714 1715 1716 1717
	}
	return nil
}

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

func (m *FriendApplication) Reset()         { *m = FriendApplication{} }
func (m *FriendApplication) String() string { return proto.CompactTextString(m) }
func (*FriendApplication) ProtoMessage()    {}
func (*FriendApplication) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
1730
	return fileDescriptor_ws_1ed69884ac12b8b9, []int{25}
W
wenxu12345 已提交
1731 1732 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 1766 1767 1768 1769 1770
}
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

func (m *FriendApplication) GetAddTime() uint64 {
	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 已提交
1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817
type FromToUserID struct {
	FromUserID           string   `protobuf:"bytes,1,opt,name=FromUserID" json:"FromUserID,omitempty"`
	ToUserID             string   `protobuf:"bytes,2,opt,name=ToUserID" json:"ToUserID,omitempty"`
	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) {
	return fileDescriptor_ws_1ed69884ac12b8b9, []int{26}
}
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 已提交
1818
type FriendApplicationAddedTips struct {
W
wenxu12345 已提交
1819 1820 1821 1822
	FromToUserID         *FromToUserID `protobuf:"bytes,1,opt,name=FromToUserID" json:"FromToUserID,omitempty"`
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
W
wenxu12345 已提交
1823 1824
}

programor_guo's avatar
programor_guo 已提交
1825 1826 1827 1828
func (m *FriendApplicationAddedTips) Reset()         { *m = FriendApplicationAddedTips{} }
func (m *FriendApplicationAddedTips) String() string { return proto.CompactTextString(m) }
func (*FriendApplicationAddedTips) ProtoMessage()    {}
func (*FriendApplicationAddedTips) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
1829
	return fileDescriptor_ws_1ed69884ac12b8b9, []int{27}
W
wenxu12345 已提交
1830
}
programor_guo's avatar
programor_guo 已提交
1831 1832
func (m *FriendApplicationAddedTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_FriendApplicationAddedTips.Unmarshal(m, b)
W
wenxu12345 已提交
1833
}
programor_guo's avatar
programor_guo 已提交
1834 1835
func (m *FriendApplicationAddedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_FriendApplicationAddedTips.Marshal(b, m, deterministic)
W
wenxu12345 已提交
1836
}
programor_guo's avatar
programor_guo 已提交
1837 1838
func (dst *FriendApplicationAddedTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_FriendApplicationAddedTips.Merge(dst, src)
W
wenxu12345 已提交
1839
}
programor_guo's avatar
programor_guo 已提交
1840 1841
func (m *FriendApplicationAddedTips) XXX_Size() int {
	return xxx_messageInfo_FriendApplicationAddedTips.Size(m)
W
wenxu12345 已提交
1842
}
programor_guo's avatar
programor_guo 已提交
1843 1844
func (m *FriendApplicationAddedTips) XXX_DiscardUnknown() {
	xxx_messageInfo_FriendApplicationAddedTips.DiscardUnknown(m)
W
wenxu12345 已提交
1845 1846
}

programor_guo's avatar
programor_guo 已提交
1847
var xxx_messageInfo_FriendApplicationAddedTips proto.InternalMessageInfo
W
wenxu12345 已提交
1848

W
wenxu12345 已提交
1849
func (m *FriendApplicationAddedTips) GetFromToUserID() *FromToUserID {
W
wenxu12345 已提交
1850
	if m != nil {
W
wenxu12345 已提交
1851
		return m.FromToUserID
W
wenxu12345 已提交
1852 1853 1854 1855
	}
	return nil
}

W
wenxu12345 已提交
1856
// FromUserID accept or reject ToUserID
programor_guo's avatar
programor_guo 已提交
1857
type FriendApplicationProcessedTips struct {
W
wenxu12345 已提交
1858 1859 1860 1861
	FromToUserID         *FromToUserID `protobuf:"bytes,1,opt,name=FromToUserID" json:"FromToUserID,omitempty"`
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
W
wenxu12345 已提交
1862 1863
}

programor_guo's avatar
programor_guo 已提交
1864 1865 1866 1867
func (m *FriendApplicationProcessedTips) Reset()         { *m = FriendApplicationProcessedTips{} }
func (m *FriendApplicationProcessedTips) String() string { return proto.CompactTextString(m) }
func (*FriendApplicationProcessedTips) ProtoMessage()    {}
func (*FriendApplicationProcessedTips) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
1868
	return fileDescriptor_ws_1ed69884ac12b8b9, []int{28}
W
wenxu12345 已提交
1869
}
programor_guo's avatar
programor_guo 已提交
1870 1871
func (m *FriendApplicationProcessedTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_FriendApplicationProcessedTips.Unmarshal(m, b)
W
wenxu12345 已提交
1872
}
programor_guo's avatar
programor_guo 已提交
1873 1874
func (m *FriendApplicationProcessedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_FriendApplicationProcessedTips.Marshal(b, m, deterministic)
W
wenxu12345 已提交
1875
}
programor_guo's avatar
programor_guo 已提交
1876 1877
func (dst *FriendApplicationProcessedTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_FriendApplicationProcessedTips.Merge(dst, src)
W
wenxu12345 已提交
1878
}
programor_guo's avatar
programor_guo 已提交
1879 1880
func (m *FriendApplicationProcessedTips) XXX_Size() int {
	return xxx_messageInfo_FriendApplicationProcessedTips.Size(m)
W
wenxu12345 已提交
1881
}
programor_guo's avatar
programor_guo 已提交
1882 1883
func (m *FriendApplicationProcessedTips) XXX_DiscardUnknown() {
	xxx_messageInfo_FriendApplicationProcessedTips.DiscardUnknown(m)
W
wenxu12345 已提交
1884 1885
}

programor_guo's avatar
programor_guo 已提交
1886
var xxx_messageInfo_FriendApplicationProcessedTips proto.InternalMessageInfo
W
wenxu12345 已提交
1887

W
wenxu12345 已提交
1888
func (m *FriendApplicationProcessedTips) GetFromToUserID() *FromToUserID {
W
wenxu12345 已提交
1889
	if m != nil {
W
wenxu12345 已提交
1890
		return m.FromToUserID
W
wenxu12345 已提交
1891 1892 1893 1894
	}
	return nil
}

W
wenxu12345 已提交
1895
// FromUserID  Added a friend ToUserID
programor_guo's avatar
programor_guo 已提交
1896
type FriendAddedTips struct {
W
wenxu12345 已提交
1897 1898 1899 1900 1901 1902
	Friend               *FriendInfo     `protobuf:"bytes,1,opt,name=Friend" json:"Friend,omitempty"`
	OperationTime        uint64          `protobuf:"varint,2,opt,name=OperationTime" json:"OperationTime,omitempty"`
	OpUser               *PublicUserInfo `protobuf:"bytes,3,opt,name=OpUser" json:"OpUser,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
W
wenxu12345 已提交
1903
}
programor_guo's avatar
programor_guo 已提交
1904 1905 1906 1907 1908

func (m *FriendAddedTips) Reset()         { *m = FriendAddedTips{} }
func (m *FriendAddedTips) String() string { return proto.CompactTextString(m) }
func (*FriendAddedTips) ProtoMessage()    {}
func (*FriendAddedTips) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
1909
	return fileDescriptor_ws_1ed69884ac12b8b9, []int{29}
programor_guo's avatar
programor_guo 已提交
1910 1911 1912
}
func (m *FriendAddedTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_FriendAddedTips.Unmarshal(m, b)
W
wenxu12345 已提交
1913
}
programor_guo's avatar
programor_guo 已提交
1914 1915
func (m *FriendAddedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_FriendAddedTips.Marshal(b, m, deterministic)
W
wenxu12345 已提交
1916
}
programor_guo's avatar
programor_guo 已提交
1917 1918
func (dst *FriendAddedTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_FriendAddedTips.Merge(dst, src)
W
wenxu12345 已提交
1919
}
programor_guo's avatar
programor_guo 已提交
1920 1921 1922 1923 1924
func (m *FriendAddedTips) XXX_Size() int {
	return xxx_messageInfo_FriendAddedTips.Size(m)
}
func (m *FriendAddedTips) XXX_DiscardUnknown() {
	xxx_messageInfo_FriendAddedTips.DiscardUnknown(m)
W
wenxu12345 已提交
1925 1926
}

programor_guo's avatar
programor_guo 已提交
1927
var xxx_messageInfo_FriendAddedTips proto.InternalMessageInfo
W
wenxu12345 已提交
1928

programor_guo's avatar
programor_guo 已提交
1929
func (m *FriendAddedTips) GetFriend() *FriendInfo {
W
wenxu12345 已提交
1930
	if m != nil {
programor_guo's avatar
programor_guo 已提交
1931
		return m.Friend
W
wenxu12345 已提交
1932 1933 1934 1935
	}
	return nil
}

programor_guo's avatar
programor_guo 已提交
1936
func (m *FriendAddedTips) GetOperationTime() uint64 {
W
wenxu12345 已提交
1937
	if m != nil {
programor_guo's avatar
programor_guo 已提交
1938
		return m.OperationTime
W
wenxu12345 已提交
1939
	}
programor_guo's avatar
programor_guo 已提交
1940
	return 0
W
wenxu12345 已提交
1941 1942
}

W
wenxu12345 已提交
1943 1944 1945 1946 1947 1948 1949 1950
func (m *FriendAddedTips) GetOpUser() *PublicUserInfo {
	if m != nil {
		return m.OpUser
	}
	return nil
}

// FromUserID  deleted a friend ToUserID
programor_guo's avatar
programor_guo 已提交
1951
type FriendDeletedTips struct {
W
wenxu12345 已提交
1952 1953 1954 1955
	FromToUserID         *FromToUserID `protobuf:"bytes,1,opt,name=FromToUserID" json:"FromToUserID,omitempty"`
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
W
wenxu12345 已提交
1956 1957
}

programor_guo's avatar
programor_guo 已提交
1958 1959 1960 1961
func (m *FriendDeletedTips) Reset()         { *m = FriendDeletedTips{} }
func (m *FriendDeletedTips) String() string { return proto.CompactTextString(m) }
func (*FriendDeletedTips) ProtoMessage()    {}
func (*FriendDeletedTips) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
1962
	return fileDescriptor_ws_1ed69884ac12b8b9, []int{30}
W
wenxu12345 已提交
1963
}
programor_guo's avatar
programor_guo 已提交
1964 1965
func (m *FriendDeletedTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_FriendDeletedTips.Unmarshal(m, b)
W
wenxu12345 已提交
1966
}
programor_guo's avatar
programor_guo 已提交
1967 1968
func (m *FriendDeletedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_FriendDeletedTips.Marshal(b, m, deterministic)
W
wenxu12345 已提交
1969
}
programor_guo's avatar
programor_guo 已提交
1970 1971
func (dst *FriendDeletedTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_FriendDeletedTips.Merge(dst, src)
W
wenxu12345 已提交
1972
}
programor_guo's avatar
programor_guo 已提交
1973 1974
func (m *FriendDeletedTips) XXX_Size() int {
	return xxx_messageInfo_FriendDeletedTips.Size(m)
W
wenxu12345 已提交
1975
}
programor_guo's avatar
programor_guo 已提交
1976 1977
func (m *FriendDeletedTips) XXX_DiscardUnknown() {
	xxx_messageInfo_FriendDeletedTips.DiscardUnknown(m)
W
wenxu12345 已提交
1978 1979
}

programor_guo's avatar
programor_guo 已提交
1980
var xxx_messageInfo_FriendDeletedTips proto.InternalMessageInfo
W
wenxu12345 已提交
1981

W
wenxu12345 已提交
1982
func (m *FriendDeletedTips) GetFromToUserID() *FromToUserID {
W
wenxu12345 已提交
1983
	if m != nil {
W
wenxu12345 已提交
1984
		return m.FromToUserID
programor_guo's avatar
programor_guo 已提交
1985 1986 1987 1988 1989
	}
	return nil
}

type BlackAddedTips struct {
W
wenxu12345 已提交
1990 1991 1992 1993
	FromToUserID         *FromToUserID `protobuf:"bytes,1,opt,name=FromToUserID" json:"FromToUserID,omitempty"`
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
programor_guo's avatar
programor_guo 已提交
1994 1995 1996 1997 1998 1999
}

func (m *BlackAddedTips) Reset()         { *m = BlackAddedTips{} }
func (m *BlackAddedTips) String() string { return proto.CompactTextString(m) }
func (*BlackAddedTips) ProtoMessage()    {}
func (*BlackAddedTips) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
2000
	return fileDescriptor_ws_1ed69884ac12b8b9, []int{31}
W
wenxu12345 已提交
2001
}
programor_guo's avatar
programor_guo 已提交
2002 2003
func (m *BlackAddedTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_BlackAddedTips.Unmarshal(m, b)
W
wenxu12345 已提交
2004
}
programor_guo's avatar
programor_guo 已提交
2005 2006
func (m *BlackAddedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_BlackAddedTips.Marshal(b, m, deterministic)
W
wenxu12345 已提交
2007
}
programor_guo's avatar
programor_guo 已提交
2008 2009
func (dst *BlackAddedTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_BlackAddedTips.Merge(dst, src)
W
wenxu12345 已提交
2010
}
programor_guo's avatar
programor_guo 已提交
2011 2012
func (m *BlackAddedTips) XXX_Size() int {
	return xxx_messageInfo_BlackAddedTips.Size(m)
W
wenxu12345 已提交
2013
}
programor_guo's avatar
programor_guo 已提交
2014 2015
func (m *BlackAddedTips) XXX_DiscardUnknown() {
	xxx_messageInfo_BlackAddedTips.DiscardUnknown(m)
W
wenxu12345 已提交
2016 2017
}

programor_guo's avatar
programor_guo 已提交
2018
var xxx_messageInfo_BlackAddedTips proto.InternalMessageInfo
W
wenxu12345 已提交
2019

W
wenxu12345 已提交
2020
func (m *BlackAddedTips) GetFromToUserID() *FromToUserID {
W
wenxu12345 已提交
2021
	if m != nil {
W
wenxu12345 已提交
2022
		return m.FromToUserID
W
wenxu12345 已提交
2023 2024 2025 2026
	}
	return nil
}

programor_guo's avatar
programor_guo 已提交
2027
type BlackDeletedTips struct {
W
wenxu12345 已提交
2028 2029 2030 2031
	FromToUserID         *FromToUserID `protobuf:"bytes,1,opt,name=FromToUserID" json:"FromToUserID,omitempty"`
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
W
wenxu12345 已提交
2032
}
programor_guo's avatar
programor_guo 已提交
2033 2034 2035 2036 2037

func (m *BlackDeletedTips) Reset()         { *m = BlackDeletedTips{} }
func (m *BlackDeletedTips) String() string { return proto.CompactTextString(m) }
func (*BlackDeletedTips) ProtoMessage()    {}
func (*BlackDeletedTips) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
2038
	return fileDescriptor_ws_1ed69884ac12b8b9, []int{32}
programor_guo's avatar
programor_guo 已提交
2039 2040 2041
}
func (m *BlackDeletedTips) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_BlackDeletedTips.Unmarshal(m, b)
W
wenxu12345 已提交
2042
}
programor_guo's avatar
programor_guo 已提交
2043 2044
func (m *BlackDeletedTips) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_BlackDeletedTips.Marshal(b, m, deterministic)
W
wenxu12345 已提交
2045
}
programor_guo's avatar
programor_guo 已提交
2046 2047
func (dst *BlackDeletedTips) XXX_Merge(src proto.Message) {
	xxx_messageInfo_BlackDeletedTips.Merge(dst, src)
W
wenxu12345 已提交
2048
}
programor_guo's avatar
programor_guo 已提交
2049 2050
func (m *BlackDeletedTips) XXX_Size() int {
	return xxx_messageInfo_BlackDeletedTips.Size(m)
W
wenxu12345 已提交
2051
}
programor_guo's avatar
programor_guo 已提交
2052 2053
func (m *BlackDeletedTips) XXX_DiscardUnknown() {
	xxx_messageInfo_BlackDeletedTips.DiscardUnknown(m)
W
wenxu12345 已提交
2054 2055
}

programor_guo's avatar
programor_guo 已提交
2056
var xxx_messageInfo_BlackDeletedTips proto.InternalMessageInfo
W
wenxu12345 已提交
2057

W
wenxu12345 已提交
2058
func (m *BlackDeletedTips) GetFromToUserID() *FromToUserID {
W
wenxu12345 已提交
2059
	if m != nil {
W
wenxu12345 已提交
2060
		return m.FromToUserID
W
wenxu12345 已提交
2061 2062 2063 2064 2065
	}
	return nil
}

type FriendInfoChangedTips struct {
W
wenxu12345 已提交
2066 2067 2068 2069
	FromToUserID         *FromToUserID `protobuf:"bytes,1,opt,name=FromToUserID" json:"FromToUserID,omitempty"`
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
W
wenxu12345 已提交
2070 2071 2072 2073 2074 2075
}

func (m *FriendInfoChangedTips) Reset()         { *m = FriendInfoChangedTips{} }
func (m *FriendInfoChangedTips) String() string { return proto.CompactTextString(m) }
func (*FriendInfoChangedTips) ProtoMessage()    {}
func (*FriendInfoChangedTips) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
2076
	return fileDescriptor_ws_1ed69884ac12b8b9, []int{33}
W
wenxu12345 已提交
2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095
}
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 已提交
2096
func (m *FriendInfoChangedTips) GetFromToUserID() *FromToUserID {
W
wenxu12345 已提交
2097
	if m != nil {
W
wenxu12345 已提交
2098
		return m.FromToUserID
W
wenxu12345 已提交
2099 2100 2101 2102 2103 2104
	}
	return nil
}

// ////////////////////user/////////////////////
type SelfInfoUpdatedTips struct {
W
wenxu12345 已提交
2105 2106 2107 2108
	UserID               string   `protobuf:"bytes,1,opt,name=UserID" json:"UserID,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
W
wenxu12345 已提交
2109 2110 2111 2112 2113 2114
}

func (m *SelfInfoUpdatedTips) Reset()         { *m = SelfInfoUpdatedTips{} }
func (m *SelfInfoUpdatedTips) String() string { return proto.CompactTextString(m) }
func (*SelfInfoUpdatedTips) ProtoMessage()    {}
func (*SelfInfoUpdatedTips) Descriptor() ([]byte, []int) {
W
wenxu12345 已提交
2115
	return fileDescriptor_ws_1ed69884ac12b8b9, []int{34}
W
wenxu12345 已提交
2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134
}
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 已提交
2135
func (m *SelfInfoUpdatedTips) GetUserID() string {
W
wenxu12345 已提交
2136
	if m != nil {
W
wenxu12345 已提交
2137
		return m.UserID
programor_guo's avatar
programor_guo 已提交
2138
	}
W
wenxu12345 已提交
2139
	return ""
programor_guo's avatar
programor_guo 已提交
2140 2141
}

2142 2143 2144
func init() {
	proto.RegisterType((*PullMessageBySeqListResp)(nil), "open_im_sdk.PullMessageBySeqListResp")
	proto.RegisterType((*PullMessageBySeqListReq)(nil), "open_im_sdk.PullMessageBySeqListReq")
programor_guo's avatar
programor_guo 已提交
2145 2146
	proto.RegisterType((*PullMessageReq)(nil), "open_im_sdk.PullMessageReq")
	proto.RegisterType((*PullMessageResp)(nil), "open_im_sdk.PullMessageResp")
2147 2148 2149 2150 2151
	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 已提交
2152
	proto.RegisterMapType((map[string]bool)(nil), "open_im_sdk.MsgData.OptionsEntry")
W
wenxu12345 已提交
2153
	proto.RegisterType((*OfflinePushInfo)(nil), "open_im_sdk.OfflinePushInfo")
W
wenxu12345 已提交
2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165
	proto.RegisterType((*GroupInfo)(nil), "open_im_sdk.GroupInfo")
	proto.RegisterType((*GroupMemberFullInfo)(nil), "open_im_sdk.GroupMemberFullInfo")
	proto.RegisterType((*UserInfo)(nil), "open_im_sdk.UserInfo")
	proto.RegisterType((*PublicUserInfo)(nil), "open_im_sdk.PublicUserInfo")
	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 已提交
2166
	proto.RegisterType((*JoinGroupApplicationTips)(nil), "open_im_sdk.JoinGroupApplicationTips")
W
wenxu12345 已提交
2167 2168 2169
	proto.RegisterType((*ApplicationProcessedTips)(nil), "open_im_sdk.ApplicationProcessedTips")
	proto.RegisterType((*FriendInfo)(nil), "open_im_sdk.FriendInfo")
	proto.RegisterType((*FriendApplication)(nil), "open_im_sdk.FriendApplication")
W
wenxu12345 已提交
2170
	proto.RegisterType((*FromToUserID)(nil), "open_im_sdk.FromToUserID")
programor_guo's avatar
programor_guo 已提交
2171 2172 2173 2174 2175 2176
	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 已提交
2177 2178 2179 2180
	proto.RegisterType((*FriendInfoChangedTips)(nil), "open_im_sdk.FriendInfoChangedTips")
	proto.RegisterType((*SelfInfoUpdatedTips)(nil), "open_im_sdk.SelfInfoUpdatedTips")
}

W
wenxu12345 已提交
2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291
func init() { proto.RegisterFile("sdk_ws/ws.proto", fileDescriptor_ws_1ed69884ac12b8b9) }

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