chat.pb.go 118 KB

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