chat.pb.go 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007
  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. emptypb "google.golang.org/protobuf/types/known/emptypb"
  12. reflect "reflect"
  13. sync "sync"
  14. )
  15. const (
  16. // Verify that this generated code is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  18. // Verify that runtime/protoimpl is sufficiently up-to-date.
  19. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  20. )
  21. type FindNotReplyNumReply struct {
  22. state protoimpl.MessageState
  23. sizeCache protoimpl.SizeCache
  24. unknownFields protoimpl.UnknownFields
  25. PersonNum int64 `protobuf:"varint,1,opt,name=personNum,proto3" json:"personNum"` // 未接待人数
  26. MessageNum int64 `protobuf:"varint,2,opt,name=messageNum,proto3" json:"messageNum"` // 消息数
  27. }
  28. func (x *FindNotReplyNumReply) Reset() {
  29. *x = FindNotReplyNumReply{}
  30. if protoimpl.UnsafeEnabled {
  31. mi := &file_chat_proto_msgTypes[0]
  32. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  33. ms.StoreMessageInfo(mi)
  34. }
  35. }
  36. func (x *FindNotReplyNumReply) String() string {
  37. return protoimpl.X.MessageStringOf(x)
  38. }
  39. func (*FindNotReplyNumReply) ProtoMessage() {}
  40. func (x *FindNotReplyNumReply) ProtoReflect() protoreflect.Message {
  41. mi := &file_chat_proto_msgTypes[0]
  42. if protoimpl.UnsafeEnabled && x != nil {
  43. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  44. if ms.LoadMessageInfo() == nil {
  45. ms.StoreMessageInfo(mi)
  46. }
  47. return ms
  48. }
  49. return mi.MessageOf(x)
  50. }
  51. // Deprecated: Use FindNotReplyNumReply.ProtoReflect.Descriptor instead.
  52. func (*FindNotReplyNumReply) Descriptor() ([]byte, []int) {
  53. return file_chat_proto_rawDescGZIP(), []int{0}
  54. }
  55. func (x *FindNotReplyNumReply) GetPersonNum() int64 {
  56. if x != nil {
  57. return x.PersonNum
  58. }
  59. return 0
  60. }
  61. func (x *FindNotReplyNumReply) GetMessageNum() int64 {
  62. if x != nil {
  63. return x.MessageNum
  64. }
  65. return 0
  66. }
  67. type FindRecommendPersonListRequest struct {
  68. state protoimpl.MessageState
  69. sizeCache protoimpl.SizeCache
  70. unknownFields protoimpl.UnknownFields
  71. NextId string `protobuf:"bytes,1,opt,name=nextId,proto3" json:"nextId"`
  72. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  73. PersonID string `protobuf:"bytes,3,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  74. PersonType string `protobuf:"bytes,4,opt,name=personType,proto3" json:"personType"` // 类型
  75. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别(不筛选就是0)
  76. }
  77. func (x *FindRecommendPersonListRequest) Reset() {
  78. *x = FindRecommendPersonListRequest{}
  79. if protoimpl.UnsafeEnabled {
  80. mi := &file_chat_proto_msgTypes[1]
  81. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  82. ms.StoreMessageInfo(mi)
  83. }
  84. }
  85. func (x *FindRecommendPersonListRequest) String() string {
  86. return protoimpl.X.MessageStringOf(x)
  87. }
  88. func (*FindRecommendPersonListRequest) ProtoMessage() {}
  89. func (x *FindRecommendPersonListRequest) ProtoReflect() protoreflect.Message {
  90. mi := &file_chat_proto_msgTypes[1]
  91. if protoimpl.UnsafeEnabled && x != nil {
  92. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  93. if ms.LoadMessageInfo() == nil {
  94. ms.StoreMessageInfo(mi)
  95. }
  96. return ms
  97. }
  98. return mi.MessageOf(x)
  99. }
  100. // Deprecated: Use FindRecommendPersonListRequest.ProtoReflect.Descriptor instead.
  101. func (*FindRecommendPersonListRequest) Descriptor() ([]byte, []int) {
  102. return file_chat_proto_rawDescGZIP(), []int{1}
  103. }
  104. func (x *FindRecommendPersonListRequest) GetNextId() string {
  105. if x != nil {
  106. return x.NextId
  107. }
  108. return ""
  109. }
  110. func (x *FindRecommendPersonListRequest) GetOffset() int64 {
  111. if x != nil {
  112. return x.Offset
  113. }
  114. return 0
  115. }
  116. func (x *FindRecommendPersonListRequest) GetPersonID() string {
  117. if x != nil {
  118. return x.PersonID
  119. }
  120. return ""
  121. }
  122. func (x *FindRecommendPersonListRequest) GetPersonType() string {
  123. if x != nil {
  124. return x.PersonType
  125. }
  126. return ""
  127. }
  128. func (x *FindRecommendPersonListRequest) GetSex() int64 {
  129. if x != nil {
  130. return x.Sex
  131. }
  132. return 0
  133. }
  134. type FindRoomCardMsgRequest struct {
  135. state protoimpl.MessageState
  136. sizeCache protoimpl.SizeCache
  137. unknownFields protoimpl.UnknownFields
  138. UserIdentifyId string `protobuf:"bytes,1,opt,name=userIdentifyId,proto3" json:"userIdentifyId"` // 身份ID
  139. PartnerIdentifyId string `protobuf:"bytes,2,opt,name=partnerIdentifyId,proto3" json:"partnerIdentifyId"` // 身份ID
  140. }
  141. func (x *FindRoomCardMsgRequest) Reset() {
  142. *x = FindRoomCardMsgRequest{}
  143. if protoimpl.UnsafeEnabled {
  144. mi := &file_chat_proto_msgTypes[2]
  145. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  146. ms.StoreMessageInfo(mi)
  147. }
  148. }
  149. func (x *FindRoomCardMsgRequest) String() string {
  150. return protoimpl.X.MessageStringOf(x)
  151. }
  152. func (*FindRoomCardMsgRequest) ProtoMessage() {}
  153. func (x *FindRoomCardMsgRequest) ProtoReflect() protoreflect.Message {
  154. mi := &file_chat_proto_msgTypes[2]
  155. if protoimpl.UnsafeEnabled && x != nil {
  156. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  157. if ms.LoadMessageInfo() == nil {
  158. ms.StoreMessageInfo(mi)
  159. }
  160. return ms
  161. }
  162. return mi.MessageOf(x)
  163. }
  164. // Deprecated: Use FindRoomCardMsgRequest.ProtoReflect.Descriptor instead.
  165. func (*FindRoomCardMsgRequest) Descriptor() ([]byte, []int) {
  166. return file_chat_proto_rawDescGZIP(), []int{2}
  167. }
  168. func (x *FindRoomCardMsgRequest) GetUserIdentifyId() string {
  169. if x != nil {
  170. return x.UserIdentifyId
  171. }
  172. return ""
  173. }
  174. func (x *FindRoomCardMsgRequest) GetPartnerIdentifyId() string {
  175. if x != nil {
  176. return x.PartnerIdentifyId
  177. }
  178. return ""
  179. }
  180. type PartnerGetAwardReply struct {
  181. state protoimpl.MessageState
  182. sizeCache protoimpl.SizeCache
  183. unknownFields protoimpl.UnknownFields
  184. Balance int64 `protobuf:"varint,1,opt,name=balance,proto3" json:"balance"`
  185. }
  186. func (x *PartnerGetAwardReply) Reset() {
  187. *x = PartnerGetAwardReply{}
  188. if protoimpl.UnsafeEnabled {
  189. mi := &file_chat_proto_msgTypes[3]
  190. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  191. ms.StoreMessageInfo(mi)
  192. }
  193. }
  194. func (x *PartnerGetAwardReply) String() string {
  195. return protoimpl.X.MessageStringOf(x)
  196. }
  197. func (*PartnerGetAwardReply) ProtoMessage() {}
  198. func (x *PartnerGetAwardReply) ProtoReflect() protoreflect.Message {
  199. mi := &file_chat_proto_msgTypes[3]
  200. if protoimpl.UnsafeEnabled && x != nil {
  201. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  202. if ms.LoadMessageInfo() == nil {
  203. ms.StoreMessageInfo(mi)
  204. }
  205. return ms
  206. }
  207. return mi.MessageOf(x)
  208. }
  209. // Deprecated: Use PartnerGetAwardReply.ProtoReflect.Descriptor instead.
  210. func (*PartnerGetAwardReply) Descriptor() ([]byte, []int) {
  211. return file_chat_proto_rawDescGZIP(), []int{3}
  212. }
  213. func (x *PartnerGetAwardReply) GetBalance() int64 {
  214. if x != nil {
  215. return x.Balance
  216. }
  217. return 0
  218. }
  219. type PartnerGetAwardRequest struct {
  220. state protoimpl.MessageState
  221. sizeCache protoimpl.SizeCache
  222. unknownFields protoimpl.UnknownFields
  223. UserIdentifyId string `protobuf:"bytes,1,opt,name=userIdentifyId,proto3" json:"userIdentifyId"` // 身份ID
  224. PartnerIdentifyId string `protobuf:"bytes,2,opt,name=partnerIdentifyId,proto3" json:"partnerIdentifyId"` // 身份ID
  225. AwardType string `protobuf:"bytes,3,opt,name=awardType,proto3" json:"awardType"`
  226. }
  227. func (x *PartnerGetAwardRequest) Reset() {
  228. *x = PartnerGetAwardRequest{}
  229. if protoimpl.UnsafeEnabled {
  230. mi := &file_chat_proto_msgTypes[4]
  231. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  232. ms.StoreMessageInfo(mi)
  233. }
  234. }
  235. func (x *PartnerGetAwardRequest) String() string {
  236. return protoimpl.X.MessageStringOf(x)
  237. }
  238. func (*PartnerGetAwardRequest) ProtoMessage() {}
  239. func (x *PartnerGetAwardRequest) ProtoReflect() protoreflect.Message {
  240. mi := &file_chat_proto_msgTypes[4]
  241. if protoimpl.UnsafeEnabled && x != nil {
  242. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  243. if ms.LoadMessageInfo() == nil {
  244. ms.StoreMessageInfo(mi)
  245. }
  246. return ms
  247. }
  248. return mi.MessageOf(x)
  249. }
  250. // Deprecated: Use PartnerGetAwardRequest.ProtoReflect.Descriptor instead.
  251. func (*PartnerGetAwardRequest) Descriptor() ([]byte, []int) {
  252. return file_chat_proto_rawDescGZIP(), []int{4}
  253. }
  254. func (x *PartnerGetAwardRequest) GetUserIdentifyId() string {
  255. if x != nil {
  256. return x.UserIdentifyId
  257. }
  258. return ""
  259. }
  260. func (x *PartnerGetAwardRequest) GetPartnerIdentifyId() string {
  261. if x != nil {
  262. return x.PartnerIdentifyId
  263. }
  264. return ""
  265. }
  266. func (x *PartnerGetAwardRequest) GetAwardType() string {
  267. if x != nil {
  268. return x.AwardType
  269. }
  270. return ""
  271. }
  272. type PartnerFindRoomListRequest struct {
  273. state protoimpl.MessageState
  274. sizeCache protoimpl.SizeCache
  275. unknownFields protoimpl.UnknownFields
  276. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  277. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  278. IdentifyId string `protobuf:"bytes,3,opt,name=IdentifyId,proto3" json:"IdentifyId"`
  279. IsFindNotReply bool `protobuf:"varint,4,opt,name=isFindNotReply,proto3" json:"isFindNotReply"` // 是否查询没回复过的内容
  280. IsWithinSevenDay bool `protobuf:"varint,5,opt,name=isWithinSevenDay,proto3" json:"isWithinSevenDay"` // 是否在七日内
  281. }
  282. func (x *PartnerFindRoomListRequest) Reset() {
  283. *x = PartnerFindRoomListRequest{}
  284. if protoimpl.UnsafeEnabled {
  285. mi := &file_chat_proto_msgTypes[5]
  286. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  287. ms.StoreMessageInfo(mi)
  288. }
  289. }
  290. func (x *PartnerFindRoomListRequest) String() string {
  291. return protoimpl.X.MessageStringOf(x)
  292. }
  293. func (*PartnerFindRoomListRequest) ProtoMessage() {}
  294. func (x *PartnerFindRoomListRequest) ProtoReflect() protoreflect.Message {
  295. mi := &file_chat_proto_msgTypes[5]
  296. if protoimpl.UnsafeEnabled && x != nil {
  297. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  298. if ms.LoadMessageInfo() == nil {
  299. ms.StoreMessageInfo(mi)
  300. }
  301. return ms
  302. }
  303. return mi.MessageOf(x)
  304. }
  305. // Deprecated: Use PartnerFindRoomListRequest.ProtoReflect.Descriptor instead.
  306. func (*PartnerFindRoomListRequest) Descriptor() ([]byte, []int) {
  307. return file_chat_proto_rawDescGZIP(), []int{5}
  308. }
  309. func (x *PartnerFindRoomListRequest) GetNextId() int64 {
  310. if x != nil {
  311. return x.NextId
  312. }
  313. return 0
  314. }
  315. func (x *PartnerFindRoomListRequest) GetOffset() int64 {
  316. if x != nil {
  317. return x.Offset
  318. }
  319. return 0
  320. }
  321. func (x *PartnerFindRoomListRequest) GetIdentifyId() string {
  322. if x != nil {
  323. return x.IdentifyId
  324. }
  325. return ""
  326. }
  327. func (x *PartnerFindRoomListRequest) GetIsFindNotReply() bool {
  328. if x != nil {
  329. return x.IsFindNotReply
  330. }
  331. return false
  332. }
  333. func (x *PartnerFindRoomListRequest) GetIsWithinSevenDay() bool {
  334. if x != nil {
  335. return x.IsWithinSevenDay
  336. }
  337. return false
  338. }
  339. type UserFindRoomListRequest struct {
  340. state protoimpl.MessageState
  341. sizeCache protoimpl.SizeCache
  342. unknownFields protoimpl.UnknownFields
  343. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  344. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  345. IdentifyId string `protobuf:"bytes,3,opt,name=IdentifyId,proto3" json:"IdentifyId"`
  346. IsWithinSevenDay bool `protobuf:"varint,4,opt,name=isWithinSevenDay,proto3" json:"isWithinSevenDay"` // 是否在七日内
  347. }
  348. func (x *UserFindRoomListRequest) Reset() {
  349. *x = UserFindRoomListRequest{}
  350. if protoimpl.UnsafeEnabled {
  351. mi := &file_chat_proto_msgTypes[6]
  352. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  353. ms.StoreMessageInfo(mi)
  354. }
  355. }
  356. func (x *UserFindRoomListRequest) String() string {
  357. return protoimpl.X.MessageStringOf(x)
  358. }
  359. func (*UserFindRoomListRequest) ProtoMessage() {}
  360. func (x *UserFindRoomListRequest) ProtoReflect() protoreflect.Message {
  361. mi := &file_chat_proto_msgTypes[6]
  362. if protoimpl.UnsafeEnabled && x != nil {
  363. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  364. if ms.LoadMessageInfo() == nil {
  365. ms.StoreMessageInfo(mi)
  366. }
  367. return ms
  368. }
  369. return mi.MessageOf(x)
  370. }
  371. // Deprecated: Use UserFindRoomListRequest.ProtoReflect.Descriptor instead.
  372. func (*UserFindRoomListRequest) Descriptor() ([]byte, []int) {
  373. return file_chat_proto_rawDescGZIP(), []int{6}
  374. }
  375. func (x *UserFindRoomListRequest) GetNextId() int64 {
  376. if x != nil {
  377. return x.NextId
  378. }
  379. return 0
  380. }
  381. func (x *UserFindRoomListRequest) GetOffset() int64 {
  382. if x != nil {
  383. return x.Offset
  384. }
  385. return 0
  386. }
  387. func (x *UserFindRoomListRequest) GetIdentifyId() string {
  388. if x != nil {
  389. return x.IdentifyId
  390. }
  391. return ""
  392. }
  393. func (x *UserFindRoomListRequest) GetIsWithinSevenDay() bool {
  394. if x != nil {
  395. return x.IsWithinSevenDay
  396. }
  397. return false
  398. }
  399. type UserFindRoomListReply struct {
  400. state protoimpl.MessageState
  401. sizeCache protoimpl.SizeCache
  402. unknownFields protoimpl.UnknownFields
  403. List []*UserRoomInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  404. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  405. }
  406. func (x *UserFindRoomListReply) Reset() {
  407. *x = UserFindRoomListReply{}
  408. if protoimpl.UnsafeEnabled {
  409. mi := &file_chat_proto_msgTypes[7]
  410. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  411. ms.StoreMessageInfo(mi)
  412. }
  413. }
  414. func (x *UserFindRoomListReply) String() string {
  415. return protoimpl.X.MessageStringOf(x)
  416. }
  417. func (*UserFindRoomListReply) ProtoMessage() {}
  418. func (x *UserFindRoomListReply) ProtoReflect() protoreflect.Message {
  419. mi := &file_chat_proto_msgTypes[7]
  420. if protoimpl.UnsafeEnabled && x != nil {
  421. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  422. if ms.LoadMessageInfo() == nil {
  423. ms.StoreMessageInfo(mi)
  424. }
  425. return ms
  426. }
  427. return mi.MessageOf(x)
  428. }
  429. // Deprecated: Use UserFindRoomListReply.ProtoReflect.Descriptor instead.
  430. func (*UserFindRoomListReply) Descriptor() ([]byte, []int) {
  431. return file_chat_proto_rawDescGZIP(), []int{7}
  432. }
  433. func (x *UserFindRoomListReply) GetList() []*UserRoomInfo {
  434. if x != nil {
  435. return x.List
  436. }
  437. return nil
  438. }
  439. func (x *UserFindRoomListReply) GetNextId() int64 {
  440. if x != nil {
  441. return x.NextId
  442. }
  443. return 0
  444. }
  445. type UserRoomInfo struct {
  446. state protoimpl.MessageState
  447. sizeCache protoimpl.SizeCache
  448. unknownFields protoimpl.UnknownFields
  449. PersonType string `protobuf:"bytes,1,opt,name=personType,proto3" json:"personType"` // 用户类型
  450. PersonId string `protobuf:"bytes,2,opt,name=personId,proto3" json:"personId"` // 用户ID
  451. UnreadNum int64 `protobuf:"varint,3,opt,name=unreadNum,proto3" json:"unreadNum"` // 用户未读数
  452. LastContent string `protobuf:"bytes,4,opt,name=lastContent,proto3" json:"lastContent"` // 上次发送内容
  453. LastTime int64 `protobuf:"varint,5,opt,name=lastTime,proto3" json:"lastTime"` // 上次发送时间
  454. Likeability int64 `protobuf:"varint,6,opt,name=likeability,proto3" json:"likeability"` // 好感度
  455. RoomId int64 `protobuf:"varint,7,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  456. }
  457. func (x *UserRoomInfo) Reset() {
  458. *x = UserRoomInfo{}
  459. if protoimpl.UnsafeEnabled {
  460. mi := &file_chat_proto_msgTypes[8]
  461. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  462. ms.StoreMessageInfo(mi)
  463. }
  464. }
  465. func (x *UserRoomInfo) String() string {
  466. return protoimpl.X.MessageStringOf(x)
  467. }
  468. func (*UserRoomInfo) ProtoMessage() {}
  469. func (x *UserRoomInfo) ProtoReflect() protoreflect.Message {
  470. mi := &file_chat_proto_msgTypes[8]
  471. if protoimpl.UnsafeEnabled && x != nil {
  472. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  473. if ms.LoadMessageInfo() == nil {
  474. ms.StoreMessageInfo(mi)
  475. }
  476. return ms
  477. }
  478. return mi.MessageOf(x)
  479. }
  480. // Deprecated: Use UserRoomInfo.ProtoReflect.Descriptor instead.
  481. func (*UserRoomInfo) Descriptor() ([]byte, []int) {
  482. return file_chat_proto_rawDescGZIP(), []int{8}
  483. }
  484. func (x *UserRoomInfo) GetPersonType() string {
  485. if x != nil {
  486. return x.PersonType
  487. }
  488. return ""
  489. }
  490. func (x *UserRoomInfo) GetPersonId() string {
  491. if x != nil {
  492. return x.PersonId
  493. }
  494. return ""
  495. }
  496. func (x *UserRoomInfo) GetUnreadNum() int64 {
  497. if x != nil {
  498. return x.UnreadNum
  499. }
  500. return 0
  501. }
  502. func (x *UserRoomInfo) GetLastContent() string {
  503. if x != nil {
  504. return x.LastContent
  505. }
  506. return ""
  507. }
  508. func (x *UserRoomInfo) GetLastTime() int64 {
  509. if x != nil {
  510. return x.LastTime
  511. }
  512. return 0
  513. }
  514. func (x *UserRoomInfo) GetLikeability() int64 {
  515. if x != nil {
  516. return x.Likeability
  517. }
  518. return 0
  519. }
  520. func (x *UserRoomInfo) GetRoomId() int64 {
  521. if x != nil {
  522. return x.RoomId
  523. }
  524. return 0
  525. }
  526. type PartnerFindRoomListReply struct {
  527. state protoimpl.MessageState
  528. sizeCache protoimpl.SizeCache
  529. unknownFields protoimpl.UnknownFields
  530. List []*PartnerRoomInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  531. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  532. }
  533. func (x *PartnerFindRoomListReply) Reset() {
  534. *x = PartnerFindRoomListReply{}
  535. if protoimpl.UnsafeEnabled {
  536. mi := &file_chat_proto_msgTypes[9]
  537. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  538. ms.StoreMessageInfo(mi)
  539. }
  540. }
  541. func (x *PartnerFindRoomListReply) String() string {
  542. return protoimpl.X.MessageStringOf(x)
  543. }
  544. func (*PartnerFindRoomListReply) ProtoMessage() {}
  545. func (x *PartnerFindRoomListReply) ProtoReflect() protoreflect.Message {
  546. mi := &file_chat_proto_msgTypes[9]
  547. if protoimpl.UnsafeEnabled && x != nil {
  548. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  549. if ms.LoadMessageInfo() == nil {
  550. ms.StoreMessageInfo(mi)
  551. }
  552. return ms
  553. }
  554. return mi.MessageOf(x)
  555. }
  556. // Deprecated: Use PartnerFindRoomListReply.ProtoReflect.Descriptor instead.
  557. func (*PartnerFindRoomListReply) Descriptor() ([]byte, []int) {
  558. return file_chat_proto_rawDescGZIP(), []int{9}
  559. }
  560. func (x *PartnerFindRoomListReply) GetList() []*PartnerRoomInfo {
  561. if x != nil {
  562. return x.List
  563. }
  564. return nil
  565. }
  566. func (x *PartnerFindRoomListReply) GetNextId() int64 {
  567. if x != nil {
  568. return x.NextId
  569. }
  570. return 0
  571. }
  572. type PartnerRoomInfo struct {
  573. state protoimpl.MessageState
  574. sizeCache protoimpl.SizeCache
  575. unknownFields protoimpl.UnknownFields
  576. PersonSendNum int64 `protobuf:"varint,1,opt,name=personSendNum,proto3" json:"personSendNum"` // 用户发送数
  577. PersonId string `protobuf:"bytes,2,opt,name=personId,proto3" json:"personId"` // 用户ID
  578. UnreadNum int64 `protobuf:"varint,3,opt,name=unreadNum,proto3" json:"unreadNum"` // 接待者未读数
  579. LastContent string `protobuf:"bytes,4,opt,name=lastContent,proto3" json:"lastContent"` // 上次发送内容
  580. LastTime int64 `protobuf:"varint,5,opt,name=lastTime,proto3" json:"lastTime"` // 上次发送时间
  581. Benefit int64 `protobuf:"varint,6,opt,name=benefit,proto3" json:"benefit"` // 收益
  582. Type string `protobuf:"bytes,7,opt,name=type,proto3" json:"type"` // 类型(新客:new,付费:pay)
  583. Sex int64 `protobuf:"varint,8,opt,name=sex,proto3" json:"sex"` // 性别
  584. AvatarUrl string `protobuf:"bytes,9,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像
  585. Nickname string `protobuf:"bytes,10,opt,name=nickname,proto3" json:"nickname"` // 昵称
  586. Age int64 `protobuf:"varint,11,opt,name=age,proto3" json:"age"` // 年龄
  587. Likeability int64 `protobuf:"varint,12,opt,name=likeability,proto3" json:"likeability"` // 好感度
  588. RoomId int64 `protobuf:"varint,13,opt,name=roomId,proto3" json:"roomId"` // 房间号ID
  589. PersonSendBaseNum int64 `protobuf:"varint,14,opt,name=personSendBaseNum,proto3" json:"personSendBaseNum"` // 用户发送基数
  590. }
  591. func (x *PartnerRoomInfo) Reset() {
  592. *x = PartnerRoomInfo{}
  593. if protoimpl.UnsafeEnabled {
  594. mi := &file_chat_proto_msgTypes[10]
  595. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  596. ms.StoreMessageInfo(mi)
  597. }
  598. }
  599. func (x *PartnerRoomInfo) String() string {
  600. return protoimpl.X.MessageStringOf(x)
  601. }
  602. func (*PartnerRoomInfo) ProtoMessage() {}
  603. func (x *PartnerRoomInfo) ProtoReflect() protoreflect.Message {
  604. mi := &file_chat_proto_msgTypes[10]
  605. if protoimpl.UnsafeEnabled && x != nil {
  606. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  607. if ms.LoadMessageInfo() == nil {
  608. ms.StoreMessageInfo(mi)
  609. }
  610. return ms
  611. }
  612. return mi.MessageOf(x)
  613. }
  614. // Deprecated: Use PartnerRoomInfo.ProtoReflect.Descriptor instead.
  615. func (*PartnerRoomInfo) Descriptor() ([]byte, []int) {
  616. return file_chat_proto_rawDescGZIP(), []int{10}
  617. }
  618. func (x *PartnerRoomInfo) GetPersonSendNum() int64 {
  619. if x != nil {
  620. return x.PersonSendNum
  621. }
  622. return 0
  623. }
  624. func (x *PartnerRoomInfo) GetPersonId() string {
  625. if x != nil {
  626. return x.PersonId
  627. }
  628. return ""
  629. }
  630. func (x *PartnerRoomInfo) GetUnreadNum() int64 {
  631. if x != nil {
  632. return x.UnreadNum
  633. }
  634. return 0
  635. }
  636. func (x *PartnerRoomInfo) GetLastContent() string {
  637. if x != nil {
  638. return x.LastContent
  639. }
  640. return ""
  641. }
  642. func (x *PartnerRoomInfo) GetLastTime() int64 {
  643. if x != nil {
  644. return x.LastTime
  645. }
  646. return 0
  647. }
  648. func (x *PartnerRoomInfo) GetBenefit() int64 {
  649. if x != nil {
  650. return x.Benefit
  651. }
  652. return 0
  653. }
  654. func (x *PartnerRoomInfo) GetType() string {
  655. if x != nil {
  656. return x.Type
  657. }
  658. return ""
  659. }
  660. func (x *PartnerRoomInfo) GetSex() int64 {
  661. if x != nil {
  662. return x.Sex
  663. }
  664. return 0
  665. }
  666. func (x *PartnerRoomInfo) GetAvatarUrl() string {
  667. if x != nil {
  668. return x.AvatarUrl
  669. }
  670. return ""
  671. }
  672. func (x *PartnerRoomInfo) GetNickname() string {
  673. if x != nil {
  674. return x.Nickname
  675. }
  676. return ""
  677. }
  678. func (x *PartnerRoomInfo) GetAge() int64 {
  679. if x != nil {
  680. return x.Age
  681. }
  682. return 0
  683. }
  684. func (x *PartnerRoomInfo) GetLikeability() int64 {
  685. if x != nil {
  686. return x.Likeability
  687. }
  688. return 0
  689. }
  690. func (x *PartnerRoomInfo) GetRoomId() int64 {
  691. if x != nil {
  692. return x.RoomId
  693. }
  694. return 0
  695. }
  696. func (x *PartnerRoomInfo) GetPersonSendBaseNum() int64 {
  697. if x != nil {
  698. return x.PersonSendBaseNum
  699. }
  700. return 0
  701. }
  702. type CreateChatRoomParam struct {
  703. state protoimpl.MessageState
  704. sizeCache protoimpl.SizeCache
  705. unknownFields protoimpl.UnknownFields
  706. PersonId1 string `protobuf:"bytes,1,opt,name=personId1,proto3" json:"personId1"`
  707. PersonIdentifyID1 string `protobuf:"bytes,2,opt,name=personIdentifyID1,proto3" json:"personIdentifyID1"` // 身份ID
  708. PersonType1 string `protobuf:"bytes,3,opt,name=personType1,proto3" json:"personType1"` // 类型
  709. PersonId2 string `protobuf:"bytes,4,opt,name=personId2,proto3" json:"personId2"`
  710. PersonIdentifyID2 string `protobuf:"bytes,5,opt,name=personIdentifyID2,proto3" json:"personIdentifyID2"` // 身份ID
  711. PersonType2 string `protobuf:"bytes,6,opt,name=personType2,proto3" json:"personType2"` // 类型
  712. Source string `protobuf:"bytes,7,opt,name=source,proto3" json:"source"` // 来源
  713. }
  714. func (x *CreateChatRoomParam) Reset() {
  715. *x = CreateChatRoomParam{}
  716. if protoimpl.UnsafeEnabled {
  717. mi := &file_chat_proto_msgTypes[11]
  718. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  719. ms.StoreMessageInfo(mi)
  720. }
  721. }
  722. func (x *CreateChatRoomParam) String() string {
  723. return protoimpl.X.MessageStringOf(x)
  724. }
  725. func (*CreateChatRoomParam) ProtoMessage() {}
  726. func (x *CreateChatRoomParam) ProtoReflect() protoreflect.Message {
  727. mi := &file_chat_proto_msgTypes[11]
  728. if protoimpl.UnsafeEnabled && x != nil {
  729. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  730. if ms.LoadMessageInfo() == nil {
  731. ms.StoreMessageInfo(mi)
  732. }
  733. return ms
  734. }
  735. return mi.MessageOf(x)
  736. }
  737. // Deprecated: Use CreateChatRoomParam.ProtoReflect.Descriptor instead.
  738. func (*CreateChatRoomParam) Descriptor() ([]byte, []int) {
  739. return file_chat_proto_rawDescGZIP(), []int{11}
  740. }
  741. func (x *CreateChatRoomParam) GetPersonId1() string {
  742. if x != nil {
  743. return x.PersonId1
  744. }
  745. return ""
  746. }
  747. func (x *CreateChatRoomParam) GetPersonIdentifyID1() string {
  748. if x != nil {
  749. return x.PersonIdentifyID1
  750. }
  751. return ""
  752. }
  753. func (x *CreateChatRoomParam) GetPersonType1() string {
  754. if x != nil {
  755. return x.PersonType1
  756. }
  757. return ""
  758. }
  759. func (x *CreateChatRoomParam) GetPersonId2() string {
  760. if x != nil {
  761. return x.PersonId2
  762. }
  763. return ""
  764. }
  765. func (x *CreateChatRoomParam) GetPersonIdentifyID2() string {
  766. if x != nil {
  767. return x.PersonIdentifyID2
  768. }
  769. return ""
  770. }
  771. func (x *CreateChatRoomParam) GetPersonType2() string {
  772. if x != nil {
  773. return x.PersonType2
  774. }
  775. return ""
  776. }
  777. func (x *CreateChatRoomParam) GetSource() string {
  778. if x != nil {
  779. return x.Source
  780. }
  781. return ""
  782. }
  783. type SetBlackChatParam struct {
  784. state protoimpl.MessageState
  785. sizeCache protoimpl.SizeCache
  786. unknownFields protoimpl.UnknownFields
  787. PersonIdentifyId string `protobuf:"bytes,1,opt,name=personIdentifyId,proto3" json:"personIdentifyId"` // 拉黑者的身份ID
  788. RoomId int64 `protobuf:"varint,2,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  789. }
  790. func (x *SetBlackChatParam) Reset() {
  791. *x = SetBlackChatParam{}
  792. if protoimpl.UnsafeEnabled {
  793. mi := &file_chat_proto_msgTypes[12]
  794. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  795. ms.StoreMessageInfo(mi)
  796. }
  797. }
  798. func (x *SetBlackChatParam) String() string {
  799. return protoimpl.X.MessageStringOf(x)
  800. }
  801. func (*SetBlackChatParam) ProtoMessage() {}
  802. func (x *SetBlackChatParam) ProtoReflect() protoreflect.Message {
  803. mi := &file_chat_proto_msgTypes[12]
  804. if protoimpl.UnsafeEnabled && x != nil {
  805. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  806. if ms.LoadMessageInfo() == nil {
  807. ms.StoreMessageInfo(mi)
  808. }
  809. return ms
  810. }
  811. return mi.MessageOf(x)
  812. }
  813. // Deprecated: Use SetBlackChatParam.ProtoReflect.Descriptor instead.
  814. func (*SetBlackChatParam) Descriptor() ([]byte, []int) {
  815. return file_chat_proto_rawDescGZIP(), []int{12}
  816. }
  817. func (x *SetBlackChatParam) GetPersonIdentifyId() string {
  818. if x != nil {
  819. return x.PersonIdentifyId
  820. }
  821. return ""
  822. }
  823. func (x *SetBlackChatParam) GetRoomId() int64 {
  824. if x != nil {
  825. return x.RoomId
  826. }
  827. return 0
  828. }
  829. type ReceiveRequest struct {
  830. state protoimpl.MessageState
  831. sizeCache protoimpl.SizeCache
  832. unknownFields protoimpl.UnknownFields
  833. Method string `protobuf:"bytes,1,opt,name=method,proto3" json:"method"`
  834. Data []byte `protobuf:"bytes,2,opt,name=data,proto3" json:"data"`
  835. Id string `protobuf:"bytes,3,opt,name=id,proto3" json:"id"`
  836. WebsocketTag string `protobuf:"bytes,4,opt,name=websocketTag,proto3" json:"websocketTag"`
  837. PersonType string `protobuf:"bytes,5,opt,name=personType,proto3" json:"personType"`
  838. PersonId string `protobuf:"bytes,6,opt,name=personId,proto3" json:"personId"`
  839. }
  840. func (x *ReceiveRequest) Reset() {
  841. *x = ReceiveRequest{}
  842. if protoimpl.UnsafeEnabled {
  843. mi := &file_chat_proto_msgTypes[13]
  844. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  845. ms.StoreMessageInfo(mi)
  846. }
  847. }
  848. func (x *ReceiveRequest) String() string {
  849. return protoimpl.X.MessageStringOf(x)
  850. }
  851. func (*ReceiveRequest) ProtoMessage() {}
  852. func (x *ReceiveRequest) ProtoReflect() protoreflect.Message {
  853. mi := &file_chat_proto_msgTypes[13]
  854. if protoimpl.UnsafeEnabled && x != nil {
  855. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  856. if ms.LoadMessageInfo() == nil {
  857. ms.StoreMessageInfo(mi)
  858. }
  859. return ms
  860. }
  861. return mi.MessageOf(x)
  862. }
  863. // Deprecated: Use ReceiveRequest.ProtoReflect.Descriptor instead.
  864. func (*ReceiveRequest) Descriptor() ([]byte, []int) {
  865. return file_chat_proto_rawDescGZIP(), []int{13}
  866. }
  867. func (x *ReceiveRequest) GetMethod() string {
  868. if x != nil {
  869. return x.Method
  870. }
  871. return ""
  872. }
  873. func (x *ReceiveRequest) GetData() []byte {
  874. if x != nil {
  875. return x.Data
  876. }
  877. return nil
  878. }
  879. func (x *ReceiveRequest) GetId() string {
  880. if x != nil {
  881. return x.Id
  882. }
  883. return ""
  884. }
  885. func (x *ReceiveRequest) GetWebsocketTag() string {
  886. if x != nil {
  887. return x.WebsocketTag
  888. }
  889. return ""
  890. }
  891. func (x *ReceiveRequest) GetPersonType() string {
  892. if x != nil {
  893. return x.PersonType
  894. }
  895. return ""
  896. }
  897. func (x *ReceiveRequest) GetPersonId() string {
  898. if x != nil {
  899. return x.PersonId
  900. }
  901. return ""
  902. }
  903. type ReceiveReply struct {
  904. state protoimpl.MessageState
  905. sizeCache protoimpl.SizeCache
  906. unknownFields protoimpl.UnknownFields
  907. }
  908. func (x *ReceiveReply) Reset() {
  909. *x = ReceiveReply{}
  910. if protoimpl.UnsafeEnabled {
  911. mi := &file_chat_proto_msgTypes[14]
  912. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  913. ms.StoreMessageInfo(mi)
  914. }
  915. }
  916. func (x *ReceiveReply) String() string {
  917. return protoimpl.X.MessageStringOf(x)
  918. }
  919. func (*ReceiveReply) ProtoMessage() {}
  920. func (x *ReceiveReply) ProtoReflect() protoreflect.Message {
  921. mi := &file_chat_proto_msgTypes[14]
  922. if protoimpl.UnsafeEnabled && x != nil {
  923. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  924. if ms.LoadMessageInfo() == nil {
  925. ms.StoreMessageInfo(mi)
  926. }
  927. return ms
  928. }
  929. return mi.MessageOf(x)
  930. }
  931. // Deprecated: Use ReceiveReply.ProtoReflect.Descriptor instead.
  932. func (*ReceiveReply) Descriptor() ([]byte, []int) {
  933. return file_chat_proto_rawDescGZIP(), []int{14}
  934. }
  935. type CheckUserPartnerIsRelationshipReply struct {
  936. state protoimpl.MessageState
  937. sizeCache protoimpl.SizeCache
  938. unknownFields protoimpl.UnknownFields
  939. IsBuildRelationship bool `protobuf:"varint,1,opt,name=isBuildRelationship,proto3" json:"isBuildRelationship"`
  940. RoomId int64 `protobuf:"varint,2,opt,name=roomId,proto3" json:"roomId"`
  941. }
  942. func (x *CheckUserPartnerIsRelationshipReply) Reset() {
  943. *x = CheckUserPartnerIsRelationshipReply{}
  944. if protoimpl.UnsafeEnabled {
  945. mi := &file_chat_proto_msgTypes[15]
  946. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  947. ms.StoreMessageInfo(mi)
  948. }
  949. }
  950. func (x *CheckUserPartnerIsRelationshipReply) String() string {
  951. return protoimpl.X.MessageStringOf(x)
  952. }
  953. func (*CheckUserPartnerIsRelationshipReply) ProtoMessage() {}
  954. func (x *CheckUserPartnerIsRelationshipReply) ProtoReflect() protoreflect.Message {
  955. mi := &file_chat_proto_msgTypes[15]
  956. if protoimpl.UnsafeEnabled && x != nil {
  957. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  958. if ms.LoadMessageInfo() == nil {
  959. ms.StoreMessageInfo(mi)
  960. }
  961. return ms
  962. }
  963. return mi.MessageOf(x)
  964. }
  965. // Deprecated: Use CheckUserPartnerIsRelationshipReply.ProtoReflect.Descriptor instead.
  966. func (*CheckUserPartnerIsRelationshipReply) Descriptor() ([]byte, []int) {
  967. return file_chat_proto_rawDescGZIP(), []int{15}
  968. }
  969. func (x *CheckUserPartnerIsRelationshipReply) GetIsBuildRelationship() bool {
  970. if x != nil {
  971. return x.IsBuildRelationship
  972. }
  973. return false
  974. }
  975. func (x *CheckUserPartnerIsRelationshipReply) GetRoomId() int64 {
  976. if x != nil {
  977. return x.RoomId
  978. }
  979. return 0
  980. }
  981. type RoomReply struct {
  982. state protoimpl.MessageState
  983. sizeCache protoimpl.SizeCache
  984. unknownFields protoimpl.UnknownFields
  985. RoomId int64 `protobuf:"varint,1,opt,name=roomId,proto3" json:"roomId"`
  986. }
  987. func (x *RoomReply) Reset() {
  988. *x = RoomReply{}
  989. if protoimpl.UnsafeEnabled {
  990. mi := &file_chat_proto_msgTypes[16]
  991. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  992. ms.StoreMessageInfo(mi)
  993. }
  994. }
  995. func (x *RoomReply) String() string {
  996. return protoimpl.X.MessageStringOf(x)
  997. }
  998. func (*RoomReply) ProtoMessage() {}
  999. func (x *RoomReply) ProtoReflect() protoreflect.Message {
  1000. mi := &file_chat_proto_msgTypes[16]
  1001. if protoimpl.UnsafeEnabled && x != nil {
  1002. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1003. if ms.LoadMessageInfo() == nil {
  1004. ms.StoreMessageInfo(mi)
  1005. }
  1006. return ms
  1007. }
  1008. return mi.MessageOf(x)
  1009. }
  1010. // Deprecated: Use RoomReply.ProtoReflect.Descriptor instead.
  1011. func (*RoomReply) Descriptor() ([]byte, []int) {
  1012. return file_chat_proto_rawDescGZIP(), []int{16}
  1013. }
  1014. func (x *RoomReply) GetRoomId() int64 {
  1015. if x != nil {
  1016. return x.RoomId
  1017. }
  1018. return 0
  1019. }
  1020. type FindChatRoomMsgRequest struct {
  1021. state protoimpl.MessageState
  1022. sizeCache protoimpl.SizeCache
  1023. unknownFields protoimpl.UnknownFields
  1024. RoomId int64 `protobuf:"varint,1,opt,name=roomId,proto3" json:"roomId"`
  1025. PersonType string `protobuf:"bytes,2,opt,name=personType,proto3" json:"personType"` // 类型
  1026. PersonID string `protobuf:"bytes,3,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  1027. }
  1028. func (x *FindChatRoomMsgRequest) Reset() {
  1029. *x = FindChatRoomMsgRequest{}
  1030. if protoimpl.UnsafeEnabled {
  1031. mi := &file_chat_proto_msgTypes[17]
  1032. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1033. ms.StoreMessageInfo(mi)
  1034. }
  1035. }
  1036. func (x *FindChatRoomMsgRequest) String() string {
  1037. return protoimpl.X.MessageStringOf(x)
  1038. }
  1039. func (*FindChatRoomMsgRequest) ProtoMessage() {}
  1040. func (x *FindChatRoomMsgRequest) ProtoReflect() protoreflect.Message {
  1041. mi := &file_chat_proto_msgTypes[17]
  1042. if protoimpl.UnsafeEnabled && x != nil {
  1043. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1044. if ms.LoadMessageInfo() == nil {
  1045. ms.StoreMessageInfo(mi)
  1046. }
  1047. return ms
  1048. }
  1049. return mi.MessageOf(x)
  1050. }
  1051. // Deprecated: Use FindChatRoomMsgRequest.ProtoReflect.Descriptor instead.
  1052. func (*FindChatRoomMsgRequest) Descriptor() ([]byte, []int) {
  1053. return file_chat_proto_rawDescGZIP(), []int{17}
  1054. }
  1055. func (x *FindChatRoomMsgRequest) GetRoomId() int64 {
  1056. if x != nil {
  1057. return x.RoomId
  1058. }
  1059. return 0
  1060. }
  1061. func (x *FindChatRoomMsgRequest) GetPersonType() string {
  1062. if x != nil {
  1063. return x.PersonType
  1064. }
  1065. return ""
  1066. }
  1067. func (x *FindChatRoomMsgRequest) GetPersonID() string {
  1068. if x != nil {
  1069. return x.PersonID
  1070. }
  1071. return ""
  1072. }
  1073. type FindChatRecordListRequest struct {
  1074. state protoimpl.MessageState
  1075. sizeCache protoimpl.SizeCache
  1076. unknownFields protoimpl.UnknownFields
  1077. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  1078. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  1079. RoomId int64 `protobuf:"varint,3,opt,name=roomId,proto3" json:"roomId"`
  1080. PersonType string `protobuf:"bytes,4,opt,name=personType,proto3" json:"personType"` // 类型
  1081. PersonID string `protobuf:"bytes,5,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  1082. }
  1083. func (x *FindChatRecordListRequest) Reset() {
  1084. *x = FindChatRecordListRequest{}
  1085. if protoimpl.UnsafeEnabled {
  1086. mi := &file_chat_proto_msgTypes[18]
  1087. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1088. ms.StoreMessageInfo(mi)
  1089. }
  1090. }
  1091. func (x *FindChatRecordListRequest) String() string {
  1092. return protoimpl.X.MessageStringOf(x)
  1093. }
  1094. func (*FindChatRecordListRequest) ProtoMessage() {}
  1095. func (x *FindChatRecordListRequest) ProtoReflect() protoreflect.Message {
  1096. mi := &file_chat_proto_msgTypes[18]
  1097. if protoimpl.UnsafeEnabled && x != nil {
  1098. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1099. if ms.LoadMessageInfo() == nil {
  1100. ms.StoreMessageInfo(mi)
  1101. }
  1102. return ms
  1103. }
  1104. return mi.MessageOf(x)
  1105. }
  1106. // Deprecated: Use FindChatRecordListRequest.ProtoReflect.Descriptor instead.
  1107. func (*FindChatRecordListRequest) Descriptor() ([]byte, []int) {
  1108. return file_chat_proto_rawDescGZIP(), []int{18}
  1109. }
  1110. func (x *FindChatRecordListRequest) GetNextId() int64 {
  1111. if x != nil {
  1112. return x.NextId
  1113. }
  1114. return 0
  1115. }
  1116. func (x *FindChatRecordListRequest) GetOffset() int64 {
  1117. if x != nil {
  1118. return x.Offset
  1119. }
  1120. return 0
  1121. }
  1122. func (x *FindChatRecordListRequest) GetRoomId() int64 {
  1123. if x != nil {
  1124. return x.RoomId
  1125. }
  1126. return 0
  1127. }
  1128. func (x *FindChatRecordListRequest) GetPersonType() string {
  1129. if x != nil {
  1130. return x.PersonType
  1131. }
  1132. return ""
  1133. }
  1134. func (x *FindChatRecordListRequest) GetPersonID() string {
  1135. if x != nil {
  1136. return x.PersonID
  1137. }
  1138. return ""
  1139. }
  1140. var File_chat_proto protoreflect.FileDescriptor
  1141. var file_chat_proto_rawDesc = []byte{
  1142. 0x0a, 0x0a, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x08, 0x61, 0x70,
  1143. 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70,
  1144. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72,
  1145. 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f,
  1146. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x54, 0x0a, 0x14,
  1147. 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x4e, 0x75, 0x6d, 0x52,
  1148. 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4e, 0x75,
  1149. 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4e,
  1150. 0x75, 0x6d, 0x12, 0x1e, 0x0a, 0x0a, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x4e, 0x75, 0x6d,
  1151. 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x4e,
  1152. 0x75, 0x6d, 0x22, 0x9e, 0x01, 0x0a, 0x1e, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d,
  1153. 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  1154. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18,
  1155. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a,
  1156. 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f,
  1157. 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  1158. 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  1159. 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18,
  1160. 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70,
  1161. 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03,
  1162. 0x73, 0x65, 0x78, 0x22, 0x6e, 0x0a, 0x16, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x43,
  1163. 0x61, 0x72, 0x64, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x26, 0x0a,
  1164. 0x0e, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x18,
  1165. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74,
  1166. 0x69, 0x66, 0x79, 0x49, 0x64, 0x12, 0x2c, 0x0a, 0x11, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  1167. 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  1168. 0x52, 0x11, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66,
  1169. 0x79, 0x49, 0x64, 0x22, 0x30, 0x0a, 0x14, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65,
  1170. 0x74, 0x41, 0x77, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x62,
  1171. 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x62, 0x61,
  1172. 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x22, 0x8c, 0x01, 0x0a, 0x16, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1173. 0x72, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1174. 0x12, 0x26, 0x0a, 0x0e, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79,
  1175. 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64,
  1176. 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x12, 0x2c, 0x0a, 0x11, 0x70, 0x61, 0x72, 0x74,
  1177. 0x6e, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x18, 0x02, 0x20,
  1178. 0x01, 0x28, 0x09, 0x52, 0x11, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e,
  1179. 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x77, 0x61, 0x72, 0x64, 0x54,
  1180. 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x77, 0x61, 0x72, 0x64,
  1181. 0x54, 0x79, 0x70, 0x65, 0x22, 0xc0, 0x01, 0x0a, 0x1a, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  1182. 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75,
  1183. 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20,
  1184. 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f,
  1185. 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66,
  1186. 0x73, 0x65, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49,
  1187. 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66,
  1188. 0x79, 0x49, 0x64, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x73, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x74,
  1189. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x69, 0x73, 0x46,
  1190. 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x2a, 0x0a, 0x10, 0x69,
  1191. 0x73, 0x57, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x18,
  1192. 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x69, 0x73, 0x57, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x53,
  1193. 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x22, 0x95, 0x01, 0x0a, 0x17, 0x55, 0x73, 0x65, 0x72,
  1194. 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75,
  1195. 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20,
  1196. 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f,
  1197. 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66,
  1198. 0x73, 0x65, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49,
  1199. 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66,
  1200. 0x79, 0x49, 0x64, 0x12, 0x2a, 0x0a, 0x10, 0x69, 0x73, 0x57, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x53,
  1201. 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x69,
  1202. 0x73, 0x57, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x22,
  1203. 0x5b, 0x0a, 0x15, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c,
  1204. 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x2a, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74,
  1205. 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61,
  1206. 0x74, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04,
  1207. 0x6c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x02,
  1208. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x22, 0xe0, 0x01, 0x0a,
  1209. 0x0c, 0x55, 0x73, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1e, 0x0a,
  1210. 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  1211. 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a,
  1212. 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  1213. 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x75, 0x6e, 0x72,
  1214. 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x75, 0x6e,
  1215. 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x43,
  1216. 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6c, 0x61,
  1217. 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x61, 0x73,
  1218. 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6c, 0x61, 0x73,
  1219. 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x69, 0x6b, 0x65, 0x61, 0x62, 0x69,
  1220. 0x6c, 0x69, 0x74, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6c, 0x69, 0x6b, 0x65,
  1221. 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49,
  1222. 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22,
  1223. 0x61, 0x0a, 0x18, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f,
  1224. 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x2d, 0x0a, 0x04, 0x6c,
  1225. 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1226. 0x63, 0x68, 0x61, 0x74, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d,
  1227. 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65,
  1228. 0x78, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74,
  1229. 0x49, 0x64, 0x22, 0xa3, 0x03, 0x0a, 0x0f, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52, 0x6f,
  1230. 0x6f, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x24, 0x0a, 0x0d, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  1231. 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x70,
  1232. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a, 0x08,
  1233. 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  1234. 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x75, 0x6e, 0x72, 0x65,
  1235. 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x75, 0x6e, 0x72,
  1236. 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x43, 0x6f,
  1237. 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6c, 0x61, 0x73,
  1238. 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x61, 0x73, 0x74,
  1239. 0x54, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6c, 0x61, 0x73, 0x74,
  1240. 0x54, 0x69, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x62, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x18,
  1241. 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x62, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x12, 0x12,
  1242. 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79,
  1243. 0x70, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52,
  1244. 0x03, 0x73, 0x65, 0x78, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72,
  1245. 0x6c, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55,
  1246. 0x72, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0a,
  1247. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10,
  1248. 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65,
  1249. 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x69, 0x6b, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x18,
  1250. 0x0c, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6c, 0x69, 0x6b, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69,
  1251. 0x74, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x0d, 0x20, 0x01,
  1252. 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x12, 0x2c, 0x0a, 0x11, 0x70, 0x65,
  1253. 0x72, 0x73, 0x6f, 0x6e, 0x53, 0x65, 0x6e, 0x64, 0x42, 0x61, 0x73, 0x65, 0x4e, 0x75, 0x6d, 0x18,
  1254. 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x11, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x53, 0x65, 0x6e,
  1255. 0x64, 0x42, 0x61, 0x73, 0x65, 0x4e, 0x75, 0x6d, 0x22, 0x89, 0x02, 0x0a, 0x13, 0x43, 0x72, 0x65,
  1256. 0x61, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61, 0x6d,
  1257. 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x31, 0x18, 0x01, 0x20,
  1258. 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x31, 0x12, 0x2c,
  1259. 0x0a, 0x11, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79,
  1260. 0x49, 0x44, 0x31, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x70, 0x65, 0x72, 0x73, 0x6f,
  1261. 0x6e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x44, 0x31, 0x12, 0x20, 0x0a, 0x0b,
  1262. 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x31, 0x18, 0x03, 0x20, 0x01, 0x28,
  1263. 0x09, 0x52, 0x0b, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x31, 0x12, 0x1c,
  1264. 0x0a, 0x09, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x32, 0x18, 0x04, 0x20, 0x01, 0x28,
  1265. 0x09, 0x52, 0x09, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x32, 0x12, 0x2c, 0x0a, 0x11,
  1266. 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x44,
  1267. 0x32, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  1268. 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x44, 0x32, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x65,
  1269. 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x32, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52,
  1270. 0x0b, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x32, 0x12, 0x16, 0x0a, 0x06,
  1271. 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x6f,
  1272. 0x75, 0x72, 0x63, 0x65, 0x22, 0x57, 0x0a, 0x11, 0x53, 0x65, 0x74, 0x42, 0x6c, 0x61, 0x63, 0x6b,
  1273. 0x43, 0x68, 0x61, 0x74, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x2a, 0x0a, 0x10, 0x70, 0x65, 0x72,
  1274. 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x18, 0x01, 0x20,
  1275. 0x01, 0x28, 0x09, 0x52, 0x10, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x65, 0x6e, 0x74,
  1276. 0x69, 0x66, 0x79, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18,
  1277. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22, 0xac, 0x01,
  1278. 0x0a, 0x0e, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1279. 0x12, 0x16, 0x0a, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  1280. 0x52, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61,
  1281. 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x0e, 0x0a, 0x02,
  1282. 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x22, 0x0a, 0x0c,
  1283. 0x77, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x54, 0x61, 0x67, 0x18, 0x04, 0x20, 0x01,
  1284. 0x28, 0x09, 0x52, 0x0c, 0x77, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x54, 0x61, 0x67,
  1285. 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x05,
  1286. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65,
  1287. 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x06, 0x20, 0x01,
  1288. 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x0e, 0x0a, 0x0c,
  1289. 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x6f, 0x0a, 0x23,
  1290. 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  1291. 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x52, 0x65,
  1292. 0x70, 0x6c, 0x79, 0x12, 0x30, 0x0a, 0x13, 0x69, 0x73, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65,
  1293. 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08,
  1294. 0x52, 0x13, 0x69, 0x73, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f,
  1295. 0x6e, 0x73, 0x68, 0x69, 0x70, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18,
  1296. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22, 0x23, 0x0a,
  1297. 0x09, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f,
  1298. 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d,
  1299. 0x49, 0x64, 0x22, 0x6c, 0x0a, 0x16, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f,
  1300. 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06,
  1301. 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f,
  1302. 0x6f, 0x6d, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79,
  1303. 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  1304. 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44,
  1305. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44,
  1306. 0x22, 0x9f, 0x01, 0x0a, 0x19, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63,
  1307. 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16,
  1308. 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  1309. 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74,
  1310. 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x16,
  1311. 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  1312. 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  1313. 0x54, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73,
  1314. 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  1315. 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  1316. 0x49, 0x44, 0x32, 0x96, 0x0e, 0x0a, 0x04, 0x43, 0x68, 0x61, 0x74, 0x12, 0x7a, 0x0a, 0x1e, 0x43,
  1317. 0x68, 0x65, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49,
  1318. 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x12, 0x29, 0x2e,
  1319. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x41,
  1320. 0x6e, 0x64, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66,
  1321. 0x79, 0x49, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  1322. 0x68, 0x61, 0x74, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72,
  1323. 0x74, 0x6e, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68,
  1324. 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x44, 0x0a, 0x0e, 0x43, 0x72, 0x65, 0x61, 0x74,
  1325. 0x65, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1326. 0x63, 0x68, 0x61, 0x74, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x52,
  1327. 0x6f, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  1328. 0x68, 0x61, 0x74, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x62, 0x0a,
  1329. 0x14, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f,
  1330. 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  1331. 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x41, 0x6e, 0x64, 0x50, 0x65,
  1332. 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70,
  1333. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65,
  1334. 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c,
  1335. 0x79, 0x12, 0x69, 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65,
  1336. 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x28, 0x2e, 0x61,
  1337. 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f,
  1338. 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52,
  1339. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  1340. 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72,
  1341. 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x61, 0x0a, 0x13,
  1342. 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c,
  1343. 0x69, 0x73, 0x74, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x50,
  1344. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69,
  1345. 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1346. 0x63, 0x68, 0x61, 0x74, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64,
  1347. 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12,
  1348. 0x58, 0x0a, 0x10, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c,
  1349. 0x69, 0x73, 0x74, 0x12, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x55,
  1350. 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52,
  1351. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61,
  1352. 0x74, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69,
  1353. 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3d, 0x0a, 0x07, 0x52, 0x65, 0x63,
  1354. 0x65, 0x69, 0x76, 0x65, 0x12, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e,
  1355. 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16,
  1356. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76,
  1357. 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x5c, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64,
  1358. 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x23,
  1359. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68,
  1360. 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75,
  1361. 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1362. 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52,
  1363. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x0f, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68,
  1364. 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1365. 0x63, 0x68, 0x61, 0x74, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f,
  1366. 0x6d, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x61, 0x70,
  1367. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f,
  1368. 0x6d, 0x4d, 0x73, 0x67, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x0c, 0x53, 0x65, 0x74, 0x42, 0x6c, 0x61,
  1369. 0x63, 0x6b, 0x43, 0x68, 0x61, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61,
  1370. 0x74, 0x2e, 0x53, 0x65, 0x74, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x43, 0x68, 0x61, 0x74, 0x50, 0x61,
  1371. 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  1372. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x43, 0x0a,
  1373. 0x0a, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70,
  1374. 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x53, 0x65, 0x74, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x43,
  1375. 0x68, 0x61, 0x74, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  1376. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  1377. 0x22, 0x00, 0x12, 0x3d, 0x0a, 0x06, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x19, 0x2e, 0x61,
  1378. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74,
  1379. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  1380. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22,
  1381. 0x00, 0x12, 0x55, 0x0a, 0x0f, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x41,
  1382. 0x77, 0x61, 0x72, 0x64, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e,
  1383. 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72, 0x64, 0x52,
  1384. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61,
  1385. 0x74, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72,
  1386. 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x0f, 0x46, 0x69, 0x6e, 0x64,
  1387. 0x52, 0x6f, 0x6f, 0x6d, 0x43, 0x61, 0x72, 0x64, 0x4d, 0x73, 0x67, 0x12, 0x20, 0x2e, 0x61, 0x70,
  1388. 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x43,
  1389. 0x61, 0x72, 0x64, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e,
  1390. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x43,
  1391. 0x68, 0x61, 0x74, 0x4d, 0x73, 0x67, 0x22, 0x00, 0x12, 0x52, 0x0a, 0x0f, 0x46, 0x69, 0x6e, 0x64,
  1392. 0x4e, 0x6f, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x4e, 0x75, 0x6d, 0x12, 0x1d, 0x2e, 0x61, 0x70,
  1393. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66,
  1394. 0x79, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x61, 0x70, 0x69,
  1395. 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x74, 0x52, 0x65, 0x70,
  1396. 0x6c, 0x79, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x44, 0x0a, 0x0b,
  1397. 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1e, 0x2e, 0x61, 0x70,
  1398. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53,
  1399. 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x61, 0x70,
  1400. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44,
  1401. 0x22, 0x00, 0x12, 0x47, 0x0a, 0x0b, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69,
  1402. 0x70, 0x12, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44,
  1403. 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1404. 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1405. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x0b, 0x46,
  1406. 0x69, 0x6e, 0x64, 0x4d, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69,
  1407. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69,
  1408. 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  1409. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79,
  1410. 0x22, 0x00, 0x12, 0x4c, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d,
  1411. 0x65, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  1412. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52,
  1413. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  1414. 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
  1415. 0x12, 0x4f, 0x0a, 0x0f, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x6f, 0x6f, 0x6b, 0x53, 0x63,
  1416. 0x72, 0x69, 0x70, 0x12, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1417. 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x6f, 0x6f, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70,
  1418. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  1419. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22,
  1420. 0x00, 0x12, 0x47, 0x0a, 0x13, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x43, 0x6c, 0x69, 0x63, 0x6b,
  1421. 0x4c, 0x6f, 0x6f, 0x6b, 0x42, 0x61, 0x63, 0x6b, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  1422. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61,
  1423. 0x6d, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53,
  1424. 0x63, 0x72, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x00, 0x12, 0x4f, 0x0a, 0x10, 0x50, 0x65,
  1425. 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1d,
  1426. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x70, 0x6c,
  1427. 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e,
  1428. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52,
  1429. 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x00, 0x42, 0x3d, 0x0a, 0x08, 0x61,
  1430. 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x50, 0x01, 0x5a, 0x2f, 0x67, 0x69, 0x74, 0x2e, 0x69,
  1431. 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  1432. 0x2f, 0x70, 0x77, 0x2d, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61, 0x70, 0x69,
  1433. 0x2f, 0x63, 0x68, 0x61, 0x74, 0x3b, 0x63, 0x68, 0x61, 0x74, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
  1434. 0x6f, 0x33,
  1435. }
  1436. var (
  1437. file_chat_proto_rawDescOnce sync.Once
  1438. file_chat_proto_rawDescData = file_chat_proto_rawDesc
  1439. )
  1440. func file_chat_proto_rawDescGZIP() []byte {
  1441. file_chat_proto_rawDescOnce.Do(func() {
  1442. file_chat_proto_rawDescData = protoimpl.X.CompressGZIP(file_chat_proto_rawDescData)
  1443. })
  1444. return file_chat_proto_rawDescData
  1445. }
  1446. var file_chat_proto_msgTypes = make([]protoimpl.MessageInfo, 19)
  1447. var file_chat_proto_goTypes = []interface{}{
  1448. (*FindNotReplyNumReply)(nil), // 0: api.chat.FindNotReplyNumReply
  1449. (*FindRecommendPersonListRequest)(nil), // 1: api.chat.FindRecommendPersonListRequest
  1450. (*FindRoomCardMsgRequest)(nil), // 2: api.chat.FindRoomCardMsgRequest
  1451. (*PartnerGetAwardReply)(nil), // 3: api.chat.PartnerGetAwardReply
  1452. (*PartnerGetAwardRequest)(nil), // 4: api.chat.PartnerGetAwardRequest
  1453. (*PartnerFindRoomListRequest)(nil), // 5: api.chat.PartnerFindRoomListRequest
  1454. (*UserFindRoomListRequest)(nil), // 6: api.chat.UserFindRoomListRequest
  1455. (*UserFindRoomListReply)(nil), // 7: api.chat.UserFindRoomListReply
  1456. (*UserRoomInfo)(nil), // 8: api.chat.UserRoomInfo
  1457. (*PartnerFindRoomListReply)(nil), // 9: api.chat.PartnerFindRoomListReply
  1458. (*PartnerRoomInfo)(nil), // 10: api.chat.PartnerRoomInfo
  1459. (*CreateChatRoomParam)(nil), // 11: api.chat.CreateChatRoomParam
  1460. (*SetBlackChatParam)(nil), // 12: api.chat.SetBlackChatParam
  1461. (*ReceiveRequest)(nil), // 13: api.chat.ReceiveRequest
  1462. (*ReceiveReply)(nil), // 14: api.chat.ReceiveReply
  1463. (*CheckUserPartnerIsRelationshipReply)(nil), // 15: api.chat.CheckUserPartnerIsRelationshipReply
  1464. (*RoomReply)(nil), // 16: api.chat.RoomReply
  1465. (*FindChatRoomMsgRequest)(nil), // 17: api.chat.FindChatRoomMsgRequest
  1466. (*FindChatRecordListRequest)(nil), // 18: api.chat.FindChatRecordListRequest
  1467. (*common.UserAndPartnerIdentifyIdParam)(nil), // 19: api.common.UserAndPartnerIdentifyIdParam
  1468. (*common.ListPageAndPersonRequest)(nil), // 20: api.common.ListPageAndPersonRequest
  1469. (*common.ReportRequest)(nil), // 21: api.common.ReportRequest
  1470. (*common.IdentifyIdRequest)(nil), // 22: api.common.IdentifyIdRequest
  1471. (*common.CreateScripRequest)(nil), // 23: api.common.CreateScripRequest
  1472. (*common.DeleteScripRequest)(nil), // 24: api.common.DeleteScripRequest
  1473. (*common.FindScripRequest)(nil), // 25: api.common.FindScripRequest
  1474. (*common.PersonLookScripRequest)(nil), // 26: api.common.PersonLookScripRequest
  1475. (*common.PersonParam)(nil), // 27: api.common.PersonParam
  1476. (*common.ReplyScripRequest)(nil), // 28: api.common.ReplyScripRequest
  1477. (*common.RecommendPersonListReply)(nil), // 29: api.common.RecommendPersonListReply
  1478. (*common.ChatRecordListReply)(nil), // 30: api.common.ChatRecordListReply
  1479. (*common.ChatRoomMsg)(nil), // 31: api.common.ChatRoomMsg
  1480. (*emptypb.Empty)(nil), // 32: google.protobuf.Empty
  1481. (*common.RoomChatMsg)(nil), // 33: api.common.RoomChatMsg
  1482. (*common.ScripID)(nil), // 34: api.common.ScripID
  1483. (*common.ScripReply)(nil), // 35: api.common.ScripReply
  1484. (*common.ScripInfo)(nil), // 36: api.common.ScripInfo
  1485. (*common.ChatRecordInfo)(nil), // 37: api.common.ChatRecordInfo
  1486. }
  1487. var file_chat_proto_depIdxs = []int32{
  1488. 8, // 0: api.chat.UserFindRoomListReply.list:type_name -> api.chat.UserRoomInfo
  1489. 10, // 1: api.chat.PartnerFindRoomListReply.list:type_name -> api.chat.PartnerRoomInfo
  1490. 19, // 2: api.chat.Chat.CheckUserPartnerIsRelationship:input_type -> api.common.UserAndPartnerIdentifyIdParam
  1491. 11, // 3: api.chat.Chat.CreateChatRoom:input_type -> api.chat.CreateChatRoomParam
  1492. 20, // 4: api.chat.Chat.FindOnlinePersonList:input_type -> api.common.ListPageAndPersonRequest
  1493. 1, // 5: api.chat.Chat.FindRecommendPersonList:input_type -> api.chat.FindRecommendPersonListRequest
  1494. 5, // 6: api.chat.Chat.PartnerFindRoomList:input_type -> api.chat.PartnerFindRoomListRequest
  1495. 6, // 7: api.chat.Chat.UserFindRoomList:input_type -> api.chat.UserFindRoomListRequest
  1496. 13, // 8: api.chat.Chat.Receive:input_type -> api.chat.ReceiveRequest
  1497. 18, // 9: api.chat.Chat.FindChatRecordList:input_type -> api.chat.FindChatRecordListRequest
  1498. 17, // 10: api.chat.Chat.FindChatRoomMsg:input_type -> api.chat.FindChatRoomMsgRequest
  1499. 12, // 11: api.chat.Chat.SetBlackChat:input_type -> api.chat.SetBlackChatParam
  1500. 12, // 12: api.chat.Chat.DeleteChat:input_type -> api.chat.SetBlackChatParam
  1501. 21, // 13: api.chat.Chat.Report:input_type -> api.common.ReportRequest
  1502. 4, // 14: api.chat.Chat.PartnerGetAward:input_type -> api.chat.PartnerGetAwardRequest
  1503. 2, // 15: api.chat.Chat.FindRoomCardMsg:input_type -> api.chat.FindRoomCardMsgRequest
  1504. 22, // 16: api.chat.Chat.FindNotReplyNum:input_type -> api.common.IdentifyIdRequest
  1505. 23, // 17: api.chat.Chat.CreateScrip:input_type -> api.common.CreateScripRequest
  1506. 24, // 18: api.chat.Chat.DeleteScrip:input_type -> api.common.DeleteScripRequest
  1507. 25, // 19: api.chat.Chat.FindMyScrip:input_type -> api.common.FindScripRequest
  1508. 25, // 20: api.chat.Chat.FindRecommendScrip:input_type -> api.common.FindScripRequest
  1509. 26, // 21: api.chat.Chat.PersonLookScrip:input_type -> api.common.PersonLookScripRequest
  1510. 27, // 22: api.chat.Chat.PersonClickLookBack:input_type -> api.common.PersonParam
  1511. 28, // 23: api.chat.Chat.PersonReplyScrip:input_type -> api.common.ReplyScripRequest
  1512. 15, // 24: api.chat.Chat.CheckUserPartnerIsRelationship:output_type -> api.chat.CheckUserPartnerIsRelationshipReply
  1513. 16, // 25: api.chat.Chat.CreateChatRoom:output_type -> api.chat.RoomReply
  1514. 29, // 26: api.chat.Chat.FindOnlinePersonList:output_type -> api.common.RecommendPersonListReply
  1515. 29, // 27: api.chat.Chat.FindRecommendPersonList:output_type -> api.common.RecommendPersonListReply
  1516. 9, // 28: api.chat.Chat.PartnerFindRoomList:output_type -> api.chat.PartnerFindRoomListReply
  1517. 7, // 29: api.chat.Chat.UserFindRoomList:output_type -> api.chat.UserFindRoomListReply
  1518. 14, // 30: api.chat.Chat.Receive:output_type -> api.chat.ReceiveReply
  1519. 30, // 31: api.chat.Chat.FindChatRecordList:output_type -> api.common.ChatRecordListReply
  1520. 31, // 32: api.chat.Chat.FindChatRoomMsg:output_type -> api.common.ChatRoomMsg
  1521. 32, // 33: api.chat.Chat.SetBlackChat:output_type -> google.protobuf.Empty
  1522. 32, // 34: api.chat.Chat.DeleteChat:output_type -> google.protobuf.Empty
  1523. 32, // 35: api.chat.Chat.Report:output_type -> google.protobuf.Empty
  1524. 3, // 36: api.chat.Chat.PartnerGetAward:output_type -> api.chat.PartnerGetAwardReply
  1525. 33, // 37: api.chat.Chat.FindRoomCardMsg:output_type -> api.common.RoomChatMsg
  1526. 0, // 38: api.chat.Chat.FindNotReplyNum:output_type -> api.chat.FindNotReplyNumReply
  1527. 34, // 39: api.chat.Chat.CreateScrip:output_type -> api.common.ScripID
  1528. 32, // 40: api.chat.Chat.DeleteScrip:output_type -> google.protobuf.Empty
  1529. 35, // 41: api.chat.Chat.FindMyScrip:output_type -> api.common.ScripReply
  1530. 35, // 42: api.chat.Chat.FindRecommendScrip:output_type -> api.common.ScripReply
  1531. 32, // 43: api.chat.Chat.PersonLookScrip:output_type -> google.protobuf.Empty
  1532. 36, // 44: api.chat.Chat.PersonClickLookBack:output_type -> api.common.ScripInfo
  1533. 37, // 45: api.chat.Chat.PersonReplyScrip:output_type -> api.common.ChatRecordInfo
  1534. 24, // [24:46] is the sub-list for method output_type
  1535. 2, // [2:24] is the sub-list for method input_type
  1536. 2, // [2:2] is the sub-list for extension type_name
  1537. 2, // [2:2] is the sub-list for extension extendee
  1538. 0, // [0:2] is the sub-list for field type_name
  1539. }
  1540. func init() { file_chat_proto_init() }
  1541. func file_chat_proto_init() {
  1542. if File_chat_proto != nil {
  1543. return
  1544. }
  1545. if !protoimpl.UnsafeEnabled {
  1546. file_chat_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  1547. switch v := v.(*FindNotReplyNumReply); i {
  1548. case 0:
  1549. return &v.state
  1550. case 1:
  1551. return &v.sizeCache
  1552. case 2:
  1553. return &v.unknownFields
  1554. default:
  1555. return nil
  1556. }
  1557. }
  1558. file_chat_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  1559. switch v := v.(*FindRecommendPersonListRequest); i {
  1560. case 0:
  1561. return &v.state
  1562. case 1:
  1563. return &v.sizeCache
  1564. case 2:
  1565. return &v.unknownFields
  1566. default:
  1567. return nil
  1568. }
  1569. }
  1570. file_chat_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  1571. switch v := v.(*FindRoomCardMsgRequest); i {
  1572. case 0:
  1573. return &v.state
  1574. case 1:
  1575. return &v.sizeCache
  1576. case 2:
  1577. return &v.unknownFields
  1578. default:
  1579. return nil
  1580. }
  1581. }
  1582. file_chat_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  1583. switch v := v.(*PartnerGetAwardReply); i {
  1584. case 0:
  1585. return &v.state
  1586. case 1:
  1587. return &v.sizeCache
  1588. case 2:
  1589. return &v.unknownFields
  1590. default:
  1591. return nil
  1592. }
  1593. }
  1594. file_chat_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  1595. switch v := v.(*PartnerGetAwardRequest); i {
  1596. case 0:
  1597. return &v.state
  1598. case 1:
  1599. return &v.sizeCache
  1600. case 2:
  1601. return &v.unknownFields
  1602. default:
  1603. return nil
  1604. }
  1605. }
  1606. file_chat_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  1607. switch v := v.(*PartnerFindRoomListRequest); i {
  1608. case 0:
  1609. return &v.state
  1610. case 1:
  1611. return &v.sizeCache
  1612. case 2:
  1613. return &v.unknownFields
  1614. default:
  1615. return nil
  1616. }
  1617. }
  1618. file_chat_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  1619. switch v := v.(*UserFindRoomListRequest); i {
  1620. case 0:
  1621. return &v.state
  1622. case 1:
  1623. return &v.sizeCache
  1624. case 2:
  1625. return &v.unknownFields
  1626. default:
  1627. return nil
  1628. }
  1629. }
  1630. file_chat_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  1631. switch v := v.(*UserFindRoomListReply); i {
  1632. case 0:
  1633. return &v.state
  1634. case 1:
  1635. return &v.sizeCache
  1636. case 2:
  1637. return &v.unknownFields
  1638. default:
  1639. return nil
  1640. }
  1641. }
  1642. file_chat_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  1643. switch v := v.(*UserRoomInfo); i {
  1644. case 0:
  1645. return &v.state
  1646. case 1:
  1647. return &v.sizeCache
  1648. case 2:
  1649. return &v.unknownFields
  1650. default:
  1651. return nil
  1652. }
  1653. }
  1654. file_chat_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  1655. switch v := v.(*PartnerFindRoomListReply); i {
  1656. case 0:
  1657. return &v.state
  1658. case 1:
  1659. return &v.sizeCache
  1660. case 2:
  1661. return &v.unknownFields
  1662. default:
  1663. return nil
  1664. }
  1665. }
  1666. file_chat_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  1667. switch v := v.(*PartnerRoomInfo); i {
  1668. case 0:
  1669. return &v.state
  1670. case 1:
  1671. return &v.sizeCache
  1672. case 2:
  1673. return &v.unknownFields
  1674. default:
  1675. return nil
  1676. }
  1677. }
  1678. file_chat_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  1679. switch v := v.(*CreateChatRoomParam); i {
  1680. case 0:
  1681. return &v.state
  1682. case 1:
  1683. return &v.sizeCache
  1684. case 2:
  1685. return &v.unknownFields
  1686. default:
  1687. return nil
  1688. }
  1689. }
  1690. file_chat_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  1691. switch v := v.(*SetBlackChatParam); i {
  1692. case 0:
  1693. return &v.state
  1694. case 1:
  1695. return &v.sizeCache
  1696. case 2:
  1697. return &v.unknownFields
  1698. default:
  1699. return nil
  1700. }
  1701. }
  1702. file_chat_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  1703. switch v := v.(*ReceiveRequest); i {
  1704. case 0:
  1705. return &v.state
  1706. case 1:
  1707. return &v.sizeCache
  1708. case 2:
  1709. return &v.unknownFields
  1710. default:
  1711. return nil
  1712. }
  1713. }
  1714. file_chat_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  1715. switch v := v.(*ReceiveReply); i {
  1716. case 0:
  1717. return &v.state
  1718. case 1:
  1719. return &v.sizeCache
  1720. case 2:
  1721. return &v.unknownFields
  1722. default:
  1723. return nil
  1724. }
  1725. }
  1726. file_chat_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  1727. switch v := v.(*CheckUserPartnerIsRelationshipReply); i {
  1728. case 0:
  1729. return &v.state
  1730. case 1:
  1731. return &v.sizeCache
  1732. case 2:
  1733. return &v.unknownFields
  1734. default:
  1735. return nil
  1736. }
  1737. }
  1738. file_chat_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  1739. switch v := v.(*RoomReply); i {
  1740. case 0:
  1741. return &v.state
  1742. case 1:
  1743. return &v.sizeCache
  1744. case 2:
  1745. return &v.unknownFields
  1746. default:
  1747. return nil
  1748. }
  1749. }
  1750. file_chat_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  1751. switch v := v.(*FindChatRoomMsgRequest); i {
  1752. case 0:
  1753. return &v.state
  1754. case 1:
  1755. return &v.sizeCache
  1756. case 2:
  1757. return &v.unknownFields
  1758. default:
  1759. return nil
  1760. }
  1761. }
  1762. file_chat_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  1763. switch v := v.(*FindChatRecordListRequest); i {
  1764. case 0:
  1765. return &v.state
  1766. case 1:
  1767. return &v.sizeCache
  1768. case 2:
  1769. return &v.unknownFields
  1770. default:
  1771. return nil
  1772. }
  1773. }
  1774. }
  1775. type x struct{}
  1776. out := protoimpl.TypeBuilder{
  1777. File: protoimpl.DescBuilder{
  1778. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  1779. RawDescriptor: file_chat_proto_rawDesc,
  1780. NumEnums: 0,
  1781. NumMessages: 19,
  1782. NumExtensions: 0,
  1783. NumServices: 1,
  1784. },
  1785. GoTypes: file_chat_proto_goTypes,
  1786. DependencyIndexes: file_chat_proto_depIdxs,
  1787. MessageInfos: file_chat_proto_msgTypes,
  1788. }.Build()
  1789. File_chat_proto = out.File
  1790. file_chat_proto_rawDesc = nil
  1791. file_chat_proto_goTypes = nil
  1792. file_chat_proto_depIdxs = nil
  1793. }