chat.pb.go 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.26.0-devel
  4. // protoc v3.15.8
  5. // source: chat.proto
  6. package chat
  7. import (
  8. common "git.ikuban.com/server/pw-protobuf/api/common"
  9. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  10. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  11. reflect "reflect"
  12. sync "sync"
  13. )
  14. const (
  15. // Verify that this generated code is sufficiently up-to-date.
  16. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  17. // Verify that runtime/protoimpl is sufficiently up-to-date.
  18. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  19. )
  20. type PartnerFindRoomListRequest struct {
  21. state protoimpl.MessageState
  22. sizeCache protoimpl.SizeCache
  23. unknownFields protoimpl.UnknownFields
  24. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  25. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  26. IdentifyId string `protobuf:"bytes,3,opt,name=IdentifyId,proto3" json:"IdentifyId"`
  27. IsFindNotReply bool `protobuf:"varint,4,opt,name=isFindNotReply,proto3" json:"isFindNotReply"` // 是否查询没回复过的内容
  28. IsWithinSevenDay bool `protobuf:"varint,5,opt,name=isWithinSevenDay,proto3" json:"isWithinSevenDay"` // 是否在七日内
  29. }
  30. func (x *PartnerFindRoomListRequest) Reset() {
  31. *x = PartnerFindRoomListRequest{}
  32. if protoimpl.UnsafeEnabled {
  33. mi := &file_chat_proto_msgTypes[0]
  34. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  35. ms.StoreMessageInfo(mi)
  36. }
  37. }
  38. func (x *PartnerFindRoomListRequest) String() string {
  39. return protoimpl.X.MessageStringOf(x)
  40. }
  41. func (*PartnerFindRoomListRequest) ProtoMessage() {}
  42. func (x *PartnerFindRoomListRequest) ProtoReflect() protoreflect.Message {
  43. mi := &file_chat_proto_msgTypes[0]
  44. if protoimpl.UnsafeEnabled && x != nil {
  45. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  46. if ms.LoadMessageInfo() == nil {
  47. ms.StoreMessageInfo(mi)
  48. }
  49. return ms
  50. }
  51. return mi.MessageOf(x)
  52. }
  53. // Deprecated: Use PartnerFindRoomListRequest.ProtoReflect.Descriptor instead.
  54. func (*PartnerFindRoomListRequest) Descriptor() ([]byte, []int) {
  55. return file_chat_proto_rawDescGZIP(), []int{0}
  56. }
  57. func (x *PartnerFindRoomListRequest) GetNextId() int64 {
  58. if x != nil {
  59. return x.NextId
  60. }
  61. return 0
  62. }
  63. func (x *PartnerFindRoomListRequest) GetOffset() int64 {
  64. if x != nil {
  65. return x.Offset
  66. }
  67. return 0
  68. }
  69. func (x *PartnerFindRoomListRequest) GetIdentifyId() string {
  70. if x != nil {
  71. return x.IdentifyId
  72. }
  73. return ""
  74. }
  75. func (x *PartnerFindRoomListRequest) GetIsFindNotReply() bool {
  76. if x != nil {
  77. return x.IsFindNotReply
  78. }
  79. return false
  80. }
  81. func (x *PartnerFindRoomListRequest) GetIsWithinSevenDay() bool {
  82. if x != nil {
  83. return x.IsWithinSevenDay
  84. }
  85. return false
  86. }
  87. type PartnerFindRoomListReply struct {
  88. state protoimpl.MessageState
  89. sizeCache protoimpl.SizeCache
  90. unknownFields protoimpl.UnknownFields
  91. List []*PartnerRoomInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  92. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  93. }
  94. func (x *PartnerFindRoomListReply) Reset() {
  95. *x = PartnerFindRoomListReply{}
  96. if protoimpl.UnsafeEnabled {
  97. mi := &file_chat_proto_msgTypes[1]
  98. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  99. ms.StoreMessageInfo(mi)
  100. }
  101. }
  102. func (x *PartnerFindRoomListReply) String() string {
  103. return protoimpl.X.MessageStringOf(x)
  104. }
  105. func (*PartnerFindRoomListReply) ProtoMessage() {}
  106. func (x *PartnerFindRoomListReply) ProtoReflect() protoreflect.Message {
  107. mi := &file_chat_proto_msgTypes[1]
  108. if protoimpl.UnsafeEnabled && x != nil {
  109. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  110. if ms.LoadMessageInfo() == nil {
  111. ms.StoreMessageInfo(mi)
  112. }
  113. return ms
  114. }
  115. return mi.MessageOf(x)
  116. }
  117. // Deprecated: Use PartnerFindRoomListReply.ProtoReflect.Descriptor instead.
  118. func (*PartnerFindRoomListReply) Descriptor() ([]byte, []int) {
  119. return file_chat_proto_rawDescGZIP(), []int{1}
  120. }
  121. func (x *PartnerFindRoomListReply) GetList() []*PartnerRoomInfo {
  122. if x != nil {
  123. return x.List
  124. }
  125. return nil
  126. }
  127. func (x *PartnerFindRoomListReply) GetNextId() int64 {
  128. if x != nil {
  129. return x.NextId
  130. }
  131. return 0
  132. }
  133. type PartnerRoomInfo struct {
  134. state protoimpl.MessageState
  135. sizeCache protoimpl.SizeCache
  136. unknownFields protoimpl.UnknownFields
  137. PersonSendNum int64 `protobuf:"varint,1,opt,name=personSendNum,proto3" json:"personSendNum"` // 用户发送数
  138. PersonId string `protobuf:"bytes,2,opt,name=personId,proto3" json:"personId"` // 用户ID
  139. UnreadNum int64 `protobuf:"varint,3,opt,name=unreadNum,proto3" json:"unreadNum"` // 接待者未读数
  140. LastContent string `protobuf:"bytes,4,opt,name=lastContent,proto3" json:"lastContent"` // 上次发送内容
  141. LastTime int64 `protobuf:"varint,5,opt,name=lastTime,proto3" json:"lastTime"` // 上次发送时间
  142. Nickname string `protobuf:"bytes,6,opt,name=nickname,proto3" json:"nickname"` // 昵称
  143. AvatarUrl string `protobuf:"bytes,7,opt,name=AvatarUrl,proto3" json:"AvatarUrl"` // 头像
  144. Sex int64 `protobuf:"varint,8,opt,name=sex,proto3" json:"sex"` // 性别
  145. Type string `protobuf:"bytes,9,opt,name=type,proto3" json:"type"` // 类型(新客:new,付费:pay)
  146. Benefit int64 `protobuf:"varint,10,opt,name=benefit,proto3" json:"benefit"` // 收益
  147. }
  148. func (x *PartnerRoomInfo) Reset() {
  149. *x = PartnerRoomInfo{}
  150. if protoimpl.UnsafeEnabled {
  151. mi := &file_chat_proto_msgTypes[2]
  152. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  153. ms.StoreMessageInfo(mi)
  154. }
  155. }
  156. func (x *PartnerRoomInfo) String() string {
  157. return protoimpl.X.MessageStringOf(x)
  158. }
  159. func (*PartnerRoomInfo) ProtoMessage() {}
  160. func (x *PartnerRoomInfo) ProtoReflect() protoreflect.Message {
  161. mi := &file_chat_proto_msgTypes[2]
  162. if protoimpl.UnsafeEnabled && x != nil {
  163. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  164. if ms.LoadMessageInfo() == nil {
  165. ms.StoreMessageInfo(mi)
  166. }
  167. return ms
  168. }
  169. return mi.MessageOf(x)
  170. }
  171. // Deprecated: Use PartnerRoomInfo.ProtoReflect.Descriptor instead.
  172. func (*PartnerRoomInfo) Descriptor() ([]byte, []int) {
  173. return file_chat_proto_rawDescGZIP(), []int{2}
  174. }
  175. func (x *PartnerRoomInfo) GetPersonSendNum() int64 {
  176. if x != nil {
  177. return x.PersonSendNum
  178. }
  179. return 0
  180. }
  181. func (x *PartnerRoomInfo) GetPersonId() string {
  182. if x != nil {
  183. return x.PersonId
  184. }
  185. return ""
  186. }
  187. func (x *PartnerRoomInfo) GetUnreadNum() int64 {
  188. if x != nil {
  189. return x.UnreadNum
  190. }
  191. return 0
  192. }
  193. func (x *PartnerRoomInfo) GetLastContent() string {
  194. if x != nil {
  195. return x.LastContent
  196. }
  197. return ""
  198. }
  199. func (x *PartnerRoomInfo) GetLastTime() int64 {
  200. if x != nil {
  201. return x.LastTime
  202. }
  203. return 0
  204. }
  205. func (x *PartnerRoomInfo) GetNickname() string {
  206. if x != nil {
  207. return x.Nickname
  208. }
  209. return ""
  210. }
  211. func (x *PartnerRoomInfo) GetAvatarUrl() string {
  212. if x != nil {
  213. return x.AvatarUrl
  214. }
  215. return ""
  216. }
  217. func (x *PartnerRoomInfo) GetSex() int64 {
  218. if x != nil {
  219. return x.Sex
  220. }
  221. return 0
  222. }
  223. func (x *PartnerRoomInfo) GetType() string {
  224. if x != nil {
  225. return x.Type
  226. }
  227. return ""
  228. }
  229. func (x *PartnerRoomInfo) GetBenefit() int64 {
  230. if x != nil {
  231. return x.Benefit
  232. }
  233. return 0
  234. }
  235. type CreateChatRoomParam struct {
  236. state protoimpl.MessageState
  237. sizeCache protoimpl.SizeCache
  238. unknownFields protoimpl.UnknownFields
  239. PersonId1 string `protobuf:"bytes,1,opt,name=personId1,proto3" json:"personId1"`
  240. PersonIdentifyID1 string `protobuf:"bytes,2,opt,name=personIdentifyID1,proto3" json:"personIdentifyID1"` // 身份ID
  241. PersonType1 string `protobuf:"bytes,3,opt,name=personType1,proto3" json:"personType1"` // 类型
  242. PersonId2 string `protobuf:"bytes,4,opt,name=personId2,proto3" json:"personId2"`
  243. PersonIdentifyID2 string `protobuf:"bytes,5,opt,name=personIdentifyID2,proto3" json:"personIdentifyID2"` // 身份ID
  244. PersonType2 string `protobuf:"bytes,6,opt,name=personType2,proto3" json:"personType2"` // 类型
  245. }
  246. func (x *CreateChatRoomParam) Reset() {
  247. *x = CreateChatRoomParam{}
  248. if protoimpl.UnsafeEnabled {
  249. mi := &file_chat_proto_msgTypes[3]
  250. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  251. ms.StoreMessageInfo(mi)
  252. }
  253. }
  254. func (x *CreateChatRoomParam) String() string {
  255. return protoimpl.X.MessageStringOf(x)
  256. }
  257. func (*CreateChatRoomParam) ProtoMessage() {}
  258. func (x *CreateChatRoomParam) ProtoReflect() protoreflect.Message {
  259. mi := &file_chat_proto_msgTypes[3]
  260. if protoimpl.UnsafeEnabled && x != nil {
  261. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  262. if ms.LoadMessageInfo() == nil {
  263. ms.StoreMessageInfo(mi)
  264. }
  265. return ms
  266. }
  267. return mi.MessageOf(x)
  268. }
  269. // Deprecated: Use CreateChatRoomParam.ProtoReflect.Descriptor instead.
  270. func (*CreateChatRoomParam) Descriptor() ([]byte, []int) {
  271. return file_chat_proto_rawDescGZIP(), []int{3}
  272. }
  273. func (x *CreateChatRoomParam) GetPersonId1() string {
  274. if x != nil {
  275. return x.PersonId1
  276. }
  277. return ""
  278. }
  279. func (x *CreateChatRoomParam) GetPersonIdentifyID1() string {
  280. if x != nil {
  281. return x.PersonIdentifyID1
  282. }
  283. return ""
  284. }
  285. func (x *CreateChatRoomParam) GetPersonType1() string {
  286. if x != nil {
  287. return x.PersonType1
  288. }
  289. return ""
  290. }
  291. func (x *CreateChatRoomParam) GetPersonId2() string {
  292. if x != nil {
  293. return x.PersonId2
  294. }
  295. return ""
  296. }
  297. func (x *CreateChatRoomParam) GetPersonIdentifyID2() string {
  298. if x != nil {
  299. return x.PersonIdentifyID2
  300. }
  301. return ""
  302. }
  303. func (x *CreateChatRoomParam) GetPersonType2() string {
  304. if x != nil {
  305. return x.PersonType2
  306. }
  307. return ""
  308. }
  309. type ReceiveRequest struct {
  310. state protoimpl.MessageState
  311. sizeCache protoimpl.SizeCache
  312. unknownFields protoimpl.UnknownFields
  313. Method string `protobuf:"bytes,1,opt,name=method,proto3" json:"method"`
  314. Data []byte `protobuf:"bytes,2,opt,name=data,proto3" json:"data"`
  315. Id string `protobuf:"bytes,3,opt,name=id,proto3" json:"id"`
  316. WebsocketTag string `protobuf:"bytes,4,opt,name=websocketTag,proto3" json:"websocketTag"`
  317. PersonType string `protobuf:"bytes,5,opt,name=personType,proto3" json:"personType"`
  318. PersonId string `protobuf:"bytes,6,opt,name=personId,proto3" json:"personId"`
  319. }
  320. func (x *ReceiveRequest) Reset() {
  321. *x = ReceiveRequest{}
  322. if protoimpl.UnsafeEnabled {
  323. mi := &file_chat_proto_msgTypes[4]
  324. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  325. ms.StoreMessageInfo(mi)
  326. }
  327. }
  328. func (x *ReceiveRequest) String() string {
  329. return protoimpl.X.MessageStringOf(x)
  330. }
  331. func (*ReceiveRequest) ProtoMessage() {}
  332. func (x *ReceiveRequest) ProtoReflect() protoreflect.Message {
  333. mi := &file_chat_proto_msgTypes[4]
  334. if protoimpl.UnsafeEnabled && x != nil {
  335. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  336. if ms.LoadMessageInfo() == nil {
  337. ms.StoreMessageInfo(mi)
  338. }
  339. return ms
  340. }
  341. return mi.MessageOf(x)
  342. }
  343. // Deprecated: Use ReceiveRequest.ProtoReflect.Descriptor instead.
  344. func (*ReceiveRequest) Descriptor() ([]byte, []int) {
  345. return file_chat_proto_rawDescGZIP(), []int{4}
  346. }
  347. func (x *ReceiveRequest) GetMethod() string {
  348. if x != nil {
  349. return x.Method
  350. }
  351. return ""
  352. }
  353. func (x *ReceiveRequest) GetData() []byte {
  354. if x != nil {
  355. return x.Data
  356. }
  357. return nil
  358. }
  359. func (x *ReceiveRequest) GetId() string {
  360. if x != nil {
  361. return x.Id
  362. }
  363. return ""
  364. }
  365. func (x *ReceiveRequest) GetWebsocketTag() string {
  366. if x != nil {
  367. return x.WebsocketTag
  368. }
  369. return ""
  370. }
  371. func (x *ReceiveRequest) GetPersonType() string {
  372. if x != nil {
  373. return x.PersonType
  374. }
  375. return ""
  376. }
  377. func (x *ReceiveRequest) GetPersonId() string {
  378. if x != nil {
  379. return x.PersonId
  380. }
  381. return ""
  382. }
  383. type ReceiveReply struct {
  384. state protoimpl.MessageState
  385. sizeCache protoimpl.SizeCache
  386. unknownFields protoimpl.UnknownFields
  387. }
  388. func (x *ReceiveReply) Reset() {
  389. *x = ReceiveReply{}
  390. if protoimpl.UnsafeEnabled {
  391. mi := &file_chat_proto_msgTypes[5]
  392. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  393. ms.StoreMessageInfo(mi)
  394. }
  395. }
  396. func (x *ReceiveReply) String() string {
  397. return protoimpl.X.MessageStringOf(x)
  398. }
  399. func (*ReceiveReply) ProtoMessage() {}
  400. func (x *ReceiveReply) ProtoReflect() protoreflect.Message {
  401. mi := &file_chat_proto_msgTypes[5]
  402. if protoimpl.UnsafeEnabled && x != nil {
  403. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  404. if ms.LoadMessageInfo() == nil {
  405. ms.StoreMessageInfo(mi)
  406. }
  407. return ms
  408. }
  409. return mi.MessageOf(x)
  410. }
  411. // Deprecated: Use ReceiveReply.ProtoReflect.Descriptor instead.
  412. func (*ReceiveReply) Descriptor() ([]byte, []int) {
  413. return file_chat_proto_rawDescGZIP(), []int{5}
  414. }
  415. type CheckUserPartnerIsRelationshipReply struct {
  416. state protoimpl.MessageState
  417. sizeCache protoimpl.SizeCache
  418. unknownFields protoimpl.UnknownFields
  419. IsBuildRelationship bool `protobuf:"varint,1,opt,name=isBuildRelationship,proto3" json:"isBuildRelationship"`
  420. RoomId int64 `protobuf:"varint,2,opt,name=roomId,proto3" json:"roomId"`
  421. }
  422. func (x *CheckUserPartnerIsRelationshipReply) Reset() {
  423. *x = CheckUserPartnerIsRelationshipReply{}
  424. if protoimpl.UnsafeEnabled {
  425. mi := &file_chat_proto_msgTypes[6]
  426. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  427. ms.StoreMessageInfo(mi)
  428. }
  429. }
  430. func (x *CheckUserPartnerIsRelationshipReply) String() string {
  431. return protoimpl.X.MessageStringOf(x)
  432. }
  433. func (*CheckUserPartnerIsRelationshipReply) ProtoMessage() {}
  434. func (x *CheckUserPartnerIsRelationshipReply) ProtoReflect() protoreflect.Message {
  435. mi := &file_chat_proto_msgTypes[6]
  436. if protoimpl.UnsafeEnabled && x != nil {
  437. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  438. if ms.LoadMessageInfo() == nil {
  439. ms.StoreMessageInfo(mi)
  440. }
  441. return ms
  442. }
  443. return mi.MessageOf(x)
  444. }
  445. // Deprecated: Use CheckUserPartnerIsRelationshipReply.ProtoReflect.Descriptor instead.
  446. func (*CheckUserPartnerIsRelationshipReply) Descriptor() ([]byte, []int) {
  447. return file_chat_proto_rawDescGZIP(), []int{6}
  448. }
  449. func (x *CheckUserPartnerIsRelationshipReply) GetIsBuildRelationship() bool {
  450. if x != nil {
  451. return x.IsBuildRelationship
  452. }
  453. return false
  454. }
  455. func (x *CheckUserPartnerIsRelationshipReply) GetRoomId() int64 {
  456. if x != nil {
  457. return x.RoomId
  458. }
  459. return 0
  460. }
  461. type RoomReply struct {
  462. state protoimpl.MessageState
  463. sizeCache protoimpl.SizeCache
  464. unknownFields protoimpl.UnknownFields
  465. RoomId int64 `protobuf:"varint,1,opt,name=roomId,proto3" json:"roomId"`
  466. }
  467. func (x *RoomReply) Reset() {
  468. *x = RoomReply{}
  469. if protoimpl.UnsafeEnabled {
  470. mi := &file_chat_proto_msgTypes[7]
  471. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  472. ms.StoreMessageInfo(mi)
  473. }
  474. }
  475. func (x *RoomReply) String() string {
  476. return protoimpl.X.MessageStringOf(x)
  477. }
  478. func (*RoomReply) ProtoMessage() {}
  479. func (x *RoomReply) ProtoReflect() protoreflect.Message {
  480. mi := &file_chat_proto_msgTypes[7]
  481. if protoimpl.UnsafeEnabled && x != nil {
  482. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  483. if ms.LoadMessageInfo() == nil {
  484. ms.StoreMessageInfo(mi)
  485. }
  486. return ms
  487. }
  488. return mi.MessageOf(x)
  489. }
  490. // Deprecated: Use RoomReply.ProtoReflect.Descriptor instead.
  491. func (*RoomReply) Descriptor() ([]byte, []int) {
  492. return file_chat_proto_rawDescGZIP(), []int{7}
  493. }
  494. func (x *RoomReply) GetRoomId() int64 {
  495. if x != nil {
  496. return x.RoomId
  497. }
  498. return 0
  499. }
  500. var File_chat_proto protoreflect.FileDescriptor
  501. var file_chat_proto_rawDesc = []byte{
  502. 0x0a, 0x0a, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x08, 0x61, 0x70,
  503. 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x1a, 0x17, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d, 0x6d,
  504. 0x6f, 0x6e, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22,
  505. 0xc0, 0x01, 0x0a, 0x1a, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52,
  506. 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16,
  507. 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  508. 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74,
  509. 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x1e,
  510. 0x0a, 0x0a, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01,
  511. 0x28, 0x09, 0x52, 0x0a, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x12, 0x26,
  512. 0x0a, 0x0e, 0x69, 0x73, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79,
  513. 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x69, 0x73, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f,
  514. 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x2a, 0x0a, 0x10, 0x69, 0x73, 0x57, 0x69, 0x74, 0x68,
  515. 0x69, 0x6e, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08,
  516. 0x52, 0x10, 0x69, 0x73, 0x57, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44,
  517. 0x61, 0x79, 0x22, 0x61, 0x0a, 0x18, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x46, 0x69, 0x6e,
  518. 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x2d,
  519. 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x61,
  520. 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52,
  521. 0x6f, 0x6f, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a,
  522. 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e,
  523. 0x65, 0x78, 0x74, 0x49, 0x64, 0x22, 0xa9, 0x02, 0x0a, 0x0f, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  524. 0x72, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x24, 0x0a, 0x0d, 0x70, 0x65, 0x72,
  525. 0x73, 0x6f, 0x6e, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  526. 0x52, 0x0d, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x75, 0x6d, 0x12,
  527. 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  528. 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x75,
  529. 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
  530. 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x61, 0x73,
  531. 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b,
  532. 0x6c, 0x61, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6c,
  533. 0x61, 0x73, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6c,
  534. 0x61, 0x73, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e,
  535. 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e,
  536. 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c,
  537. 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72,
  538. 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03,
  539. 0x73, 0x65, 0x78, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28,
  540. 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x62, 0x65, 0x6e, 0x65, 0x66,
  541. 0x69, 0x74, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x62, 0x65, 0x6e, 0x65, 0x66, 0x69,
  542. 0x74, 0x22, 0xf1, 0x01, 0x0a, 0x13, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74,
  543. 0x52, 0x6f, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x65, 0x72,
  544. 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x31, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x65,
  545. 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x31, 0x12, 0x2c, 0x0a, 0x11, 0x70, 0x65, 0x72, 0x73, 0x6f,
  546. 0x6e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x44, 0x31, 0x18, 0x02, 0x20, 0x01,
  547. 0x28, 0x09, 0x52, 0x11, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69,
  548. 0x66, 0x79, 0x49, 0x44, 0x31, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54,
  549. 0x79, 0x70, 0x65, 0x31, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x65, 0x72, 0x73,
  550. 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x31, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x65, 0x72, 0x73, 0x6f,
  551. 0x6e, 0x49, 0x64, 0x32, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x65, 0x72, 0x73,
  552. 0x6f, 0x6e, 0x49, 0x64, 0x32, 0x12, 0x2c, 0x0a, 0x11, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  553. 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x44, 0x32, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
  554. 0x52, 0x11, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79,
  555. 0x49, 0x44, 0x32, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70,
  556. 0x65, 0x32, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  557. 0x54, 0x79, 0x70, 0x65, 0x32, 0x22, 0xac, 0x01, 0x0a, 0x0e, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76,
  558. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6d, 0x65, 0x74, 0x68,
  559. 0x6f, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64,
  560. 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04,
  561. 0x64, 0x61, 0x74, 0x61, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  562. 0x52, 0x02, 0x69, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x77, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65,
  563. 0x74, 0x54, 0x61, 0x67, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x77, 0x65, 0x62, 0x73,
  564. 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x54, 0x61, 0x67, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73,
  565. 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65,
  566. 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73,
  567. 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73,
  568. 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x0e, 0x0a, 0x0c, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x52,
  569. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x6f, 0x0a, 0x23, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x73, 0x65,
  570. 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69,
  571. 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x30, 0x0a, 0x13, 0x69,
  572. 0x73, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68,
  573. 0x69, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x13, 0x69, 0x73, 0x42, 0x75, 0x69, 0x6c,
  574. 0x64, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x12, 0x16, 0x0a,
  575. 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72,
  576. 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22, 0x23, 0x0a, 0x09, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x70,
  577. 0x6c, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01,
  578. 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x32, 0xc3, 0x03, 0x0a, 0x04, 0x43,
  579. 0x68, 0x61, 0x74, 0x12, 0x72, 0x0a, 0x1e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72,
  580. 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f,
  581. 0x6e, 0x73, 0x68, 0x69, 0x70, 0x12, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  582. 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x41, 0x6e, 0x64, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  583. 0x72, 0x49, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  584. 0x68, 0x61, 0x74, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72,
  585. 0x74, 0x6e, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68,
  586. 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x44, 0x0a, 0x0e, 0x43, 0x72, 0x65, 0x61, 0x74,
  587. 0x65, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  588. 0x63, 0x68, 0x61, 0x74, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x52,
  589. 0x6f, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  590. 0x68, 0x61, 0x74, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x5f, 0x0a,
  591. 0x14, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f,
  592. 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  593. 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x41, 0x6e, 0x64, 0x50, 0x65,
  594. 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x61, 0x70,
  595. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x50,
  596. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x61,
  597. 0x0a, 0x13, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f,
  598. 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74,
  599. 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d,
  600. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x61, 0x70,
  601. 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x46, 0x69,
  602. 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  603. 0x00, 0x12, 0x3d, 0x0a, 0x07, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x12, 0x18, 0x2e, 0x61,
  604. 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x52,
  605. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61,
  606. 0x74, 0x2e, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
  607. 0x42, 0x3d, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x50, 0x01, 0x5a, 0x2f,
  608. 0x67, 0x69, 0x74, 0x2e, 0x69, 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73,
  609. 0x65, 0x72, 0x76, 0x65, 0x72, 0x2f, 0x70, 0x77, 0x2d, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  610. 0x66, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x3b, 0x63, 0x68, 0x61, 0x74, 0x62,
  611. 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  612. }
  613. var (
  614. file_chat_proto_rawDescOnce sync.Once
  615. file_chat_proto_rawDescData = file_chat_proto_rawDesc
  616. )
  617. func file_chat_proto_rawDescGZIP() []byte {
  618. file_chat_proto_rawDescOnce.Do(func() {
  619. file_chat_proto_rawDescData = protoimpl.X.CompressGZIP(file_chat_proto_rawDescData)
  620. })
  621. return file_chat_proto_rawDescData
  622. }
  623. var file_chat_proto_msgTypes = make([]protoimpl.MessageInfo, 8)
  624. var file_chat_proto_goTypes = []interface{}{
  625. (*PartnerFindRoomListRequest)(nil), // 0: api.chat.PartnerFindRoomListRequest
  626. (*PartnerFindRoomListReply)(nil), // 1: api.chat.PartnerFindRoomListReply
  627. (*PartnerRoomInfo)(nil), // 2: api.chat.PartnerRoomInfo
  628. (*CreateChatRoomParam)(nil), // 3: api.chat.CreateChatRoomParam
  629. (*ReceiveRequest)(nil), // 4: api.chat.ReceiveRequest
  630. (*ReceiveReply)(nil), // 5: api.chat.ReceiveReply
  631. (*CheckUserPartnerIsRelationshipReply)(nil), // 6: api.chat.CheckUserPartnerIsRelationshipReply
  632. (*RoomReply)(nil), // 7: api.chat.RoomReply
  633. (*common.UserAndPartnerIdParam)(nil), // 8: api.common.UserAndPartnerIdParam
  634. (*common.ListPageAndPersonRequest)(nil), // 9: api.common.ListPageAndPersonRequest
  635. (*common.OnlinePersonListReply)(nil), // 10: api.common.OnlinePersonListReply
  636. }
  637. var file_chat_proto_depIdxs = []int32{
  638. 2, // 0: api.chat.PartnerFindRoomListReply.list:type_name -> api.chat.PartnerRoomInfo
  639. 8, // 1: api.chat.Chat.CheckUserPartnerIsRelationship:input_type -> api.common.UserAndPartnerIdParam
  640. 3, // 2: api.chat.Chat.CreateChatRoom:input_type -> api.chat.CreateChatRoomParam
  641. 9, // 3: api.chat.Chat.FindOnlinePersonList:input_type -> api.common.ListPageAndPersonRequest
  642. 0, // 4: api.chat.Chat.PartnerFindRoomList:input_type -> api.chat.PartnerFindRoomListRequest
  643. 4, // 5: api.chat.Chat.Receive:input_type -> api.chat.ReceiveRequest
  644. 6, // 6: api.chat.Chat.CheckUserPartnerIsRelationship:output_type -> api.chat.CheckUserPartnerIsRelationshipReply
  645. 7, // 7: api.chat.Chat.CreateChatRoom:output_type -> api.chat.RoomReply
  646. 10, // 8: api.chat.Chat.FindOnlinePersonList:output_type -> api.common.OnlinePersonListReply
  647. 1, // 9: api.chat.Chat.PartnerFindRoomList:output_type -> api.chat.PartnerFindRoomListReply
  648. 5, // 10: api.chat.Chat.Receive:output_type -> api.chat.ReceiveReply
  649. 6, // [6:11] is the sub-list for method output_type
  650. 1, // [1:6] is the sub-list for method input_type
  651. 1, // [1:1] is the sub-list for extension type_name
  652. 1, // [1:1] is the sub-list for extension extendee
  653. 0, // [0:1] is the sub-list for field type_name
  654. }
  655. func init() { file_chat_proto_init() }
  656. func file_chat_proto_init() {
  657. if File_chat_proto != nil {
  658. return
  659. }
  660. if !protoimpl.UnsafeEnabled {
  661. file_chat_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  662. switch v := v.(*PartnerFindRoomListRequest); i {
  663. case 0:
  664. return &v.state
  665. case 1:
  666. return &v.sizeCache
  667. case 2:
  668. return &v.unknownFields
  669. default:
  670. return nil
  671. }
  672. }
  673. file_chat_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  674. switch v := v.(*PartnerFindRoomListReply); i {
  675. case 0:
  676. return &v.state
  677. case 1:
  678. return &v.sizeCache
  679. case 2:
  680. return &v.unknownFields
  681. default:
  682. return nil
  683. }
  684. }
  685. file_chat_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  686. switch v := v.(*PartnerRoomInfo); i {
  687. case 0:
  688. return &v.state
  689. case 1:
  690. return &v.sizeCache
  691. case 2:
  692. return &v.unknownFields
  693. default:
  694. return nil
  695. }
  696. }
  697. file_chat_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  698. switch v := v.(*CreateChatRoomParam); i {
  699. case 0:
  700. return &v.state
  701. case 1:
  702. return &v.sizeCache
  703. case 2:
  704. return &v.unknownFields
  705. default:
  706. return nil
  707. }
  708. }
  709. file_chat_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  710. switch v := v.(*ReceiveRequest); i {
  711. case 0:
  712. return &v.state
  713. case 1:
  714. return &v.sizeCache
  715. case 2:
  716. return &v.unknownFields
  717. default:
  718. return nil
  719. }
  720. }
  721. file_chat_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  722. switch v := v.(*ReceiveReply); i {
  723. case 0:
  724. return &v.state
  725. case 1:
  726. return &v.sizeCache
  727. case 2:
  728. return &v.unknownFields
  729. default:
  730. return nil
  731. }
  732. }
  733. file_chat_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  734. switch v := v.(*CheckUserPartnerIsRelationshipReply); i {
  735. case 0:
  736. return &v.state
  737. case 1:
  738. return &v.sizeCache
  739. case 2:
  740. return &v.unknownFields
  741. default:
  742. return nil
  743. }
  744. }
  745. file_chat_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  746. switch v := v.(*RoomReply); i {
  747. case 0:
  748. return &v.state
  749. case 1:
  750. return &v.sizeCache
  751. case 2:
  752. return &v.unknownFields
  753. default:
  754. return nil
  755. }
  756. }
  757. }
  758. type x struct{}
  759. out := protoimpl.TypeBuilder{
  760. File: protoimpl.DescBuilder{
  761. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  762. RawDescriptor: file_chat_proto_rawDesc,
  763. NumEnums: 0,
  764. NumMessages: 8,
  765. NumExtensions: 0,
  766. NumServices: 1,
  767. },
  768. GoTypes: file_chat_proto_goTypes,
  769. DependencyIndexes: file_chat_proto_depIdxs,
  770. MessageInfos: file_chat_proto_msgTypes,
  771. }.Build()
  772. File_chat_proto = out.File
  773. file_chat_proto_rawDesc = nil
  774. file_chat_proto_goTypes = nil
  775. file_chat_proto_depIdxs = nil
  776. }