chat.pb.go 125 KB

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