chat.pb.go 122 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165
  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 GetOnlinePersonNumReply struct {
  22. state protoimpl.MessageState
  23. sizeCache protoimpl.SizeCache
  24. unknownFields protoimpl.UnknownFields
  25. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"`
  26. }
  27. func (x *GetOnlinePersonNumReply) Reset() {
  28. *x = GetOnlinePersonNumReply{}
  29. if protoimpl.UnsafeEnabled {
  30. mi := &file_chat_proto_msgTypes[0]
  31. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  32. ms.StoreMessageInfo(mi)
  33. }
  34. }
  35. func (x *GetOnlinePersonNumReply) String() string {
  36. return protoimpl.X.MessageStringOf(x)
  37. }
  38. func (*GetOnlinePersonNumReply) ProtoMessage() {}
  39. func (x *GetOnlinePersonNumReply) ProtoReflect() protoreflect.Message {
  40. mi := &file_chat_proto_msgTypes[0]
  41. if protoimpl.UnsafeEnabled && x != nil {
  42. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  43. if ms.LoadMessageInfo() == nil {
  44. ms.StoreMessageInfo(mi)
  45. }
  46. return ms
  47. }
  48. return mi.MessageOf(x)
  49. }
  50. // Deprecated: Use GetOnlinePersonNumReply.ProtoReflect.Descriptor instead.
  51. func (*GetOnlinePersonNumReply) Descriptor() ([]byte, []int) {
  52. return file_chat_proto_rawDescGZIP(), []int{0}
  53. }
  54. func (x *GetOnlinePersonNumReply) GetNum() int64 {
  55. if x != nil {
  56. return x.Num
  57. }
  58. return 0
  59. }
  60. type GetMatchingPartnerInfoRequest struct {
  61. state protoimpl.MessageState
  62. sizeCache protoimpl.SizeCache
  63. unknownFields protoimpl.UnknownFields
  64. Sex int64 `protobuf:"varint,1,opt,name=sex,proto3" json:"sex"` // 性别
  65. UserID string `protobuf:"bytes,2,opt,name=userID,proto3" json:"userID"` // 用户ID
  66. OpenId string `protobuf:"bytes,4,opt,name=openId,proto3" json:"openId"`
  67. AppId string `protobuf:"bytes,5,opt,name=appId,proto3" json:"appId"`
  68. }
  69. func (x *GetMatchingPartnerInfoRequest) Reset() {
  70. *x = GetMatchingPartnerInfoRequest{}
  71. if protoimpl.UnsafeEnabled {
  72. mi := &file_chat_proto_msgTypes[1]
  73. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  74. ms.StoreMessageInfo(mi)
  75. }
  76. }
  77. func (x *GetMatchingPartnerInfoRequest) String() string {
  78. return protoimpl.X.MessageStringOf(x)
  79. }
  80. func (*GetMatchingPartnerInfoRequest) ProtoMessage() {}
  81. func (x *GetMatchingPartnerInfoRequest) ProtoReflect() protoreflect.Message {
  82. mi := &file_chat_proto_msgTypes[1]
  83. if protoimpl.UnsafeEnabled && x != nil {
  84. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  85. if ms.LoadMessageInfo() == nil {
  86. ms.StoreMessageInfo(mi)
  87. }
  88. return ms
  89. }
  90. return mi.MessageOf(x)
  91. }
  92. // Deprecated: Use GetMatchingPartnerInfoRequest.ProtoReflect.Descriptor instead.
  93. func (*GetMatchingPartnerInfoRequest) Descriptor() ([]byte, []int) {
  94. return file_chat_proto_rawDescGZIP(), []int{1}
  95. }
  96. func (x *GetMatchingPartnerInfoRequest) GetSex() int64 {
  97. if x != nil {
  98. return x.Sex
  99. }
  100. return 0
  101. }
  102. func (x *GetMatchingPartnerInfoRequest) GetUserID() string {
  103. if x != nil {
  104. return x.UserID
  105. }
  106. return ""
  107. }
  108. func (x *GetMatchingPartnerInfoRequest) GetOpenId() string {
  109. if x != nil {
  110. return x.OpenId
  111. }
  112. return ""
  113. }
  114. func (x *GetMatchingPartnerInfoRequest) GetAppId() string {
  115. if x != nil {
  116. return x.AppId
  117. }
  118. return ""
  119. }
  120. type GetRoomProfitReply struct {
  121. state protoimpl.MessageState
  122. sizeCache protoimpl.SizeCache
  123. unknownFields protoimpl.UnknownFields
  124. RoomProfit int64 `protobuf:"varint,1,opt,name=roomProfit,proto3" json:"roomProfit"` // 房间收益
  125. }
  126. func (x *GetRoomProfitReply) Reset() {
  127. *x = GetRoomProfitReply{}
  128. if protoimpl.UnsafeEnabled {
  129. mi := &file_chat_proto_msgTypes[2]
  130. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  131. ms.StoreMessageInfo(mi)
  132. }
  133. }
  134. func (x *GetRoomProfitReply) String() string {
  135. return protoimpl.X.MessageStringOf(x)
  136. }
  137. func (*GetRoomProfitReply) ProtoMessage() {}
  138. func (x *GetRoomProfitReply) ProtoReflect() protoreflect.Message {
  139. mi := &file_chat_proto_msgTypes[2]
  140. if protoimpl.UnsafeEnabled && x != nil {
  141. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  142. if ms.LoadMessageInfo() == nil {
  143. ms.StoreMessageInfo(mi)
  144. }
  145. return ms
  146. }
  147. return mi.MessageOf(x)
  148. }
  149. // Deprecated: Use GetRoomProfitReply.ProtoReflect.Descriptor instead.
  150. func (*GetRoomProfitReply) Descriptor() ([]byte, []int) {
  151. return file_chat_proto_rawDescGZIP(), []int{2}
  152. }
  153. func (x *GetRoomProfitReply) GetRoomProfit() int64 {
  154. if x != nil {
  155. return x.RoomProfit
  156. }
  157. return 0
  158. }
  159. type UserUnlockRequest struct {
  160. state protoimpl.MessageState
  161. sizeCache protoimpl.SizeCache
  162. unknownFields protoimpl.UnknownFields
  163. RoomId int64 `protobuf:"varint,1,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  164. PersonId string `protobuf:"bytes,2,opt,name=personId,proto3" json:"personId"`
  165. }
  166. func (x *UserUnlockRequest) Reset() {
  167. *x = UserUnlockRequest{}
  168. if protoimpl.UnsafeEnabled {
  169. mi := &file_chat_proto_msgTypes[3]
  170. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  171. ms.StoreMessageInfo(mi)
  172. }
  173. }
  174. func (x *UserUnlockRequest) String() string {
  175. return protoimpl.X.MessageStringOf(x)
  176. }
  177. func (*UserUnlockRequest) ProtoMessage() {}
  178. func (x *UserUnlockRequest) ProtoReflect() protoreflect.Message {
  179. mi := &file_chat_proto_msgTypes[3]
  180. if protoimpl.UnsafeEnabled && x != nil {
  181. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  182. if ms.LoadMessageInfo() == nil {
  183. ms.StoreMessageInfo(mi)
  184. }
  185. return ms
  186. }
  187. return mi.MessageOf(x)
  188. }
  189. // Deprecated: Use UserUnlockRequest.ProtoReflect.Descriptor instead.
  190. func (*UserUnlockRequest) Descriptor() ([]byte, []int) {
  191. return file_chat_proto_rawDescGZIP(), []int{3}
  192. }
  193. func (x *UserUnlockRequest) GetRoomId() int64 {
  194. if x != nil {
  195. return x.RoomId
  196. }
  197. return 0
  198. }
  199. func (x *UserUnlockRequest) GetPersonId() string {
  200. if x != nil {
  201. return x.PersonId
  202. }
  203. return ""
  204. }
  205. type PartnerCollectIDsRequest struct {
  206. state protoimpl.MessageState
  207. sizeCache protoimpl.SizeCache
  208. unknownFields protoimpl.UnknownFields
  209. ChatRecordIds []int64 `protobuf:"varint,1,rep,packed,name=chatRecordIds,proto3" json:"chatRecordIds"` // 记录ID
  210. PersonId string `protobuf:"bytes,2,opt,name=personId,proto3" json:"personId"`
  211. PersonType string `protobuf:"bytes,3,opt,name=personType,proto3" json:"personType"`
  212. RoomId int64 `protobuf:"varint,5,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  213. }
  214. func (x *PartnerCollectIDsRequest) Reset() {
  215. *x = PartnerCollectIDsRequest{}
  216. if protoimpl.UnsafeEnabled {
  217. mi := &file_chat_proto_msgTypes[4]
  218. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  219. ms.StoreMessageInfo(mi)
  220. }
  221. }
  222. func (x *PartnerCollectIDsRequest) String() string {
  223. return protoimpl.X.MessageStringOf(x)
  224. }
  225. func (*PartnerCollectIDsRequest) ProtoMessage() {}
  226. func (x *PartnerCollectIDsRequest) ProtoReflect() protoreflect.Message {
  227. mi := &file_chat_proto_msgTypes[4]
  228. if protoimpl.UnsafeEnabled && x != nil {
  229. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  230. if ms.LoadMessageInfo() == nil {
  231. ms.StoreMessageInfo(mi)
  232. }
  233. return ms
  234. }
  235. return mi.MessageOf(x)
  236. }
  237. // Deprecated: Use PartnerCollectIDsRequest.ProtoReflect.Descriptor instead.
  238. func (*PartnerCollectIDsRequest) Descriptor() ([]byte, []int) {
  239. return file_chat_proto_rawDescGZIP(), []int{4}
  240. }
  241. func (x *PartnerCollectIDsRequest) GetChatRecordIds() []int64 {
  242. if x != nil {
  243. return x.ChatRecordIds
  244. }
  245. return nil
  246. }
  247. func (x *PartnerCollectIDsRequest) GetPersonId() string {
  248. if x != nil {
  249. return x.PersonId
  250. }
  251. return ""
  252. }
  253. func (x *PartnerCollectIDsRequest) GetPersonType() string {
  254. if x != nil {
  255. return x.PersonType
  256. }
  257. return ""
  258. }
  259. func (x *PartnerCollectIDsRequest) GetRoomId() int64 {
  260. if x != nil {
  261. return x.RoomId
  262. }
  263. return 0
  264. }
  265. type PartnerCollectRequest struct {
  266. state protoimpl.MessageState
  267. sizeCache protoimpl.SizeCache
  268. unknownFields protoimpl.UnknownFields
  269. ChatRecordId int64 `protobuf:"varint,1,opt,name=chatRecordId,proto3" json:"chatRecordId"` // 记录ID
  270. PersonId string `protobuf:"bytes,2,opt,name=personId,proto3" json:"personId"`
  271. PersonType string `protobuf:"bytes,3,opt,name=personType,proto3" json:"personType"`
  272. IdentifyId string `protobuf:"bytes,4,opt,name=identifyId,proto3" json:"identifyId"`
  273. }
  274. func (x *PartnerCollectRequest) Reset() {
  275. *x = PartnerCollectRequest{}
  276. if protoimpl.UnsafeEnabled {
  277. mi := &file_chat_proto_msgTypes[5]
  278. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  279. ms.StoreMessageInfo(mi)
  280. }
  281. }
  282. func (x *PartnerCollectRequest) String() string {
  283. return protoimpl.X.MessageStringOf(x)
  284. }
  285. func (*PartnerCollectRequest) ProtoMessage() {}
  286. func (x *PartnerCollectRequest) ProtoReflect() protoreflect.Message {
  287. mi := &file_chat_proto_msgTypes[5]
  288. if protoimpl.UnsafeEnabled && x != nil {
  289. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  290. if ms.LoadMessageInfo() == nil {
  291. ms.StoreMessageInfo(mi)
  292. }
  293. return ms
  294. }
  295. return mi.MessageOf(x)
  296. }
  297. // Deprecated: Use PartnerCollectRequest.ProtoReflect.Descriptor instead.
  298. func (*PartnerCollectRequest) Descriptor() ([]byte, []int) {
  299. return file_chat_proto_rawDescGZIP(), []int{5}
  300. }
  301. func (x *PartnerCollectRequest) GetChatRecordId() int64 {
  302. if x != nil {
  303. return x.ChatRecordId
  304. }
  305. return 0
  306. }
  307. func (x *PartnerCollectRequest) GetPersonId() string {
  308. if x != nil {
  309. return x.PersonId
  310. }
  311. return ""
  312. }
  313. func (x *PartnerCollectRequest) GetPersonType() string {
  314. if x != nil {
  315. return x.PersonType
  316. }
  317. return ""
  318. }
  319. func (x *PartnerCollectRequest) GetIdentifyId() string {
  320. if x != nil {
  321. return x.IdentifyId
  322. }
  323. return ""
  324. }
  325. type GetRandomMatchingReply struct {
  326. state protoimpl.MessageState
  327. sizeCache protoimpl.SizeCache
  328. unknownFields protoimpl.UnknownFields
  329. PersonID string `protobuf:"bytes,1,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  330. PersonType string `protobuf:"bytes,2,opt,name=personType,proto3" json:"personType"` // 类型
  331. RoomId int64 `protobuf:"varint,3,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  332. Nickname string `protobuf:"bytes,4,opt,name=nickname,proto3" json:"nickname"` // 昵称
  333. AvatarUrl string `protobuf:"bytes,5,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像
  334. Sex int64 `protobuf:"varint,6,opt,name=sex,proto3" json:"sex"` // 性别
  335. Age int64 `protobuf:"varint,7,opt,name=age,proto3" json:"age"` // 年龄
  336. }
  337. func (x *GetRandomMatchingReply) Reset() {
  338. *x = GetRandomMatchingReply{}
  339. if protoimpl.UnsafeEnabled {
  340. mi := &file_chat_proto_msgTypes[6]
  341. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  342. ms.StoreMessageInfo(mi)
  343. }
  344. }
  345. func (x *GetRandomMatchingReply) String() string {
  346. return protoimpl.X.MessageStringOf(x)
  347. }
  348. func (*GetRandomMatchingReply) ProtoMessage() {}
  349. func (x *GetRandomMatchingReply) ProtoReflect() protoreflect.Message {
  350. mi := &file_chat_proto_msgTypes[6]
  351. if protoimpl.UnsafeEnabled && x != nil {
  352. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  353. if ms.LoadMessageInfo() == nil {
  354. ms.StoreMessageInfo(mi)
  355. }
  356. return ms
  357. }
  358. return mi.MessageOf(x)
  359. }
  360. // Deprecated: Use GetRandomMatchingReply.ProtoReflect.Descriptor instead.
  361. func (*GetRandomMatchingReply) Descriptor() ([]byte, []int) {
  362. return file_chat_proto_rawDescGZIP(), []int{6}
  363. }
  364. func (x *GetRandomMatchingReply) GetPersonID() string {
  365. if x != nil {
  366. return x.PersonID
  367. }
  368. return ""
  369. }
  370. func (x *GetRandomMatchingReply) GetPersonType() string {
  371. if x != nil {
  372. return x.PersonType
  373. }
  374. return ""
  375. }
  376. func (x *GetRandomMatchingReply) GetRoomId() int64 {
  377. if x != nil {
  378. return x.RoomId
  379. }
  380. return 0
  381. }
  382. func (x *GetRandomMatchingReply) GetNickname() string {
  383. if x != nil {
  384. return x.Nickname
  385. }
  386. return ""
  387. }
  388. func (x *GetRandomMatchingReply) GetAvatarUrl() string {
  389. if x != nil {
  390. return x.AvatarUrl
  391. }
  392. return ""
  393. }
  394. func (x *GetRandomMatchingReply) GetSex() int64 {
  395. if x != nil {
  396. return x.Sex
  397. }
  398. return 0
  399. }
  400. func (x *GetRandomMatchingReply) GetAge() int64 {
  401. if x != nil {
  402. return x.Age
  403. }
  404. return 0
  405. }
  406. type FindNotReplyNumReply struct {
  407. state protoimpl.MessageState
  408. sizeCache protoimpl.SizeCache
  409. unknownFields protoimpl.UnknownFields
  410. PersonNum int64 `protobuf:"varint,1,opt,name=personNum,proto3" json:"personNum"` // 未接待人数
  411. MessageNum int64 `protobuf:"varint,2,opt,name=messageNum,proto3" json:"messageNum"` // 消息数
  412. }
  413. func (x *FindNotReplyNumReply) Reset() {
  414. *x = FindNotReplyNumReply{}
  415. if protoimpl.UnsafeEnabled {
  416. mi := &file_chat_proto_msgTypes[7]
  417. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  418. ms.StoreMessageInfo(mi)
  419. }
  420. }
  421. func (x *FindNotReplyNumReply) String() string {
  422. return protoimpl.X.MessageStringOf(x)
  423. }
  424. func (*FindNotReplyNumReply) ProtoMessage() {}
  425. func (x *FindNotReplyNumReply) ProtoReflect() protoreflect.Message {
  426. mi := &file_chat_proto_msgTypes[7]
  427. if protoimpl.UnsafeEnabled && x != nil {
  428. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  429. if ms.LoadMessageInfo() == nil {
  430. ms.StoreMessageInfo(mi)
  431. }
  432. return ms
  433. }
  434. return mi.MessageOf(x)
  435. }
  436. // Deprecated: Use FindNotReplyNumReply.ProtoReflect.Descriptor instead.
  437. func (*FindNotReplyNumReply) Descriptor() ([]byte, []int) {
  438. return file_chat_proto_rawDescGZIP(), []int{7}
  439. }
  440. func (x *FindNotReplyNumReply) GetPersonNum() int64 {
  441. if x != nil {
  442. return x.PersonNum
  443. }
  444. return 0
  445. }
  446. func (x *FindNotReplyNumReply) GetMessageNum() int64 {
  447. if x != nil {
  448. return x.MessageNum
  449. }
  450. return 0
  451. }
  452. type UnreadNumReply struct {
  453. state protoimpl.MessageState
  454. sizeCache protoimpl.SizeCache
  455. unknownFields protoimpl.UnknownFields
  456. UnreadNum int64 `protobuf:"varint,1,opt,name=unreadNum,proto3" json:"unreadNum"` // 未读数
  457. }
  458. func (x *UnreadNumReply) Reset() {
  459. *x = UnreadNumReply{}
  460. if protoimpl.UnsafeEnabled {
  461. mi := &file_chat_proto_msgTypes[8]
  462. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  463. ms.StoreMessageInfo(mi)
  464. }
  465. }
  466. func (x *UnreadNumReply) String() string {
  467. return protoimpl.X.MessageStringOf(x)
  468. }
  469. func (*UnreadNumReply) ProtoMessage() {}
  470. func (x *UnreadNumReply) ProtoReflect() protoreflect.Message {
  471. mi := &file_chat_proto_msgTypes[8]
  472. if protoimpl.UnsafeEnabled && x != nil {
  473. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  474. if ms.LoadMessageInfo() == nil {
  475. ms.StoreMessageInfo(mi)
  476. }
  477. return ms
  478. }
  479. return mi.MessageOf(x)
  480. }
  481. // Deprecated: Use UnreadNumReply.ProtoReflect.Descriptor instead.
  482. func (*UnreadNumReply) Descriptor() ([]byte, []int) {
  483. return file_chat_proto_rawDescGZIP(), []int{8}
  484. }
  485. func (x *UnreadNumReply) GetUnreadNum() int64 {
  486. if x != nil {
  487. return x.UnreadNum
  488. }
  489. return 0
  490. }
  491. type FindRecommendPersonListRequest struct {
  492. state protoimpl.MessageState
  493. sizeCache protoimpl.SizeCache
  494. unknownFields protoimpl.UnknownFields
  495. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"` // 推荐数
  496. IsRefresh bool `protobuf:"varint,2,opt,name=isRefresh,proto3" json:"isRefresh"` // 是否刷新
  497. PersonID string `protobuf:"bytes,3,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  498. PersonType string `protobuf:"bytes,4,opt,name=personType,proto3" json:"personType"` // 类型
  499. }
  500. func (x *FindRecommendPersonListRequest) Reset() {
  501. *x = FindRecommendPersonListRequest{}
  502. if protoimpl.UnsafeEnabled {
  503. mi := &file_chat_proto_msgTypes[9]
  504. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  505. ms.StoreMessageInfo(mi)
  506. }
  507. }
  508. func (x *FindRecommendPersonListRequest) String() string {
  509. return protoimpl.X.MessageStringOf(x)
  510. }
  511. func (*FindRecommendPersonListRequest) ProtoMessage() {}
  512. func (x *FindRecommendPersonListRequest) ProtoReflect() protoreflect.Message {
  513. mi := &file_chat_proto_msgTypes[9]
  514. if protoimpl.UnsafeEnabled && x != nil {
  515. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  516. if ms.LoadMessageInfo() == nil {
  517. ms.StoreMessageInfo(mi)
  518. }
  519. return ms
  520. }
  521. return mi.MessageOf(x)
  522. }
  523. // Deprecated: Use FindRecommendPersonListRequest.ProtoReflect.Descriptor instead.
  524. func (*FindRecommendPersonListRequest) Descriptor() ([]byte, []int) {
  525. return file_chat_proto_rawDescGZIP(), []int{9}
  526. }
  527. func (x *FindRecommendPersonListRequest) GetNum() int64 {
  528. if x != nil {
  529. return x.Num
  530. }
  531. return 0
  532. }
  533. func (x *FindRecommendPersonListRequest) GetIsRefresh() bool {
  534. if x != nil {
  535. return x.IsRefresh
  536. }
  537. return false
  538. }
  539. func (x *FindRecommendPersonListRequest) GetPersonID() string {
  540. if x != nil {
  541. return x.PersonID
  542. }
  543. return ""
  544. }
  545. func (x *FindRecommendPersonListRequest) GetPersonType() string {
  546. if x != nil {
  547. return x.PersonType
  548. }
  549. return ""
  550. }
  551. type FindRoomCardMsgRequest struct {
  552. state protoimpl.MessageState
  553. sizeCache protoimpl.SizeCache
  554. unknownFields protoimpl.UnknownFields
  555. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId"` // 身份ID
  556. PartnerId string `protobuf:"bytes,2,opt,name=partnerId,proto3" json:"partnerId"` // 身份ID
  557. }
  558. func (x *FindRoomCardMsgRequest) Reset() {
  559. *x = FindRoomCardMsgRequest{}
  560. if protoimpl.UnsafeEnabled {
  561. mi := &file_chat_proto_msgTypes[10]
  562. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  563. ms.StoreMessageInfo(mi)
  564. }
  565. }
  566. func (x *FindRoomCardMsgRequest) String() string {
  567. return protoimpl.X.MessageStringOf(x)
  568. }
  569. func (*FindRoomCardMsgRequest) ProtoMessage() {}
  570. func (x *FindRoomCardMsgRequest) ProtoReflect() protoreflect.Message {
  571. mi := &file_chat_proto_msgTypes[10]
  572. if protoimpl.UnsafeEnabled && x != nil {
  573. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  574. if ms.LoadMessageInfo() == nil {
  575. ms.StoreMessageInfo(mi)
  576. }
  577. return ms
  578. }
  579. return mi.MessageOf(x)
  580. }
  581. // Deprecated: Use FindRoomCardMsgRequest.ProtoReflect.Descriptor instead.
  582. func (*FindRoomCardMsgRequest) Descriptor() ([]byte, []int) {
  583. return file_chat_proto_rawDescGZIP(), []int{10}
  584. }
  585. func (x *FindRoomCardMsgRequest) GetUserId() string {
  586. if x != nil {
  587. return x.UserId
  588. }
  589. return ""
  590. }
  591. func (x *FindRoomCardMsgRequest) GetPartnerId() string {
  592. if x != nil {
  593. return x.PartnerId
  594. }
  595. return ""
  596. }
  597. type PartnerGetAwardReply struct {
  598. state protoimpl.MessageState
  599. sizeCache protoimpl.SizeCache
  600. unknownFields protoimpl.UnknownFields
  601. Balance int64 `protobuf:"varint,1,opt,name=balance,proto3" json:"balance"`
  602. }
  603. func (x *PartnerGetAwardReply) Reset() {
  604. *x = PartnerGetAwardReply{}
  605. if protoimpl.UnsafeEnabled {
  606. mi := &file_chat_proto_msgTypes[11]
  607. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  608. ms.StoreMessageInfo(mi)
  609. }
  610. }
  611. func (x *PartnerGetAwardReply) String() string {
  612. return protoimpl.X.MessageStringOf(x)
  613. }
  614. func (*PartnerGetAwardReply) ProtoMessage() {}
  615. func (x *PartnerGetAwardReply) ProtoReflect() protoreflect.Message {
  616. mi := &file_chat_proto_msgTypes[11]
  617. if protoimpl.UnsafeEnabled && x != nil {
  618. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  619. if ms.LoadMessageInfo() == nil {
  620. ms.StoreMessageInfo(mi)
  621. }
  622. return ms
  623. }
  624. return mi.MessageOf(x)
  625. }
  626. // Deprecated: Use PartnerGetAwardReply.ProtoReflect.Descriptor instead.
  627. func (*PartnerGetAwardReply) Descriptor() ([]byte, []int) {
  628. return file_chat_proto_rawDescGZIP(), []int{11}
  629. }
  630. func (x *PartnerGetAwardReply) GetBalance() int64 {
  631. if x != nil {
  632. return x.Balance
  633. }
  634. return 0
  635. }
  636. type PartnerGetAwardRequest struct {
  637. state protoimpl.MessageState
  638. sizeCache protoimpl.SizeCache
  639. unknownFields protoimpl.UnknownFields
  640. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId"` // 用户ID
  641. AwardType string `protobuf:"bytes,3,opt,name=awardType,proto3" json:"awardType"`
  642. PartnerId string `protobuf:"bytes,4,opt,name=partnerId,proto3" json:"partnerId"` // 接待员ID
  643. }
  644. func (x *PartnerGetAwardRequest) Reset() {
  645. *x = PartnerGetAwardRequest{}
  646. if protoimpl.UnsafeEnabled {
  647. mi := &file_chat_proto_msgTypes[12]
  648. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  649. ms.StoreMessageInfo(mi)
  650. }
  651. }
  652. func (x *PartnerGetAwardRequest) String() string {
  653. return protoimpl.X.MessageStringOf(x)
  654. }
  655. func (*PartnerGetAwardRequest) ProtoMessage() {}
  656. func (x *PartnerGetAwardRequest) ProtoReflect() protoreflect.Message {
  657. mi := &file_chat_proto_msgTypes[12]
  658. if protoimpl.UnsafeEnabled && x != nil {
  659. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  660. if ms.LoadMessageInfo() == nil {
  661. ms.StoreMessageInfo(mi)
  662. }
  663. return ms
  664. }
  665. return mi.MessageOf(x)
  666. }
  667. // Deprecated: Use PartnerGetAwardRequest.ProtoReflect.Descriptor instead.
  668. func (*PartnerGetAwardRequest) Descriptor() ([]byte, []int) {
  669. return file_chat_proto_rawDescGZIP(), []int{12}
  670. }
  671. func (x *PartnerGetAwardRequest) GetUserId() string {
  672. if x != nil {
  673. return x.UserId
  674. }
  675. return ""
  676. }
  677. func (x *PartnerGetAwardRequest) GetAwardType() string {
  678. if x != nil {
  679. return x.AwardType
  680. }
  681. return ""
  682. }
  683. func (x *PartnerGetAwardRequest) GetPartnerId() string {
  684. if x != nil {
  685. return x.PartnerId
  686. }
  687. return ""
  688. }
  689. type PartnerFindRoomListRequest struct {
  690. state protoimpl.MessageState
  691. sizeCache protoimpl.SizeCache
  692. unknownFields protoimpl.UnknownFields
  693. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  694. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  695. PersonId string `protobuf:"bytes,3,opt,name=personId,proto3" json:"personId"`
  696. IsFindNotReply bool `protobuf:"varint,4,opt,name=isFindNotReply,proto3" json:"isFindNotReply"` // 是否查询没回复过的内容
  697. IsWithinSevenDay bool `protobuf:"varint,5,opt,name=isWithinSevenDay,proto3" json:"isWithinSevenDay"` // 是否在七日内
  698. }
  699. func (x *PartnerFindRoomListRequest) Reset() {
  700. *x = PartnerFindRoomListRequest{}
  701. if protoimpl.UnsafeEnabled {
  702. mi := &file_chat_proto_msgTypes[13]
  703. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  704. ms.StoreMessageInfo(mi)
  705. }
  706. }
  707. func (x *PartnerFindRoomListRequest) String() string {
  708. return protoimpl.X.MessageStringOf(x)
  709. }
  710. func (*PartnerFindRoomListRequest) ProtoMessage() {}
  711. func (x *PartnerFindRoomListRequest) ProtoReflect() protoreflect.Message {
  712. mi := &file_chat_proto_msgTypes[13]
  713. if protoimpl.UnsafeEnabled && x != nil {
  714. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  715. if ms.LoadMessageInfo() == nil {
  716. ms.StoreMessageInfo(mi)
  717. }
  718. return ms
  719. }
  720. return mi.MessageOf(x)
  721. }
  722. // Deprecated: Use PartnerFindRoomListRequest.ProtoReflect.Descriptor instead.
  723. func (*PartnerFindRoomListRequest) Descriptor() ([]byte, []int) {
  724. return file_chat_proto_rawDescGZIP(), []int{13}
  725. }
  726. func (x *PartnerFindRoomListRequest) GetNextId() int64 {
  727. if x != nil {
  728. return x.NextId
  729. }
  730. return 0
  731. }
  732. func (x *PartnerFindRoomListRequest) GetOffset() int64 {
  733. if x != nil {
  734. return x.Offset
  735. }
  736. return 0
  737. }
  738. func (x *PartnerFindRoomListRequest) GetPersonId() string {
  739. if x != nil {
  740. return x.PersonId
  741. }
  742. return ""
  743. }
  744. func (x *PartnerFindRoomListRequest) GetIsFindNotReply() bool {
  745. if x != nil {
  746. return x.IsFindNotReply
  747. }
  748. return false
  749. }
  750. func (x *PartnerFindRoomListRequest) GetIsWithinSevenDay() bool {
  751. if x != nil {
  752. return x.IsWithinSevenDay
  753. }
  754. return false
  755. }
  756. type UserFindRoomListRequest struct {
  757. state protoimpl.MessageState
  758. sizeCache protoimpl.SizeCache
  759. unknownFields protoimpl.UnknownFields
  760. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  761. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  762. PersonId string `protobuf:"bytes,3,opt,name=personId,proto3" json:"personId"`
  763. IsWithinSevenDay bool `protobuf:"varint,4,opt,name=isWithinSevenDay,proto3" json:"isWithinSevenDay"` // 是否在七日内
  764. }
  765. func (x *UserFindRoomListRequest) Reset() {
  766. *x = UserFindRoomListRequest{}
  767. if protoimpl.UnsafeEnabled {
  768. mi := &file_chat_proto_msgTypes[14]
  769. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  770. ms.StoreMessageInfo(mi)
  771. }
  772. }
  773. func (x *UserFindRoomListRequest) String() string {
  774. return protoimpl.X.MessageStringOf(x)
  775. }
  776. func (*UserFindRoomListRequest) ProtoMessage() {}
  777. func (x *UserFindRoomListRequest) ProtoReflect() protoreflect.Message {
  778. mi := &file_chat_proto_msgTypes[14]
  779. if protoimpl.UnsafeEnabled && x != nil {
  780. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  781. if ms.LoadMessageInfo() == nil {
  782. ms.StoreMessageInfo(mi)
  783. }
  784. return ms
  785. }
  786. return mi.MessageOf(x)
  787. }
  788. // Deprecated: Use UserFindRoomListRequest.ProtoReflect.Descriptor instead.
  789. func (*UserFindRoomListRequest) Descriptor() ([]byte, []int) {
  790. return file_chat_proto_rawDescGZIP(), []int{14}
  791. }
  792. func (x *UserFindRoomListRequest) GetNextId() int64 {
  793. if x != nil {
  794. return x.NextId
  795. }
  796. return 0
  797. }
  798. func (x *UserFindRoomListRequest) GetOffset() int64 {
  799. if x != nil {
  800. return x.Offset
  801. }
  802. return 0
  803. }
  804. func (x *UserFindRoomListRequest) GetPersonId() string {
  805. if x != nil {
  806. return x.PersonId
  807. }
  808. return ""
  809. }
  810. func (x *UserFindRoomListRequest) GetIsWithinSevenDay() bool {
  811. if x != nil {
  812. return x.IsWithinSevenDay
  813. }
  814. return false
  815. }
  816. type UserFindRoomListReply struct {
  817. state protoimpl.MessageState
  818. sizeCache protoimpl.SizeCache
  819. unknownFields protoimpl.UnknownFields
  820. List []*UserRoomInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  821. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  822. }
  823. func (x *UserFindRoomListReply) Reset() {
  824. *x = UserFindRoomListReply{}
  825. if protoimpl.UnsafeEnabled {
  826. mi := &file_chat_proto_msgTypes[15]
  827. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  828. ms.StoreMessageInfo(mi)
  829. }
  830. }
  831. func (x *UserFindRoomListReply) String() string {
  832. return protoimpl.X.MessageStringOf(x)
  833. }
  834. func (*UserFindRoomListReply) ProtoMessage() {}
  835. func (x *UserFindRoomListReply) ProtoReflect() protoreflect.Message {
  836. mi := &file_chat_proto_msgTypes[15]
  837. if protoimpl.UnsafeEnabled && x != nil {
  838. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  839. if ms.LoadMessageInfo() == nil {
  840. ms.StoreMessageInfo(mi)
  841. }
  842. return ms
  843. }
  844. return mi.MessageOf(x)
  845. }
  846. // Deprecated: Use UserFindRoomListReply.ProtoReflect.Descriptor instead.
  847. func (*UserFindRoomListReply) Descriptor() ([]byte, []int) {
  848. return file_chat_proto_rawDescGZIP(), []int{15}
  849. }
  850. func (x *UserFindRoomListReply) GetList() []*UserRoomInfo {
  851. if x != nil {
  852. return x.List
  853. }
  854. return nil
  855. }
  856. func (x *UserFindRoomListReply) GetNextId() int64 {
  857. if x != nil {
  858. return x.NextId
  859. }
  860. return 0
  861. }
  862. type UserRoomInfo struct {
  863. state protoimpl.MessageState
  864. sizeCache protoimpl.SizeCache
  865. unknownFields protoimpl.UnknownFields
  866. PersonType string `protobuf:"bytes,1,opt,name=personType,proto3" json:"personType"` // 用户类型
  867. PersonId string `protobuf:"bytes,2,opt,name=personId,proto3" json:"personId"` // 用户ID
  868. UnreadNum int64 `protobuf:"varint,3,opt,name=unreadNum,proto3" json:"unreadNum"` // 用户未读数
  869. LastContent string `protobuf:"bytes,4,opt,name=lastContent,proto3" json:"lastContent"` // 上次发送内容
  870. LastTime int64 `protobuf:"varint,5,opt,name=lastTime,proto3" json:"lastTime"` // 上次发送时间
  871. Likeability int64 `protobuf:"varint,6,opt,name=likeability,proto3" json:"likeability"` // 好感度
  872. RoomId int64 `protobuf:"varint,7,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  873. }
  874. func (x *UserRoomInfo) Reset() {
  875. *x = UserRoomInfo{}
  876. if protoimpl.UnsafeEnabled {
  877. mi := &file_chat_proto_msgTypes[16]
  878. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  879. ms.StoreMessageInfo(mi)
  880. }
  881. }
  882. func (x *UserRoomInfo) String() string {
  883. return protoimpl.X.MessageStringOf(x)
  884. }
  885. func (*UserRoomInfo) ProtoMessage() {}
  886. func (x *UserRoomInfo) ProtoReflect() protoreflect.Message {
  887. mi := &file_chat_proto_msgTypes[16]
  888. if protoimpl.UnsafeEnabled && x != nil {
  889. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  890. if ms.LoadMessageInfo() == nil {
  891. ms.StoreMessageInfo(mi)
  892. }
  893. return ms
  894. }
  895. return mi.MessageOf(x)
  896. }
  897. // Deprecated: Use UserRoomInfo.ProtoReflect.Descriptor instead.
  898. func (*UserRoomInfo) Descriptor() ([]byte, []int) {
  899. return file_chat_proto_rawDescGZIP(), []int{16}
  900. }
  901. func (x *UserRoomInfo) GetPersonType() string {
  902. if x != nil {
  903. return x.PersonType
  904. }
  905. return ""
  906. }
  907. func (x *UserRoomInfo) GetPersonId() string {
  908. if x != nil {
  909. return x.PersonId
  910. }
  911. return ""
  912. }
  913. func (x *UserRoomInfo) GetUnreadNum() int64 {
  914. if x != nil {
  915. return x.UnreadNum
  916. }
  917. return 0
  918. }
  919. func (x *UserRoomInfo) GetLastContent() string {
  920. if x != nil {
  921. return x.LastContent
  922. }
  923. return ""
  924. }
  925. func (x *UserRoomInfo) GetLastTime() int64 {
  926. if x != nil {
  927. return x.LastTime
  928. }
  929. return 0
  930. }
  931. func (x *UserRoomInfo) GetLikeability() int64 {
  932. if x != nil {
  933. return x.Likeability
  934. }
  935. return 0
  936. }
  937. func (x *UserRoomInfo) GetRoomId() int64 {
  938. if x != nil {
  939. return x.RoomId
  940. }
  941. return 0
  942. }
  943. type PartnerFindRoomListReply struct {
  944. state protoimpl.MessageState
  945. sizeCache protoimpl.SizeCache
  946. unknownFields protoimpl.UnknownFields
  947. List []*PartnerRoomInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  948. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  949. }
  950. func (x *PartnerFindRoomListReply) Reset() {
  951. *x = PartnerFindRoomListReply{}
  952. if protoimpl.UnsafeEnabled {
  953. mi := &file_chat_proto_msgTypes[17]
  954. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  955. ms.StoreMessageInfo(mi)
  956. }
  957. }
  958. func (x *PartnerFindRoomListReply) String() string {
  959. return protoimpl.X.MessageStringOf(x)
  960. }
  961. func (*PartnerFindRoomListReply) ProtoMessage() {}
  962. func (x *PartnerFindRoomListReply) ProtoReflect() protoreflect.Message {
  963. mi := &file_chat_proto_msgTypes[17]
  964. if protoimpl.UnsafeEnabled && x != nil {
  965. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  966. if ms.LoadMessageInfo() == nil {
  967. ms.StoreMessageInfo(mi)
  968. }
  969. return ms
  970. }
  971. return mi.MessageOf(x)
  972. }
  973. // Deprecated: Use PartnerFindRoomListReply.ProtoReflect.Descriptor instead.
  974. func (*PartnerFindRoomListReply) Descriptor() ([]byte, []int) {
  975. return file_chat_proto_rawDescGZIP(), []int{17}
  976. }
  977. func (x *PartnerFindRoomListReply) GetList() []*PartnerRoomInfo {
  978. if x != nil {
  979. return x.List
  980. }
  981. return nil
  982. }
  983. func (x *PartnerFindRoomListReply) GetNextId() int64 {
  984. if x != nil {
  985. return x.NextId
  986. }
  987. return 0
  988. }
  989. type PartnerRoomInfo struct {
  990. state protoimpl.MessageState
  991. sizeCache protoimpl.SizeCache
  992. unknownFields protoimpl.UnknownFields
  993. PersonSendNum int64 `protobuf:"varint,1,opt,name=personSendNum,proto3" json:"personSendNum"` // 用户发送数
  994. PersonId string `protobuf:"bytes,2,opt,name=personId,proto3" json:"personId"` // 用户ID
  995. UnreadNum int64 `protobuf:"varint,3,opt,name=unreadNum,proto3" json:"unreadNum"` // 接待者未读数
  996. LastContent string `protobuf:"bytes,4,opt,name=lastContent,proto3" json:"lastContent"` // 上次发送内容
  997. LastTime int64 `protobuf:"varint,5,opt,name=lastTime,proto3" json:"lastTime"` // 上次发送时间
  998. Benefit int64 `protobuf:"varint,6,opt,name=benefit,proto3" json:"benefit"` // 收益
  999. Type string `protobuf:"bytes,7,opt,name=type,proto3" json:"type"` // 类型(新客:new,付费:pay)
  1000. Sex int64 `protobuf:"varint,8,opt,name=sex,proto3" json:"sex"` // 性别
  1001. AvatarUrl string `protobuf:"bytes,9,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像
  1002. Nickname string `protobuf:"bytes,10,opt,name=nickname,proto3" json:"nickname"` // 昵称
  1003. Age int64 `protobuf:"varint,11,opt,name=age,proto3" json:"age"` // 年龄
  1004. Likeability int64 `protobuf:"varint,12,opt,name=likeability,proto3" json:"likeability"` // 好感度
  1005. RoomId int64 `protobuf:"varint,13,opt,name=roomId,proto3" json:"roomId"` // 房间号ID
  1006. PersonSendBaseNum int64 `protobuf:"varint,14,opt,name=personSendBaseNum,proto3" json:"personSendBaseNum"` // 用户发送基数
  1007. }
  1008. func (x *PartnerRoomInfo) Reset() {
  1009. *x = PartnerRoomInfo{}
  1010. if protoimpl.UnsafeEnabled {
  1011. mi := &file_chat_proto_msgTypes[18]
  1012. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1013. ms.StoreMessageInfo(mi)
  1014. }
  1015. }
  1016. func (x *PartnerRoomInfo) String() string {
  1017. return protoimpl.X.MessageStringOf(x)
  1018. }
  1019. func (*PartnerRoomInfo) ProtoMessage() {}
  1020. func (x *PartnerRoomInfo) ProtoReflect() protoreflect.Message {
  1021. mi := &file_chat_proto_msgTypes[18]
  1022. if protoimpl.UnsafeEnabled && x != nil {
  1023. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1024. if ms.LoadMessageInfo() == nil {
  1025. ms.StoreMessageInfo(mi)
  1026. }
  1027. return ms
  1028. }
  1029. return mi.MessageOf(x)
  1030. }
  1031. // Deprecated: Use PartnerRoomInfo.ProtoReflect.Descriptor instead.
  1032. func (*PartnerRoomInfo) Descriptor() ([]byte, []int) {
  1033. return file_chat_proto_rawDescGZIP(), []int{18}
  1034. }
  1035. func (x *PartnerRoomInfo) GetPersonSendNum() int64 {
  1036. if x != nil {
  1037. return x.PersonSendNum
  1038. }
  1039. return 0
  1040. }
  1041. func (x *PartnerRoomInfo) GetPersonId() string {
  1042. if x != nil {
  1043. return x.PersonId
  1044. }
  1045. return ""
  1046. }
  1047. func (x *PartnerRoomInfo) GetUnreadNum() int64 {
  1048. if x != nil {
  1049. return x.UnreadNum
  1050. }
  1051. return 0
  1052. }
  1053. func (x *PartnerRoomInfo) GetLastContent() string {
  1054. if x != nil {
  1055. return x.LastContent
  1056. }
  1057. return ""
  1058. }
  1059. func (x *PartnerRoomInfo) GetLastTime() int64 {
  1060. if x != nil {
  1061. return x.LastTime
  1062. }
  1063. return 0
  1064. }
  1065. func (x *PartnerRoomInfo) GetBenefit() int64 {
  1066. if x != nil {
  1067. return x.Benefit
  1068. }
  1069. return 0
  1070. }
  1071. func (x *PartnerRoomInfo) GetType() string {
  1072. if x != nil {
  1073. return x.Type
  1074. }
  1075. return ""
  1076. }
  1077. func (x *PartnerRoomInfo) GetSex() int64 {
  1078. if x != nil {
  1079. return x.Sex
  1080. }
  1081. return 0
  1082. }
  1083. func (x *PartnerRoomInfo) GetAvatarUrl() string {
  1084. if x != nil {
  1085. return x.AvatarUrl
  1086. }
  1087. return ""
  1088. }
  1089. func (x *PartnerRoomInfo) GetNickname() string {
  1090. if x != nil {
  1091. return x.Nickname
  1092. }
  1093. return ""
  1094. }
  1095. func (x *PartnerRoomInfo) GetAge() int64 {
  1096. if x != nil {
  1097. return x.Age
  1098. }
  1099. return 0
  1100. }
  1101. func (x *PartnerRoomInfo) GetLikeability() int64 {
  1102. if x != nil {
  1103. return x.Likeability
  1104. }
  1105. return 0
  1106. }
  1107. func (x *PartnerRoomInfo) GetRoomId() int64 {
  1108. if x != nil {
  1109. return x.RoomId
  1110. }
  1111. return 0
  1112. }
  1113. func (x *PartnerRoomInfo) GetPersonSendBaseNum() int64 {
  1114. if x != nil {
  1115. return x.PersonSendBaseNum
  1116. }
  1117. return 0
  1118. }
  1119. type CreateChatRoomParam struct {
  1120. state protoimpl.MessageState
  1121. sizeCache protoimpl.SizeCache
  1122. unknownFields protoimpl.UnknownFields
  1123. PersonId1 string `protobuf:"bytes,1,opt,name=personId1,proto3" json:"personId1"`
  1124. PersonType1 string `protobuf:"bytes,3,opt,name=personType1,proto3" json:"personType1"` // 类型
  1125. PersonId2 string `protobuf:"bytes,4,opt,name=personId2,proto3" json:"personId2"`
  1126. PersonType2 string `protobuf:"bytes,6,opt,name=personType2,proto3" json:"personType2"` // 类型
  1127. Source string `protobuf:"bytes,7,opt,name=source,proto3" json:"source"` // 来源
  1128. }
  1129. func (x *CreateChatRoomParam) Reset() {
  1130. *x = CreateChatRoomParam{}
  1131. if protoimpl.UnsafeEnabled {
  1132. mi := &file_chat_proto_msgTypes[19]
  1133. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1134. ms.StoreMessageInfo(mi)
  1135. }
  1136. }
  1137. func (x *CreateChatRoomParam) String() string {
  1138. return protoimpl.X.MessageStringOf(x)
  1139. }
  1140. func (*CreateChatRoomParam) ProtoMessage() {}
  1141. func (x *CreateChatRoomParam) ProtoReflect() protoreflect.Message {
  1142. mi := &file_chat_proto_msgTypes[19]
  1143. if protoimpl.UnsafeEnabled && x != nil {
  1144. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1145. if ms.LoadMessageInfo() == nil {
  1146. ms.StoreMessageInfo(mi)
  1147. }
  1148. return ms
  1149. }
  1150. return mi.MessageOf(x)
  1151. }
  1152. // Deprecated: Use CreateChatRoomParam.ProtoReflect.Descriptor instead.
  1153. func (*CreateChatRoomParam) Descriptor() ([]byte, []int) {
  1154. return file_chat_proto_rawDescGZIP(), []int{19}
  1155. }
  1156. func (x *CreateChatRoomParam) GetPersonId1() string {
  1157. if x != nil {
  1158. return x.PersonId1
  1159. }
  1160. return ""
  1161. }
  1162. func (x *CreateChatRoomParam) GetPersonType1() string {
  1163. if x != nil {
  1164. return x.PersonType1
  1165. }
  1166. return ""
  1167. }
  1168. func (x *CreateChatRoomParam) GetPersonId2() string {
  1169. if x != nil {
  1170. return x.PersonId2
  1171. }
  1172. return ""
  1173. }
  1174. func (x *CreateChatRoomParam) GetPersonType2() string {
  1175. if x != nil {
  1176. return x.PersonType2
  1177. }
  1178. return ""
  1179. }
  1180. func (x *CreateChatRoomParam) GetSource() string {
  1181. if x != nil {
  1182. return x.Source
  1183. }
  1184. return ""
  1185. }
  1186. type SetBlackChatParam struct {
  1187. state protoimpl.MessageState
  1188. sizeCache protoimpl.SizeCache
  1189. unknownFields protoimpl.UnknownFields
  1190. PersonId string `protobuf:"bytes,1,opt,name=personId,proto3" json:"personId"` // 拉黑者的身份ID
  1191. RoomId int64 `protobuf:"varint,2,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  1192. }
  1193. func (x *SetBlackChatParam) Reset() {
  1194. *x = SetBlackChatParam{}
  1195. if protoimpl.UnsafeEnabled {
  1196. mi := &file_chat_proto_msgTypes[20]
  1197. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1198. ms.StoreMessageInfo(mi)
  1199. }
  1200. }
  1201. func (x *SetBlackChatParam) String() string {
  1202. return protoimpl.X.MessageStringOf(x)
  1203. }
  1204. func (*SetBlackChatParam) ProtoMessage() {}
  1205. func (x *SetBlackChatParam) ProtoReflect() protoreflect.Message {
  1206. mi := &file_chat_proto_msgTypes[20]
  1207. if protoimpl.UnsafeEnabled && x != nil {
  1208. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1209. if ms.LoadMessageInfo() == nil {
  1210. ms.StoreMessageInfo(mi)
  1211. }
  1212. return ms
  1213. }
  1214. return mi.MessageOf(x)
  1215. }
  1216. // Deprecated: Use SetBlackChatParam.ProtoReflect.Descriptor instead.
  1217. func (*SetBlackChatParam) Descriptor() ([]byte, []int) {
  1218. return file_chat_proto_rawDescGZIP(), []int{20}
  1219. }
  1220. func (x *SetBlackChatParam) GetPersonId() string {
  1221. if x != nil {
  1222. return x.PersonId
  1223. }
  1224. return ""
  1225. }
  1226. func (x *SetBlackChatParam) GetRoomId() int64 {
  1227. if x != nil {
  1228. return x.RoomId
  1229. }
  1230. return 0
  1231. }
  1232. type ReceiveRequest struct {
  1233. state protoimpl.MessageState
  1234. sizeCache protoimpl.SizeCache
  1235. unknownFields protoimpl.UnknownFields
  1236. Method string `protobuf:"bytes,1,opt,name=method,proto3" json:"method"`
  1237. Data []byte `protobuf:"bytes,2,opt,name=data,proto3" json:"data"`
  1238. Id string `protobuf:"bytes,3,opt,name=id,proto3" json:"id"`
  1239. WebsocketTag string `protobuf:"bytes,4,opt,name=websocketTag,proto3" json:"websocketTag"`
  1240. PersonType string `protobuf:"bytes,5,opt,name=personType,proto3" json:"personType"`
  1241. PersonId string `protobuf:"bytes,6,opt,name=personId,proto3" json:"personId"`
  1242. }
  1243. func (x *ReceiveRequest) Reset() {
  1244. *x = ReceiveRequest{}
  1245. if protoimpl.UnsafeEnabled {
  1246. mi := &file_chat_proto_msgTypes[21]
  1247. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1248. ms.StoreMessageInfo(mi)
  1249. }
  1250. }
  1251. func (x *ReceiveRequest) String() string {
  1252. return protoimpl.X.MessageStringOf(x)
  1253. }
  1254. func (*ReceiveRequest) ProtoMessage() {}
  1255. func (x *ReceiveRequest) ProtoReflect() protoreflect.Message {
  1256. mi := &file_chat_proto_msgTypes[21]
  1257. if protoimpl.UnsafeEnabled && x != nil {
  1258. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1259. if ms.LoadMessageInfo() == nil {
  1260. ms.StoreMessageInfo(mi)
  1261. }
  1262. return ms
  1263. }
  1264. return mi.MessageOf(x)
  1265. }
  1266. // Deprecated: Use ReceiveRequest.ProtoReflect.Descriptor instead.
  1267. func (*ReceiveRequest) Descriptor() ([]byte, []int) {
  1268. return file_chat_proto_rawDescGZIP(), []int{21}
  1269. }
  1270. func (x *ReceiveRequest) GetMethod() string {
  1271. if x != nil {
  1272. return x.Method
  1273. }
  1274. return ""
  1275. }
  1276. func (x *ReceiveRequest) GetData() []byte {
  1277. if x != nil {
  1278. return x.Data
  1279. }
  1280. return nil
  1281. }
  1282. func (x *ReceiveRequest) GetId() string {
  1283. if x != nil {
  1284. return x.Id
  1285. }
  1286. return ""
  1287. }
  1288. func (x *ReceiveRequest) GetWebsocketTag() string {
  1289. if x != nil {
  1290. return x.WebsocketTag
  1291. }
  1292. return ""
  1293. }
  1294. func (x *ReceiveRequest) GetPersonType() string {
  1295. if x != nil {
  1296. return x.PersonType
  1297. }
  1298. return ""
  1299. }
  1300. func (x *ReceiveRequest) GetPersonId() string {
  1301. if x != nil {
  1302. return x.PersonId
  1303. }
  1304. return ""
  1305. }
  1306. type ReceiveReply struct {
  1307. state protoimpl.MessageState
  1308. sizeCache protoimpl.SizeCache
  1309. unknownFields protoimpl.UnknownFields
  1310. }
  1311. func (x *ReceiveReply) Reset() {
  1312. *x = ReceiveReply{}
  1313. if protoimpl.UnsafeEnabled {
  1314. mi := &file_chat_proto_msgTypes[22]
  1315. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1316. ms.StoreMessageInfo(mi)
  1317. }
  1318. }
  1319. func (x *ReceiveReply) String() string {
  1320. return protoimpl.X.MessageStringOf(x)
  1321. }
  1322. func (*ReceiveReply) ProtoMessage() {}
  1323. func (x *ReceiveReply) ProtoReflect() protoreflect.Message {
  1324. mi := &file_chat_proto_msgTypes[22]
  1325. if protoimpl.UnsafeEnabled && x != nil {
  1326. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1327. if ms.LoadMessageInfo() == nil {
  1328. ms.StoreMessageInfo(mi)
  1329. }
  1330. return ms
  1331. }
  1332. return mi.MessageOf(x)
  1333. }
  1334. // Deprecated: Use ReceiveReply.ProtoReflect.Descriptor instead.
  1335. func (*ReceiveReply) Descriptor() ([]byte, []int) {
  1336. return file_chat_proto_rawDescGZIP(), []int{22}
  1337. }
  1338. type CheckUserPartnerIsRelationshipReply struct {
  1339. state protoimpl.MessageState
  1340. sizeCache protoimpl.SizeCache
  1341. unknownFields protoimpl.UnknownFields
  1342. IsBuildRelationship bool `protobuf:"varint,1,opt,name=isBuildRelationship,proto3" json:"isBuildRelationship"`
  1343. RoomId int64 `protobuf:"varint,2,opt,name=roomId,proto3" json:"roomId"`
  1344. }
  1345. func (x *CheckUserPartnerIsRelationshipReply) Reset() {
  1346. *x = CheckUserPartnerIsRelationshipReply{}
  1347. if protoimpl.UnsafeEnabled {
  1348. mi := &file_chat_proto_msgTypes[23]
  1349. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1350. ms.StoreMessageInfo(mi)
  1351. }
  1352. }
  1353. func (x *CheckUserPartnerIsRelationshipReply) String() string {
  1354. return protoimpl.X.MessageStringOf(x)
  1355. }
  1356. func (*CheckUserPartnerIsRelationshipReply) ProtoMessage() {}
  1357. func (x *CheckUserPartnerIsRelationshipReply) ProtoReflect() protoreflect.Message {
  1358. mi := &file_chat_proto_msgTypes[23]
  1359. if protoimpl.UnsafeEnabled && x != nil {
  1360. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1361. if ms.LoadMessageInfo() == nil {
  1362. ms.StoreMessageInfo(mi)
  1363. }
  1364. return ms
  1365. }
  1366. return mi.MessageOf(x)
  1367. }
  1368. // Deprecated: Use CheckUserPartnerIsRelationshipReply.ProtoReflect.Descriptor instead.
  1369. func (*CheckUserPartnerIsRelationshipReply) Descriptor() ([]byte, []int) {
  1370. return file_chat_proto_rawDescGZIP(), []int{23}
  1371. }
  1372. func (x *CheckUserPartnerIsRelationshipReply) GetIsBuildRelationship() bool {
  1373. if x != nil {
  1374. return x.IsBuildRelationship
  1375. }
  1376. return false
  1377. }
  1378. func (x *CheckUserPartnerIsRelationshipReply) GetRoomId() int64 {
  1379. if x != nil {
  1380. return x.RoomId
  1381. }
  1382. return 0
  1383. }
  1384. type RoomReply struct {
  1385. state protoimpl.MessageState
  1386. sizeCache protoimpl.SizeCache
  1387. unknownFields protoimpl.UnknownFields
  1388. RoomId int64 `protobuf:"varint,1,opt,name=roomId,proto3" json:"roomId"`
  1389. }
  1390. func (x *RoomReply) Reset() {
  1391. *x = RoomReply{}
  1392. if protoimpl.UnsafeEnabled {
  1393. mi := &file_chat_proto_msgTypes[24]
  1394. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1395. ms.StoreMessageInfo(mi)
  1396. }
  1397. }
  1398. func (x *RoomReply) String() string {
  1399. return protoimpl.X.MessageStringOf(x)
  1400. }
  1401. func (*RoomReply) ProtoMessage() {}
  1402. func (x *RoomReply) ProtoReflect() protoreflect.Message {
  1403. mi := &file_chat_proto_msgTypes[24]
  1404. if protoimpl.UnsafeEnabled && x != nil {
  1405. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1406. if ms.LoadMessageInfo() == nil {
  1407. ms.StoreMessageInfo(mi)
  1408. }
  1409. return ms
  1410. }
  1411. return mi.MessageOf(x)
  1412. }
  1413. // Deprecated: Use RoomReply.ProtoReflect.Descriptor instead.
  1414. func (*RoomReply) Descriptor() ([]byte, []int) {
  1415. return file_chat_proto_rawDescGZIP(), []int{24}
  1416. }
  1417. func (x *RoomReply) GetRoomId() int64 {
  1418. if x != nil {
  1419. return x.RoomId
  1420. }
  1421. return 0
  1422. }
  1423. type FindChatRoomMsgRequest struct {
  1424. state protoimpl.MessageState
  1425. sizeCache protoimpl.SizeCache
  1426. unknownFields protoimpl.UnknownFields
  1427. RoomId int64 `protobuf:"varint,1,opt,name=roomId,proto3" json:"roomId"`
  1428. PersonType string `protobuf:"bytes,2,opt,name=personType,proto3" json:"personType"` // 类型
  1429. PersonID string `protobuf:"bytes,3,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  1430. }
  1431. func (x *FindChatRoomMsgRequest) Reset() {
  1432. *x = FindChatRoomMsgRequest{}
  1433. if protoimpl.UnsafeEnabled {
  1434. mi := &file_chat_proto_msgTypes[25]
  1435. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1436. ms.StoreMessageInfo(mi)
  1437. }
  1438. }
  1439. func (x *FindChatRoomMsgRequest) String() string {
  1440. return protoimpl.X.MessageStringOf(x)
  1441. }
  1442. func (*FindChatRoomMsgRequest) ProtoMessage() {}
  1443. func (x *FindChatRoomMsgRequest) ProtoReflect() protoreflect.Message {
  1444. mi := &file_chat_proto_msgTypes[25]
  1445. if protoimpl.UnsafeEnabled && x != nil {
  1446. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1447. if ms.LoadMessageInfo() == nil {
  1448. ms.StoreMessageInfo(mi)
  1449. }
  1450. return ms
  1451. }
  1452. return mi.MessageOf(x)
  1453. }
  1454. // Deprecated: Use FindChatRoomMsgRequest.ProtoReflect.Descriptor instead.
  1455. func (*FindChatRoomMsgRequest) Descriptor() ([]byte, []int) {
  1456. return file_chat_proto_rawDescGZIP(), []int{25}
  1457. }
  1458. func (x *FindChatRoomMsgRequest) GetRoomId() int64 {
  1459. if x != nil {
  1460. return x.RoomId
  1461. }
  1462. return 0
  1463. }
  1464. func (x *FindChatRoomMsgRequest) GetPersonType() string {
  1465. if x != nil {
  1466. return x.PersonType
  1467. }
  1468. return ""
  1469. }
  1470. func (x *FindChatRoomMsgRequest) GetPersonID() string {
  1471. if x != nil {
  1472. return x.PersonID
  1473. }
  1474. return ""
  1475. }
  1476. type FindChatRecordListRequest struct {
  1477. state protoimpl.MessageState
  1478. sizeCache protoimpl.SizeCache
  1479. unknownFields protoimpl.UnknownFields
  1480. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  1481. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  1482. RoomId int64 `protobuf:"varint,3,opt,name=roomId,proto3" json:"roomId"`
  1483. PersonType string `protobuf:"bytes,4,opt,name=personType,proto3" json:"personType"` // 类型
  1484. PersonID string `protobuf:"bytes,5,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  1485. }
  1486. func (x *FindChatRecordListRequest) Reset() {
  1487. *x = FindChatRecordListRequest{}
  1488. if protoimpl.UnsafeEnabled {
  1489. mi := &file_chat_proto_msgTypes[26]
  1490. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1491. ms.StoreMessageInfo(mi)
  1492. }
  1493. }
  1494. func (x *FindChatRecordListRequest) String() string {
  1495. return protoimpl.X.MessageStringOf(x)
  1496. }
  1497. func (*FindChatRecordListRequest) ProtoMessage() {}
  1498. func (x *FindChatRecordListRequest) ProtoReflect() protoreflect.Message {
  1499. mi := &file_chat_proto_msgTypes[26]
  1500. if protoimpl.UnsafeEnabled && x != nil {
  1501. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1502. if ms.LoadMessageInfo() == nil {
  1503. ms.StoreMessageInfo(mi)
  1504. }
  1505. return ms
  1506. }
  1507. return mi.MessageOf(x)
  1508. }
  1509. // Deprecated: Use FindChatRecordListRequest.ProtoReflect.Descriptor instead.
  1510. func (*FindChatRecordListRequest) Descriptor() ([]byte, []int) {
  1511. return file_chat_proto_rawDescGZIP(), []int{26}
  1512. }
  1513. func (x *FindChatRecordListRequest) GetNextId() int64 {
  1514. if x != nil {
  1515. return x.NextId
  1516. }
  1517. return 0
  1518. }
  1519. func (x *FindChatRecordListRequest) GetOffset() int64 {
  1520. if x != nil {
  1521. return x.Offset
  1522. }
  1523. return 0
  1524. }
  1525. func (x *FindChatRecordListRequest) GetRoomId() int64 {
  1526. if x != nil {
  1527. return x.RoomId
  1528. }
  1529. return 0
  1530. }
  1531. func (x *FindChatRecordListRequest) GetPersonType() string {
  1532. if x != nil {
  1533. return x.PersonType
  1534. }
  1535. return ""
  1536. }
  1537. func (x *FindChatRecordListRequest) GetPersonID() string {
  1538. if x != nil {
  1539. return x.PersonID
  1540. }
  1541. return ""
  1542. }
  1543. type WindowInfo struct {
  1544. state protoimpl.MessageState
  1545. sizeCache protoimpl.SizeCache
  1546. unknownFields protoimpl.UnknownFields
  1547. Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content"` // 文本内容
  1548. RoomId int64 `protobuf:"varint,2,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  1549. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像
  1550. Nickname string `protobuf:"bytes,4,opt,name=nickname,proto3" json:"nickname"` // 昵称
  1551. Age int64 `protobuf:"varint,5,opt,name=age,proto3" json:"age"` // 年龄
  1552. Sex int64 `protobuf:"varint,6,opt,name=sex,proto3" json:"sex"` // 性别
  1553. Reply []string `protobuf:"bytes,7,rep,name=reply,proto3" json:"reply"` // 快捷回复
  1554. }
  1555. func (x *WindowInfo) Reset() {
  1556. *x = WindowInfo{}
  1557. if protoimpl.UnsafeEnabled {
  1558. mi := &file_chat_proto_msgTypes[27]
  1559. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1560. ms.StoreMessageInfo(mi)
  1561. }
  1562. }
  1563. func (x *WindowInfo) String() string {
  1564. return protoimpl.X.MessageStringOf(x)
  1565. }
  1566. func (*WindowInfo) ProtoMessage() {}
  1567. func (x *WindowInfo) ProtoReflect() protoreflect.Message {
  1568. mi := &file_chat_proto_msgTypes[27]
  1569. if protoimpl.UnsafeEnabled && x != nil {
  1570. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1571. if ms.LoadMessageInfo() == nil {
  1572. ms.StoreMessageInfo(mi)
  1573. }
  1574. return ms
  1575. }
  1576. return mi.MessageOf(x)
  1577. }
  1578. // Deprecated: Use WindowInfo.ProtoReflect.Descriptor instead.
  1579. func (*WindowInfo) Descriptor() ([]byte, []int) {
  1580. return file_chat_proto_rawDescGZIP(), []int{27}
  1581. }
  1582. func (x *WindowInfo) GetContent() string {
  1583. if x != nil {
  1584. return x.Content
  1585. }
  1586. return ""
  1587. }
  1588. func (x *WindowInfo) GetRoomId() int64 {
  1589. if x != nil {
  1590. return x.RoomId
  1591. }
  1592. return 0
  1593. }
  1594. func (x *WindowInfo) GetAvatarUrl() string {
  1595. if x != nil {
  1596. return x.AvatarUrl
  1597. }
  1598. return ""
  1599. }
  1600. func (x *WindowInfo) GetNickname() string {
  1601. if x != nil {
  1602. return x.Nickname
  1603. }
  1604. return ""
  1605. }
  1606. func (x *WindowInfo) GetAge() int64 {
  1607. if x != nil {
  1608. return x.Age
  1609. }
  1610. return 0
  1611. }
  1612. func (x *WindowInfo) GetSex() int64 {
  1613. if x != nil {
  1614. return x.Sex
  1615. }
  1616. return 0
  1617. }
  1618. func (x *WindowInfo) GetReply() []string {
  1619. if x != nil {
  1620. return x.Reply
  1621. }
  1622. return nil
  1623. }
  1624. type ReminderInfo struct {
  1625. state protoimpl.MessageState
  1626. sizeCache protoimpl.SizeCache
  1627. unknownFields protoimpl.UnknownFields
  1628. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"` // 发送条数
  1629. LimitNum int64 `protobuf:"varint,2,opt,name=limitNum,proto3" json:"limitNum"` // 上限条数
  1630. SendTime int64 `protobuf:"varint,3,opt,name=sendTime,proto3" json:"sendTime"` // 发送时间
  1631. RoomId int64 `protobuf:"varint,4,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  1632. }
  1633. func (x *ReminderInfo) Reset() {
  1634. *x = ReminderInfo{}
  1635. if protoimpl.UnsafeEnabled {
  1636. mi := &file_chat_proto_msgTypes[28]
  1637. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1638. ms.StoreMessageInfo(mi)
  1639. }
  1640. }
  1641. func (x *ReminderInfo) String() string {
  1642. return protoimpl.X.MessageStringOf(x)
  1643. }
  1644. func (*ReminderInfo) ProtoMessage() {}
  1645. func (x *ReminderInfo) ProtoReflect() protoreflect.Message {
  1646. mi := &file_chat_proto_msgTypes[28]
  1647. if protoimpl.UnsafeEnabled && x != nil {
  1648. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1649. if ms.LoadMessageInfo() == nil {
  1650. ms.StoreMessageInfo(mi)
  1651. }
  1652. return ms
  1653. }
  1654. return mi.MessageOf(x)
  1655. }
  1656. // Deprecated: Use ReminderInfo.ProtoReflect.Descriptor instead.
  1657. func (*ReminderInfo) Descriptor() ([]byte, []int) {
  1658. return file_chat_proto_rawDescGZIP(), []int{28}
  1659. }
  1660. func (x *ReminderInfo) GetNum() int64 {
  1661. if x != nil {
  1662. return x.Num
  1663. }
  1664. return 0
  1665. }
  1666. func (x *ReminderInfo) GetLimitNum() int64 {
  1667. if x != nil {
  1668. return x.LimitNum
  1669. }
  1670. return 0
  1671. }
  1672. func (x *ReminderInfo) GetSendTime() int64 {
  1673. if x != nil {
  1674. return x.SendTime
  1675. }
  1676. return 0
  1677. }
  1678. func (x *ReminderInfo) GetRoomId() int64 {
  1679. if x != nil {
  1680. return x.RoomId
  1681. }
  1682. return 0
  1683. }
  1684. type ReminderUserInfo struct {
  1685. state protoimpl.MessageState
  1686. sizeCache protoimpl.SizeCache
  1687. unknownFields protoimpl.UnknownFields
  1688. RoomId int64 `protobuf:"varint,1,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  1689. }
  1690. func (x *ReminderUserInfo) Reset() {
  1691. *x = ReminderUserInfo{}
  1692. if protoimpl.UnsafeEnabled {
  1693. mi := &file_chat_proto_msgTypes[29]
  1694. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1695. ms.StoreMessageInfo(mi)
  1696. }
  1697. }
  1698. func (x *ReminderUserInfo) String() string {
  1699. return protoimpl.X.MessageStringOf(x)
  1700. }
  1701. func (*ReminderUserInfo) ProtoMessage() {}
  1702. func (x *ReminderUserInfo) ProtoReflect() protoreflect.Message {
  1703. mi := &file_chat_proto_msgTypes[29]
  1704. if protoimpl.UnsafeEnabled && x != nil {
  1705. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1706. if ms.LoadMessageInfo() == nil {
  1707. ms.StoreMessageInfo(mi)
  1708. }
  1709. return ms
  1710. }
  1711. return mi.MessageOf(x)
  1712. }
  1713. // Deprecated: Use ReminderUserInfo.ProtoReflect.Descriptor instead.
  1714. func (*ReminderUserInfo) Descriptor() ([]byte, []int) {
  1715. return file_chat_proto_rawDescGZIP(), []int{29}
  1716. }
  1717. func (x *ReminderUserInfo) GetRoomId() int64 {
  1718. if x != nil {
  1719. return x.RoomId
  1720. }
  1721. return 0
  1722. }
  1723. type UpLikeabilityInfo struct {
  1724. state protoimpl.MessageState
  1725. sizeCache protoimpl.SizeCache
  1726. unknownFields protoimpl.UnknownFields
  1727. Likeability int64 `protobuf:"varint,1,opt,name=likeability,proto3" json:"likeability"` // 好感度
  1728. RoomId int64 `protobuf:"varint,2,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  1729. }
  1730. func (x *UpLikeabilityInfo) Reset() {
  1731. *x = UpLikeabilityInfo{}
  1732. if protoimpl.UnsafeEnabled {
  1733. mi := &file_chat_proto_msgTypes[30]
  1734. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1735. ms.StoreMessageInfo(mi)
  1736. }
  1737. }
  1738. func (x *UpLikeabilityInfo) String() string {
  1739. return protoimpl.X.MessageStringOf(x)
  1740. }
  1741. func (*UpLikeabilityInfo) ProtoMessage() {}
  1742. func (x *UpLikeabilityInfo) ProtoReflect() protoreflect.Message {
  1743. mi := &file_chat_proto_msgTypes[30]
  1744. if protoimpl.UnsafeEnabled && x != nil {
  1745. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1746. if ms.LoadMessageInfo() == nil {
  1747. ms.StoreMessageInfo(mi)
  1748. }
  1749. return ms
  1750. }
  1751. return mi.MessageOf(x)
  1752. }
  1753. // Deprecated: Use UpLikeabilityInfo.ProtoReflect.Descriptor instead.
  1754. func (*UpLikeabilityInfo) Descriptor() ([]byte, []int) {
  1755. return file_chat_proto_rawDescGZIP(), []int{30}
  1756. }
  1757. func (x *UpLikeabilityInfo) GetLikeability() int64 {
  1758. if x != nil {
  1759. return x.Likeability
  1760. }
  1761. return 0
  1762. }
  1763. func (x *UpLikeabilityInfo) GetRoomId() int64 {
  1764. if x != nil {
  1765. return x.RoomId
  1766. }
  1767. return 0
  1768. }
  1769. var File_chat_proto protoreflect.FileDescriptor
  1770. var file_chat_proto_rawDesc = []byte{
  1771. 0x0a, 0x0a, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x08, 0x61, 0x70,
  1772. 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70,
  1773. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72,
  1774. 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f,
  1775. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x2b, 0x0a, 0x17,
  1776. 0x47, 0x65, 0x74, 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4e,
  1777. 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6e, 0x75, 0x6d, 0x18, 0x01,
  1778. 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e, 0x75, 0x6d, 0x22, 0x77, 0x0a, 0x1d, 0x47, 0x65, 0x74,
  1779. 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49,
  1780. 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65,
  1781. 0x78, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x16, 0x0a, 0x06,
  1782. 0x75, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73,
  1783. 0x65, 0x72, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x18, 0x04,
  1784. 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05,
  1785. 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70,
  1786. 0x49, 0x64, 0x22, 0x34, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x50, 0x72, 0x6f,
  1787. 0x66, 0x69, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1e, 0x0a, 0x0a, 0x72, 0x6f, 0x6f, 0x6d,
  1788. 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x72, 0x6f,
  1789. 0x6f, 0x6d, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x22, 0x47, 0x0a, 0x11, 0x55, 0x73, 0x65, 0x72,
  1790. 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a,
  1791. 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72,
  1792. 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  1793. 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  1794. 0x64, 0x22, 0x94, 0x01, 0x0a, 0x18, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x43, 0x6f, 0x6c,
  1795. 0x6c, 0x65, 0x63, 0x74, 0x49, 0x44, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x24,
  1796. 0x0a, 0x0d, 0x63, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x64, 0x73, 0x18,
  1797. 0x01, 0x20, 0x03, 0x28, 0x03, 0x52, 0x0d, 0x63, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72,
  1798. 0x64, 0x49, 0x64, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64,
  1799. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64,
  1800. 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x03,
  1801. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65,
  1802. 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03,
  1803. 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22, 0x97, 0x01, 0x0a, 0x15, 0x50, 0x61, 0x72,
  1804. 0x74, 0x6e, 0x65, 0x72, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65,
  1805. 0x73, 0x74, 0x12, 0x22, 0x0a, 0x0c, 0x63, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64,
  1806. 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x63, 0x68, 0x61, 0x74, 0x52, 0x65,
  1807. 0x63, 0x6f, 0x72, 0x64, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  1808. 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  1809. 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65,
  1810. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79,
  1811. 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64,
  1812. 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79,
  1813. 0x49, 0x64, 0x22, 0xca, 0x01, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d,
  1814. 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1a, 0x0a,
  1815. 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  1816. 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72,
  1817. 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70,
  1818. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f,
  1819. 0x6d, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49,
  1820. 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20,
  1821. 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a,
  1822. 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
  1823. 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73,
  1824. 0x65, 0x78, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x10, 0x0a,
  1825. 0x03, 0x61, 0x67, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x22,
  1826. 0x54, 0x0a, 0x14, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x4e,
  1827. 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x65, 0x72, 0x73, 0x6f,
  1828. 0x6e, 0x4e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x65, 0x72, 0x73,
  1829. 0x6f, 0x6e, 0x4e, 0x75, 0x6d, 0x12, 0x1e, 0x0a, 0x0a, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  1830. 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x6d, 0x65, 0x73, 0x73, 0x61,
  1831. 0x67, 0x65, 0x4e, 0x75, 0x6d, 0x22, 0x2e, 0x0a, 0x0e, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e,
  1832. 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x75, 0x6e, 0x72, 0x65, 0x61,
  1833. 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x75, 0x6e, 0x72, 0x65,
  1834. 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x22, 0x8c, 0x01, 0x0a, 0x1e, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65,
  1835. 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73,
  1836. 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6e, 0x75, 0x6d, 0x18,
  1837. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e, 0x75, 0x6d, 0x12, 0x1c, 0x0a, 0x09, 0x69, 0x73,
  1838. 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69,
  1839. 0x73, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73,
  1840. 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73,
  1841. 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79,
  1842. 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  1843. 0x54, 0x79, 0x70, 0x65, 0x22, 0x4e, 0x0a, 0x16, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d,
  1844. 0x43, 0x61, 0x72, 0x64, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16,
  1845. 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
  1846. 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1847. 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e,
  1848. 0x65, 0x72, 0x49, 0x64, 0x22, 0x30, 0x0a, 0x14, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x47,
  1849. 0x65, 0x74, 0x41, 0x77, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x18, 0x0a, 0x07,
  1850. 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x62,
  1851. 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x22, 0x6c, 0x0a, 0x16, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1852. 0x72, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1853. 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  1854. 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x77, 0x61, 0x72,
  1855. 0x64, 0x54, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x77, 0x61,
  1856. 0x72, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1857. 0x72, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e,
  1858. 0x65, 0x72, 0x49, 0x64, 0x22, 0xbc, 0x01, 0x0a, 0x1a, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  1859. 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75,
  1860. 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20,
  1861. 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f,
  1862. 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66,
  1863. 0x73, 0x65, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18,
  1864. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12,
  1865. 0x26, 0x0a, 0x0e, 0x69, 0x73, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x74, 0x52, 0x65, 0x70, 0x6c,
  1866. 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x69, 0x73, 0x46, 0x69, 0x6e, 0x64, 0x4e,
  1867. 0x6f, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x2a, 0x0a, 0x10, 0x69, 0x73, 0x57, 0x69, 0x74,
  1868. 0x68, 0x69, 0x6e, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28,
  1869. 0x08, 0x52, 0x10, 0x69, 0x73, 0x57, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x53, 0x65, 0x76, 0x65, 0x6e,
  1870. 0x44, 0x61, 0x79, 0x22, 0x91, 0x01, 0x0a, 0x17, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64,
  1871. 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  1872. 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  1873. 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65,
  1874. 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12,
  1875. 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28,
  1876. 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x2a, 0x0a, 0x10, 0x69,
  1877. 0x73, 0x57, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x18,
  1878. 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x69, 0x73, 0x57, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x53,
  1879. 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x22, 0x5b, 0x0a, 0x15, 0x55, 0x73, 0x65, 0x72, 0x46,
  1880. 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79,
  1881. 0x12, 0x2a, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16,
  1882. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x6f,
  1883. 0x6f, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06,
  1884. 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65,
  1885. 0x78, 0x74, 0x49, 0x64, 0x22, 0xe0, 0x01, 0x0a, 0x0c, 0x55, 0x73, 0x65, 0x72, 0x52, 0x6f, 0x6f,
  1886. 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54,
  1887. 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f,
  1888. 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  1889. 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  1890. 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x03,
  1891. 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12,
  1892. 0x20, 0x0a, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x04,
  1893. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
  1894. 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20,
  1895. 0x01, 0x28, 0x03, 0x52, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20, 0x0a,
  1896. 0x0b, 0x6c, 0x69, 0x6b, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x06, 0x20, 0x01,
  1897. 0x28, 0x03, 0x52, 0x0b, 0x6c, 0x69, 0x6b, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x12,
  1898. 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52,
  1899. 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22, 0x61, 0x0a, 0x18, 0x50, 0x61, 0x72, 0x74, 0x6e,
  1900. 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  1901. 0x70, 0x6c, 0x79, 0x12, 0x2d, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28,
  1902. 0x0b, 0x32, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x50, 0x61, 0x72,
  1903. 0x74, 0x6e, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69,
  1904. 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01,
  1905. 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x22, 0xa3, 0x03, 0x0a, 0x0f, 0x50,
  1906. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x24,
  1907. 0x0a, 0x0d, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x75, 0x6d, 0x18,
  1908. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x53, 0x65, 0x6e,
  1909. 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64,
  1910. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64,
  1911. 0x12, 0x1c, 0x0a, 0x09, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20,
  1912. 0x01, 0x28, 0x03, 0x52, 0x09, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x20,
  1913. 0x0a, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20,
  1914. 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
  1915. 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01,
  1916. 0x28, 0x03, 0x52, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07,
  1917. 0x62, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x62,
  1918. 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x07,
  1919. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65,
  1920. 0x78, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1c, 0x0a, 0x09,
  1921. 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52,
  1922. 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69,
  1923. 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69,
  1924. 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x0b, 0x20,
  1925. 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x69, 0x6b, 0x65,
  1926. 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6c,
  1927. 0x69, 0x6b, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f,
  1928. 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d,
  1929. 0x49, 0x64, 0x12, 0x2c, 0x0a, 0x11, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x53, 0x65, 0x6e, 0x64,
  1930. 0x42, 0x61, 0x73, 0x65, 0x4e, 0x75, 0x6d, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x11, 0x70,
  1931. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x53, 0x65, 0x6e, 0x64, 0x42, 0x61, 0x73, 0x65, 0x4e, 0x75, 0x6d,
  1932. 0x22, 0xad, 0x01, 0x0a, 0x13, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x52,
  1933. 0x6f, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x65, 0x72, 0x73,
  1934. 0x6f, 0x6e, 0x49, 0x64, 0x31, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x65, 0x72,
  1935. 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x31, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  1936. 0x54, 0x79, 0x70, 0x65, 0x31, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x65, 0x72,
  1937. 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x31, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x65, 0x72, 0x73,
  1938. 0x6f, 0x6e, 0x49, 0x64, 0x32, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x65, 0x72,
  1939. 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x32, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  1940. 0x54, 0x79, 0x70, 0x65, 0x32, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x65, 0x72,
  1941. 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x32, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x6f, 0x75, 0x72,
  1942. 0x63, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
  1943. 0x22, 0x47, 0x0a, 0x11, 0x53, 0x65, 0x74, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x43, 0x68, 0x61, 0x74,
  1944. 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  1945. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  1946. 0x64, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  1947. 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22, 0xac, 0x01, 0x0a, 0x0e, 0x52, 0x65,
  1948. 0x63, 0x65, 0x69, 0x76, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06,
  1949. 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6d, 0x65,
  1950. 0x74, 0x68, 0x6f, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x01,
  1951. 0x28, 0x0c, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x03,
  1952. 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x77, 0x65, 0x62, 0x73,
  1953. 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x54, 0x61, 0x67, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c,
  1954. 0x77, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x54, 0x61, 0x67, 0x12, 0x1e, 0x0a, 0x0a,
  1955. 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
  1956. 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08,
  1957. 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  1958. 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x0e, 0x0a, 0x0c, 0x52, 0x65, 0x63, 0x65,
  1959. 0x69, 0x76, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x6f, 0x0a, 0x23, 0x43, 0x68, 0x65, 0x63,
  1960. 0x6b, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65,
  1961. 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12,
  1962. 0x30, 0x0a, 0x13, 0x69, 0x73, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69,
  1963. 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x13, 0x69, 0x73,
  1964. 0x42, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69,
  1965. 0x70, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  1966. 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22, 0x23, 0x0a, 0x09, 0x52, 0x6f, 0x6f,
  1967. 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64,
  1968. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22, 0x6c,
  1969. 0x0a, 0x16, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73,
  1970. 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d,
  1971. 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64,
  1972. 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02,
  1973. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65,
  1974. 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01,
  1975. 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x22, 0x9f, 0x01, 0x0a,
  1976. 0x19, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c,
  1977. 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65,
  1978. 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74,
  1979. 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01,
  1980. 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f,
  1981. 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d,
  1982. 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65,
  1983. 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79,
  1984. 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x05,
  1985. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x22, 0xb2,
  1986. 0x01, 0x0a, 0x0a, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x18, 0x0a,
  1987. 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  1988. 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49,
  1989. 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x12,
  1990. 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01,
  1991. 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x1a, 0x0a,
  1992. 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
  1993. 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65,
  1994. 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73,
  1995. 0x65, 0x78, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x14, 0x0a,
  1996. 0x05, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x18, 0x07, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x72, 0x65,
  1997. 0x70, 0x6c, 0x79, 0x22, 0x70, 0x0a, 0x0c, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x49,
  1998. 0x6e, 0x66, 0x6f, 0x12, 0x10, 0x0a, 0x03, 0x6e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  1999. 0x52, 0x03, 0x6e, 0x75, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x4e, 0x75,
  2000. 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x4e, 0x75,
  2001. 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20,
  2002. 0x01, 0x28, 0x03, 0x52, 0x08, 0x73, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x16, 0x0a,
  2003. 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72,
  2004. 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22, 0x2a, 0x0a, 0x10, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65,
  2005. 0x72, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f,
  2006. 0x6d, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49,
  2007. 0x64, 0x22, 0x4d, 0x0a, 0x11, 0x55, 0x70, 0x4c, 0x69, 0x6b, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69,
  2008. 0x74, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x69, 0x6b, 0x65, 0x61, 0x62,
  2009. 0x69, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6c, 0x69, 0x6b,
  2010. 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d,
  2011. 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64,
  2012. 0x32, 0xf6, 0x1d, 0x0a, 0x04, 0x43, 0x68, 0x61, 0x74, 0x12, 0x69, 0x0a, 0x1e, 0x43, 0x68, 0x65,
  2013. 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x73, 0x52,
  2014. 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x12, 0x18, 0x2e, 0x61, 0x70,
  2015. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x73,
  2016. 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74,
  2017. 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  2018. 0x72, 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x52,
  2019. 0x65, 0x70, 0x6c, 0x79, 0x12, 0x44, 0x0a, 0x0e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x68,
  2020. 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61,
  2021. 0x74, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d,
  2022. 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74,
  2023. 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x62, 0x0a, 0x14, 0x46, 0x69,
  2024. 0x6e, 0x64, 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69,
  2025. 0x73, 0x74, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2026. 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x41, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f,
  2027. 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2028. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50,
  2029. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x69,
  2030. 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50,
  2031. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2032. 0x63, 0x68, 0x61, 0x74, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65,
  2033. 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75,
  2034. 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2035. 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  2036. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x61, 0x0a, 0x13, 0x50, 0x61, 0x72,
  2037. 0x74, 0x6e, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74,
  2038. 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x50, 0x61, 0x72, 0x74,
  2039. 0x6e, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52,
  2040. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61,
  2041. 0x74, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f,
  2042. 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x58, 0x0a, 0x10,
  2043. 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74,
  2044. 0x12, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x55, 0x73, 0x65, 0x72,
  2045. 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75,
  2046. 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x55,
  2047. 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52,
  2048. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3d, 0x0a, 0x07, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76,
  2049. 0x65, 0x12, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x52, 0x65, 0x63,
  2050. 0x65, 0x69, 0x76, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70,
  2051. 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x52, 0x65,
  2052. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x5c, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61,
  2053. 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x23, 0x2e, 0x61, 0x70,
  2054. 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52,
  2055. 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2056. 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68,
  2057. 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c,
  2058. 0x79, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x0f, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52,
  2059. 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61,
  2060. 0x74, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73,
  2061. 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2062. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73,
  2063. 0x67, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x0c, 0x53, 0x65, 0x74, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x43,
  2064. 0x68, 0x61, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x53,
  2065. 0x65, 0x74, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x43, 0x68, 0x61, 0x74, 0x50, 0x61, 0x72, 0x61, 0x6d,
  2066. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  2067. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x43, 0x0a, 0x0a, 0x44, 0x65,
  2068. 0x6c, 0x65, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2069. 0x68, 0x61, 0x74, 0x2e, 0x53, 0x65, 0x74, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x43, 0x68, 0x61, 0x74,
  2070. 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  2071. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12,
  2072. 0x3d, 0x0a, 0x06, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2073. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71,
  2074. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  2075. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x4d,
  2076. 0x0a, 0x0f, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72,
  2077. 0x64, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x50, 0x61, 0x72,
  2078. 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
  2079. 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  2080. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x4e, 0x0a,
  2081. 0x0f, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x43, 0x61, 0x72, 0x64, 0x4d, 0x73, 0x67,
  2082. 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x46, 0x69, 0x6e, 0x64,
  2083. 0x52, 0x6f, 0x6f, 0x6d, 0x43, 0x61, 0x72, 0x64, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65,
  2084. 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2085. 0x52, 0x6f, 0x6f, 0x6d, 0x43, 0x68, 0x61, 0x74, 0x4d, 0x73, 0x67, 0x22, 0x00, 0x12, 0x4e, 0x0a,
  2086. 0x0f, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x4e, 0x75, 0x6d,
  2087. 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65,
  2088. 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x1e, 0x2e, 0x61, 0x70,
  2089. 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x74, 0x52, 0x65,
  2090. 0x70, 0x6c, 0x79, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x44, 0x0a,
  2091. 0x0b, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1e, 0x2e, 0x61,
  2092. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
  2093. 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x61,
  2094. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49,
  2095. 0x44, 0x22, 0x00, 0x12, 0x47, 0x0a, 0x0b, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x72,
  2096. 0x69, 0x70, 0x12, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2097. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65,
  2098. 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2099. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x0b,
  2100. 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1c, 0x2e, 0x61, 0x70,
  2101. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72,
  2102. 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2103. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c,
  2104. 0x79, 0x22, 0x00, 0x12, 0x4d, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x74, 0x68, 0x65, 0x72,
  2105. 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  2106. 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x53, 0x63, 0x72, 0x69,
  2107. 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2108. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79,
  2109. 0x22, 0x00, 0x12, 0x4c, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d,
  2110. 0x65, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2111. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52,
  2112. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  2113. 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
  2114. 0x12, 0x4f, 0x0a, 0x0f, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x6f, 0x6f, 0x6b, 0x53, 0x63,
  2115. 0x72, 0x69, 0x70, 0x12, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2116. 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x6f, 0x6f, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70,
  2117. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  2118. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22,
  2119. 0x00, 0x12, 0x47, 0x0a, 0x13, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x43, 0x6c, 0x69, 0x63, 0x6b,
  2120. 0x4c, 0x6f, 0x6f, 0x6b, 0x42, 0x61, 0x63, 0x6b, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2121. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61,
  2122. 0x6d, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53,
  2123. 0x63, 0x72, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x00, 0x12, 0x4f, 0x0a, 0x10, 0x50, 0x65,
  2124. 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1d,
  2125. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x70, 0x6c,
  2126. 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e,
  2127. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52,
  2128. 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x00, 0x12, 0x44, 0x0a, 0x0d, 0x47,
  2129. 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1b, 0x2e, 0x61,
  2130. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69,
  2131. 0x6e, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2132. 0x63, 0x68, 0x61, 0x74, 0x2e, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x49, 0x6e, 0x66, 0x6f, 0x22,
  2133. 0x00, 0x12, 0x54, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4d, 0x61,
  2134. 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  2135. 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x75,
  2136. 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x47,
  2137. 0x65, 0x74, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67,
  2138. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x6c, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x4d, 0x61,
  2139. 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66,
  2140. 0x6f, 0x12, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x47, 0x65, 0x74,
  2141. 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49,
  2142. 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69,
  2143. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x61, 0x74, 0x63, 0x68,
  2144. 0x69, 0x6e, 0x67, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65,
  2145. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x0e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  2146. 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x12, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68,
  2147. 0x61, 0x74, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
  2148. 0x74, 0x49, 0x44, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  2149. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  2150. 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x51, 0x0a, 0x14, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  2151. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x12, 0x1f, 0x2e,
  2152. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  2153. 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16,
  2154. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  2155. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x5d, 0x0a, 0x13, 0x46, 0x69, 0x6e, 0x64,
  2156. 0x43, 0x68, 0x61, 0x74, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12,
  2157. 0x23, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43,
  2158. 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71,
  2159. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2160. 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74,
  2161. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x48, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x55,
  2162. 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69,
  2163. 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b,
  2164. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  2165. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22,
  2166. 0x00, 0x12, 0x4a, 0x0a, 0x11, 0x55, 0x73, 0x65, 0x72, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x50,
  2167. 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61,
  2168. 0x74, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75,
  2169. 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  2170. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x4a, 0x0a,
  2171. 0x0d, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x12, 0x19,
  2172. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d,
  2173. 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2174. 0x63, 0x68, 0x61, 0x74, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x50, 0x72, 0x6f, 0x66,
  2175. 0x69, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x51, 0x0a, 0x12, 0x47, 0x65, 0x74,
  2176. 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4e, 0x75, 0x6d, 0x12,
  2177. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  2178. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68,
  2179. 0x61, 0x74, 0x2e, 0x47, 0x65, 0x74, 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x50, 0x65, 0x72, 0x73,
  2180. 0x6f, 0x6e, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x4d, 0x0a, 0x14,
  2181. 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x41, 0x6c, 0x6c, 0x55, 0x6e, 0x72, 0x65, 0x61,
  2182. 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2183. 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a,
  2184. 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x55, 0x6e, 0x72, 0x65, 0x61,
  2185. 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x50, 0x0a, 0x17, 0x46,
  2186. 0x69, 0x6e, 0x64, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x41, 0x6c, 0x6c, 0x55, 0x6e, 0x72,
  2187. 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  2188. 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61,
  2189. 0x6d, 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x55, 0x6e, 0x72,
  2190. 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x49, 0x0a,
  2191. 0x13, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d, 0x42, 0x79, 0x50, 0x65,
  2192. 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2193. 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x73, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16,
  2194. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x6f,
  2195. 0x6f, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x00, 0x12, 0x4f, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x50,
  2196. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d, 0x42, 0x79, 0x50, 0x65, 0x72, 0x73,
  2197. 0x6f, 0x6e, 0x12, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2198. 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x73, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x19, 0x2e, 0x61,
  2199. 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52,
  2200. 0x6f, 0x6f, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x00, 0x12, 0x65, 0x0a, 0x13, 0x4d, 0x61, 0x6e,
  2201. 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74,
  2202. 0x12, 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61,
  2203. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73,
  2204. 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2205. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e,
  2206. 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
  2207. 0x12, 0x6c, 0x0a, 0x19, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43,
  2208. 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2c, 0x2e,
  2209. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67,
  2210. 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64,
  2211. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70,
  2212. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63,
  2213. 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x60,
  2214. 0x0a, 0x14, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72,
  2215. 0x69, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  2216. 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x53,
  2217. 0x63, 0x72, 0x69, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  2218. 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e,
  2219. 0x61, 0x67, 0x65, 0x72, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
  2220. 0x12, 0x5d, 0x0a, 0x16, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74,
  2221. 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x54, 0x65, 0x78, 0x74, 0x12, 0x29, 0x2e, 0x61, 0x70, 0x69,
  2222. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55,
  2223. 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x54, 0x65, 0x78, 0x74, 0x52, 0x65,
  2224. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  2225. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12,
  2226. 0x63, 0x0a, 0x19, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  2227. 0x53, 0x63, 0x72, 0x69, 0x70, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x12, 0x2c, 0x2e, 0x61,
  2228. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  2229. 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x50, 0x69, 0x63, 0x74,
  2230. 0x75, 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  2231. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  2232. 0x74, 0x79, 0x22, 0x00, 0x12, 0x43, 0x0a, 0x12, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x44,
  2233. 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x13, 0x2e, 0x61, 0x70, 0x69,
  2234. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a,
  2235. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  2236. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x6b, 0x0a, 0x15, 0x4d, 0x61, 0x6e,
  2237. 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x4c, 0x69,
  2238. 0x73, 0x74, 0x12, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2239. 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x70, 0x6f, 0x72,
  2240. 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x61,
  2241. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  2242. 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52,
  2243. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x80, 0x01, 0x0a, 0x1c, 0x4d, 0x61, 0x6e, 0x61, 0x67,
  2244. 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x44, 0x65, 0x74, 0x61,
  2245. 0x69, 0x6c, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  2246. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64,
  2247. 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x4c, 0x69, 0x73,
  2248. 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2249. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e,
  2250. 0x64, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x4c, 0x69,
  2251. 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x42, 0x3d, 0x0a, 0x08, 0x61, 0x70, 0x69,
  2252. 0x2e, 0x63, 0x68, 0x61, 0x74, 0x50, 0x01, 0x5a, 0x2f, 0x67, 0x69, 0x74, 0x2e, 0x69, 0x6b, 0x75,
  2253. 0x62, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2f, 0x70,
  2254. 0x77, 0x2d, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x63,
  2255. 0x68, 0x61, 0x74, 0x3b, 0x63, 0x68, 0x61, 0x74, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  2256. }
  2257. var (
  2258. file_chat_proto_rawDescOnce sync.Once
  2259. file_chat_proto_rawDescData = file_chat_proto_rawDesc
  2260. )
  2261. func file_chat_proto_rawDescGZIP() []byte {
  2262. file_chat_proto_rawDescOnce.Do(func() {
  2263. file_chat_proto_rawDescData = protoimpl.X.CompressGZIP(file_chat_proto_rawDescData)
  2264. })
  2265. return file_chat_proto_rawDescData
  2266. }
  2267. var file_chat_proto_msgTypes = make([]protoimpl.MessageInfo, 31)
  2268. var file_chat_proto_goTypes = []interface{}{
  2269. (*GetOnlinePersonNumReply)(nil), // 0: api.chat.GetOnlinePersonNumReply
  2270. (*GetMatchingPartnerInfoRequest)(nil), // 1: api.chat.GetMatchingPartnerInfoRequest
  2271. (*GetRoomProfitReply)(nil), // 2: api.chat.GetRoomProfitReply
  2272. (*UserUnlockRequest)(nil), // 3: api.chat.UserUnlockRequest
  2273. (*PartnerCollectIDsRequest)(nil), // 4: api.chat.PartnerCollectIDsRequest
  2274. (*PartnerCollectRequest)(nil), // 5: api.chat.PartnerCollectRequest
  2275. (*GetRandomMatchingReply)(nil), // 6: api.chat.GetRandomMatchingReply
  2276. (*FindNotReplyNumReply)(nil), // 7: api.chat.FindNotReplyNumReply
  2277. (*UnreadNumReply)(nil), // 8: api.chat.UnreadNumReply
  2278. (*FindRecommendPersonListRequest)(nil), // 9: api.chat.FindRecommendPersonListRequest
  2279. (*FindRoomCardMsgRequest)(nil), // 10: api.chat.FindRoomCardMsgRequest
  2280. (*PartnerGetAwardReply)(nil), // 11: api.chat.PartnerGetAwardReply
  2281. (*PartnerGetAwardRequest)(nil), // 12: api.chat.PartnerGetAwardRequest
  2282. (*PartnerFindRoomListRequest)(nil), // 13: api.chat.PartnerFindRoomListRequest
  2283. (*UserFindRoomListRequest)(nil), // 14: api.chat.UserFindRoomListRequest
  2284. (*UserFindRoomListReply)(nil), // 15: api.chat.UserFindRoomListReply
  2285. (*UserRoomInfo)(nil), // 16: api.chat.UserRoomInfo
  2286. (*PartnerFindRoomListReply)(nil), // 17: api.chat.PartnerFindRoomListReply
  2287. (*PartnerRoomInfo)(nil), // 18: api.chat.PartnerRoomInfo
  2288. (*CreateChatRoomParam)(nil), // 19: api.chat.CreateChatRoomParam
  2289. (*SetBlackChatParam)(nil), // 20: api.chat.SetBlackChatParam
  2290. (*ReceiveRequest)(nil), // 21: api.chat.ReceiveRequest
  2291. (*ReceiveReply)(nil), // 22: api.chat.ReceiveReply
  2292. (*CheckUserPartnerIsRelationshipReply)(nil), // 23: api.chat.CheckUserPartnerIsRelationshipReply
  2293. (*RoomReply)(nil), // 24: api.chat.RoomReply
  2294. (*FindChatRoomMsgRequest)(nil), // 25: api.chat.FindChatRoomMsgRequest
  2295. (*FindChatRecordListRequest)(nil), // 26: api.chat.FindChatRecordListRequest
  2296. (*WindowInfo)(nil), // 27: api.chat.WindowInfo
  2297. (*ReminderInfo)(nil), // 28: api.chat.ReminderInfo
  2298. (*ReminderUserInfo)(nil), // 29: api.chat.ReminderUserInfo
  2299. (*UpLikeabilityInfo)(nil), // 30: api.chat.UpLikeabilityInfo
  2300. (*common.UserIDsParam)(nil), // 31: api.common.UserIDsParam
  2301. (*common.ListPageAndPersonRequest)(nil), // 32: api.common.ListPageAndPersonRequest
  2302. (*common.ReportRequest)(nil), // 33: api.common.ReportRequest
  2303. (*common.PersonIDParam)(nil), // 34: api.common.PersonIDParam
  2304. (*common.CreateScripRequest)(nil), // 35: api.common.CreateScripRequest
  2305. (*common.DeleteScripRequest)(nil), // 36: api.common.DeleteScripRequest
  2306. (*common.FindScripRequest)(nil), // 37: api.common.FindScripRequest
  2307. (*common.FindOtherScripRequest)(nil), // 38: api.common.FindOtherScripRequest
  2308. (*common.PersonLookScripRequest)(nil), // 39: api.common.PersonLookScripRequest
  2309. (*common.PersonParam)(nil), // 40: api.common.PersonParam
  2310. (*common.ReplyScripRequest)(nil), // 41: api.common.ReplyScripRequest
  2311. (*common.MatchingRequest)(nil), // 42: api.common.MatchingRequest
  2312. (*common.RoomIDRequest)(nil), // 43: api.common.RoomIDRequest
  2313. (*emptypb.Empty)(nil), // 44: google.protobuf.Empty
  2314. (*common.ManagerFindRoomListRequest)(nil), // 45: api.common.ManagerFindRoomListRequest
  2315. (*common.ManagerFindChatRecordListRequest)(nil), // 46: api.common.ManagerFindChatRecordListRequest
  2316. (*common.ManagerFindScripListRequest)(nil), // 47: api.common.ManagerFindScripListRequest
  2317. (*common.ManagerUpdateScripTextRequest)(nil), // 48: api.common.ManagerUpdateScripTextRequest
  2318. (*common.ManagerUpdateScripPictureRequest)(nil), // 49: api.common.ManagerUpdateScripPictureRequest
  2319. (*common.IDParam)(nil), // 50: api.common.IDParam
  2320. (*common.ManagerFindReportListRequest)(nil), // 51: api.common.ManagerFindReportListRequest
  2321. (*common.ManagerFindReportDetailsListRequest)(nil), // 52: api.common.ManagerFindReportDetailsListRequest
  2322. (*common.RecommendPersonListReply)(nil), // 53: api.common.RecommendPersonListReply
  2323. (*common.ChatRecordListReply)(nil), // 54: api.common.ChatRecordListReply
  2324. (*common.ChatRoomMsg)(nil), // 55: api.common.ChatRoomMsg
  2325. (*common.RoomChatMsg)(nil), // 56: api.common.RoomChatMsg
  2326. (*common.ScripID)(nil), // 57: api.common.ScripID
  2327. (*common.ScripReply)(nil), // 58: api.common.ScripReply
  2328. (*common.ScripInfo)(nil), // 59: api.common.ScripInfo
  2329. (*common.ChatRecordInfo)(nil), // 60: api.common.ChatRecordInfo
  2330. (*common.GetMatchingPartnerInfoReply)(nil), // 61: api.common.GetMatchingPartnerInfoReply
  2331. (*common.ManagerFindRoomListReply)(nil), // 62: api.common.ManagerFindRoomListReply
  2332. (*common.ManagerScripReply)(nil), // 63: api.common.ManagerScripReply
  2333. (*common.ManagerFindReportListReply)(nil), // 64: api.common.ManagerFindReportListReply
  2334. (*common.ManagerFindReportDetailsListReply)(nil), // 65: api.common.ManagerFindReportDetailsListReply
  2335. }
  2336. var file_chat_proto_depIdxs = []int32{
  2337. 16, // 0: api.chat.UserFindRoomListReply.list:type_name -> api.chat.UserRoomInfo
  2338. 18, // 1: api.chat.PartnerFindRoomListReply.list:type_name -> api.chat.PartnerRoomInfo
  2339. 31, // 2: api.chat.Chat.CheckUserPartnerIsRelationship:input_type -> api.common.UserIDsParam
  2340. 19, // 3: api.chat.Chat.CreateChatRoom:input_type -> api.chat.CreateChatRoomParam
  2341. 32, // 4: api.chat.Chat.FindOnlinePersonList:input_type -> api.common.ListPageAndPersonRequest
  2342. 9, // 5: api.chat.Chat.FindRecommendPersonList:input_type -> api.chat.FindRecommendPersonListRequest
  2343. 13, // 6: api.chat.Chat.PartnerFindRoomList:input_type -> api.chat.PartnerFindRoomListRequest
  2344. 14, // 7: api.chat.Chat.UserFindRoomList:input_type -> api.chat.UserFindRoomListRequest
  2345. 21, // 8: api.chat.Chat.Receive:input_type -> api.chat.ReceiveRequest
  2346. 26, // 9: api.chat.Chat.FindChatRecordList:input_type -> api.chat.FindChatRecordListRequest
  2347. 25, // 10: api.chat.Chat.FindChatRoomMsg:input_type -> api.chat.FindChatRoomMsgRequest
  2348. 20, // 11: api.chat.Chat.SetBlackChat:input_type -> api.chat.SetBlackChatParam
  2349. 20, // 12: api.chat.Chat.DeleteChat:input_type -> api.chat.SetBlackChatParam
  2350. 33, // 13: api.chat.Chat.Report:input_type -> api.common.ReportRequest
  2351. 12, // 14: api.chat.Chat.PartnerGetAward:input_type -> api.chat.PartnerGetAwardRequest
  2352. 10, // 15: api.chat.Chat.FindRoomCardMsg:input_type -> api.chat.FindRoomCardMsgRequest
  2353. 34, // 16: api.chat.Chat.FindNotReplyNum:input_type -> api.common.PersonIDParam
  2354. 35, // 17: api.chat.Chat.CreateScrip:input_type -> api.common.CreateScripRequest
  2355. 36, // 18: api.chat.Chat.DeleteScrip:input_type -> api.common.DeleteScripRequest
  2356. 37, // 19: api.chat.Chat.FindMyScrip:input_type -> api.common.FindScripRequest
  2357. 38, // 20: api.chat.Chat.FindOtherScrip:input_type -> api.common.FindOtherScripRequest
  2358. 37, // 21: api.chat.Chat.FindRecommendScrip:input_type -> api.common.FindScripRequest
  2359. 39, // 22: api.chat.Chat.PersonLookScrip:input_type -> api.common.PersonLookScripRequest
  2360. 40, // 23: api.chat.Chat.PersonClickLookBack:input_type -> api.common.PersonParam
  2361. 41, // 24: api.chat.Chat.PersonReplyScrip:input_type -> api.common.ReplyScripRequest
  2362. 42, // 25: api.chat.Chat.GetWindowInfo:input_type -> api.common.MatchingRequest
  2363. 42, // 26: api.chat.Chat.GetRandomMatching:input_type -> api.common.MatchingRequest
  2364. 1, // 27: api.chat.Chat.GetMatchingPartnerInfo:input_type -> api.chat.GetMatchingPartnerInfoRequest
  2365. 4, // 28: api.chat.Chat.PartnerCollect:input_type -> api.chat.PartnerCollectIDsRequest
  2366. 5, // 29: api.chat.Chat.PartnerDeleteCollect:input_type -> api.chat.PartnerCollectRequest
  2367. 26, // 30: api.chat.Chat.FindChatCollectList:input_type -> api.chat.FindChatRecordListRequest
  2368. 3, // 31: api.chat.Chat.UserUnlockVoice:input_type -> api.chat.UserUnlockRequest
  2369. 3, // 32: api.chat.Chat.UserUnlockPicture:input_type -> api.chat.UserUnlockRequest
  2370. 43, // 33: api.chat.Chat.GetRoomProfit:input_type -> api.common.RoomIDRequest
  2371. 44, // 34: api.chat.Chat.GetOnlinePersonNum:input_type -> google.protobuf.Empty
  2372. 34, // 35: api.chat.Chat.FindUserAllUnreadNum:input_type -> api.common.PersonIDParam
  2373. 34, // 36: api.chat.Chat.FindPartnerAllUnreadNum:input_type -> api.common.PersonIDParam
  2374. 31, // 37: api.chat.Chat.GetUserRoomByPerson:input_type -> api.common.UserIDsParam
  2375. 31, // 38: api.chat.Chat.GetPartnerRoomByPerson:input_type -> api.common.UserIDsParam
  2376. 45, // 39: api.chat.Chat.ManagerFindRoomList:input_type -> api.common.ManagerFindRoomListRequest
  2377. 46, // 40: api.chat.Chat.ManagerFindChatRecordList:input_type -> api.common.ManagerFindChatRecordListRequest
  2378. 47, // 41: api.chat.Chat.ManagerFindScripList:input_type -> api.common.ManagerFindScripListRequest
  2379. 48, // 42: api.chat.Chat.ManagerUpdateScripText:input_type -> api.common.ManagerUpdateScripTextRequest
  2380. 49, // 43: api.chat.Chat.ManagerUpdateScripPicture:input_type -> api.common.ManagerUpdateScripPictureRequest
  2381. 50, // 44: api.chat.Chat.ManagerDeleteScrip:input_type -> api.common.IDParam
  2382. 51, // 45: api.chat.Chat.ManagerFindReportList:input_type -> api.common.ManagerFindReportListRequest
  2383. 52, // 46: api.chat.Chat.ManagerFindReportDetailsList:input_type -> api.common.ManagerFindReportDetailsListRequest
  2384. 23, // 47: api.chat.Chat.CheckUserPartnerIsRelationship:output_type -> api.chat.CheckUserPartnerIsRelationshipReply
  2385. 24, // 48: api.chat.Chat.CreateChatRoom:output_type -> api.chat.RoomReply
  2386. 53, // 49: api.chat.Chat.FindOnlinePersonList:output_type -> api.common.RecommendPersonListReply
  2387. 53, // 50: api.chat.Chat.FindRecommendPersonList:output_type -> api.common.RecommendPersonListReply
  2388. 17, // 51: api.chat.Chat.PartnerFindRoomList:output_type -> api.chat.PartnerFindRoomListReply
  2389. 15, // 52: api.chat.Chat.UserFindRoomList:output_type -> api.chat.UserFindRoomListReply
  2390. 22, // 53: api.chat.Chat.Receive:output_type -> api.chat.ReceiveReply
  2391. 54, // 54: api.chat.Chat.FindChatRecordList:output_type -> api.common.ChatRecordListReply
  2392. 55, // 55: api.chat.Chat.FindChatRoomMsg:output_type -> api.common.ChatRoomMsg
  2393. 44, // 56: api.chat.Chat.SetBlackChat:output_type -> google.protobuf.Empty
  2394. 44, // 57: api.chat.Chat.DeleteChat:output_type -> google.protobuf.Empty
  2395. 44, // 58: api.chat.Chat.Report:output_type -> google.protobuf.Empty
  2396. 44, // 59: api.chat.Chat.PartnerGetAward:output_type -> google.protobuf.Empty
  2397. 56, // 60: api.chat.Chat.FindRoomCardMsg:output_type -> api.common.RoomChatMsg
  2398. 7, // 61: api.chat.Chat.FindNotReplyNum:output_type -> api.chat.FindNotReplyNumReply
  2399. 57, // 62: api.chat.Chat.CreateScrip:output_type -> api.common.ScripID
  2400. 44, // 63: api.chat.Chat.DeleteScrip:output_type -> google.protobuf.Empty
  2401. 58, // 64: api.chat.Chat.FindMyScrip:output_type -> api.common.ScripReply
  2402. 58, // 65: api.chat.Chat.FindOtherScrip:output_type -> api.common.ScripReply
  2403. 58, // 66: api.chat.Chat.FindRecommendScrip:output_type -> api.common.ScripReply
  2404. 44, // 67: api.chat.Chat.PersonLookScrip:output_type -> google.protobuf.Empty
  2405. 59, // 68: api.chat.Chat.PersonClickLookBack:output_type -> api.common.ScripInfo
  2406. 60, // 69: api.chat.Chat.PersonReplyScrip:output_type -> api.common.ChatRecordInfo
  2407. 27, // 70: api.chat.Chat.GetWindowInfo:output_type -> api.chat.WindowInfo
  2408. 6, // 71: api.chat.Chat.GetRandomMatching:output_type -> api.chat.GetRandomMatchingReply
  2409. 61, // 72: api.chat.Chat.GetMatchingPartnerInfo:output_type -> api.common.GetMatchingPartnerInfoReply
  2410. 44, // 73: api.chat.Chat.PartnerCollect:output_type -> google.protobuf.Empty
  2411. 44, // 74: api.chat.Chat.PartnerDeleteCollect:output_type -> google.protobuf.Empty
  2412. 54, // 75: api.chat.Chat.FindChatCollectList:output_type -> api.common.ChatRecordListReply
  2413. 44, // 76: api.chat.Chat.UserUnlockVoice:output_type -> google.protobuf.Empty
  2414. 44, // 77: api.chat.Chat.UserUnlockPicture:output_type -> google.protobuf.Empty
  2415. 2, // 78: api.chat.Chat.GetRoomProfit:output_type -> api.chat.GetRoomProfitReply
  2416. 0, // 79: api.chat.Chat.GetOnlinePersonNum:output_type -> api.chat.GetOnlinePersonNumReply
  2417. 8, // 80: api.chat.Chat.FindUserAllUnreadNum:output_type -> api.chat.UnreadNumReply
  2418. 8, // 81: api.chat.Chat.FindPartnerAllUnreadNum:output_type -> api.chat.UnreadNumReply
  2419. 16, // 82: api.chat.Chat.GetUserRoomByPerson:output_type -> api.chat.UserRoomInfo
  2420. 18, // 83: api.chat.Chat.GetPartnerRoomByPerson:output_type -> api.chat.PartnerRoomInfo
  2421. 62, // 84: api.chat.Chat.ManagerFindRoomList:output_type -> api.common.ManagerFindRoomListReply
  2422. 54, // 85: api.chat.Chat.ManagerFindChatRecordList:output_type -> api.common.ChatRecordListReply
  2423. 63, // 86: api.chat.Chat.ManagerFindScripList:output_type -> api.common.ManagerScripReply
  2424. 44, // 87: api.chat.Chat.ManagerUpdateScripText:output_type -> google.protobuf.Empty
  2425. 44, // 88: api.chat.Chat.ManagerUpdateScripPicture:output_type -> google.protobuf.Empty
  2426. 44, // 89: api.chat.Chat.ManagerDeleteScrip:output_type -> google.protobuf.Empty
  2427. 64, // 90: api.chat.Chat.ManagerFindReportList:output_type -> api.common.ManagerFindReportListReply
  2428. 65, // 91: api.chat.Chat.ManagerFindReportDetailsList:output_type -> api.common.ManagerFindReportDetailsListReply
  2429. 47, // [47:92] is the sub-list for method output_type
  2430. 2, // [2:47] is the sub-list for method input_type
  2431. 2, // [2:2] is the sub-list for extension type_name
  2432. 2, // [2:2] is the sub-list for extension extendee
  2433. 0, // [0:2] is the sub-list for field type_name
  2434. }
  2435. func init() { file_chat_proto_init() }
  2436. func file_chat_proto_init() {
  2437. if File_chat_proto != nil {
  2438. return
  2439. }
  2440. if !protoimpl.UnsafeEnabled {
  2441. file_chat_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  2442. switch v := v.(*GetOnlinePersonNumReply); i {
  2443. case 0:
  2444. return &v.state
  2445. case 1:
  2446. return &v.sizeCache
  2447. case 2:
  2448. return &v.unknownFields
  2449. default:
  2450. return nil
  2451. }
  2452. }
  2453. file_chat_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  2454. switch v := v.(*GetMatchingPartnerInfoRequest); i {
  2455. case 0:
  2456. return &v.state
  2457. case 1:
  2458. return &v.sizeCache
  2459. case 2:
  2460. return &v.unknownFields
  2461. default:
  2462. return nil
  2463. }
  2464. }
  2465. file_chat_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  2466. switch v := v.(*GetRoomProfitReply); i {
  2467. case 0:
  2468. return &v.state
  2469. case 1:
  2470. return &v.sizeCache
  2471. case 2:
  2472. return &v.unknownFields
  2473. default:
  2474. return nil
  2475. }
  2476. }
  2477. file_chat_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  2478. switch v := v.(*UserUnlockRequest); i {
  2479. case 0:
  2480. return &v.state
  2481. case 1:
  2482. return &v.sizeCache
  2483. case 2:
  2484. return &v.unknownFields
  2485. default:
  2486. return nil
  2487. }
  2488. }
  2489. file_chat_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  2490. switch v := v.(*PartnerCollectIDsRequest); i {
  2491. case 0:
  2492. return &v.state
  2493. case 1:
  2494. return &v.sizeCache
  2495. case 2:
  2496. return &v.unknownFields
  2497. default:
  2498. return nil
  2499. }
  2500. }
  2501. file_chat_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  2502. switch v := v.(*PartnerCollectRequest); i {
  2503. case 0:
  2504. return &v.state
  2505. case 1:
  2506. return &v.sizeCache
  2507. case 2:
  2508. return &v.unknownFields
  2509. default:
  2510. return nil
  2511. }
  2512. }
  2513. file_chat_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  2514. switch v := v.(*GetRandomMatchingReply); i {
  2515. case 0:
  2516. return &v.state
  2517. case 1:
  2518. return &v.sizeCache
  2519. case 2:
  2520. return &v.unknownFields
  2521. default:
  2522. return nil
  2523. }
  2524. }
  2525. file_chat_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  2526. switch v := v.(*FindNotReplyNumReply); i {
  2527. case 0:
  2528. return &v.state
  2529. case 1:
  2530. return &v.sizeCache
  2531. case 2:
  2532. return &v.unknownFields
  2533. default:
  2534. return nil
  2535. }
  2536. }
  2537. file_chat_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  2538. switch v := v.(*UnreadNumReply); i {
  2539. case 0:
  2540. return &v.state
  2541. case 1:
  2542. return &v.sizeCache
  2543. case 2:
  2544. return &v.unknownFields
  2545. default:
  2546. return nil
  2547. }
  2548. }
  2549. file_chat_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  2550. switch v := v.(*FindRecommendPersonListRequest); i {
  2551. case 0:
  2552. return &v.state
  2553. case 1:
  2554. return &v.sizeCache
  2555. case 2:
  2556. return &v.unknownFields
  2557. default:
  2558. return nil
  2559. }
  2560. }
  2561. file_chat_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  2562. switch v := v.(*FindRoomCardMsgRequest); i {
  2563. case 0:
  2564. return &v.state
  2565. case 1:
  2566. return &v.sizeCache
  2567. case 2:
  2568. return &v.unknownFields
  2569. default:
  2570. return nil
  2571. }
  2572. }
  2573. file_chat_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  2574. switch v := v.(*PartnerGetAwardReply); i {
  2575. case 0:
  2576. return &v.state
  2577. case 1:
  2578. return &v.sizeCache
  2579. case 2:
  2580. return &v.unknownFields
  2581. default:
  2582. return nil
  2583. }
  2584. }
  2585. file_chat_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  2586. switch v := v.(*PartnerGetAwardRequest); i {
  2587. case 0:
  2588. return &v.state
  2589. case 1:
  2590. return &v.sizeCache
  2591. case 2:
  2592. return &v.unknownFields
  2593. default:
  2594. return nil
  2595. }
  2596. }
  2597. file_chat_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  2598. switch v := v.(*PartnerFindRoomListRequest); i {
  2599. case 0:
  2600. return &v.state
  2601. case 1:
  2602. return &v.sizeCache
  2603. case 2:
  2604. return &v.unknownFields
  2605. default:
  2606. return nil
  2607. }
  2608. }
  2609. file_chat_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  2610. switch v := v.(*UserFindRoomListRequest); i {
  2611. case 0:
  2612. return &v.state
  2613. case 1:
  2614. return &v.sizeCache
  2615. case 2:
  2616. return &v.unknownFields
  2617. default:
  2618. return nil
  2619. }
  2620. }
  2621. file_chat_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  2622. switch v := v.(*UserFindRoomListReply); i {
  2623. case 0:
  2624. return &v.state
  2625. case 1:
  2626. return &v.sizeCache
  2627. case 2:
  2628. return &v.unknownFields
  2629. default:
  2630. return nil
  2631. }
  2632. }
  2633. file_chat_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  2634. switch v := v.(*UserRoomInfo); i {
  2635. case 0:
  2636. return &v.state
  2637. case 1:
  2638. return &v.sizeCache
  2639. case 2:
  2640. return &v.unknownFields
  2641. default:
  2642. return nil
  2643. }
  2644. }
  2645. file_chat_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  2646. switch v := v.(*PartnerFindRoomListReply); i {
  2647. case 0:
  2648. return &v.state
  2649. case 1:
  2650. return &v.sizeCache
  2651. case 2:
  2652. return &v.unknownFields
  2653. default:
  2654. return nil
  2655. }
  2656. }
  2657. file_chat_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  2658. switch v := v.(*PartnerRoomInfo); i {
  2659. case 0:
  2660. return &v.state
  2661. case 1:
  2662. return &v.sizeCache
  2663. case 2:
  2664. return &v.unknownFields
  2665. default:
  2666. return nil
  2667. }
  2668. }
  2669. file_chat_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  2670. switch v := v.(*CreateChatRoomParam); i {
  2671. case 0:
  2672. return &v.state
  2673. case 1:
  2674. return &v.sizeCache
  2675. case 2:
  2676. return &v.unknownFields
  2677. default:
  2678. return nil
  2679. }
  2680. }
  2681. file_chat_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  2682. switch v := v.(*SetBlackChatParam); i {
  2683. case 0:
  2684. return &v.state
  2685. case 1:
  2686. return &v.sizeCache
  2687. case 2:
  2688. return &v.unknownFields
  2689. default:
  2690. return nil
  2691. }
  2692. }
  2693. file_chat_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  2694. switch v := v.(*ReceiveRequest); i {
  2695. case 0:
  2696. return &v.state
  2697. case 1:
  2698. return &v.sizeCache
  2699. case 2:
  2700. return &v.unknownFields
  2701. default:
  2702. return nil
  2703. }
  2704. }
  2705. file_chat_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  2706. switch v := v.(*ReceiveReply); i {
  2707. case 0:
  2708. return &v.state
  2709. case 1:
  2710. return &v.sizeCache
  2711. case 2:
  2712. return &v.unknownFields
  2713. default:
  2714. return nil
  2715. }
  2716. }
  2717. file_chat_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  2718. switch v := v.(*CheckUserPartnerIsRelationshipReply); i {
  2719. case 0:
  2720. return &v.state
  2721. case 1:
  2722. return &v.sizeCache
  2723. case 2:
  2724. return &v.unknownFields
  2725. default:
  2726. return nil
  2727. }
  2728. }
  2729. file_chat_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  2730. switch v := v.(*RoomReply); i {
  2731. case 0:
  2732. return &v.state
  2733. case 1:
  2734. return &v.sizeCache
  2735. case 2:
  2736. return &v.unknownFields
  2737. default:
  2738. return nil
  2739. }
  2740. }
  2741. file_chat_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  2742. switch v := v.(*FindChatRoomMsgRequest); i {
  2743. case 0:
  2744. return &v.state
  2745. case 1:
  2746. return &v.sizeCache
  2747. case 2:
  2748. return &v.unknownFields
  2749. default:
  2750. return nil
  2751. }
  2752. }
  2753. file_chat_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  2754. switch v := v.(*FindChatRecordListRequest); i {
  2755. case 0:
  2756. return &v.state
  2757. case 1:
  2758. return &v.sizeCache
  2759. case 2:
  2760. return &v.unknownFields
  2761. default:
  2762. return nil
  2763. }
  2764. }
  2765. file_chat_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  2766. switch v := v.(*WindowInfo); i {
  2767. case 0:
  2768. return &v.state
  2769. case 1:
  2770. return &v.sizeCache
  2771. case 2:
  2772. return &v.unknownFields
  2773. default:
  2774. return nil
  2775. }
  2776. }
  2777. file_chat_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  2778. switch v := v.(*ReminderInfo); i {
  2779. case 0:
  2780. return &v.state
  2781. case 1:
  2782. return &v.sizeCache
  2783. case 2:
  2784. return &v.unknownFields
  2785. default:
  2786. return nil
  2787. }
  2788. }
  2789. file_chat_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  2790. switch v := v.(*ReminderUserInfo); i {
  2791. case 0:
  2792. return &v.state
  2793. case 1:
  2794. return &v.sizeCache
  2795. case 2:
  2796. return &v.unknownFields
  2797. default:
  2798. return nil
  2799. }
  2800. }
  2801. file_chat_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  2802. switch v := v.(*UpLikeabilityInfo); i {
  2803. case 0:
  2804. return &v.state
  2805. case 1:
  2806. return &v.sizeCache
  2807. case 2:
  2808. return &v.unknownFields
  2809. default:
  2810. return nil
  2811. }
  2812. }
  2813. }
  2814. type x struct{}
  2815. out := protoimpl.TypeBuilder{
  2816. File: protoimpl.DescBuilder{
  2817. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  2818. RawDescriptor: file_chat_proto_rawDesc,
  2819. NumEnums: 0,
  2820. NumMessages: 31,
  2821. NumExtensions: 0,
  2822. NumServices: 1,
  2823. },
  2824. GoTypes: file_chat_proto_goTypes,
  2825. DependencyIndexes: file_chat_proto_depIdxs,
  2826. MessageInfos: file_chat_proto_msgTypes,
  2827. }.Build()
  2828. File_chat_proto = out.File
  2829. file_chat_proto_rawDesc = nil
  2830. file_chat_proto_goTypes = nil
  2831. file_chat_proto_depIdxs = nil
  2832. }