chat.pb.go 119 KB

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