chat.pb.go 129 KB

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