chat.pb.go 114 KB

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