chat.pb.go 113 KB

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