common.pb.go 155 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016
  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: common.proto
  6. package common
  7. import (
  8. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  9. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  10. reflect "reflect"
  11. sync "sync"
  12. )
  13. const (
  14. // Verify that this generated code is sufficiently up-to-date.
  15. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  16. // Verify that runtime/protoimpl is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  18. )
  19. type UserAndPartnerIdentifyIdParam struct {
  20. state protoimpl.MessageState
  21. sizeCache protoimpl.SizeCache
  22. unknownFields protoimpl.UnknownFields
  23. PartnerIdentifyId string `protobuf:"bytes,1,opt,name=partnerIdentifyId,proto3" json:"partnerIdentifyId"`
  24. UserIdentifyId string `protobuf:"bytes,2,opt,name=userIdentifyId,proto3" json:"userIdentifyId"`
  25. }
  26. func (x *UserAndPartnerIdentifyIdParam) Reset() {
  27. *x = UserAndPartnerIdentifyIdParam{}
  28. if protoimpl.UnsafeEnabled {
  29. mi := &file_common_proto_msgTypes[0]
  30. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  31. ms.StoreMessageInfo(mi)
  32. }
  33. }
  34. func (x *UserAndPartnerIdentifyIdParam) String() string {
  35. return protoimpl.X.MessageStringOf(x)
  36. }
  37. func (*UserAndPartnerIdentifyIdParam) ProtoMessage() {}
  38. func (x *UserAndPartnerIdentifyIdParam) ProtoReflect() protoreflect.Message {
  39. mi := &file_common_proto_msgTypes[0]
  40. if protoimpl.UnsafeEnabled && x != nil {
  41. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  42. if ms.LoadMessageInfo() == nil {
  43. ms.StoreMessageInfo(mi)
  44. }
  45. return ms
  46. }
  47. return mi.MessageOf(x)
  48. }
  49. // Deprecated: Use UserAndPartnerIdentifyIdParam.ProtoReflect.Descriptor instead.
  50. func (*UserAndPartnerIdentifyIdParam) Descriptor() ([]byte, []int) {
  51. return file_common_proto_rawDescGZIP(), []int{0}
  52. }
  53. func (x *UserAndPartnerIdentifyIdParam) GetPartnerIdentifyId() string {
  54. if x != nil {
  55. return x.PartnerIdentifyId
  56. }
  57. return ""
  58. }
  59. func (x *UserAndPartnerIdentifyIdParam) GetUserIdentifyId() string {
  60. if x != nil {
  61. return x.UserIdentifyId
  62. }
  63. return ""
  64. }
  65. type UserAndPartnerParam struct {
  66. state protoimpl.MessageState
  67. sizeCache protoimpl.SizeCache
  68. unknownFields protoimpl.UnknownFields
  69. PartnerId string `protobuf:"bytes,1,opt,name=partnerId,proto3" json:"partnerId"`
  70. PartnerIdentifyID string `protobuf:"bytes,2,opt,name=partnerIdentifyID,proto3" json:"partnerIdentifyID"` // 身份ID
  71. UserId string `protobuf:"bytes,3,opt,name=userId,proto3" json:"userId"`
  72. UserIdentifyID string `protobuf:"bytes,4,opt,name=userIdentifyID,proto3" json:"userIdentifyID"` // 身份ID
  73. }
  74. func (x *UserAndPartnerParam) Reset() {
  75. *x = UserAndPartnerParam{}
  76. if protoimpl.UnsafeEnabled {
  77. mi := &file_common_proto_msgTypes[1]
  78. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  79. ms.StoreMessageInfo(mi)
  80. }
  81. }
  82. func (x *UserAndPartnerParam) String() string {
  83. return protoimpl.X.MessageStringOf(x)
  84. }
  85. func (*UserAndPartnerParam) ProtoMessage() {}
  86. func (x *UserAndPartnerParam) ProtoReflect() protoreflect.Message {
  87. mi := &file_common_proto_msgTypes[1]
  88. if protoimpl.UnsafeEnabled && x != nil {
  89. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  90. if ms.LoadMessageInfo() == nil {
  91. ms.StoreMessageInfo(mi)
  92. }
  93. return ms
  94. }
  95. return mi.MessageOf(x)
  96. }
  97. // Deprecated: Use UserAndPartnerParam.ProtoReflect.Descriptor instead.
  98. func (*UserAndPartnerParam) Descriptor() ([]byte, []int) {
  99. return file_common_proto_rawDescGZIP(), []int{1}
  100. }
  101. func (x *UserAndPartnerParam) GetPartnerId() string {
  102. if x != nil {
  103. return x.PartnerId
  104. }
  105. return ""
  106. }
  107. func (x *UserAndPartnerParam) GetPartnerIdentifyID() string {
  108. if x != nil {
  109. return x.PartnerIdentifyID
  110. }
  111. return ""
  112. }
  113. func (x *UserAndPartnerParam) GetUserId() string {
  114. if x != nil {
  115. return x.UserId
  116. }
  117. return ""
  118. }
  119. func (x *UserAndPartnerParam) GetUserIdentifyID() string {
  120. if x != nil {
  121. return x.UserIdentifyID
  122. }
  123. return ""
  124. }
  125. type User1AndUser2IdParam struct {
  126. state protoimpl.MessageState
  127. sizeCache protoimpl.SizeCache
  128. unknownFields protoimpl.UnknownFields
  129. User1 string `protobuf:"bytes,1,opt,name=user1,proto3" json:"user1"`
  130. User2 string `protobuf:"bytes,2,opt,name=user2,proto3" json:"user2"`
  131. }
  132. func (x *User1AndUser2IdParam) Reset() {
  133. *x = User1AndUser2IdParam{}
  134. if protoimpl.UnsafeEnabled {
  135. mi := &file_common_proto_msgTypes[2]
  136. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  137. ms.StoreMessageInfo(mi)
  138. }
  139. }
  140. func (x *User1AndUser2IdParam) String() string {
  141. return protoimpl.X.MessageStringOf(x)
  142. }
  143. func (*User1AndUser2IdParam) ProtoMessage() {}
  144. func (x *User1AndUser2IdParam) ProtoReflect() protoreflect.Message {
  145. mi := &file_common_proto_msgTypes[2]
  146. if protoimpl.UnsafeEnabled && x != nil {
  147. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  148. if ms.LoadMessageInfo() == nil {
  149. ms.StoreMessageInfo(mi)
  150. }
  151. return ms
  152. }
  153. return mi.MessageOf(x)
  154. }
  155. // Deprecated: Use User1AndUser2IdParam.ProtoReflect.Descriptor instead.
  156. func (*User1AndUser2IdParam) Descriptor() ([]byte, []int) {
  157. return file_common_proto_rawDescGZIP(), []int{2}
  158. }
  159. func (x *User1AndUser2IdParam) GetUser1() string {
  160. if x != nil {
  161. return x.User1
  162. }
  163. return ""
  164. }
  165. func (x *User1AndUser2IdParam) GetUser2() string {
  166. if x != nil {
  167. return x.User2
  168. }
  169. return ""
  170. }
  171. type PartnerIDParam struct {
  172. state protoimpl.MessageState
  173. sizeCache protoimpl.SizeCache
  174. unknownFields protoimpl.UnknownFields
  175. PartnerID string `protobuf:"bytes,1,opt,name=partnerID,proto3" json:"partnerID"`
  176. }
  177. func (x *PartnerIDParam) Reset() {
  178. *x = PartnerIDParam{}
  179. if protoimpl.UnsafeEnabled {
  180. mi := &file_common_proto_msgTypes[3]
  181. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  182. ms.StoreMessageInfo(mi)
  183. }
  184. }
  185. func (x *PartnerIDParam) String() string {
  186. return protoimpl.X.MessageStringOf(x)
  187. }
  188. func (*PartnerIDParam) ProtoMessage() {}
  189. func (x *PartnerIDParam) ProtoReflect() protoreflect.Message {
  190. mi := &file_common_proto_msgTypes[3]
  191. if protoimpl.UnsafeEnabled && x != nil {
  192. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  193. if ms.LoadMessageInfo() == nil {
  194. ms.StoreMessageInfo(mi)
  195. }
  196. return ms
  197. }
  198. return mi.MessageOf(x)
  199. }
  200. // Deprecated: Use PartnerIDParam.ProtoReflect.Descriptor instead.
  201. func (*PartnerIDParam) Descriptor() ([]byte, []int) {
  202. return file_common_proto_rawDescGZIP(), []int{3}
  203. }
  204. func (x *PartnerIDParam) GetPartnerID() string {
  205. if x != nil {
  206. return x.PartnerID
  207. }
  208. return ""
  209. }
  210. type PersonIDParam struct {
  211. state protoimpl.MessageState
  212. sizeCache protoimpl.SizeCache
  213. unknownFields protoimpl.UnknownFields
  214. PersonID string `protobuf:"bytes,1,opt,name=personID,proto3" json:"personID"`
  215. }
  216. func (x *PersonIDParam) Reset() {
  217. *x = PersonIDParam{}
  218. if protoimpl.UnsafeEnabled {
  219. mi := &file_common_proto_msgTypes[4]
  220. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  221. ms.StoreMessageInfo(mi)
  222. }
  223. }
  224. func (x *PersonIDParam) String() string {
  225. return protoimpl.X.MessageStringOf(x)
  226. }
  227. func (*PersonIDParam) ProtoMessage() {}
  228. func (x *PersonIDParam) ProtoReflect() protoreflect.Message {
  229. mi := &file_common_proto_msgTypes[4]
  230. if protoimpl.UnsafeEnabled && x != nil {
  231. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  232. if ms.LoadMessageInfo() == nil {
  233. ms.StoreMessageInfo(mi)
  234. }
  235. return ms
  236. }
  237. return mi.MessageOf(x)
  238. }
  239. // Deprecated: Use PersonIDParam.ProtoReflect.Descriptor instead.
  240. func (*PersonIDParam) Descriptor() ([]byte, []int) {
  241. return file_common_proto_rawDescGZIP(), []int{4}
  242. }
  243. func (x *PersonIDParam) GetPersonID() string {
  244. if x != nil {
  245. return x.PersonID
  246. }
  247. return ""
  248. }
  249. type PersonParam struct {
  250. state protoimpl.MessageState
  251. sizeCache protoimpl.SizeCache
  252. unknownFields protoimpl.UnknownFields
  253. PersonID string `protobuf:"bytes,1,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  254. PersonType string `protobuf:"bytes,2,opt,name=personType,proto3" json:"personType"` // 类型
  255. }
  256. func (x *PersonParam) Reset() {
  257. *x = PersonParam{}
  258. if protoimpl.UnsafeEnabled {
  259. mi := &file_common_proto_msgTypes[5]
  260. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  261. ms.StoreMessageInfo(mi)
  262. }
  263. }
  264. func (x *PersonParam) String() string {
  265. return protoimpl.X.MessageStringOf(x)
  266. }
  267. func (*PersonParam) ProtoMessage() {}
  268. func (x *PersonParam) ProtoReflect() protoreflect.Message {
  269. mi := &file_common_proto_msgTypes[5]
  270. if protoimpl.UnsafeEnabled && x != nil {
  271. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  272. if ms.LoadMessageInfo() == nil {
  273. ms.StoreMessageInfo(mi)
  274. }
  275. return ms
  276. }
  277. return mi.MessageOf(x)
  278. }
  279. // Deprecated: Use PersonParam.ProtoReflect.Descriptor instead.
  280. func (*PersonParam) Descriptor() ([]byte, []int) {
  281. return file_common_proto_rawDescGZIP(), []int{5}
  282. }
  283. func (x *PersonParam) GetPersonID() string {
  284. if x != nil {
  285. return x.PersonID
  286. }
  287. return ""
  288. }
  289. func (x *PersonParam) GetPersonType() string {
  290. if x != nil {
  291. return x.PersonType
  292. }
  293. return ""
  294. }
  295. type ChatCardInfo struct {
  296. state protoimpl.MessageState
  297. sizeCache protoimpl.SizeCache
  298. unknownFields protoimpl.UnknownFields
  299. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  300. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  301. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  302. Sex int64 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex"` // 性别
  303. Age int64 `protobuf:"varint,6,opt,name=age,proto3" json:"age"` // 年龄
  304. Constellation string `protobuf:"bytes,7,opt,name=constellation,proto3" json:"constellation"` // 星座
  305. TagList []*TagList `protobuf:"bytes,9,rep,name=tagList,proto3" json:"tagList"` // 标签列表
  306. IntroduceVoice string `protobuf:"bytes,10,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音
  307. Province string `protobuf:"bytes,11,opt,name=province,proto3" json:"province"` // 省
  308. City string `protobuf:"bytes,12,opt,name=city,proto3" json:"city"` // 市
  309. Area string `protobuf:"bytes,13,opt,name=area,proto3" json:"area"` // 区
  310. IsFinishInformation bool `protobuf:"varint,14,opt,name=isFinishInformation,proto3" json:"isFinishInformation"` //是否完善资料
  311. }
  312. func (x *ChatCardInfo) Reset() {
  313. *x = ChatCardInfo{}
  314. if protoimpl.UnsafeEnabled {
  315. mi := &file_common_proto_msgTypes[6]
  316. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  317. ms.StoreMessageInfo(mi)
  318. }
  319. }
  320. func (x *ChatCardInfo) String() string {
  321. return protoimpl.X.MessageStringOf(x)
  322. }
  323. func (*ChatCardInfo) ProtoMessage() {}
  324. func (x *ChatCardInfo) ProtoReflect() protoreflect.Message {
  325. mi := &file_common_proto_msgTypes[6]
  326. if protoimpl.UnsafeEnabled && x != nil {
  327. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  328. if ms.LoadMessageInfo() == nil {
  329. ms.StoreMessageInfo(mi)
  330. }
  331. return ms
  332. }
  333. return mi.MessageOf(x)
  334. }
  335. // Deprecated: Use ChatCardInfo.ProtoReflect.Descriptor instead.
  336. func (*ChatCardInfo) Descriptor() ([]byte, []int) {
  337. return file_common_proto_rawDescGZIP(), []int{6}
  338. }
  339. func (x *ChatCardInfo) GetId() string {
  340. if x != nil {
  341. return x.Id
  342. }
  343. return ""
  344. }
  345. func (x *ChatCardInfo) GetNickname() string {
  346. if x != nil {
  347. return x.Nickname
  348. }
  349. return ""
  350. }
  351. func (x *ChatCardInfo) GetAvatarUrl() string {
  352. if x != nil {
  353. return x.AvatarUrl
  354. }
  355. return ""
  356. }
  357. func (x *ChatCardInfo) GetSex() int64 {
  358. if x != nil {
  359. return x.Sex
  360. }
  361. return 0
  362. }
  363. func (x *ChatCardInfo) GetAge() int64 {
  364. if x != nil {
  365. return x.Age
  366. }
  367. return 0
  368. }
  369. func (x *ChatCardInfo) GetConstellation() string {
  370. if x != nil {
  371. return x.Constellation
  372. }
  373. return ""
  374. }
  375. func (x *ChatCardInfo) GetTagList() []*TagList {
  376. if x != nil {
  377. return x.TagList
  378. }
  379. return nil
  380. }
  381. func (x *ChatCardInfo) GetIntroduceVoice() string {
  382. if x != nil {
  383. return x.IntroduceVoice
  384. }
  385. return ""
  386. }
  387. func (x *ChatCardInfo) GetProvince() string {
  388. if x != nil {
  389. return x.Province
  390. }
  391. return ""
  392. }
  393. func (x *ChatCardInfo) GetCity() string {
  394. if x != nil {
  395. return x.City
  396. }
  397. return ""
  398. }
  399. func (x *ChatCardInfo) GetArea() string {
  400. if x != nil {
  401. return x.Area
  402. }
  403. return ""
  404. }
  405. func (x *ChatCardInfo) GetIsFinishInformation() bool {
  406. if x != nil {
  407. return x.IsFinishInformation
  408. }
  409. return false
  410. }
  411. type UserIDParam struct {
  412. state protoimpl.MessageState
  413. sizeCache protoimpl.SizeCache
  414. unknownFields protoimpl.UnknownFields
  415. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId"`
  416. }
  417. func (x *UserIDParam) Reset() {
  418. *x = UserIDParam{}
  419. if protoimpl.UnsafeEnabled {
  420. mi := &file_common_proto_msgTypes[7]
  421. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  422. ms.StoreMessageInfo(mi)
  423. }
  424. }
  425. func (x *UserIDParam) String() string {
  426. return protoimpl.X.MessageStringOf(x)
  427. }
  428. func (*UserIDParam) ProtoMessage() {}
  429. func (x *UserIDParam) ProtoReflect() protoreflect.Message {
  430. mi := &file_common_proto_msgTypes[7]
  431. if protoimpl.UnsafeEnabled && x != nil {
  432. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  433. if ms.LoadMessageInfo() == nil {
  434. ms.StoreMessageInfo(mi)
  435. }
  436. return ms
  437. }
  438. return mi.MessageOf(x)
  439. }
  440. // Deprecated: Use UserIDParam.ProtoReflect.Descriptor instead.
  441. func (*UserIDParam) Descriptor() ([]byte, []int) {
  442. return file_common_proto_rawDescGZIP(), []int{7}
  443. }
  444. func (x *UserIDParam) GetUserId() string {
  445. if x != nil {
  446. return x.UserId
  447. }
  448. return ""
  449. }
  450. type WxConfReq struct {
  451. state protoimpl.MessageState
  452. sizeCache protoimpl.SizeCache
  453. unknownFields protoimpl.UnknownFields
  454. Url string `protobuf:"bytes,1,opt,name=url,proto3" json:"url"`
  455. }
  456. func (x *WxConfReq) Reset() {
  457. *x = WxConfReq{}
  458. if protoimpl.UnsafeEnabled {
  459. mi := &file_common_proto_msgTypes[8]
  460. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  461. ms.StoreMessageInfo(mi)
  462. }
  463. }
  464. func (x *WxConfReq) String() string {
  465. return protoimpl.X.MessageStringOf(x)
  466. }
  467. func (*WxConfReq) ProtoMessage() {}
  468. func (x *WxConfReq) ProtoReflect() protoreflect.Message {
  469. mi := &file_common_proto_msgTypes[8]
  470. if protoimpl.UnsafeEnabled && x != nil {
  471. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  472. if ms.LoadMessageInfo() == nil {
  473. ms.StoreMessageInfo(mi)
  474. }
  475. return ms
  476. }
  477. return mi.MessageOf(x)
  478. }
  479. // Deprecated: Use WxConfReq.ProtoReflect.Descriptor instead.
  480. func (*WxConfReq) Descriptor() ([]byte, []int) {
  481. return file_common_proto_rawDescGZIP(), []int{8}
  482. }
  483. func (x *WxConfReq) GetUrl() string {
  484. if x != nil {
  485. return x.Url
  486. }
  487. return ""
  488. }
  489. type WxConfResponse struct {
  490. state protoimpl.MessageState
  491. sizeCache protoimpl.SizeCache
  492. unknownFields protoimpl.UnknownFields
  493. AppId string `protobuf:"bytes,1,opt,name=appId,proto3" json:"appId"` // 必填,公众号的唯一标识
  494. Timestamp int64 `protobuf:"varint,2,opt,name=timestamp,proto3" json:"timestamp"` // 必填,生成签名的时间戳
  495. NonceStr string `protobuf:"bytes,3,opt,name=nonceStr,proto3" json:"nonceStr"` // 必填,生成签名的随机串
  496. Signature string `protobuf:"bytes,4,opt,name=signature,proto3" json:"signature"` // 必填,签名
  497. Url string `protobuf:"bytes,5,opt,name=url,proto3" json:"url"` // 传入的url
  498. }
  499. func (x *WxConfResponse) Reset() {
  500. *x = WxConfResponse{}
  501. if protoimpl.UnsafeEnabled {
  502. mi := &file_common_proto_msgTypes[9]
  503. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  504. ms.StoreMessageInfo(mi)
  505. }
  506. }
  507. func (x *WxConfResponse) String() string {
  508. return protoimpl.X.MessageStringOf(x)
  509. }
  510. func (*WxConfResponse) ProtoMessage() {}
  511. func (x *WxConfResponse) ProtoReflect() protoreflect.Message {
  512. mi := &file_common_proto_msgTypes[9]
  513. if protoimpl.UnsafeEnabled && x != nil {
  514. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  515. if ms.LoadMessageInfo() == nil {
  516. ms.StoreMessageInfo(mi)
  517. }
  518. return ms
  519. }
  520. return mi.MessageOf(x)
  521. }
  522. // Deprecated: Use WxConfResponse.ProtoReflect.Descriptor instead.
  523. func (*WxConfResponse) Descriptor() ([]byte, []int) {
  524. return file_common_proto_rawDescGZIP(), []int{9}
  525. }
  526. func (x *WxConfResponse) GetAppId() string {
  527. if x != nil {
  528. return x.AppId
  529. }
  530. return ""
  531. }
  532. func (x *WxConfResponse) GetTimestamp() int64 {
  533. if x != nil {
  534. return x.Timestamp
  535. }
  536. return 0
  537. }
  538. func (x *WxConfResponse) GetNonceStr() string {
  539. if x != nil {
  540. return x.NonceStr
  541. }
  542. return ""
  543. }
  544. func (x *WxConfResponse) GetSignature() string {
  545. if x != nil {
  546. return x.Signature
  547. }
  548. return ""
  549. }
  550. func (x *WxConfResponse) GetUrl() string {
  551. if x != nil {
  552. return x.Url
  553. }
  554. return ""
  555. }
  556. // 主页信息
  557. type HomeInfo struct {
  558. state protoimpl.MessageState
  559. sizeCache protoimpl.SizeCache
  560. unknownFields protoimpl.UnknownFields
  561. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  562. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  563. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  564. Sex int64 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex"` // 性别
  565. Pictures []string `protobuf:"bytes,5,rep,name=pictures,proto3" json:"pictures"` // 图片
  566. Age int64 `protobuf:"varint,6,opt,name=age,proto3" json:"age"` // 年龄
  567. Constellation string `protobuf:"bytes,7,opt,name=constellation,proto3" json:"constellation"` // 星座
  568. TagList []*TagList `protobuf:"bytes,8,rep,name=tagList,proto3" json:"tagList"` // 标签
  569. Signature string `protobuf:"bytes,9,opt,name=signature,proto3" json:"signature"` // 签名
  570. IntroduceVoice string `protobuf:"bytes,10,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音
  571. Province string `protobuf:"bytes,11,opt,name=province,proto3" json:"province"` // 省
  572. City string `protobuf:"bytes,12,opt,name=city,proto3" json:"city"` // 市
  573. Area string `protobuf:"bytes,13,opt,name=area,proto3" json:"area"` // 区
  574. IsBlack bool `protobuf:"varint,14,opt,name=isBlack,proto3" json:"isBlack"` // 是否被封号
  575. }
  576. func (x *HomeInfo) Reset() {
  577. *x = HomeInfo{}
  578. if protoimpl.UnsafeEnabled {
  579. mi := &file_common_proto_msgTypes[10]
  580. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  581. ms.StoreMessageInfo(mi)
  582. }
  583. }
  584. func (x *HomeInfo) String() string {
  585. return protoimpl.X.MessageStringOf(x)
  586. }
  587. func (*HomeInfo) ProtoMessage() {}
  588. func (x *HomeInfo) ProtoReflect() protoreflect.Message {
  589. mi := &file_common_proto_msgTypes[10]
  590. if protoimpl.UnsafeEnabled && x != nil {
  591. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  592. if ms.LoadMessageInfo() == nil {
  593. ms.StoreMessageInfo(mi)
  594. }
  595. return ms
  596. }
  597. return mi.MessageOf(x)
  598. }
  599. // Deprecated: Use HomeInfo.ProtoReflect.Descriptor instead.
  600. func (*HomeInfo) Descriptor() ([]byte, []int) {
  601. return file_common_proto_rawDescGZIP(), []int{10}
  602. }
  603. func (x *HomeInfo) GetId() string {
  604. if x != nil {
  605. return x.Id
  606. }
  607. return ""
  608. }
  609. func (x *HomeInfo) GetNickname() string {
  610. if x != nil {
  611. return x.Nickname
  612. }
  613. return ""
  614. }
  615. func (x *HomeInfo) GetAvatarUrl() string {
  616. if x != nil {
  617. return x.AvatarUrl
  618. }
  619. return ""
  620. }
  621. func (x *HomeInfo) GetSex() int64 {
  622. if x != nil {
  623. return x.Sex
  624. }
  625. return 0
  626. }
  627. func (x *HomeInfo) GetPictures() []string {
  628. if x != nil {
  629. return x.Pictures
  630. }
  631. return nil
  632. }
  633. func (x *HomeInfo) GetAge() int64 {
  634. if x != nil {
  635. return x.Age
  636. }
  637. return 0
  638. }
  639. func (x *HomeInfo) GetConstellation() string {
  640. if x != nil {
  641. return x.Constellation
  642. }
  643. return ""
  644. }
  645. func (x *HomeInfo) GetTagList() []*TagList {
  646. if x != nil {
  647. return x.TagList
  648. }
  649. return nil
  650. }
  651. func (x *HomeInfo) GetSignature() string {
  652. if x != nil {
  653. return x.Signature
  654. }
  655. return ""
  656. }
  657. func (x *HomeInfo) GetIntroduceVoice() string {
  658. if x != nil {
  659. return x.IntroduceVoice
  660. }
  661. return ""
  662. }
  663. func (x *HomeInfo) GetProvince() string {
  664. if x != nil {
  665. return x.Province
  666. }
  667. return ""
  668. }
  669. func (x *HomeInfo) GetCity() string {
  670. if x != nil {
  671. return x.City
  672. }
  673. return ""
  674. }
  675. func (x *HomeInfo) GetArea() string {
  676. if x != nil {
  677. return x.Area
  678. }
  679. return ""
  680. }
  681. func (x *HomeInfo) GetIsBlack() bool {
  682. if x != nil {
  683. return x.IsBlack
  684. }
  685. return false
  686. }
  687. type PersonMsg struct {
  688. state protoimpl.MessageState
  689. sizeCache protoimpl.SizeCache
  690. unknownFields protoimpl.UnknownFields
  691. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  692. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  693. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  694. Sex int64 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex"` // 性别
  695. Pictures []string `protobuf:"bytes,5,rep,name=pictures,proto3" json:"pictures"` // 图片
  696. Age int64 `protobuf:"varint,6,opt,name=age,proto3" json:"age"` // 年龄
  697. Constellation string `protobuf:"bytes,7,opt,name=constellation,proto3" json:"constellation"` // 星座
  698. TagList []int64 `protobuf:"varint,8,rep,packed,name=tagList,proto3" json:"tagList"` // 标签
  699. Signature string `protobuf:"bytes,9,opt,name=signature,proto3" json:"signature"` // 签名
  700. IntroduceVoice string `protobuf:"bytes,10,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音
  701. Province string `protobuf:"bytes,11,opt,name=province,proto3" json:"province"` // 省
  702. City string `protobuf:"bytes,12,opt,name=city,proto3" json:"city"` // 市
  703. Area string `protobuf:"bytes,13,opt,name=area,proto3" json:"area"` // 区
  704. IsFinishInformation bool `protobuf:"varint,14,opt,name=isFinishInformation,proto3" json:"isFinishInformation"` // 是否完成注册
  705. IsBlack bool `protobuf:"varint,15,opt,name=isBlack,proto3" json:"isBlack"` // 是否被封禁
  706. }
  707. func (x *PersonMsg) Reset() {
  708. *x = PersonMsg{}
  709. if protoimpl.UnsafeEnabled {
  710. mi := &file_common_proto_msgTypes[11]
  711. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  712. ms.StoreMessageInfo(mi)
  713. }
  714. }
  715. func (x *PersonMsg) String() string {
  716. return protoimpl.X.MessageStringOf(x)
  717. }
  718. func (*PersonMsg) ProtoMessage() {}
  719. func (x *PersonMsg) ProtoReflect() protoreflect.Message {
  720. mi := &file_common_proto_msgTypes[11]
  721. if protoimpl.UnsafeEnabled && x != nil {
  722. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  723. if ms.LoadMessageInfo() == nil {
  724. ms.StoreMessageInfo(mi)
  725. }
  726. return ms
  727. }
  728. return mi.MessageOf(x)
  729. }
  730. // Deprecated: Use PersonMsg.ProtoReflect.Descriptor instead.
  731. func (*PersonMsg) Descriptor() ([]byte, []int) {
  732. return file_common_proto_rawDescGZIP(), []int{11}
  733. }
  734. func (x *PersonMsg) GetId() string {
  735. if x != nil {
  736. return x.Id
  737. }
  738. return ""
  739. }
  740. func (x *PersonMsg) GetNickname() string {
  741. if x != nil {
  742. return x.Nickname
  743. }
  744. return ""
  745. }
  746. func (x *PersonMsg) GetAvatarUrl() string {
  747. if x != nil {
  748. return x.AvatarUrl
  749. }
  750. return ""
  751. }
  752. func (x *PersonMsg) GetSex() int64 {
  753. if x != nil {
  754. return x.Sex
  755. }
  756. return 0
  757. }
  758. func (x *PersonMsg) GetPictures() []string {
  759. if x != nil {
  760. return x.Pictures
  761. }
  762. return nil
  763. }
  764. func (x *PersonMsg) GetAge() int64 {
  765. if x != nil {
  766. return x.Age
  767. }
  768. return 0
  769. }
  770. func (x *PersonMsg) GetConstellation() string {
  771. if x != nil {
  772. return x.Constellation
  773. }
  774. return ""
  775. }
  776. func (x *PersonMsg) GetTagList() []int64 {
  777. if x != nil {
  778. return x.TagList
  779. }
  780. return nil
  781. }
  782. func (x *PersonMsg) GetSignature() string {
  783. if x != nil {
  784. return x.Signature
  785. }
  786. return ""
  787. }
  788. func (x *PersonMsg) GetIntroduceVoice() string {
  789. if x != nil {
  790. return x.IntroduceVoice
  791. }
  792. return ""
  793. }
  794. func (x *PersonMsg) GetProvince() string {
  795. if x != nil {
  796. return x.Province
  797. }
  798. return ""
  799. }
  800. func (x *PersonMsg) GetCity() string {
  801. if x != nil {
  802. return x.City
  803. }
  804. return ""
  805. }
  806. func (x *PersonMsg) GetArea() string {
  807. if x != nil {
  808. return x.Area
  809. }
  810. return ""
  811. }
  812. func (x *PersonMsg) GetIsFinishInformation() bool {
  813. if x != nil {
  814. return x.IsFinishInformation
  815. }
  816. return false
  817. }
  818. func (x *PersonMsg) GetIsBlack() bool {
  819. if x != nil {
  820. return x.IsBlack
  821. }
  822. return false
  823. }
  824. type LookedAndLikedNum struct {
  825. state protoimpl.MessageState
  826. sizeCache protoimpl.SizeCache
  827. unknownFields protoimpl.UnknownFields
  828. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  829. LookedNum int64 `protobuf:"varint,2,opt,name=lookedNum,proto3" json:"lookedNum"` // 看过ta的数量
  830. LikedNum int64 `protobuf:"varint,3,opt,name=likedNum,proto3" json:"likedNum"` // 喜欢ta的数量
  831. }
  832. func (x *LookedAndLikedNum) Reset() {
  833. *x = LookedAndLikedNum{}
  834. if protoimpl.UnsafeEnabled {
  835. mi := &file_common_proto_msgTypes[12]
  836. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  837. ms.StoreMessageInfo(mi)
  838. }
  839. }
  840. func (x *LookedAndLikedNum) String() string {
  841. return protoimpl.X.MessageStringOf(x)
  842. }
  843. func (*LookedAndLikedNum) ProtoMessage() {}
  844. func (x *LookedAndLikedNum) ProtoReflect() protoreflect.Message {
  845. mi := &file_common_proto_msgTypes[12]
  846. if protoimpl.UnsafeEnabled && x != nil {
  847. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  848. if ms.LoadMessageInfo() == nil {
  849. ms.StoreMessageInfo(mi)
  850. }
  851. return ms
  852. }
  853. return mi.MessageOf(x)
  854. }
  855. // Deprecated: Use LookedAndLikedNum.ProtoReflect.Descriptor instead.
  856. func (*LookedAndLikedNum) Descriptor() ([]byte, []int) {
  857. return file_common_proto_rawDescGZIP(), []int{12}
  858. }
  859. func (x *LookedAndLikedNum) GetId() string {
  860. if x != nil {
  861. return x.Id
  862. }
  863. return ""
  864. }
  865. func (x *LookedAndLikedNum) GetLookedNum() int64 {
  866. if x != nil {
  867. return x.LookedNum
  868. }
  869. return 0
  870. }
  871. func (x *LookedAndLikedNum) GetLikedNum() int64 {
  872. if x != nil {
  873. return x.LikedNum
  874. }
  875. return 0
  876. }
  877. // 添加好友页面信息
  878. type AddFriendMessageInfo struct {
  879. state protoimpl.MessageState
  880. sizeCache protoimpl.SizeCache
  881. unknownFields protoimpl.UnknownFields
  882. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  883. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  884. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  885. Sex int64 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex"` // 性别
  886. Pictures []string `protobuf:"bytes,5,rep,name=pictures,proto3" json:"pictures"` // 图片
  887. FromOpenId string `protobuf:"bytes,6,opt,name=fromOpenId,proto3" json:"fromOpenId"` // 来源公众号对应的openID
  888. IsRegister bool `protobuf:"varint,7,opt,name=isRegister,proto3" json:"isRegister"` // 是否注册
  889. IsChat bool `protobuf:"varint,8,opt,name=isChat,proto3" json:"isChat"` // 是否聊天
  890. IsFromUs bool `protobuf:"varint,9,opt,name=isFromUs,proto3" json:"isFromUs"` // 是否是来源我们
  891. FromAppId string `protobuf:"bytes,10,opt,name=fromAppId,proto3" json:"fromAppId"` // 来源公众号对应的appID
  892. FromName string `protobuf:"bytes,11,opt,name=fromName,proto3" json:"fromName"` // 来源公众号对应的公众号名称
  893. Constellation string `protobuf:"bytes,12,opt,name=constellation,proto3" json:"constellation"` // 星座
  894. Signature string `protobuf:"bytes,13,opt,name=signature,proto3" json:"signature"` // 介绍(签名)
  895. Province string `protobuf:"bytes,14,opt,name=province,proto3" json:"province"` // 省
  896. City string `protobuf:"bytes,15,opt,name=city,proto3" json:"city"` // 市
  897. Area string `protobuf:"bytes,16,opt,name=area,proto3" json:"area"` // 区
  898. }
  899. func (x *AddFriendMessageInfo) Reset() {
  900. *x = AddFriendMessageInfo{}
  901. if protoimpl.UnsafeEnabled {
  902. mi := &file_common_proto_msgTypes[13]
  903. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  904. ms.StoreMessageInfo(mi)
  905. }
  906. }
  907. func (x *AddFriendMessageInfo) String() string {
  908. return protoimpl.X.MessageStringOf(x)
  909. }
  910. func (*AddFriendMessageInfo) ProtoMessage() {}
  911. func (x *AddFriendMessageInfo) ProtoReflect() protoreflect.Message {
  912. mi := &file_common_proto_msgTypes[13]
  913. if protoimpl.UnsafeEnabled && x != nil {
  914. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  915. if ms.LoadMessageInfo() == nil {
  916. ms.StoreMessageInfo(mi)
  917. }
  918. return ms
  919. }
  920. return mi.MessageOf(x)
  921. }
  922. // Deprecated: Use AddFriendMessageInfo.ProtoReflect.Descriptor instead.
  923. func (*AddFriendMessageInfo) Descriptor() ([]byte, []int) {
  924. return file_common_proto_rawDescGZIP(), []int{13}
  925. }
  926. func (x *AddFriendMessageInfo) GetId() string {
  927. if x != nil {
  928. return x.Id
  929. }
  930. return ""
  931. }
  932. func (x *AddFriendMessageInfo) GetNickname() string {
  933. if x != nil {
  934. return x.Nickname
  935. }
  936. return ""
  937. }
  938. func (x *AddFriendMessageInfo) GetAvatarUrl() string {
  939. if x != nil {
  940. return x.AvatarUrl
  941. }
  942. return ""
  943. }
  944. func (x *AddFriendMessageInfo) GetSex() int64 {
  945. if x != nil {
  946. return x.Sex
  947. }
  948. return 0
  949. }
  950. func (x *AddFriendMessageInfo) GetPictures() []string {
  951. if x != nil {
  952. return x.Pictures
  953. }
  954. return nil
  955. }
  956. func (x *AddFriendMessageInfo) GetFromOpenId() string {
  957. if x != nil {
  958. return x.FromOpenId
  959. }
  960. return ""
  961. }
  962. func (x *AddFriendMessageInfo) GetIsRegister() bool {
  963. if x != nil {
  964. return x.IsRegister
  965. }
  966. return false
  967. }
  968. func (x *AddFriendMessageInfo) GetIsChat() bool {
  969. if x != nil {
  970. return x.IsChat
  971. }
  972. return false
  973. }
  974. func (x *AddFriendMessageInfo) GetIsFromUs() bool {
  975. if x != nil {
  976. return x.IsFromUs
  977. }
  978. return false
  979. }
  980. func (x *AddFriendMessageInfo) GetFromAppId() string {
  981. if x != nil {
  982. return x.FromAppId
  983. }
  984. return ""
  985. }
  986. func (x *AddFriendMessageInfo) GetFromName() string {
  987. if x != nil {
  988. return x.FromName
  989. }
  990. return ""
  991. }
  992. func (x *AddFriendMessageInfo) GetConstellation() string {
  993. if x != nil {
  994. return x.Constellation
  995. }
  996. return ""
  997. }
  998. func (x *AddFriendMessageInfo) GetSignature() string {
  999. if x != nil {
  1000. return x.Signature
  1001. }
  1002. return ""
  1003. }
  1004. func (x *AddFriendMessageInfo) GetProvince() string {
  1005. if x != nil {
  1006. return x.Province
  1007. }
  1008. return ""
  1009. }
  1010. func (x *AddFriendMessageInfo) GetCity() string {
  1011. if x != nil {
  1012. return x.City
  1013. }
  1014. return ""
  1015. }
  1016. func (x *AddFriendMessageInfo) GetArea() string {
  1017. if x != nil {
  1018. return x.Area
  1019. }
  1020. return ""
  1021. }
  1022. type PersonIDList struct {
  1023. state protoimpl.MessageState
  1024. sizeCache protoimpl.SizeCache
  1025. unknownFields protoimpl.UnknownFields
  1026. PersonIds []string `protobuf:"bytes,1,rep,name=personIds,proto3" json:"personIds"`
  1027. }
  1028. func (x *PersonIDList) Reset() {
  1029. *x = PersonIDList{}
  1030. if protoimpl.UnsafeEnabled {
  1031. mi := &file_common_proto_msgTypes[14]
  1032. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1033. ms.StoreMessageInfo(mi)
  1034. }
  1035. }
  1036. func (x *PersonIDList) String() string {
  1037. return protoimpl.X.MessageStringOf(x)
  1038. }
  1039. func (*PersonIDList) ProtoMessage() {}
  1040. func (x *PersonIDList) ProtoReflect() protoreflect.Message {
  1041. mi := &file_common_proto_msgTypes[14]
  1042. if protoimpl.UnsafeEnabled && x != nil {
  1043. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1044. if ms.LoadMessageInfo() == nil {
  1045. ms.StoreMessageInfo(mi)
  1046. }
  1047. return ms
  1048. }
  1049. return mi.MessageOf(x)
  1050. }
  1051. // Deprecated: Use PersonIDList.ProtoReflect.Descriptor instead.
  1052. func (*PersonIDList) Descriptor() ([]byte, []int) {
  1053. return file_common_proto_rawDescGZIP(), []int{14}
  1054. }
  1055. func (x *PersonIDList) GetPersonIds() []string {
  1056. if x != nil {
  1057. return x.PersonIds
  1058. }
  1059. return nil
  1060. }
  1061. type PersonDBReply struct {
  1062. state protoimpl.MessageState
  1063. sizeCache protoimpl.SizeCache
  1064. unknownFields protoimpl.UnknownFields
  1065. List []*PersonDB `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1066. }
  1067. func (x *PersonDBReply) Reset() {
  1068. *x = PersonDBReply{}
  1069. if protoimpl.UnsafeEnabled {
  1070. mi := &file_common_proto_msgTypes[15]
  1071. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1072. ms.StoreMessageInfo(mi)
  1073. }
  1074. }
  1075. func (x *PersonDBReply) String() string {
  1076. return protoimpl.X.MessageStringOf(x)
  1077. }
  1078. func (*PersonDBReply) ProtoMessage() {}
  1079. func (x *PersonDBReply) ProtoReflect() protoreflect.Message {
  1080. mi := &file_common_proto_msgTypes[15]
  1081. if protoimpl.UnsafeEnabled && x != nil {
  1082. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1083. if ms.LoadMessageInfo() == nil {
  1084. ms.StoreMessageInfo(mi)
  1085. }
  1086. return ms
  1087. }
  1088. return mi.MessageOf(x)
  1089. }
  1090. // Deprecated: Use PersonDBReply.ProtoReflect.Descriptor instead.
  1091. func (*PersonDBReply) Descriptor() ([]byte, []int) {
  1092. return file_common_proto_rawDescGZIP(), []int{15}
  1093. }
  1094. func (x *PersonDBReply) GetList() []*PersonDB {
  1095. if x != nil {
  1096. return x.List
  1097. }
  1098. return nil
  1099. }
  1100. type PersonDB struct {
  1101. state protoimpl.MessageState
  1102. sizeCache protoimpl.SizeCache
  1103. unknownFields protoimpl.UnknownFields
  1104. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  1105. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  1106. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  1107. Sex int64 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex"` // 性别
  1108. Pictures []string `protobuf:"bytes,5,rep,name=pictures,proto3" json:"pictures"` // 图片
  1109. Age int64 `protobuf:"varint,6,opt,name=age,proto3" json:"age"` // 年龄
  1110. Constellation string `protobuf:"bytes,7,opt,name=constellation,proto3" json:"constellation"` // 星座
  1111. IntroduceVoice string `protobuf:"bytes,8,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音
  1112. Province string `protobuf:"bytes,9,opt,name=province,proto3" json:"province"` // 省
  1113. City string `protobuf:"bytes,10,opt,name=city,proto3" json:"city"` // 市
  1114. Area string `protobuf:"bytes,11,opt,name=area,proto3" json:"area"` // 区
  1115. Signature string `protobuf:"bytes,12,opt,name=signature,proto3" json:"signature"` //介绍
  1116. IsFinishInformation bool `protobuf:"varint,13,opt,name=isFinishInformation,proto3" json:"isFinishInformation"` //是否完善消息
  1117. TagList []int64 `protobuf:"varint,14,rep,packed,name=tagList,proto3" json:"tagList"` // 标签列表
  1118. }
  1119. func (x *PersonDB) Reset() {
  1120. *x = PersonDB{}
  1121. if protoimpl.UnsafeEnabled {
  1122. mi := &file_common_proto_msgTypes[16]
  1123. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1124. ms.StoreMessageInfo(mi)
  1125. }
  1126. }
  1127. func (x *PersonDB) String() string {
  1128. return protoimpl.X.MessageStringOf(x)
  1129. }
  1130. func (*PersonDB) ProtoMessage() {}
  1131. func (x *PersonDB) ProtoReflect() protoreflect.Message {
  1132. mi := &file_common_proto_msgTypes[16]
  1133. if protoimpl.UnsafeEnabled && x != nil {
  1134. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1135. if ms.LoadMessageInfo() == nil {
  1136. ms.StoreMessageInfo(mi)
  1137. }
  1138. return ms
  1139. }
  1140. return mi.MessageOf(x)
  1141. }
  1142. // Deprecated: Use PersonDB.ProtoReflect.Descriptor instead.
  1143. func (*PersonDB) Descriptor() ([]byte, []int) {
  1144. return file_common_proto_rawDescGZIP(), []int{16}
  1145. }
  1146. func (x *PersonDB) GetId() string {
  1147. if x != nil {
  1148. return x.Id
  1149. }
  1150. return ""
  1151. }
  1152. func (x *PersonDB) GetNickname() string {
  1153. if x != nil {
  1154. return x.Nickname
  1155. }
  1156. return ""
  1157. }
  1158. func (x *PersonDB) GetAvatarUrl() string {
  1159. if x != nil {
  1160. return x.AvatarUrl
  1161. }
  1162. return ""
  1163. }
  1164. func (x *PersonDB) GetSex() int64 {
  1165. if x != nil {
  1166. return x.Sex
  1167. }
  1168. return 0
  1169. }
  1170. func (x *PersonDB) GetPictures() []string {
  1171. if x != nil {
  1172. return x.Pictures
  1173. }
  1174. return nil
  1175. }
  1176. func (x *PersonDB) GetAge() int64 {
  1177. if x != nil {
  1178. return x.Age
  1179. }
  1180. return 0
  1181. }
  1182. func (x *PersonDB) GetConstellation() string {
  1183. if x != nil {
  1184. return x.Constellation
  1185. }
  1186. return ""
  1187. }
  1188. func (x *PersonDB) GetIntroduceVoice() string {
  1189. if x != nil {
  1190. return x.IntroduceVoice
  1191. }
  1192. return ""
  1193. }
  1194. func (x *PersonDB) GetProvince() string {
  1195. if x != nil {
  1196. return x.Province
  1197. }
  1198. return ""
  1199. }
  1200. func (x *PersonDB) GetCity() string {
  1201. if x != nil {
  1202. return x.City
  1203. }
  1204. return ""
  1205. }
  1206. func (x *PersonDB) GetArea() string {
  1207. if x != nil {
  1208. return x.Area
  1209. }
  1210. return ""
  1211. }
  1212. func (x *PersonDB) GetSignature() string {
  1213. if x != nil {
  1214. return x.Signature
  1215. }
  1216. return ""
  1217. }
  1218. func (x *PersonDB) GetIsFinishInformation() bool {
  1219. if x != nil {
  1220. return x.IsFinishInformation
  1221. }
  1222. return false
  1223. }
  1224. func (x *PersonDB) GetTagList() []int64 {
  1225. if x != nil {
  1226. return x.TagList
  1227. }
  1228. return nil
  1229. }
  1230. type ListPageRequest struct {
  1231. state protoimpl.MessageState
  1232. sizeCache protoimpl.SizeCache
  1233. unknownFields protoimpl.UnknownFields
  1234. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  1235. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  1236. }
  1237. func (x *ListPageRequest) Reset() {
  1238. *x = ListPageRequest{}
  1239. if protoimpl.UnsafeEnabled {
  1240. mi := &file_common_proto_msgTypes[17]
  1241. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1242. ms.StoreMessageInfo(mi)
  1243. }
  1244. }
  1245. func (x *ListPageRequest) String() string {
  1246. return protoimpl.X.MessageStringOf(x)
  1247. }
  1248. func (*ListPageRequest) ProtoMessage() {}
  1249. func (x *ListPageRequest) ProtoReflect() protoreflect.Message {
  1250. mi := &file_common_proto_msgTypes[17]
  1251. if protoimpl.UnsafeEnabled && x != nil {
  1252. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1253. if ms.LoadMessageInfo() == nil {
  1254. ms.StoreMessageInfo(mi)
  1255. }
  1256. return ms
  1257. }
  1258. return mi.MessageOf(x)
  1259. }
  1260. // Deprecated: Use ListPageRequest.ProtoReflect.Descriptor instead.
  1261. func (*ListPageRequest) Descriptor() ([]byte, []int) {
  1262. return file_common_proto_rawDescGZIP(), []int{17}
  1263. }
  1264. func (x *ListPageRequest) GetNextId() int64 {
  1265. if x != nil {
  1266. return x.NextId
  1267. }
  1268. return 0
  1269. }
  1270. func (x *ListPageRequest) GetOffset() int64 {
  1271. if x != nil {
  1272. return x.Offset
  1273. }
  1274. return 0
  1275. }
  1276. type ListPageAndSexRequest struct {
  1277. state protoimpl.MessageState
  1278. sizeCache protoimpl.SizeCache
  1279. unknownFields protoimpl.UnknownFields
  1280. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  1281. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  1282. Sex int64 `protobuf:"varint,3,opt,name=sex,proto3" json:"sex"` // 对方的性别
  1283. }
  1284. func (x *ListPageAndSexRequest) Reset() {
  1285. *x = ListPageAndSexRequest{}
  1286. if protoimpl.UnsafeEnabled {
  1287. mi := &file_common_proto_msgTypes[18]
  1288. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1289. ms.StoreMessageInfo(mi)
  1290. }
  1291. }
  1292. func (x *ListPageAndSexRequest) String() string {
  1293. return protoimpl.X.MessageStringOf(x)
  1294. }
  1295. func (*ListPageAndSexRequest) ProtoMessage() {}
  1296. func (x *ListPageAndSexRequest) ProtoReflect() protoreflect.Message {
  1297. mi := &file_common_proto_msgTypes[18]
  1298. if protoimpl.UnsafeEnabled && x != nil {
  1299. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1300. if ms.LoadMessageInfo() == nil {
  1301. ms.StoreMessageInfo(mi)
  1302. }
  1303. return ms
  1304. }
  1305. return mi.MessageOf(x)
  1306. }
  1307. // Deprecated: Use ListPageAndSexRequest.ProtoReflect.Descriptor instead.
  1308. func (*ListPageAndSexRequest) Descriptor() ([]byte, []int) {
  1309. return file_common_proto_rawDescGZIP(), []int{18}
  1310. }
  1311. func (x *ListPageAndSexRequest) GetNextId() int64 {
  1312. if x != nil {
  1313. return x.NextId
  1314. }
  1315. return 0
  1316. }
  1317. func (x *ListPageAndSexRequest) GetOffset() int64 {
  1318. if x != nil {
  1319. return x.Offset
  1320. }
  1321. return 0
  1322. }
  1323. func (x *ListPageAndSexRequest) GetSex() int64 {
  1324. if x != nil {
  1325. return x.Sex
  1326. }
  1327. return 0
  1328. }
  1329. type FindChatTopicRequest struct {
  1330. state protoimpl.MessageState
  1331. sizeCache protoimpl.SizeCache
  1332. unknownFields protoimpl.UnknownFields
  1333. Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type"` // 话题类型
  1334. Sex int64 `protobuf:"varint,2,opt,name=sex,proto3" json:"sex"` // 对方的性别
  1335. }
  1336. func (x *FindChatTopicRequest) Reset() {
  1337. *x = FindChatTopicRequest{}
  1338. if protoimpl.UnsafeEnabled {
  1339. mi := &file_common_proto_msgTypes[19]
  1340. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1341. ms.StoreMessageInfo(mi)
  1342. }
  1343. }
  1344. func (x *FindChatTopicRequest) String() string {
  1345. return protoimpl.X.MessageStringOf(x)
  1346. }
  1347. func (*FindChatTopicRequest) ProtoMessage() {}
  1348. func (x *FindChatTopicRequest) ProtoReflect() protoreflect.Message {
  1349. mi := &file_common_proto_msgTypes[19]
  1350. if protoimpl.UnsafeEnabled && x != nil {
  1351. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1352. if ms.LoadMessageInfo() == nil {
  1353. ms.StoreMessageInfo(mi)
  1354. }
  1355. return ms
  1356. }
  1357. return mi.MessageOf(x)
  1358. }
  1359. // Deprecated: Use FindChatTopicRequest.ProtoReflect.Descriptor instead.
  1360. func (*FindChatTopicRequest) Descriptor() ([]byte, []int) {
  1361. return file_common_proto_rawDescGZIP(), []int{19}
  1362. }
  1363. func (x *FindChatTopicRequest) GetType() string {
  1364. if x != nil {
  1365. return x.Type
  1366. }
  1367. return ""
  1368. }
  1369. func (x *FindChatTopicRequest) GetSex() int64 {
  1370. if x != nil {
  1371. return x.Sex
  1372. }
  1373. return 0
  1374. }
  1375. type ListPage2Request struct {
  1376. state protoimpl.MessageState
  1377. sizeCache protoimpl.SizeCache
  1378. unknownFields protoimpl.UnknownFields
  1379. NextId string `protobuf:"bytes,1,opt,name=nextId,proto3" json:"nextId"`
  1380. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  1381. }
  1382. func (x *ListPage2Request) Reset() {
  1383. *x = ListPage2Request{}
  1384. if protoimpl.UnsafeEnabled {
  1385. mi := &file_common_proto_msgTypes[20]
  1386. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1387. ms.StoreMessageInfo(mi)
  1388. }
  1389. }
  1390. func (x *ListPage2Request) String() string {
  1391. return protoimpl.X.MessageStringOf(x)
  1392. }
  1393. func (*ListPage2Request) ProtoMessage() {}
  1394. func (x *ListPage2Request) ProtoReflect() protoreflect.Message {
  1395. mi := &file_common_proto_msgTypes[20]
  1396. if protoimpl.UnsafeEnabled && x != nil {
  1397. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1398. if ms.LoadMessageInfo() == nil {
  1399. ms.StoreMessageInfo(mi)
  1400. }
  1401. return ms
  1402. }
  1403. return mi.MessageOf(x)
  1404. }
  1405. // Deprecated: Use ListPage2Request.ProtoReflect.Descriptor instead.
  1406. func (*ListPage2Request) Descriptor() ([]byte, []int) {
  1407. return file_common_proto_rawDescGZIP(), []int{20}
  1408. }
  1409. func (x *ListPage2Request) GetNextId() string {
  1410. if x != nil {
  1411. return x.NextId
  1412. }
  1413. return ""
  1414. }
  1415. func (x *ListPage2Request) GetOffset() int64 {
  1416. if x != nil {
  1417. return x.Offset
  1418. }
  1419. return 0
  1420. }
  1421. type ListPageAndPersonRequest struct {
  1422. state protoimpl.MessageState
  1423. sizeCache protoimpl.SizeCache
  1424. unknownFields protoimpl.UnknownFields
  1425. NextId string `protobuf:"bytes,1,opt,name=nextId,proto3" json:"nextId"`
  1426. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  1427. PersonID string `protobuf:"bytes,3,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  1428. PersonType string `protobuf:"bytes,4,opt,name=personType,proto3" json:"personType"` // 类型
  1429. }
  1430. func (x *ListPageAndPersonRequest) Reset() {
  1431. *x = ListPageAndPersonRequest{}
  1432. if protoimpl.UnsafeEnabled {
  1433. mi := &file_common_proto_msgTypes[21]
  1434. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1435. ms.StoreMessageInfo(mi)
  1436. }
  1437. }
  1438. func (x *ListPageAndPersonRequest) String() string {
  1439. return protoimpl.X.MessageStringOf(x)
  1440. }
  1441. func (*ListPageAndPersonRequest) ProtoMessage() {}
  1442. func (x *ListPageAndPersonRequest) ProtoReflect() protoreflect.Message {
  1443. mi := &file_common_proto_msgTypes[21]
  1444. if protoimpl.UnsafeEnabled && x != nil {
  1445. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1446. if ms.LoadMessageInfo() == nil {
  1447. ms.StoreMessageInfo(mi)
  1448. }
  1449. return ms
  1450. }
  1451. return mi.MessageOf(x)
  1452. }
  1453. // Deprecated: Use ListPageAndPersonRequest.ProtoReflect.Descriptor instead.
  1454. func (*ListPageAndPersonRequest) Descriptor() ([]byte, []int) {
  1455. return file_common_proto_rawDescGZIP(), []int{21}
  1456. }
  1457. func (x *ListPageAndPersonRequest) GetNextId() string {
  1458. if x != nil {
  1459. return x.NextId
  1460. }
  1461. return ""
  1462. }
  1463. func (x *ListPageAndPersonRequest) GetOffset() int64 {
  1464. if x != nil {
  1465. return x.Offset
  1466. }
  1467. return 0
  1468. }
  1469. func (x *ListPageAndPersonRequest) GetPersonID() string {
  1470. if x != nil {
  1471. return x.PersonID
  1472. }
  1473. return ""
  1474. }
  1475. func (x *ListPageAndPersonRequest) GetPersonType() string {
  1476. if x != nil {
  1477. return x.PersonType
  1478. }
  1479. return ""
  1480. }
  1481. type SendPhoneCodeRequest struct {
  1482. state protoimpl.MessageState
  1483. sizeCache protoimpl.SizeCache
  1484. unknownFields protoimpl.UnknownFields
  1485. Phone string `protobuf:"bytes,1,opt,name=phone,proto3" json:"phone"`
  1486. }
  1487. func (x *SendPhoneCodeRequest) Reset() {
  1488. *x = SendPhoneCodeRequest{}
  1489. if protoimpl.UnsafeEnabled {
  1490. mi := &file_common_proto_msgTypes[22]
  1491. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1492. ms.StoreMessageInfo(mi)
  1493. }
  1494. }
  1495. func (x *SendPhoneCodeRequest) String() string {
  1496. return protoimpl.X.MessageStringOf(x)
  1497. }
  1498. func (*SendPhoneCodeRequest) ProtoMessage() {}
  1499. func (x *SendPhoneCodeRequest) ProtoReflect() protoreflect.Message {
  1500. mi := &file_common_proto_msgTypes[22]
  1501. if protoimpl.UnsafeEnabled && x != nil {
  1502. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1503. if ms.LoadMessageInfo() == nil {
  1504. ms.StoreMessageInfo(mi)
  1505. }
  1506. return ms
  1507. }
  1508. return mi.MessageOf(x)
  1509. }
  1510. // Deprecated: Use SendPhoneCodeRequest.ProtoReflect.Descriptor instead.
  1511. func (*SendPhoneCodeRequest) Descriptor() ([]byte, []int) {
  1512. return file_common_proto_rawDescGZIP(), []int{22}
  1513. }
  1514. func (x *SendPhoneCodeRequest) GetPhone() string {
  1515. if x != nil {
  1516. return x.Phone
  1517. }
  1518. return ""
  1519. }
  1520. type CheckPhoneCodeRequest struct {
  1521. state protoimpl.MessageState
  1522. sizeCache protoimpl.SizeCache
  1523. unknownFields protoimpl.UnknownFields
  1524. Phone string `protobuf:"bytes,1,opt,name=phone,proto3" json:"phone"`
  1525. Code string `protobuf:"bytes,2,opt,name=code,proto3" json:"code"`
  1526. }
  1527. func (x *CheckPhoneCodeRequest) Reset() {
  1528. *x = CheckPhoneCodeRequest{}
  1529. if protoimpl.UnsafeEnabled {
  1530. mi := &file_common_proto_msgTypes[23]
  1531. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1532. ms.StoreMessageInfo(mi)
  1533. }
  1534. }
  1535. func (x *CheckPhoneCodeRequest) String() string {
  1536. return protoimpl.X.MessageStringOf(x)
  1537. }
  1538. func (*CheckPhoneCodeRequest) ProtoMessage() {}
  1539. func (x *CheckPhoneCodeRequest) ProtoReflect() protoreflect.Message {
  1540. mi := &file_common_proto_msgTypes[23]
  1541. if protoimpl.UnsafeEnabled && x != nil {
  1542. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1543. if ms.LoadMessageInfo() == nil {
  1544. ms.StoreMessageInfo(mi)
  1545. }
  1546. return ms
  1547. }
  1548. return mi.MessageOf(x)
  1549. }
  1550. // Deprecated: Use CheckPhoneCodeRequest.ProtoReflect.Descriptor instead.
  1551. func (*CheckPhoneCodeRequest) Descriptor() ([]byte, []int) {
  1552. return file_common_proto_rawDescGZIP(), []int{23}
  1553. }
  1554. func (x *CheckPhoneCodeRequest) GetPhone() string {
  1555. if x != nil {
  1556. return x.Phone
  1557. }
  1558. return ""
  1559. }
  1560. func (x *CheckPhoneCodeRequest) GetCode() string {
  1561. if x != nil {
  1562. return x.Code
  1563. }
  1564. return ""
  1565. }
  1566. type UploadMaterialResponse struct {
  1567. state protoimpl.MessageState
  1568. sizeCache protoimpl.SizeCache
  1569. unknownFields protoimpl.UnknownFields
  1570. Link string `protobuf:"bytes,1,opt,name=link,proto3" json:"link"`
  1571. }
  1572. func (x *UploadMaterialResponse) Reset() {
  1573. *x = UploadMaterialResponse{}
  1574. if protoimpl.UnsafeEnabled {
  1575. mi := &file_common_proto_msgTypes[24]
  1576. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1577. ms.StoreMessageInfo(mi)
  1578. }
  1579. }
  1580. func (x *UploadMaterialResponse) String() string {
  1581. return protoimpl.X.MessageStringOf(x)
  1582. }
  1583. func (*UploadMaterialResponse) ProtoMessage() {}
  1584. func (x *UploadMaterialResponse) ProtoReflect() protoreflect.Message {
  1585. mi := &file_common_proto_msgTypes[24]
  1586. if protoimpl.UnsafeEnabled && x != nil {
  1587. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1588. if ms.LoadMessageInfo() == nil {
  1589. ms.StoreMessageInfo(mi)
  1590. }
  1591. return ms
  1592. }
  1593. return mi.MessageOf(x)
  1594. }
  1595. // Deprecated: Use UploadMaterialResponse.ProtoReflect.Descriptor instead.
  1596. func (*UploadMaterialResponse) Descriptor() ([]byte, []int) {
  1597. return file_common_proto_rawDescGZIP(), []int{24}
  1598. }
  1599. func (x *UploadMaterialResponse) GetLink() string {
  1600. if x != nil {
  1601. return x.Link
  1602. }
  1603. return ""
  1604. }
  1605. type Ids struct {
  1606. state protoimpl.MessageState
  1607. sizeCache protoimpl.SizeCache
  1608. unknownFields protoimpl.UnknownFields
  1609. Ids []int64 `protobuf:"varint,1,rep,packed,name=ids,proto3" json:"ids"` // 标签ID
  1610. }
  1611. func (x *Ids) Reset() {
  1612. *x = Ids{}
  1613. if protoimpl.UnsafeEnabled {
  1614. mi := &file_common_proto_msgTypes[25]
  1615. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1616. ms.StoreMessageInfo(mi)
  1617. }
  1618. }
  1619. func (x *Ids) String() string {
  1620. return protoimpl.X.MessageStringOf(x)
  1621. }
  1622. func (*Ids) ProtoMessage() {}
  1623. func (x *Ids) ProtoReflect() protoreflect.Message {
  1624. mi := &file_common_proto_msgTypes[25]
  1625. if protoimpl.UnsafeEnabled && x != nil {
  1626. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1627. if ms.LoadMessageInfo() == nil {
  1628. ms.StoreMessageInfo(mi)
  1629. }
  1630. return ms
  1631. }
  1632. return mi.MessageOf(x)
  1633. }
  1634. // Deprecated: Use Ids.ProtoReflect.Descriptor instead.
  1635. func (*Ids) Descriptor() ([]byte, []int) {
  1636. return file_common_proto_rawDescGZIP(), []int{25}
  1637. }
  1638. func (x *Ids) GetIds() []int64 {
  1639. if x != nil {
  1640. return x.Ids
  1641. }
  1642. return nil
  1643. }
  1644. type TagListReply struct {
  1645. state protoimpl.MessageState
  1646. sizeCache protoimpl.SizeCache
  1647. unknownFields protoimpl.UnknownFields
  1648. List []*TagList `protobuf:"bytes,1,rep,name=list,proto3" json:"list"` // 标签列表
  1649. }
  1650. func (x *TagListReply) Reset() {
  1651. *x = TagListReply{}
  1652. if protoimpl.UnsafeEnabled {
  1653. mi := &file_common_proto_msgTypes[26]
  1654. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1655. ms.StoreMessageInfo(mi)
  1656. }
  1657. }
  1658. func (x *TagListReply) String() string {
  1659. return protoimpl.X.MessageStringOf(x)
  1660. }
  1661. func (*TagListReply) ProtoMessage() {}
  1662. func (x *TagListReply) ProtoReflect() protoreflect.Message {
  1663. mi := &file_common_proto_msgTypes[26]
  1664. if protoimpl.UnsafeEnabled && x != nil {
  1665. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1666. if ms.LoadMessageInfo() == nil {
  1667. ms.StoreMessageInfo(mi)
  1668. }
  1669. return ms
  1670. }
  1671. return mi.MessageOf(x)
  1672. }
  1673. // Deprecated: Use TagListReply.ProtoReflect.Descriptor instead.
  1674. func (*TagListReply) Descriptor() ([]byte, []int) {
  1675. return file_common_proto_rawDescGZIP(), []int{26}
  1676. }
  1677. func (x *TagListReply) GetList() []*TagList {
  1678. if x != nil {
  1679. return x.List
  1680. }
  1681. return nil
  1682. }
  1683. type TagList struct {
  1684. state protoimpl.MessageState
  1685. sizeCache protoimpl.SizeCache
  1686. unknownFields protoimpl.UnknownFields
  1687. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"` // 标签ID
  1688. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name"` // 分组名
  1689. }
  1690. func (x *TagList) Reset() {
  1691. *x = TagList{}
  1692. if protoimpl.UnsafeEnabled {
  1693. mi := &file_common_proto_msgTypes[27]
  1694. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1695. ms.StoreMessageInfo(mi)
  1696. }
  1697. }
  1698. func (x *TagList) String() string {
  1699. return protoimpl.X.MessageStringOf(x)
  1700. }
  1701. func (*TagList) ProtoMessage() {}
  1702. func (x *TagList) ProtoReflect() protoreflect.Message {
  1703. mi := &file_common_proto_msgTypes[27]
  1704. if protoimpl.UnsafeEnabled && x != nil {
  1705. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1706. if ms.LoadMessageInfo() == nil {
  1707. ms.StoreMessageInfo(mi)
  1708. }
  1709. return ms
  1710. }
  1711. return mi.MessageOf(x)
  1712. }
  1713. // Deprecated: Use TagList.ProtoReflect.Descriptor instead.
  1714. func (*TagList) Descriptor() ([]byte, []int) {
  1715. return file_common_proto_rawDescGZIP(), []int{27}
  1716. }
  1717. func (x *TagList) GetId() int64 {
  1718. if x != nil {
  1719. return x.Id
  1720. }
  1721. return 0
  1722. }
  1723. func (x *TagList) GetName() string {
  1724. if x != nil {
  1725. return x.Name
  1726. }
  1727. return ""
  1728. }
  1729. type SexReq struct {
  1730. state protoimpl.MessageState
  1731. sizeCache protoimpl.SizeCache
  1732. unknownFields protoimpl.UnknownFields
  1733. Sex int64 `protobuf:"varint,1,opt,name=sex,proto3" json:"sex"`
  1734. }
  1735. func (x *SexReq) Reset() {
  1736. *x = SexReq{}
  1737. if protoimpl.UnsafeEnabled {
  1738. mi := &file_common_proto_msgTypes[28]
  1739. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1740. ms.StoreMessageInfo(mi)
  1741. }
  1742. }
  1743. func (x *SexReq) String() string {
  1744. return protoimpl.X.MessageStringOf(x)
  1745. }
  1746. func (*SexReq) ProtoMessage() {}
  1747. func (x *SexReq) ProtoReflect() protoreflect.Message {
  1748. mi := &file_common_proto_msgTypes[28]
  1749. if protoimpl.UnsafeEnabled && x != nil {
  1750. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1751. if ms.LoadMessageInfo() == nil {
  1752. ms.StoreMessageInfo(mi)
  1753. }
  1754. return ms
  1755. }
  1756. return mi.MessageOf(x)
  1757. }
  1758. // Deprecated: Use SexReq.ProtoReflect.Descriptor instead.
  1759. func (*SexReq) Descriptor() ([]byte, []int) {
  1760. return file_common_proto_rawDescGZIP(), []int{28}
  1761. }
  1762. func (x *SexReq) GetSex() int64 {
  1763. if x != nil {
  1764. return x.Sex
  1765. }
  1766. return 0
  1767. }
  1768. type RandomIntroduceReply struct {
  1769. state protoimpl.MessageState
  1770. sizeCache protoimpl.SizeCache
  1771. unknownFields protoimpl.UnknownFields
  1772. Introduce string `protobuf:"bytes,1,opt,name=introduce,proto3" json:"introduce"`
  1773. }
  1774. func (x *RandomIntroduceReply) Reset() {
  1775. *x = RandomIntroduceReply{}
  1776. if protoimpl.UnsafeEnabled {
  1777. mi := &file_common_proto_msgTypes[29]
  1778. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1779. ms.StoreMessageInfo(mi)
  1780. }
  1781. }
  1782. func (x *RandomIntroduceReply) String() string {
  1783. return protoimpl.X.MessageStringOf(x)
  1784. }
  1785. func (*RandomIntroduceReply) ProtoMessage() {}
  1786. func (x *RandomIntroduceReply) ProtoReflect() protoreflect.Message {
  1787. mi := &file_common_proto_msgTypes[29]
  1788. if protoimpl.UnsafeEnabled && x != nil {
  1789. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1790. if ms.LoadMessageInfo() == nil {
  1791. ms.StoreMessageInfo(mi)
  1792. }
  1793. return ms
  1794. }
  1795. return mi.MessageOf(x)
  1796. }
  1797. // Deprecated: Use RandomIntroduceReply.ProtoReflect.Descriptor instead.
  1798. func (*RandomIntroduceReply) Descriptor() ([]byte, []int) {
  1799. return file_common_proto_rawDescGZIP(), []int{29}
  1800. }
  1801. func (x *RandomIntroduceReply) GetIntroduce() string {
  1802. if x != nil {
  1803. return x.Introduce
  1804. }
  1805. return ""
  1806. }
  1807. type UpdateInformationRequest struct {
  1808. state protoimpl.MessageState
  1809. sizeCache protoimpl.SizeCache
  1810. unknownFields protoimpl.UnknownFields
  1811. Nickname string `protobuf:"bytes,1,opt,name=nickname,proto3" json:"nickname"` // 昵称
  1812. AvatarUrl string `protobuf:"bytes,2,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像
  1813. Sex int64 `protobuf:"varint,3,opt,name=sex,proto3" json:"sex"` // 性别
  1814. Birthday int64 `protobuf:"varint,4,opt,name=birthday,proto3" json:"birthday"` // 出生日期(毫秒级时间戳)
  1815. TagList []int64 `protobuf:"varint,5,rep,packed,name=tagList,proto3" json:"tagList"` // 标签id列表
  1816. IntroduceVoice string `protobuf:"bytes,6,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音的链接
  1817. Signature string `protobuf:"bytes,7,opt,name=signature,proto3" json:"signature"` // 介绍(签名)
  1818. Pictures []string `protobuf:"bytes,8,rep,name=pictures,proto3" json:"pictures"` // 相册(主页图片)
  1819. Province string `protobuf:"bytes,9,opt,name=province,proto3" json:"province"` // 省
  1820. City string `protobuf:"bytes,10,opt,name=city,proto3" json:"city"` // 市
  1821. Area string `protobuf:"bytes,11,opt,name=area,proto3" json:"area"` // 区
  1822. }
  1823. func (x *UpdateInformationRequest) Reset() {
  1824. *x = UpdateInformationRequest{}
  1825. if protoimpl.UnsafeEnabled {
  1826. mi := &file_common_proto_msgTypes[30]
  1827. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1828. ms.StoreMessageInfo(mi)
  1829. }
  1830. }
  1831. func (x *UpdateInformationRequest) String() string {
  1832. return protoimpl.X.MessageStringOf(x)
  1833. }
  1834. func (*UpdateInformationRequest) ProtoMessage() {}
  1835. func (x *UpdateInformationRequest) ProtoReflect() protoreflect.Message {
  1836. mi := &file_common_proto_msgTypes[30]
  1837. if protoimpl.UnsafeEnabled && x != nil {
  1838. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1839. if ms.LoadMessageInfo() == nil {
  1840. ms.StoreMessageInfo(mi)
  1841. }
  1842. return ms
  1843. }
  1844. return mi.MessageOf(x)
  1845. }
  1846. // Deprecated: Use UpdateInformationRequest.ProtoReflect.Descriptor instead.
  1847. func (*UpdateInformationRequest) Descriptor() ([]byte, []int) {
  1848. return file_common_proto_rawDescGZIP(), []int{30}
  1849. }
  1850. func (x *UpdateInformationRequest) GetNickname() string {
  1851. if x != nil {
  1852. return x.Nickname
  1853. }
  1854. return ""
  1855. }
  1856. func (x *UpdateInformationRequest) GetAvatarUrl() string {
  1857. if x != nil {
  1858. return x.AvatarUrl
  1859. }
  1860. return ""
  1861. }
  1862. func (x *UpdateInformationRequest) GetSex() int64 {
  1863. if x != nil {
  1864. return x.Sex
  1865. }
  1866. return 0
  1867. }
  1868. func (x *UpdateInformationRequest) GetBirthday() int64 {
  1869. if x != nil {
  1870. return x.Birthday
  1871. }
  1872. return 0
  1873. }
  1874. func (x *UpdateInformationRequest) GetTagList() []int64 {
  1875. if x != nil {
  1876. return x.TagList
  1877. }
  1878. return nil
  1879. }
  1880. func (x *UpdateInformationRequest) GetIntroduceVoice() string {
  1881. if x != nil {
  1882. return x.IntroduceVoice
  1883. }
  1884. return ""
  1885. }
  1886. func (x *UpdateInformationRequest) GetSignature() string {
  1887. if x != nil {
  1888. return x.Signature
  1889. }
  1890. return ""
  1891. }
  1892. func (x *UpdateInformationRequest) GetPictures() []string {
  1893. if x != nil {
  1894. return x.Pictures
  1895. }
  1896. return nil
  1897. }
  1898. func (x *UpdateInformationRequest) GetProvince() string {
  1899. if x != nil {
  1900. return x.Province
  1901. }
  1902. return ""
  1903. }
  1904. func (x *UpdateInformationRequest) GetCity() string {
  1905. if x != nil {
  1906. return x.City
  1907. }
  1908. return ""
  1909. }
  1910. func (x *UpdateInformationRequest) GetArea() string {
  1911. if x != nil {
  1912. return x.Area
  1913. }
  1914. return ""
  1915. }
  1916. type OnlinePersonListReply struct {
  1917. state protoimpl.MessageState
  1918. sizeCache protoimpl.SizeCache
  1919. unknownFields protoimpl.UnknownFields
  1920. List []*OnlinePersonInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1921. NextId string `protobuf:"bytes,2,opt,name=nextId,proto3" json:"nextId"`
  1922. }
  1923. func (x *OnlinePersonListReply) Reset() {
  1924. *x = OnlinePersonListReply{}
  1925. if protoimpl.UnsafeEnabled {
  1926. mi := &file_common_proto_msgTypes[31]
  1927. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1928. ms.StoreMessageInfo(mi)
  1929. }
  1930. }
  1931. func (x *OnlinePersonListReply) String() string {
  1932. return protoimpl.X.MessageStringOf(x)
  1933. }
  1934. func (*OnlinePersonListReply) ProtoMessage() {}
  1935. func (x *OnlinePersonListReply) ProtoReflect() protoreflect.Message {
  1936. mi := &file_common_proto_msgTypes[31]
  1937. if protoimpl.UnsafeEnabled && x != nil {
  1938. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1939. if ms.LoadMessageInfo() == nil {
  1940. ms.StoreMessageInfo(mi)
  1941. }
  1942. return ms
  1943. }
  1944. return mi.MessageOf(x)
  1945. }
  1946. // Deprecated: Use OnlinePersonListReply.ProtoReflect.Descriptor instead.
  1947. func (*OnlinePersonListReply) Descriptor() ([]byte, []int) {
  1948. return file_common_proto_rawDescGZIP(), []int{31}
  1949. }
  1950. func (x *OnlinePersonListReply) GetList() []*OnlinePersonInfo {
  1951. if x != nil {
  1952. return x.List
  1953. }
  1954. return nil
  1955. }
  1956. func (x *OnlinePersonListReply) GetNextId() string {
  1957. if x != nil {
  1958. return x.NextId
  1959. }
  1960. return ""
  1961. }
  1962. type OnlinePersonInfo struct {
  1963. state protoimpl.MessageState
  1964. sizeCache protoimpl.SizeCache
  1965. unknownFields protoimpl.UnknownFields
  1966. PersonID string `protobuf:"bytes,1,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  1967. PersonType string `protobuf:"bytes,2,opt,name=personType,proto3" json:"personType"` // 类型
  1968. Nickname string `protobuf:"bytes,3,opt,name=nickname,proto3" json:"nickname"` // 昵称
  1969. AvatarUrl string `protobuf:"bytes,4,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  1970. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  1971. Age int64 `protobuf:"varint,6,opt,name=age,proto3" json:"age"` // 年龄
  1972. Constellation string `protobuf:"bytes,7,opt,name=constellation,proto3" json:"constellation"` // 星座
  1973. Signature string `protobuf:"bytes,8,opt,name=signature,proto3" json:"signature"` // 签名
  1974. Province string `protobuf:"bytes,9,opt,name=province,proto3" json:"province"` // 省
  1975. City string `protobuf:"bytes,10,opt,name=city,proto3" json:"city"` // 市
  1976. Area string `protobuf:"bytes,11,opt,name=area,proto3" json:"area"` // 区
  1977. IntroduceVoice string `protobuf:"bytes,12,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音
  1978. TagList []string `protobuf:"bytes,13,rep,name=tagList,proto3" json:"tagList"` // 标签
  1979. }
  1980. func (x *OnlinePersonInfo) Reset() {
  1981. *x = OnlinePersonInfo{}
  1982. if protoimpl.UnsafeEnabled {
  1983. mi := &file_common_proto_msgTypes[32]
  1984. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1985. ms.StoreMessageInfo(mi)
  1986. }
  1987. }
  1988. func (x *OnlinePersonInfo) String() string {
  1989. return protoimpl.X.MessageStringOf(x)
  1990. }
  1991. func (*OnlinePersonInfo) ProtoMessage() {}
  1992. func (x *OnlinePersonInfo) ProtoReflect() protoreflect.Message {
  1993. mi := &file_common_proto_msgTypes[32]
  1994. if protoimpl.UnsafeEnabled && x != nil {
  1995. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1996. if ms.LoadMessageInfo() == nil {
  1997. ms.StoreMessageInfo(mi)
  1998. }
  1999. return ms
  2000. }
  2001. return mi.MessageOf(x)
  2002. }
  2003. // Deprecated: Use OnlinePersonInfo.ProtoReflect.Descriptor instead.
  2004. func (*OnlinePersonInfo) Descriptor() ([]byte, []int) {
  2005. return file_common_proto_rawDescGZIP(), []int{32}
  2006. }
  2007. func (x *OnlinePersonInfo) GetPersonID() string {
  2008. if x != nil {
  2009. return x.PersonID
  2010. }
  2011. return ""
  2012. }
  2013. func (x *OnlinePersonInfo) GetPersonType() string {
  2014. if x != nil {
  2015. return x.PersonType
  2016. }
  2017. return ""
  2018. }
  2019. func (x *OnlinePersonInfo) GetNickname() string {
  2020. if x != nil {
  2021. return x.Nickname
  2022. }
  2023. return ""
  2024. }
  2025. func (x *OnlinePersonInfo) GetAvatarUrl() string {
  2026. if x != nil {
  2027. return x.AvatarUrl
  2028. }
  2029. return ""
  2030. }
  2031. func (x *OnlinePersonInfo) GetSex() int64 {
  2032. if x != nil {
  2033. return x.Sex
  2034. }
  2035. return 0
  2036. }
  2037. func (x *OnlinePersonInfo) GetAge() int64 {
  2038. if x != nil {
  2039. return x.Age
  2040. }
  2041. return 0
  2042. }
  2043. func (x *OnlinePersonInfo) GetConstellation() string {
  2044. if x != nil {
  2045. return x.Constellation
  2046. }
  2047. return ""
  2048. }
  2049. func (x *OnlinePersonInfo) GetSignature() string {
  2050. if x != nil {
  2051. return x.Signature
  2052. }
  2053. return ""
  2054. }
  2055. func (x *OnlinePersonInfo) GetProvince() string {
  2056. if x != nil {
  2057. return x.Province
  2058. }
  2059. return ""
  2060. }
  2061. func (x *OnlinePersonInfo) GetCity() string {
  2062. if x != nil {
  2063. return x.City
  2064. }
  2065. return ""
  2066. }
  2067. func (x *OnlinePersonInfo) GetArea() string {
  2068. if x != nil {
  2069. return x.Area
  2070. }
  2071. return ""
  2072. }
  2073. func (x *OnlinePersonInfo) GetIntroduceVoice() string {
  2074. if x != nil {
  2075. return x.IntroduceVoice
  2076. }
  2077. return ""
  2078. }
  2079. func (x *OnlinePersonInfo) GetTagList() []string {
  2080. if x != nil {
  2081. return x.TagList
  2082. }
  2083. return nil
  2084. }
  2085. type ChatRecordListReply struct {
  2086. state protoimpl.MessageState
  2087. sizeCache protoimpl.SizeCache
  2088. unknownFields protoimpl.UnknownFields
  2089. List []*ChatRecordInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  2090. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  2091. }
  2092. func (x *ChatRecordListReply) Reset() {
  2093. *x = ChatRecordListReply{}
  2094. if protoimpl.UnsafeEnabled {
  2095. mi := &file_common_proto_msgTypes[33]
  2096. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2097. ms.StoreMessageInfo(mi)
  2098. }
  2099. }
  2100. func (x *ChatRecordListReply) String() string {
  2101. return protoimpl.X.MessageStringOf(x)
  2102. }
  2103. func (*ChatRecordListReply) ProtoMessage() {}
  2104. func (x *ChatRecordListReply) ProtoReflect() protoreflect.Message {
  2105. mi := &file_common_proto_msgTypes[33]
  2106. if protoimpl.UnsafeEnabled && x != nil {
  2107. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2108. if ms.LoadMessageInfo() == nil {
  2109. ms.StoreMessageInfo(mi)
  2110. }
  2111. return ms
  2112. }
  2113. return mi.MessageOf(x)
  2114. }
  2115. // Deprecated: Use ChatRecordListReply.ProtoReflect.Descriptor instead.
  2116. func (*ChatRecordListReply) Descriptor() ([]byte, []int) {
  2117. return file_common_proto_rawDescGZIP(), []int{33}
  2118. }
  2119. func (x *ChatRecordListReply) GetList() []*ChatRecordInfo {
  2120. if x != nil {
  2121. return x.List
  2122. }
  2123. return nil
  2124. }
  2125. func (x *ChatRecordListReply) GetNextId() int64 {
  2126. if x != nil {
  2127. return x.NextId
  2128. }
  2129. return 0
  2130. }
  2131. type ChatRoomMsg struct {
  2132. state protoimpl.MessageState
  2133. sizeCache protoimpl.SizeCache
  2134. unknownFields protoimpl.UnknownFields
  2135. RoomId int64 `protobuf:"varint,1,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  2136. Self *ChatPersonMsg `protobuf:"bytes,2,opt,name=self,proto3" json:"self"` // 自己的信息
  2137. Other *ChatPersonMsg `protobuf:"bytes,3,opt,name=other,proto3" json:"other"` // 对方的信息
  2138. Likeability int64 `protobuf:"varint,5,opt,name=likeability,proto3" json:"likeability"` // 对对方的好感度
  2139. }
  2140. func (x *ChatRoomMsg) Reset() {
  2141. *x = ChatRoomMsg{}
  2142. if protoimpl.UnsafeEnabled {
  2143. mi := &file_common_proto_msgTypes[34]
  2144. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2145. ms.StoreMessageInfo(mi)
  2146. }
  2147. }
  2148. func (x *ChatRoomMsg) String() string {
  2149. return protoimpl.X.MessageStringOf(x)
  2150. }
  2151. func (*ChatRoomMsg) ProtoMessage() {}
  2152. func (x *ChatRoomMsg) ProtoReflect() protoreflect.Message {
  2153. mi := &file_common_proto_msgTypes[34]
  2154. if protoimpl.UnsafeEnabled && x != nil {
  2155. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2156. if ms.LoadMessageInfo() == nil {
  2157. ms.StoreMessageInfo(mi)
  2158. }
  2159. return ms
  2160. }
  2161. return mi.MessageOf(x)
  2162. }
  2163. // Deprecated: Use ChatRoomMsg.ProtoReflect.Descriptor instead.
  2164. func (*ChatRoomMsg) Descriptor() ([]byte, []int) {
  2165. return file_common_proto_rawDescGZIP(), []int{34}
  2166. }
  2167. func (x *ChatRoomMsg) GetRoomId() int64 {
  2168. if x != nil {
  2169. return x.RoomId
  2170. }
  2171. return 0
  2172. }
  2173. func (x *ChatRoomMsg) GetSelf() *ChatPersonMsg {
  2174. if x != nil {
  2175. return x.Self
  2176. }
  2177. return nil
  2178. }
  2179. func (x *ChatRoomMsg) GetOther() *ChatPersonMsg {
  2180. if x != nil {
  2181. return x.Other
  2182. }
  2183. return nil
  2184. }
  2185. func (x *ChatRoomMsg) GetLikeability() int64 {
  2186. if x != nil {
  2187. return x.Likeability
  2188. }
  2189. return 0
  2190. }
  2191. type ChatPersonMsg struct {
  2192. state protoimpl.MessageState
  2193. sizeCache protoimpl.SizeCache
  2194. unknownFields protoimpl.UnknownFields
  2195. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  2196. Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type"` // 类型
  2197. Nickname string `protobuf:"bytes,3,opt,name=nickname,proto3" json:"nickname"` // 昵称
  2198. Avatar string `protobuf:"bytes,4,opt,name=avatar,proto3" json:"avatar"` // 头像
  2199. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  2200. }
  2201. func (x *ChatPersonMsg) Reset() {
  2202. *x = ChatPersonMsg{}
  2203. if protoimpl.UnsafeEnabled {
  2204. mi := &file_common_proto_msgTypes[35]
  2205. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2206. ms.StoreMessageInfo(mi)
  2207. }
  2208. }
  2209. func (x *ChatPersonMsg) String() string {
  2210. return protoimpl.X.MessageStringOf(x)
  2211. }
  2212. func (*ChatPersonMsg) ProtoMessage() {}
  2213. func (x *ChatPersonMsg) ProtoReflect() protoreflect.Message {
  2214. mi := &file_common_proto_msgTypes[35]
  2215. if protoimpl.UnsafeEnabled && x != nil {
  2216. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2217. if ms.LoadMessageInfo() == nil {
  2218. ms.StoreMessageInfo(mi)
  2219. }
  2220. return ms
  2221. }
  2222. return mi.MessageOf(x)
  2223. }
  2224. // Deprecated: Use ChatPersonMsg.ProtoReflect.Descriptor instead.
  2225. func (*ChatPersonMsg) Descriptor() ([]byte, []int) {
  2226. return file_common_proto_rawDescGZIP(), []int{35}
  2227. }
  2228. func (x *ChatPersonMsg) GetId() string {
  2229. if x != nil {
  2230. return x.Id
  2231. }
  2232. return ""
  2233. }
  2234. func (x *ChatPersonMsg) GetType() string {
  2235. if x != nil {
  2236. return x.Type
  2237. }
  2238. return ""
  2239. }
  2240. func (x *ChatPersonMsg) GetNickname() string {
  2241. if x != nil {
  2242. return x.Nickname
  2243. }
  2244. return ""
  2245. }
  2246. func (x *ChatPersonMsg) GetAvatar() string {
  2247. if x != nil {
  2248. return x.Avatar
  2249. }
  2250. return ""
  2251. }
  2252. func (x *ChatPersonMsg) GetSex() int64 {
  2253. if x != nil {
  2254. return x.Sex
  2255. }
  2256. return 0
  2257. }
  2258. type ChatRecordInfo struct {
  2259. state protoimpl.MessageState
  2260. sizeCache protoimpl.SizeCache
  2261. unknownFields protoimpl.UnknownFields
  2262. MessageId int64 `protobuf:"varint,1,opt,name=messageId,proto3" json:"messageId"` // 消息的ID
  2263. MsgType string `protobuf:"bytes,2,opt,name=msgType,proto3" json:"msgType"` // 消息类型
  2264. Message *Message `protobuf:"bytes,3,opt,name=message,proto3" json:"message"` // 消息的结构
  2265. RoomId int64 `protobuf:"varint,4,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  2266. IsSelf bool `protobuf:"varint,5,opt,name=isSelf,proto3" json:"isSelf"` // 是否是自己
  2267. SendTime int64 `protobuf:"varint,6,opt,name=sendTime,proto3" json:"sendTime"` // 发送时间
  2268. Status string `protobuf:"bytes,7,opt,name=status,proto3" json:"status"` // 消息状态
  2269. StatusMsg string `protobuf:"bytes,8,opt,name=statusMsg,proto3" json:"statusMsg"` // 状态说明
  2270. IsRead bool `protobuf:"varint,9,opt,name=isRead,proto3" json:"isRead"` // 对方是否已读
  2271. }
  2272. func (x *ChatRecordInfo) Reset() {
  2273. *x = ChatRecordInfo{}
  2274. if protoimpl.UnsafeEnabled {
  2275. mi := &file_common_proto_msgTypes[36]
  2276. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2277. ms.StoreMessageInfo(mi)
  2278. }
  2279. }
  2280. func (x *ChatRecordInfo) String() string {
  2281. return protoimpl.X.MessageStringOf(x)
  2282. }
  2283. func (*ChatRecordInfo) ProtoMessage() {}
  2284. func (x *ChatRecordInfo) ProtoReflect() protoreflect.Message {
  2285. mi := &file_common_proto_msgTypes[36]
  2286. if protoimpl.UnsafeEnabled && x != nil {
  2287. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2288. if ms.LoadMessageInfo() == nil {
  2289. ms.StoreMessageInfo(mi)
  2290. }
  2291. return ms
  2292. }
  2293. return mi.MessageOf(x)
  2294. }
  2295. // Deprecated: Use ChatRecordInfo.ProtoReflect.Descriptor instead.
  2296. func (*ChatRecordInfo) Descriptor() ([]byte, []int) {
  2297. return file_common_proto_rawDescGZIP(), []int{36}
  2298. }
  2299. func (x *ChatRecordInfo) GetMessageId() int64 {
  2300. if x != nil {
  2301. return x.MessageId
  2302. }
  2303. return 0
  2304. }
  2305. func (x *ChatRecordInfo) GetMsgType() string {
  2306. if x != nil {
  2307. return x.MsgType
  2308. }
  2309. return ""
  2310. }
  2311. func (x *ChatRecordInfo) GetMessage() *Message {
  2312. if x != nil {
  2313. return x.Message
  2314. }
  2315. return nil
  2316. }
  2317. func (x *ChatRecordInfo) GetRoomId() int64 {
  2318. if x != nil {
  2319. return x.RoomId
  2320. }
  2321. return 0
  2322. }
  2323. func (x *ChatRecordInfo) GetIsSelf() bool {
  2324. if x != nil {
  2325. return x.IsSelf
  2326. }
  2327. return false
  2328. }
  2329. func (x *ChatRecordInfo) GetSendTime() int64 {
  2330. if x != nil {
  2331. return x.SendTime
  2332. }
  2333. return 0
  2334. }
  2335. func (x *ChatRecordInfo) GetStatus() string {
  2336. if x != nil {
  2337. return x.Status
  2338. }
  2339. return ""
  2340. }
  2341. func (x *ChatRecordInfo) GetStatusMsg() string {
  2342. if x != nil {
  2343. return x.StatusMsg
  2344. }
  2345. return ""
  2346. }
  2347. func (x *ChatRecordInfo) GetIsRead() bool {
  2348. if x != nil {
  2349. return x.IsRead
  2350. }
  2351. return false
  2352. }
  2353. type ChatIsReadInfo struct {
  2354. state protoimpl.MessageState
  2355. sizeCache protoimpl.SizeCache
  2356. unknownFields protoimpl.UnknownFields
  2357. MessageId int64 `protobuf:"varint,1,opt,name=messageId,proto3" json:"messageId"` // 消息的ID
  2358. RoomId int64 `protobuf:"varint,4,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  2359. }
  2360. func (x *ChatIsReadInfo) Reset() {
  2361. *x = ChatIsReadInfo{}
  2362. if protoimpl.UnsafeEnabled {
  2363. mi := &file_common_proto_msgTypes[37]
  2364. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2365. ms.StoreMessageInfo(mi)
  2366. }
  2367. }
  2368. func (x *ChatIsReadInfo) String() string {
  2369. return protoimpl.X.MessageStringOf(x)
  2370. }
  2371. func (*ChatIsReadInfo) ProtoMessage() {}
  2372. func (x *ChatIsReadInfo) ProtoReflect() protoreflect.Message {
  2373. mi := &file_common_proto_msgTypes[37]
  2374. if protoimpl.UnsafeEnabled && x != nil {
  2375. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2376. if ms.LoadMessageInfo() == nil {
  2377. ms.StoreMessageInfo(mi)
  2378. }
  2379. return ms
  2380. }
  2381. return mi.MessageOf(x)
  2382. }
  2383. // Deprecated: Use ChatIsReadInfo.ProtoReflect.Descriptor instead.
  2384. func (*ChatIsReadInfo) Descriptor() ([]byte, []int) {
  2385. return file_common_proto_rawDescGZIP(), []int{37}
  2386. }
  2387. func (x *ChatIsReadInfo) GetMessageId() int64 {
  2388. if x != nil {
  2389. return x.MessageId
  2390. }
  2391. return 0
  2392. }
  2393. func (x *ChatIsReadInfo) GetRoomId() int64 {
  2394. if x != nil {
  2395. return x.RoomId
  2396. }
  2397. return 0
  2398. }
  2399. type GoToRoom struct {
  2400. state protoimpl.MessageState
  2401. sizeCache protoimpl.SizeCache
  2402. unknownFields protoimpl.UnknownFields
  2403. RoomId int64 `protobuf:"varint,1,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  2404. }
  2405. func (x *GoToRoom) Reset() {
  2406. *x = GoToRoom{}
  2407. if protoimpl.UnsafeEnabled {
  2408. mi := &file_common_proto_msgTypes[38]
  2409. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2410. ms.StoreMessageInfo(mi)
  2411. }
  2412. }
  2413. func (x *GoToRoom) String() string {
  2414. return protoimpl.X.MessageStringOf(x)
  2415. }
  2416. func (*GoToRoom) ProtoMessage() {}
  2417. func (x *GoToRoom) ProtoReflect() protoreflect.Message {
  2418. mi := &file_common_proto_msgTypes[38]
  2419. if protoimpl.UnsafeEnabled && x != nil {
  2420. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2421. if ms.LoadMessageInfo() == nil {
  2422. ms.StoreMessageInfo(mi)
  2423. }
  2424. return ms
  2425. }
  2426. return mi.MessageOf(x)
  2427. }
  2428. // Deprecated: Use GoToRoom.ProtoReflect.Descriptor instead.
  2429. func (*GoToRoom) Descriptor() ([]byte, []int) {
  2430. return file_common_proto_rawDescGZIP(), []int{38}
  2431. }
  2432. func (x *GoToRoom) GetRoomId() int64 {
  2433. if x != nil {
  2434. return x.RoomId
  2435. }
  2436. return 0
  2437. }
  2438. type Message struct {
  2439. state protoimpl.MessageState
  2440. sizeCache protoimpl.SizeCache
  2441. unknownFields protoimpl.UnknownFields
  2442. Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content"` // 文本内容
  2443. MaterialUrl string `protobuf:"bytes,2,opt,name=materialUrl,proto3" json:"materialUrl"` // 素材链接
  2444. }
  2445. func (x *Message) Reset() {
  2446. *x = Message{}
  2447. if protoimpl.UnsafeEnabled {
  2448. mi := &file_common_proto_msgTypes[39]
  2449. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2450. ms.StoreMessageInfo(mi)
  2451. }
  2452. }
  2453. func (x *Message) String() string {
  2454. return protoimpl.X.MessageStringOf(x)
  2455. }
  2456. func (*Message) ProtoMessage() {}
  2457. func (x *Message) ProtoReflect() protoreflect.Message {
  2458. mi := &file_common_proto_msgTypes[39]
  2459. if protoimpl.UnsafeEnabled && x != nil {
  2460. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2461. if ms.LoadMessageInfo() == nil {
  2462. ms.StoreMessageInfo(mi)
  2463. }
  2464. return ms
  2465. }
  2466. return mi.MessageOf(x)
  2467. }
  2468. // Deprecated: Use Message.ProtoReflect.Descriptor instead.
  2469. func (*Message) Descriptor() ([]byte, []int) {
  2470. return file_common_proto_rawDescGZIP(), []int{39}
  2471. }
  2472. func (x *Message) GetContent() string {
  2473. if x != nil {
  2474. return x.Content
  2475. }
  2476. return ""
  2477. }
  2478. func (x *Message) GetMaterialUrl() string {
  2479. if x != nil {
  2480. return x.MaterialUrl
  2481. }
  2482. return ""
  2483. }
  2484. type FindChatRoomMsgRequest struct {
  2485. state protoimpl.MessageState
  2486. sizeCache protoimpl.SizeCache
  2487. unknownFields protoimpl.UnknownFields
  2488. RoomId int64 `protobuf:"varint,1,opt,name=roomId,proto3" json:"roomId"`
  2489. }
  2490. func (x *FindChatRoomMsgRequest) Reset() {
  2491. *x = FindChatRoomMsgRequest{}
  2492. if protoimpl.UnsafeEnabled {
  2493. mi := &file_common_proto_msgTypes[40]
  2494. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2495. ms.StoreMessageInfo(mi)
  2496. }
  2497. }
  2498. func (x *FindChatRoomMsgRequest) String() string {
  2499. return protoimpl.X.MessageStringOf(x)
  2500. }
  2501. func (*FindChatRoomMsgRequest) ProtoMessage() {}
  2502. func (x *FindChatRoomMsgRequest) ProtoReflect() protoreflect.Message {
  2503. mi := &file_common_proto_msgTypes[40]
  2504. if protoimpl.UnsafeEnabled && x != nil {
  2505. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2506. if ms.LoadMessageInfo() == nil {
  2507. ms.StoreMessageInfo(mi)
  2508. }
  2509. return ms
  2510. }
  2511. return mi.MessageOf(x)
  2512. }
  2513. // Deprecated: Use FindChatRoomMsgRequest.ProtoReflect.Descriptor instead.
  2514. func (*FindChatRoomMsgRequest) Descriptor() ([]byte, []int) {
  2515. return file_common_proto_rawDescGZIP(), []int{40}
  2516. }
  2517. func (x *FindChatRoomMsgRequest) GetRoomId() int64 {
  2518. if x != nil {
  2519. return x.RoomId
  2520. }
  2521. return 0
  2522. }
  2523. type RoomIDRequest struct {
  2524. state protoimpl.MessageState
  2525. sizeCache protoimpl.SizeCache
  2526. unknownFields protoimpl.UnknownFields
  2527. RoomId int64 `protobuf:"varint,1,opt,name=roomId,proto3" json:"roomId"`
  2528. }
  2529. func (x *RoomIDRequest) Reset() {
  2530. *x = RoomIDRequest{}
  2531. if protoimpl.UnsafeEnabled {
  2532. mi := &file_common_proto_msgTypes[41]
  2533. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2534. ms.StoreMessageInfo(mi)
  2535. }
  2536. }
  2537. func (x *RoomIDRequest) String() string {
  2538. return protoimpl.X.MessageStringOf(x)
  2539. }
  2540. func (*RoomIDRequest) ProtoMessage() {}
  2541. func (x *RoomIDRequest) ProtoReflect() protoreflect.Message {
  2542. mi := &file_common_proto_msgTypes[41]
  2543. if protoimpl.UnsafeEnabled && x != nil {
  2544. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2545. if ms.LoadMessageInfo() == nil {
  2546. ms.StoreMessageInfo(mi)
  2547. }
  2548. return ms
  2549. }
  2550. return mi.MessageOf(x)
  2551. }
  2552. // Deprecated: Use RoomIDRequest.ProtoReflect.Descriptor instead.
  2553. func (*RoomIDRequest) Descriptor() ([]byte, []int) {
  2554. return file_common_proto_rawDescGZIP(), []int{41}
  2555. }
  2556. func (x *RoomIDRequest) GetRoomId() int64 {
  2557. if x != nil {
  2558. return x.RoomId
  2559. }
  2560. return 0
  2561. }
  2562. type FindChatRecordListRequest struct {
  2563. state protoimpl.MessageState
  2564. sizeCache protoimpl.SizeCache
  2565. unknownFields protoimpl.UnknownFields
  2566. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  2567. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  2568. RoomId int64 `protobuf:"varint,3,opt,name=roomId,proto3" json:"roomId"`
  2569. }
  2570. func (x *FindChatRecordListRequest) Reset() {
  2571. *x = FindChatRecordListRequest{}
  2572. if protoimpl.UnsafeEnabled {
  2573. mi := &file_common_proto_msgTypes[42]
  2574. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2575. ms.StoreMessageInfo(mi)
  2576. }
  2577. }
  2578. func (x *FindChatRecordListRequest) String() string {
  2579. return protoimpl.X.MessageStringOf(x)
  2580. }
  2581. func (*FindChatRecordListRequest) ProtoMessage() {}
  2582. func (x *FindChatRecordListRequest) ProtoReflect() protoreflect.Message {
  2583. mi := &file_common_proto_msgTypes[42]
  2584. if protoimpl.UnsafeEnabled && x != nil {
  2585. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2586. if ms.LoadMessageInfo() == nil {
  2587. ms.StoreMessageInfo(mi)
  2588. }
  2589. return ms
  2590. }
  2591. return mi.MessageOf(x)
  2592. }
  2593. // Deprecated: Use FindChatRecordListRequest.ProtoReflect.Descriptor instead.
  2594. func (*FindChatRecordListRequest) Descriptor() ([]byte, []int) {
  2595. return file_common_proto_rawDescGZIP(), []int{42}
  2596. }
  2597. func (x *FindChatRecordListRequest) GetNextId() int64 {
  2598. if x != nil {
  2599. return x.NextId
  2600. }
  2601. return 0
  2602. }
  2603. func (x *FindChatRecordListRequest) GetOffset() int64 {
  2604. if x != nil {
  2605. return x.Offset
  2606. }
  2607. return 0
  2608. }
  2609. func (x *FindChatRecordListRequest) GetRoomId() int64 {
  2610. if x != nil {
  2611. return x.RoomId
  2612. }
  2613. return 0
  2614. }
  2615. type IsLike struct {
  2616. state protoimpl.MessageState
  2617. sizeCache protoimpl.SizeCache
  2618. unknownFields protoimpl.UnknownFields
  2619. IsLike bool `protobuf:"varint,1,opt,name=isLike,proto3" json:"isLike"` // 是否喜欢(关注)
  2620. }
  2621. func (x *IsLike) Reset() {
  2622. *x = IsLike{}
  2623. if protoimpl.UnsafeEnabled {
  2624. mi := &file_common_proto_msgTypes[43]
  2625. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2626. ms.StoreMessageInfo(mi)
  2627. }
  2628. }
  2629. func (x *IsLike) String() string {
  2630. return protoimpl.X.MessageStringOf(x)
  2631. }
  2632. func (*IsLike) ProtoMessage() {}
  2633. func (x *IsLike) ProtoReflect() protoreflect.Message {
  2634. mi := &file_common_proto_msgTypes[43]
  2635. if protoimpl.UnsafeEnabled && x != nil {
  2636. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2637. if ms.LoadMessageInfo() == nil {
  2638. ms.StoreMessageInfo(mi)
  2639. }
  2640. return ms
  2641. }
  2642. return mi.MessageOf(x)
  2643. }
  2644. // Deprecated: Use IsLike.ProtoReflect.Descriptor instead.
  2645. func (*IsLike) Descriptor() ([]byte, []int) {
  2646. return file_common_proto_rawDescGZIP(), []int{43}
  2647. }
  2648. func (x *IsLike) GetIsLike() bool {
  2649. if x != nil {
  2650. return x.IsLike
  2651. }
  2652. return false
  2653. }
  2654. type BalanceRequest struct {
  2655. state protoimpl.MessageState
  2656. sizeCache protoimpl.SizeCache
  2657. unknownFields protoimpl.UnknownFields
  2658. PersonID string `protobuf:"bytes,1,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  2659. PersonType string `protobuf:"bytes,2,opt,name=personType,proto3" json:"personType"` // 类型
  2660. Balance int64 `protobuf:"varint,3,opt,name=balance,proto3" json:"balance"` // 充值或者减少的金额
  2661. }
  2662. func (x *BalanceRequest) Reset() {
  2663. *x = BalanceRequest{}
  2664. if protoimpl.UnsafeEnabled {
  2665. mi := &file_common_proto_msgTypes[44]
  2666. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2667. ms.StoreMessageInfo(mi)
  2668. }
  2669. }
  2670. func (x *BalanceRequest) String() string {
  2671. return protoimpl.X.MessageStringOf(x)
  2672. }
  2673. func (*BalanceRequest) ProtoMessage() {}
  2674. func (x *BalanceRequest) ProtoReflect() protoreflect.Message {
  2675. mi := &file_common_proto_msgTypes[44]
  2676. if protoimpl.UnsafeEnabled && x != nil {
  2677. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2678. if ms.LoadMessageInfo() == nil {
  2679. ms.StoreMessageInfo(mi)
  2680. }
  2681. return ms
  2682. }
  2683. return mi.MessageOf(x)
  2684. }
  2685. // Deprecated: Use BalanceRequest.ProtoReflect.Descriptor instead.
  2686. func (*BalanceRequest) Descriptor() ([]byte, []int) {
  2687. return file_common_proto_rawDescGZIP(), []int{44}
  2688. }
  2689. func (x *BalanceRequest) GetPersonID() string {
  2690. if x != nil {
  2691. return x.PersonID
  2692. }
  2693. return ""
  2694. }
  2695. func (x *BalanceRequest) GetPersonType() string {
  2696. if x != nil {
  2697. return x.PersonType
  2698. }
  2699. return ""
  2700. }
  2701. func (x *BalanceRequest) GetBalance() int64 {
  2702. if x != nil {
  2703. return x.Balance
  2704. }
  2705. return 0
  2706. }
  2707. type RandomNum struct {
  2708. state protoimpl.MessageState
  2709. sizeCache protoimpl.SizeCache
  2710. unknownFields protoimpl.UnknownFields
  2711. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"` // 随机的数量
  2712. }
  2713. func (x *RandomNum) Reset() {
  2714. *x = RandomNum{}
  2715. if protoimpl.UnsafeEnabled {
  2716. mi := &file_common_proto_msgTypes[45]
  2717. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2718. ms.StoreMessageInfo(mi)
  2719. }
  2720. }
  2721. func (x *RandomNum) String() string {
  2722. return protoimpl.X.MessageStringOf(x)
  2723. }
  2724. func (*RandomNum) ProtoMessage() {}
  2725. func (x *RandomNum) ProtoReflect() protoreflect.Message {
  2726. mi := &file_common_proto_msgTypes[45]
  2727. if protoimpl.UnsafeEnabled && x != nil {
  2728. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2729. if ms.LoadMessageInfo() == nil {
  2730. ms.StoreMessageInfo(mi)
  2731. }
  2732. return ms
  2733. }
  2734. return mi.MessageOf(x)
  2735. }
  2736. // Deprecated: Use RandomNum.ProtoReflect.Descriptor instead.
  2737. func (*RandomNum) Descriptor() ([]byte, []int) {
  2738. return file_common_proto_rawDescGZIP(), []int{45}
  2739. }
  2740. func (x *RandomNum) GetNum() int64 {
  2741. if x != nil {
  2742. return x.Num
  2743. }
  2744. return 0
  2745. }
  2746. type RandomNumAndSex struct {
  2747. state protoimpl.MessageState
  2748. sizeCache protoimpl.SizeCache
  2749. unknownFields protoimpl.UnknownFields
  2750. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"` // 随机的数量
  2751. Sex int64 `protobuf:"varint,2,opt,name=sex,proto3" json:"sex"` // 对方的性别
  2752. }
  2753. func (x *RandomNumAndSex) Reset() {
  2754. *x = RandomNumAndSex{}
  2755. if protoimpl.UnsafeEnabled {
  2756. mi := &file_common_proto_msgTypes[46]
  2757. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2758. ms.StoreMessageInfo(mi)
  2759. }
  2760. }
  2761. func (x *RandomNumAndSex) String() string {
  2762. return protoimpl.X.MessageStringOf(x)
  2763. }
  2764. func (*RandomNumAndSex) ProtoMessage() {}
  2765. func (x *RandomNumAndSex) ProtoReflect() protoreflect.Message {
  2766. mi := &file_common_proto_msgTypes[46]
  2767. if protoimpl.UnsafeEnabled && x != nil {
  2768. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2769. if ms.LoadMessageInfo() == nil {
  2770. ms.StoreMessageInfo(mi)
  2771. }
  2772. return ms
  2773. }
  2774. return mi.MessageOf(x)
  2775. }
  2776. // Deprecated: Use RandomNumAndSex.ProtoReflect.Descriptor instead.
  2777. func (*RandomNumAndSex) Descriptor() ([]byte, []int) {
  2778. return file_common_proto_rawDescGZIP(), []int{46}
  2779. }
  2780. func (x *RandomNumAndSex) GetNum() int64 {
  2781. if x != nil {
  2782. return x.Num
  2783. }
  2784. return 0
  2785. }
  2786. func (x *RandomNumAndSex) GetSex() int64 {
  2787. if x != nil {
  2788. return x.Sex
  2789. }
  2790. return 0
  2791. }
  2792. type MemeRequest struct {
  2793. state protoimpl.MessageState
  2794. sizeCache protoimpl.SizeCache
  2795. unknownFields protoimpl.UnknownFields
  2796. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  2797. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  2798. Type string `protobuf:"bytes,3,opt,name=type,proto3" json:"type"`
  2799. }
  2800. func (x *MemeRequest) Reset() {
  2801. *x = MemeRequest{}
  2802. if protoimpl.UnsafeEnabled {
  2803. mi := &file_common_proto_msgTypes[47]
  2804. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2805. ms.StoreMessageInfo(mi)
  2806. }
  2807. }
  2808. func (x *MemeRequest) String() string {
  2809. return protoimpl.X.MessageStringOf(x)
  2810. }
  2811. func (*MemeRequest) ProtoMessage() {}
  2812. func (x *MemeRequest) ProtoReflect() protoreflect.Message {
  2813. mi := &file_common_proto_msgTypes[47]
  2814. if protoimpl.UnsafeEnabled && x != nil {
  2815. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2816. if ms.LoadMessageInfo() == nil {
  2817. ms.StoreMessageInfo(mi)
  2818. }
  2819. return ms
  2820. }
  2821. return mi.MessageOf(x)
  2822. }
  2823. // Deprecated: Use MemeRequest.ProtoReflect.Descriptor instead.
  2824. func (*MemeRequest) Descriptor() ([]byte, []int) {
  2825. return file_common_proto_rawDescGZIP(), []int{47}
  2826. }
  2827. func (x *MemeRequest) GetNextId() int64 {
  2828. if x != nil {
  2829. return x.NextId
  2830. }
  2831. return 0
  2832. }
  2833. func (x *MemeRequest) GetOffset() int64 {
  2834. if x != nil {
  2835. return x.Offset
  2836. }
  2837. return 0
  2838. }
  2839. func (x *MemeRequest) GetType() string {
  2840. if x != nil {
  2841. return x.Type
  2842. }
  2843. return ""
  2844. }
  2845. type CommonTextList struct {
  2846. state protoimpl.MessageState
  2847. sizeCache protoimpl.SizeCache
  2848. unknownFields protoimpl.UnknownFields
  2849. List []string `protobuf:"bytes,1,rep,name=list,proto3" json:"list"` // 需要的数据集合(随机表情包、随机打招呼)
  2850. }
  2851. func (x *CommonTextList) Reset() {
  2852. *x = CommonTextList{}
  2853. if protoimpl.UnsafeEnabled {
  2854. mi := &file_common_proto_msgTypes[48]
  2855. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2856. ms.StoreMessageInfo(mi)
  2857. }
  2858. }
  2859. func (x *CommonTextList) String() string {
  2860. return protoimpl.X.MessageStringOf(x)
  2861. }
  2862. func (*CommonTextList) ProtoMessage() {}
  2863. func (x *CommonTextList) ProtoReflect() protoreflect.Message {
  2864. mi := &file_common_proto_msgTypes[48]
  2865. if protoimpl.UnsafeEnabled && x != nil {
  2866. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2867. if ms.LoadMessageInfo() == nil {
  2868. ms.StoreMessageInfo(mi)
  2869. }
  2870. return ms
  2871. }
  2872. return mi.MessageOf(x)
  2873. }
  2874. // Deprecated: Use CommonTextList.ProtoReflect.Descriptor instead.
  2875. func (*CommonTextList) Descriptor() ([]byte, []int) {
  2876. return file_common_proto_rawDescGZIP(), []int{48}
  2877. }
  2878. func (x *CommonTextList) GetList() []string {
  2879. if x != nil {
  2880. return x.List
  2881. }
  2882. return nil
  2883. }
  2884. type MemeTitleList struct {
  2885. state protoimpl.MessageState
  2886. sizeCache protoimpl.SizeCache
  2887. unknownFields protoimpl.UnknownFields
  2888. List []*MemeTitle `protobuf:"bytes,1,rep,name=list,proto3" json:"list"` // 需要的数据集合(随机表情包、随机打招呼)
  2889. }
  2890. func (x *MemeTitleList) Reset() {
  2891. *x = MemeTitleList{}
  2892. if protoimpl.UnsafeEnabled {
  2893. mi := &file_common_proto_msgTypes[49]
  2894. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2895. ms.StoreMessageInfo(mi)
  2896. }
  2897. }
  2898. func (x *MemeTitleList) String() string {
  2899. return protoimpl.X.MessageStringOf(x)
  2900. }
  2901. func (*MemeTitleList) ProtoMessage() {}
  2902. func (x *MemeTitleList) ProtoReflect() protoreflect.Message {
  2903. mi := &file_common_proto_msgTypes[49]
  2904. if protoimpl.UnsafeEnabled && x != nil {
  2905. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2906. if ms.LoadMessageInfo() == nil {
  2907. ms.StoreMessageInfo(mi)
  2908. }
  2909. return ms
  2910. }
  2911. return mi.MessageOf(x)
  2912. }
  2913. // Deprecated: Use MemeTitleList.ProtoReflect.Descriptor instead.
  2914. func (*MemeTitleList) Descriptor() ([]byte, []int) {
  2915. return file_common_proto_rawDescGZIP(), []int{49}
  2916. }
  2917. func (x *MemeTitleList) GetList() []*MemeTitle {
  2918. if x != nil {
  2919. return x.List
  2920. }
  2921. return nil
  2922. }
  2923. type MemeTitle struct {
  2924. state protoimpl.MessageState
  2925. sizeCache protoimpl.SizeCache
  2926. unknownFields protoimpl.UnknownFields
  2927. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name"` // 名称
  2928. Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type"` // 类型
  2929. }
  2930. func (x *MemeTitle) Reset() {
  2931. *x = MemeTitle{}
  2932. if protoimpl.UnsafeEnabled {
  2933. mi := &file_common_proto_msgTypes[50]
  2934. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2935. ms.StoreMessageInfo(mi)
  2936. }
  2937. }
  2938. func (x *MemeTitle) String() string {
  2939. return protoimpl.X.MessageStringOf(x)
  2940. }
  2941. func (*MemeTitle) ProtoMessage() {}
  2942. func (x *MemeTitle) ProtoReflect() protoreflect.Message {
  2943. mi := &file_common_proto_msgTypes[50]
  2944. if protoimpl.UnsafeEnabled && x != nil {
  2945. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2946. if ms.LoadMessageInfo() == nil {
  2947. ms.StoreMessageInfo(mi)
  2948. }
  2949. return ms
  2950. }
  2951. return mi.MessageOf(x)
  2952. }
  2953. // Deprecated: Use MemeTitle.ProtoReflect.Descriptor instead.
  2954. func (*MemeTitle) Descriptor() ([]byte, []int) {
  2955. return file_common_proto_rawDescGZIP(), []int{50}
  2956. }
  2957. func (x *MemeTitle) GetName() string {
  2958. if x != nil {
  2959. return x.Name
  2960. }
  2961. return ""
  2962. }
  2963. func (x *MemeTitle) GetType() string {
  2964. if x != nil {
  2965. return x.Type
  2966. }
  2967. return ""
  2968. }
  2969. type MemeList struct {
  2970. state protoimpl.MessageState
  2971. sizeCache protoimpl.SizeCache
  2972. unknownFields protoimpl.UnknownFields
  2973. List []string `protobuf:"bytes,1,rep,name=list,proto3" json:"list"` // 表情包列表
  2974. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  2975. }
  2976. func (x *MemeList) Reset() {
  2977. *x = MemeList{}
  2978. if protoimpl.UnsafeEnabled {
  2979. mi := &file_common_proto_msgTypes[51]
  2980. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2981. ms.StoreMessageInfo(mi)
  2982. }
  2983. }
  2984. func (x *MemeList) String() string {
  2985. return protoimpl.X.MessageStringOf(x)
  2986. }
  2987. func (*MemeList) ProtoMessage() {}
  2988. func (x *MemeList) ProtoReflect() protoreflect.Message {
  2989. mi := &file_common_proto_msgTypes[51]
  2990. if protoimpl.UnsafeEnabled && x != nil {
  2991. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2992. if ms.LoadMessageInfo() == nil {
  2993. ms.StoreMessageInfo(mi)
  2994. }
  2995. return ms
  2996. }
  2997. return mi.MessageOf(x)
  2998. }
  2999. // Deprecated: Use MemeList.ProtoReflect.Descriptor instead.
  3000. func (*MemeList) Descriptor() ([]byte, []int) {
  3001. return file_common_proto_rawDescGZIP(), []int{51}
  3002. }
  3003. func (x *MemeList) GetList() []string {
  3004. if x != nil {
  3005. return x.List
  3006. }
  3007. return nil
  3008. }
  3009. func (x *MemeList) GetNextId() int64 {
  3010. if x != nil {
  3011. return x.NextId
  3012. }
  3013. return 0
  3014. }
  3015. type ChatTopicList struct {
  3016. state protoimpl.MessageState
  3017. sizeCache protoimpl.SizeCache
  3018. unknownFields protoimpl.UnknownFields
  3019. List []string `protobuf:"bytes,1,rep,name=list,proto3" json:"list"` // 话题列表
  3020. }
  3021. func (x *ChatTopicList) Reset() {
  3022. *x = ChatTopicList{}
  3023. if protoimpl.UnsafeEnabled {
  3024. mi := &file_common_proto_msgTypes[52]
  3025. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3026. ms.StoreMessageInfo(mi)
  3027. }
  3028. }
  3029. func (x *ChatTopicList) String() string {
  3030. return protoimpl.X.MessageStringOf(x)
  3031. }
  3032. func (*ChatTopicList) ProtoMessage() {}
  3033. func (x *ChatTopicList) ProtoReflect() protoreflect.Message {
  3034. mi := &file_common_proto_msgTypes[52]
  3035. if protoimpl.UnsafeEnabled && x != nil {
  3036. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3037. if ms.LoadMessageInfo() == nil {
  3038. ms.StoreMessageInfo(mi)
  3039. }
  3040. return ms
  3041. }
  3042. return mi.MessageOf(x)
  3043. }
  3044. // Deprecated: Use ChatTopicList.ProtoReflect.Descriptor instead.
  3045. func (*ChatTopicList) Descriptor() ([]byte, []int) {
  3046. return file_common_proto_rawDescGZIP(), []int{52}
  3047. }
  3048. func (x *ChatTopicList) GetList() []string {
  3049. if x != nil {
  3050. return x.List
  3051. }
  3052. return nil
  3053. }
  3054. type ReportChatRequest struct {
  3055. state protoimpl.MessageState
  3056. sizeCache protoimpl.SizeCache
  3057. unknownFields protoimpl.UnknownFields
  3058. ReportedPersonID string `protobuf:"bytes,4,opt,name=reportedPersonID,proto3" json:"reportedPersonID"` // 被举报的人的ID
  3059. ReportedPersonType string `protobuf:"bytes,5,opt,name=reportedPersonType,proto3" json:"reportedPersonType"` // 被举报的人的类型
  3060. ContactInformation string `protobuf:"bytes,6,opt,name=contactInformation,proto3" json:"contactInformation"` // 联系方式
  3061. Picture string `protobuf:"bytes,7,opt,name=picture,proto3" json:"picture"` // 图片
  3062. Category []string `protobuf:"bytes,8,rep,name=category,proto3" json:"category"` // 类别
  3063. }
  3064. func (x *ReportChatRequest) Reset() {
  3065. *x = ReportChatRequest{}
  3066. if protoimpl.UnsafeEnabled {
  3067. mi := &file_common_proto_msgTypes[53]
  3068. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3069. ms.StoreMessageInfo(mi)
  3070. }
  3071. }
  3072. func (x *ReportChatRequest) String() string {
  3073. return protoimpl.X.MessageStringOf(x)
  3074. }
  3075. func (*ReportChatRequest) ProtoMessage() {}
  3076. func (x *ReportChatRequest) ProtoReflect() protoreflect.Message {
  3077. mi := &file_common_proto_msgTypes[53]
  3078. if protoimpl.UnsafeEnabled && x != nil {
  3079. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3080. if ms.LoadMessageInfo() == nil {
  3081. ms.StoreMessageInfo(mi)
  3082. }
  3083. return ms
  3084. }
  3085. return mi.MessageOf(x)
  3086. }
  3087. // Deprecated: Use ReportChatRequest.ProtoReflect.Descriptor instead.
  3088. func (*ReportChatRequest) Descriptor() ([]byte, []int) {
  3089. return file_common_proto_rawDescGZIP(), []int{53}
  3090. }
  3091. func (x *ReportChatRequest) GetReportedPersonID() string {
  3092. if x != nil {
  3093. return x.ReportedPersonID
  3094. }
  3095. return ""
  3096. }
  3097. func (x *ReportChatRequest) GetReportedPersonType() string {
  3098. if x != nil {
  3099. return x.ReportedPersonType
  3100. }
  3101. return ""
  3102. }
  3103. func (x *ReportChatRequest) GetContactInformation() string {
  3104. if x != nil {
  3105. return x.ContactInformation
  3106. }
  3107. return ""
  3108. }
  3109. func (x *ReportChatRequest) GetPicture() string {
  3110. if x != nil {
  3111. return x.Picture
  3112. }
  3113. return ""
  3114. }
  3115. func (x *ReportChatRequest) GetCategory() []string {
  3116. if x != nil {
  3117. return x.Category
  3118. }
  3119. return nil
  3120. }
  3121. type ReportRequest struct {
  3122. state protoimpl.MessageState
  3123. sizeCache protoimpl.SizeCache
  3124. unknownFields protoimpl.UnknownFields
  3125. IdentifyId string `protobuf:"bytes,1,opt,name=identifyId,proto3" json:"identifyId"` // 发起举报的人的身份ID
  3126. PersonId string `protobuf:"bytes,2,opt,name=personId,proto3" json:"personId"` // 发起举报的人的ID
  3127. PersonType string `protobuf:"bytes,3,opt,name=personType,proto3" json:"personType"` // 发起举报的人的类型
  3128. ReportedIdentifyId string `protobuf:"bytes,4,opt,name=reportedIdentifyId,proto3" json:"reportedIdentifyId"` // 被举报的人的身份ID
  3129. ReportedPersonId string `protobuf:"bytes,5,opt,name=reportedPersonId,proto3" json:"reportedPersonId"` // 被举报的人的ID
  3130. ReportedPersonType string `protobuf:"bytes,6,opt,name=reportedPersonType,proto3" json:"reportedPersonType"` // 被举报的人的类型
  3131. ContactInformation string `protobuf:"bytes,7,opt,name=contactInformation,proto3" json:"contactInformation"` // 联系方式
  3132. Picture string `protobuf:"bytes,8,opt,name=picture,proto3" json:"picture"` // 图片
  3133. Category []string `protobuf:"bytes,9,rep,name=category,proto3" json:"category"` // 类别
  3134. }
  3135. func (x *ReportRequest) Reset() {
  3136. *x = ReportRequest{}
  3137. if protoimpl.UnsafeEnabled {
  3138. mi := &file_common_proto_msgTypes[54]
  3139. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3140. ms.StoreMessageInfo(mi)
  3141. }
  3142. }
  3143. func (x *ReportRequest) String() string {
  3144. return protoimpl.X.MessageStringOf(x)
  3145. }
  3146. func (*ReportRequest) ProtoMessage() {}
  3147. func (x *ReportRequest) ProtoReflect() protoreflect.Message {
  3148. mi := &file_common_proto_msgTypes[54]
  3149. if protoimpl.UnsafeEnabled && x != nil {
  3150. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3151. if ms.LoadMessageInfo() == nil {
  3152. ms.StoreMessageInfo(mi)
  3153. }
  3154. return ms
  3155. }
  3156. return mi.MessageOf(x)
  3157. }
  3158. // Deprecated: Use ReportRequest.ProtoReflect.Descriptor instead.
  3159. func (*ReportRequest) Descriptor() ([]byte, []int) {
  3160. return file_common_proto_rawDescGZIP(), []int{54}
  3161. }
  3162. func (x *ReportRequest) GetIdentifyId() string {
  3163. if x != nil {
  3164. return x.IdentifyId
  3165. }
  3166. return ""
  3167. }
  3168. func (x *ReportRequest) GetPersonId() string {
  3169. if x != nil {
  3170. return x.PersonId
  3171. }
  3172. return ""
  3173. }
  3174. func (x *ReportRequest) GetPersonType() string {
  3175. if x != nil {
  3176. return x.PersonType
  3177. }
  3178. return ""
  3179. }
  3180. func (x *ReportRequest) GetReportedIdentifyId() string {
  3181. if x != nil {
  3182. return x.ReportedIdentifyId
  3183. }
  3184. return ""
  3185. }
  3186. func (x *ReportRequest) GetReportedPersonId() string {
  3187. if x != nil {
  3188. return x.ReportedPersonId
  3189. }
  3190. return ""
  3191. }
  3192. func (x *ReportRequest) GetReportedPersonType() string {
  3193. if x != nil {
  3194. return x.ReportedPersonType
  3195. }
  3196. return ""
  3197. }
  3198. func (x *ReportRequest) GetContactInformation() string {
  3199. if x != nil {
  3200. return x.ContactInformation
  3201. }
  3202. return ""
  3203. }
  3204. func (x *ReportRequest) GetPicture() string {
  3205. if x != nil {
  3206. return x.Picture
  3207. }
  3208. return ""
  3209. }
  3210. func (x *ReportRequest) GetCategory() []string {
  3211. if x != nil {
  3212. return x.Category
  3213. }
  3214. return nil
  3215. }
  3216. var File_common_proto protoreflect.FileDescriptor
  3217. var file_common_proto_rawDesc = []byte{
  3218. 0x0a, 0x0c, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0a,
  3219. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x22, 0x75, 0x0a, 0x1d, 0x55, 0x73,
  3220. 0x65, 0x72, 0x41, 0x6e, 0x64, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e,
  3221. 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x2c, 0x0a, 0x11, 0x70,
  3222. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64,
  3223. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49,
  3224. 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x12, 0x26, 0x0a, 0x0e, 0x75, 0x73, 0x65,
  3225. 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  3226. 0x09, 0x52, 0x0e, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49,
  3227. 0x64, 0x22, 0xa1, 0x01, 0x0a, 0x13, 0x55, 0x73, 0x65, 0x72, 0x41, 0x6e, 0x64, 0x50, 0x61, 0x72,
  3228. 0x74, 0x6e, 0x65, 0x72, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72,
  3229. 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61,
  3230. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x12, 0x2c, 0x0a, 0x11, 0x70, 0x61, 0x72, 0x74, 0x6e,
  3231. 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01,
  3232. 0x28, 0x09, 0x52, 0x11, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74,
  3233. 0x69, 0x66, 0x79, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18,
  3234. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x26, 0x0a,
  3235. 0x0e, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x44, 0x18,
  3236. 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74,
  3237. 0x69, 0x66, 0x79, 0x49, 0x44, 0x22, 0x42, 0x0a, 0x14, 0x55, 0x73, 0x65, 0x72, 0x31, 0x41, 0x6e,
  3238. 0x64, 0x55, 0x73, 0x65, 0x72, 0x32, 0x49, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x14, 0x0a,
  3239. 0x05, 0x75, 0x73, 0x65, 0x72, 0x31, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x75, 0x73,
  3240. 0x65, 0x72, 0x31, 0x12, 0x14, 0x0a, 0x05, 0x75, 0x73, 0x65, 0x72, 0x32, 0x18, 0x02, 0x20, 0x01,
  3241. 0x28, 0x09, 0x52, 0x05, 0x75, 0x73, 0x65, 0x72, 0x32, 0x22, 0x2e, 0x0a, 0x0e, 0x50, 0x61, 0x72,
  3242. 0x74, 0x6e, 0x65, 0x72, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x1c, 0x0a, 0x09, 0x70,
  3243. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
  3244. 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x44, 0x22, 0x2b, 0x0a, 0x0d, 0x50, 0x65, 0x72,
  3245. 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65,
  3246. 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65,
  3247. 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x22, 0x49, 0x0a, 0x0b, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  3248. 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  3249. 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  3250. 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18,
  3251. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70,
  3252. 0x65, 0x22, 0xef, 0x02, 0x0a, 0x0c, 0x43, 0x68, 0x61, 0x74, 0x43, 0x61, 0x72, 0x64, 0x49, 0x6e,
  3253. 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02,
  3254. 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02,
  3255. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c,
  3256. 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28,
  3257. 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03,
  3258. 0x73, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x10,
  3259. 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65,
  3260. 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f,
  3261. 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c,
  3262. 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2d, 0x0a, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73,
  3263. 0x74, 0x18, 0x09, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3264. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x07, 0x74, 0x61,
  3265. 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75,
  3266. 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69,
  3267. 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1a, 0x0a,
  3268. 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52,
  3269. 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74,
  3270. 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x12, 0x0a,
  3271. 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65,
  3272. 0x61, 0x12, 0x30, 0x0a, 0x13, 0x69, 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66,
  3273. 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x08, 0x52, 0x13,
  3274. 0x69, 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74,
  3275. 0x69, 0x6f, 0x6e, 0x22, 0x25, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x50, 0x61, 0x72,
  3276. 0x61, 0x6d, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01,
  3277. 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x1d, 0x0a, 0x09, 0x57, 0x78,
  3278. 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x01,
  3279. 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x22, 0x90, 0x01, 0x0a, 0x0e, 0x57, 0x78,
  3280. 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05,
  3281. 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70,
  3282. 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18,
  3283. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70,
  3284. 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x6f, 0x6e, 0x63, 0x65, 0x53, 0x74, 0x72, 0x18, 0x03, 0x20, 0x01,
  3285. 0x28, 0x09, 0x52, 0x08, 0x6e, 0x6f, 0x6e, 0x63, 0x65, 0x53, 0x74, 0x72, 0x12, 0x1c, 0x0a, 0x09,
  3286. 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
  3287. 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72,
  3288. 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x22, 0x8d, 0x03, 0x0a,
  3289. 0x08, 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
  3290. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63,
  3291. 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63,
  3292. 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55,
  3293. 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72,
  3294. 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03,
  3295. 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65,
  3296. 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65,
  3297. 0x73, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03,
  3298. 0x61, 0x67, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61,
  3299. 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73,
  3300. 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2d, 0x0a, 0x07, 0x74, 0x61, 0x67,
  3301. 0x4c, 0x69, 0x73, 0x74, 0x18, 0x08, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x61, 0x70, 0x69,
  3302. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52,
  3303. 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e,
  3304. 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67,
  3305. 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64,
  3306. 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e,
  3307. 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1a,
  3308. 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09,
  3309. 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69,
  3310. 0x74, 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x12,
  3311. 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72,
  3312. 0x65, 0x61, 0x12, 0x18, 0x0a, 0x07, 0x69, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x18, 0x0e, 0x20,
  3313. 0x01, 0x28, 0x08, 0x52, 0x07, 0x69, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x22, 0xab, 0x03, 0x0a,
  3314. 0x09, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x73, 0x67, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
  3315. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69,
  3316. 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69,
  3317. 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72,
  3318. 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61,
  3319. 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28,
  3320. 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72,
  3321. 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72,
  3322. 0x65, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52,
  3323. 0x03, 0x61, 0x67, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c,
  3324. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e,
  3325. 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x74, 0x61,
  3326. 0x67, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x08, 0x20, 0x03, 0x28, 0x03, 0x52, 0x07, 0x74, 0x61, 0x67,
  3327. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72,
  3328. 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75,
  3329. 0x72, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56,
  3330. 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x72,
  3331. 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72,
  3332. 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72,
  3333. 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, 0x0c,
  3334. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x72,
  3335. 0x65, 0x61, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61, 0x12, 0x30,
  3336. 0x0a, 0x13, 0x69, 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d,
  3337. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x08, 0x52, 0x13, 0x69, 0x73, 0x46,
  3338. 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  3339. 0x12, 0x18, 0x0a, 0x07, 0x69, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x18, 0x0f, 0x20, 0x01, 0x28,
  3340. 0x08, 0x52, 0x07, 0x69, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x22, 0x5d, 0x0a, 0x11, 0x4c, 0x6f,
  3341. 0x6f, 0x6b, 0x65, 0x64, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x12,
  3342. 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12,
  3343. 0x1c, 0x0a, 0x09, 0x6c, 0x6f, 0x6f, 0x6b, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01,
  3344. 0x28, 0x03, 0x52, 0x09, 0x6c, 0x6f, 0x6f, 0x6b, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a,
  3345. 0x08, 0x6c, 0x69, 0x6b, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52,
  3346. 0x08, 0x6c, 0x69, 0x6b, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x22, 0xc4, 0x03, 0x0a, 0x14, 0x41, 0x64,
  3347. 0x64, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x49, 0x6e,
  3348. 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02,
  3349. 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02,
  3350. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c,
  3351. 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28,
  3352. 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03,
  3353. 0x73, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1a,
  3354. 0x0a, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09,
  3355. 0x52, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x66, 0x72,
  3356. 0x6f, 0x6d, 0x4f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
  3357. 0x66, 0x72, 0x6f, 0x6d, 0x4f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x73,
  3358. 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a,
  3359. 0x69, 0x73, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73,
  3360. 0x43, 0x68, 0x61, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x43, 0x68,
  3361. 0x61, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x55, 0x73, 0x18, 0x09,
  3362. 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x69, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x55, 0x73, 0x12, 0x1c,
  3363. 0x0a, 0x09, 0x66, 0x72, 0x6f, 0x6d, 0x41, 0x70, 0x70, 0x49, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28,
  3364. 0x09, 0x52, 0x09, 0x66, 0x72, 0x6f, 0x6d, 0x41, 0x70, 0x70, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08,
  3365. 0x66, 0x72, 0x6f, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  3366. 0x66, 0x72, 0x6f, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73,
  3367. 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52,
  3368. 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1c,
  3369. 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28,
  3370. 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x1a, 0x0a, 0x08,
  3371. 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  3372. 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79,
  3373. 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x12, 0x0a, 0x04,
  3374. 0x61, 0x72, 0x65, 0x61, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61,
  3375. 0x22, 0x2c, 0x0a, 0x0c, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x4c, 0x69, 0x73, 0x74,
  3376. 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x73, 0x18, 0x01, 0x20,
  3377. 0x03, 0x28, 0x09, 0x52, 0x09, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x73, 0x22, 0x39,
  3378. 0x0a, 0x0d, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12,
  3379. 0x28, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e,
  3380. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f,
  3381. 0x6e, 0x44, 0x42, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x90, 0x03, 0x0a, 0x08, 0x50, 0x65,
  3382. 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  3383. 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61,
  3384. 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61,
  3385. 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18,
  3386. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c,
  3387. 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73,
  3388. 0x65, 0x78, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x18, 0x05,
  3389. 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x12, 0x10,
  3390. 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65,
  3391. 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f,
  3392. 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c,
  3393. 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64,
  3394. 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e,
  3395. 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1a,
  3396. 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09,
  3397. 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69,
  3398. 0x74, 0x79, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x12,
  3399. 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72,
  3400. 0x65, 0x61, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18,
  3401. 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65,
  3402. 0x12, 0x30, 0x0a, 0x13, 0x69, 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f,
  3403. 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x08, 0x52, 0x13, 0x69,
  3404. 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69,
  3405. 0x6f, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x0e, 0x20,
  3406. 0x03, 0x28, 0x03, 0x52, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x41, 0x0a, 0x0f,
  3407. 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  3408. 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  3409. 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65,
  3410. 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x22,
  3411. 0x59, 0x0a, 0x15, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x41, 0x6e, 0x64, 0x53, 0x65,
  3412. 0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74,
  3413. 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64,
  3414. 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  3415. 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18,
  3416. 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x22, 0x3c, 0x0a, 0x14, 0x46, 0x69,
  3417. 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x52, 0x65, 0x71, 0x75, 0x65,
  3418. 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  3419. 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x02, 0x20,
  3420. 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x22, 0x42, 0x0a, 0x10, 0x4c, 0x69, 0x73, 0x74,
  3421. 0x50, 0x61, 0x67, 0x65, 0x32, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06,
  3422. 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6e, 0x65,
  3423. 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02,
  3424. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x22, 0x86, 0x01, 0x0a,
  3425. 0x18, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x41, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73,
  3426. 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78,
  3427. 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49,
  3428. 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28,
  3429. 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72,
  3430. 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72,
  3431. 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54,
  3432. 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f,
  3433. 0x6e, 0x54, 0x79, 0x70, 0x65, 0x22, 0x2c, 0x0a, 0x14, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f,
  3434. 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a,
  3435. 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68,
  3436. 0x6f, 0x6e, 0x65, 0x22, 0x41, 0x0a, 0x15, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e,
  3437. 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05,
  3438. 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f,
  3439. 0x6e, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  3440. 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x22, 0x2c, 0x0a, 0x16, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64,
  3441. 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  3442. 0x12, 0x12, 0x0a, 0x04, 0x6c, 0x69, 0x6e, 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
  3443. 0x6c, 0x69, 0x6e, 0x6b, 0x22, 0x17, 0x0a, 0x03, 0x49, 0x64, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x69,
  3444. 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x03, 0x52, 0x03, 0x69, 0x64, 0x73, 0x22, 0x37, 0x0a,
  3445. 0x0c, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x27, 0x0a,
  3446. 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x61, 0x70,
  3447. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74,
  3448. 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x2d, 0x0a, 0x07, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73,
  3449. 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69,
  3450. 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  3451. 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x1a, 0x0a, 0x06, 0x53, 0x65, 0x78, 0x52, 0x65, 0x71, 0x12,
  3452. 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65,
  3453. 0x78, 0x22, 0x34, 0x0a, 0x14, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x72, 0x6f,
  3454. 0x64, 0x75, 0x63, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x69, 0x6e, 0x74,
  3455. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x69, 0x6e,
  3456. 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x22, 0xc2, 0x02, 0x0a, 0x18, 0x55, 0x70, 0x64, 0x61,
  3457. 0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71,
  3458. 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65,
  3459. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65,
  3460. 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20,
  3461. 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10,
  3462. 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78,
  3463. 0x12, 0x1a, 0x0a, 0x08, 0x62, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x79, 0x18, 0x04, 0x20, 0x01,
  3464. 0x28, 0x03, 0x52, 0x08, 0x62, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x79, 0x12, 0x18, 0x0a, 0x07,
  3465. 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x05, 0x20, 0x03, 0x28, 0x03, 0x52, 0x07, 0x74,
  3466. 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64,
  3467. 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e,
  3468. 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1c,
  3469. 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28,
  3470. 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x1a, 0x0a, 0x08,
  3471. 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x18, 0x08, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08,
  3472. 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76,
  3473. 0x69, 0x6e, 0x63, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76,
  3474. 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, 0x0a, 0x20, 0x01,
  3475. 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61,
  3476. 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61, 0x22, 0x61, 0x0a, 0x15,
  3477. 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74,
  3478. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x30, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20,
  3479. 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  3480. 0x2e, 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x6e, 0x66,
  3481. 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49,
  3482. 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x22,
  3483. 0xf6, 0x02, 0x0a, 0x10, 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  3484. 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44,
  3485. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44,
  3486. 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02,
  3487. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65,
  3488. 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01,
  3489. 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09,
  3490. 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
  3491. 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65,
  3492. 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x10, 0x0a, 0x03,
  3493. 0x61, 0x67, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x24,
  3494. 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18,
  3495. 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61,
  3496. 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72,
  3497. 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75,
  3498. 0x72, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x09,
  3499. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12,
  3500. 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69,
  3501. 0x74, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09,
  3502. 0x52, 0x04, 0x61, 0x72, 0x65, 0x61, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64,
  3503. 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e,
  3504. 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x18,
  3505. 0x0a, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x0d, 0x20, 0x03, 0x28, 0x09, 0x52,
  3506. 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x5d, 0x0a, 0x13, 0x43, 0x68, 0x61, 0x74,
  3507. 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12,
  3508. 0x2e, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e,
  3509. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52,
  3510. 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12,
  3511. 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  3512. 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x22, 0xa7, 0x01, 0x0a, 0x0b, 0x43, 0x68, 0x61, 0x74,
  3513. 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49,
  3514. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x12,
  3515. 0x2d, 0x0a, 0x04, 0x73, 0x65, 0x6c, 0x66, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e,
  3516. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x50,
  3517. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x73, 0x67, 0x52, 0x04, 0x73, 0x65, 0x6c, 0x66, 0x12, 0x2f,
  3518. 0x0a, 0x05, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e,
  3519. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x50,
  3520. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x73, 0x67, 0x52, 0x05, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x12,
  3521. 0x20, 0x0a, 0x0b, 0x6c, 0x69, 0x6b, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x05,
  3522. 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6c, 0x69, 0x6b, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74,
  3523. 0x79, 0x22, 0x79, 0x0a, 0x0d, 0x43, 0x68, 0x61, 0x74, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d,
  3524. 0x73, 0x67, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02,
  3525. 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  3526. 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61,
  3527. 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61,
  3528. 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x18, 0x04, 0x20, 0x01,
  3529. 0x28, 0x09, 0x52, 0x06, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65,
  3530. 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x22, 0x91, 0x02, 0x0a,
  3531. 0x0e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x12,
  3532. 0x1c, 0x0a, 0x09, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01,
  3533. 0x28, 0x03, 0x52, 0x09, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x49, 0x64, 0x12, 0x18, 0x0a,
  3534. 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  3535. 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x2d, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61,
  3536. 0x67, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  3537. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x07, 0x6d,
  3538. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64,
  3539. 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x12, 0x16,
  3540. 0x0a, 0x06, 0x69, 0x73, 0x53, 0x65, 0x6c, 0x66, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06,
  3541. 0x69, 0x73, 0x53, 0x65, 0x6c, 0x66, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x6e, 0x64, 0x54, 0x69,
  3542. 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x73, 0x65, 0x6e, 0x64, 0x54, 0x69,
  3543. 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x07, 0x20, 0x01,
  3544. 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x74,
  3545. 0x61, 0x74, 0x75, 0x73, 0x4d, 0x73, 0x67, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73,
  3546. 0x74, 0x61, 0x74, 0x75, 0x73, 0x4d, 0x73, 0x67, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x52, 0x65,
  3547. 0x61, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x52, 0x65, 0x61, 0x64,
  3548. 0x22, 0x46, 0x0a, 0x0e, 0x43, 0x68, 0x61, 0x74, 0x49, 0x73, 0x52, 0x65, 0x61, 0x64, 0x49, 0x6e,
  3549. 0x66, 0x6f, 0x12, 0x1c, 0x0a, 0x09, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x49, 0x64, 0x18,
  3550. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x49, 0x64,
  3551. 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03,
  3552. 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22, 0x22, 0x0a, 0x08, 0x47, 0x6f, 0x54, 0x6f,
  3553. 0x52, 0x6f, 0x6f, 0x6d, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x01,
  3554. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22, 0x45, 0x0a, 0x07,
  3555. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65,
  3556. 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
  3557. 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x6d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x55, 0x72, 0x6c,
  3558. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c,
  3559. 0x55, 0x72, 0x6c, 0x22, 0x30, 0x0a, 0x16, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52,
  3560. 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a,
  3561. 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72,
  3562. 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22, 0x27, 0x0a, 0x0d, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52,
  3563. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64,
  3564. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22, 0x63,
  3565. 0x0a, 0x19, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64,
  3566. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e,
  3567. 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78,
  3568. 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20,
  3569. 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x72,
  3570. 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f,
  3571. 0x6d, 0x49, 0x64, 0x22, 0x20, 0x0a, 0x06, 0x49, 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x12, 0x16, 0x0a,
  3572. 0x06, 0x69, 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69,
  3573. 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x22, 0x66, 0x0a, 0x0e, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65,
  3574. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f,
  3575. 0x6e, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f,
  3576. 0x6e, 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70,
  3577. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54,
  3578. 0x79, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x18, 0x03,
  3579. 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x22, 0x1d, 0x0a,
  3580. 0x09, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x75, 0x6d, 0x12, 0x10, 0x0a, 0x03, 0x6e, 0x75,
  3581. 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e, 0x75, 0x6d, 0x22, 0x35, 0x0a, 0x0f,
  3582. 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x75, 0x6d, 0x41, 0x6e, 0x64, 0x53, 0x65, 0x78, 0x12,
  3583. 0x10, 0x0a, 0x03, 0x6e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e, 0x75,
  3584. 0x6d, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03,
  3585. 0x73, 0x65, 0x78, 0x22, 0x51, 0x0a, 0x0b, 0x4d, 0x65, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  3586. 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01,
  3587. 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66,
  3588. 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73,
  3589. 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  3590. 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22, 0x24, 0x0a, 0x0e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  3591. 0x54, 0x65, 0x78, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74,
  3592. 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x3a, 0x0a, 0x0d,
  3593. 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x29, 0x0a,
  3594. 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x61, 0x70,
  3595. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74,
  3596. 0x6c, 0x65, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x33, 0x0a, 0x09, 0x4d, 0x65, 0x6d, 0x65,
  3597. 0x54, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20,
  3598. 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70,
  3599. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22, 0x36, 0x0a,
  3600. 0x08, 0x4d, 0x65, 0x6d, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6c, 0x69, 0x73,
  3601. 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a,
  3602. 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e,
  3603. 0x65, 0x78, 0x74, 0x49, 0x64, 0x22, 0x23, 0x0a, 0x0d, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70,
  3604. 0x69, 0x63, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01,
  3605. 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xd5, 0x01, 0x0a, 0x11, 0x52,
  3606. 0x65, 0x70, 0x6f, 0x72, 0x74, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  3607. 0x12, 0x2a, 0x0a, 0x10, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x50, 0x65, 0x72, 0x73,
  3608. 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x72, 0x65, 0x70, 0x6f,
  3609. 0x72, 0x74, 0x65, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x2e, 0x0a, 0x12,
  3610. 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79,
  3611. 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74,
  3612. 0x65, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x2e, 0x0a, 0x12,
  3613. 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69,
  3614. 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63,
  3615. 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x18, 0x0a, 0x07,
  3616. 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70,
  3617. 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f,
  3618. 0x72, 0x79, 0x18, 0x08, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f,
  3619. 0x72, 0x79, 0x22, 0xdd, 0x02, 0x0a, 0x0d, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71,
  3620. 0x75, 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79,
  3621. 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69,
  3622. 0x66, 0x79, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64,
  3623. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64,
  3624. 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x03,
  3625. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65,
  3626. 0x12, 0x2e, 0x0a, 0x12, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x49, 0x64, 0x65, 0x6e,
  3627. 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x72, 0x65,
  3628. 0x70, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64,
  3629. 0x12, 0x2a, 0x0a, 0x10, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x50, 0x65, 0x72, 0x73,
  3630. 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x72, 0x65, 0x70, 0x6f,
  3631. 0x72, 0x74, 0x65, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x2e, 0x0a, 0x12,
  3632. 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79,
  3633. 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74,
  3634. 0x65, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x2e, 0x0a, 0x12,
  3635. 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69,
  3636. 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63,
  3637. 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x18, 0x0a, 0x07,
  3638. 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70,
  3639. 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f,
  3640. 0x72, 0x79, 0x18, 0x09, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f,
  3641. 0x72, 0x79, 0x42, 0x43, 0x0a, 0x0a, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  3642. 0x50, 0x01, 0x5a, 0x33, 0x67, 0x69, 0x74, 0x2e, 0x69, 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2e, 0x63,
  3643. 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2f, 0x70, 0x77, 0x2d, 0x70, 0x72, 0x6f,
  3644. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  3645. 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  3646. }
  3647. var (
  3648. file_common_proto_rawDescOnce sync.Once
  3649. file_common_proto_rawDescData = file_common_proto_rawDesc
  3650. )
  3651. func file_common_proto_rawDescGZIP() []byte {
  3652. file_common_proto_rawDescOnce.Do(func() {
  3653. file_common_proto_rawDescData = protoimpl.X.CompressGZIP(file_common_proto_rawDescData)
  3654. })
  3655. return file_common_proto_rawDescData
  3656. }
  3657. var file_common_proto_msgTypes = make([]protoimpl.MessageInfo, 55)
  3658. var file_common_proto_goTypes = []interface{}{
  3659. (*UserAndPartnerIdentifyIdParam)(nil), // 0: api.common.UserAndPartnerIdentifyIdParam
  3660. (*UserAndPartnerParam)(nil), // 1: api.common.UserAndPartnerParam
  3661. (*User1AndUser2IdParam)(nil), // 2: api.common.User1AndUser2IdParam
  3662. (*PartnerIDParam)(nil), // 3: api.common.PartnerIDParam
  3663. (*PersonIDParam)(nil), // 4: api.common.PersonIDParam
  3664. (*PersonParam)(nil), // 5: api.common.PersonParam
  3665. (*ChatCardInfo)(nil), // 6: api.common.ChatCardInfo
  3666. (*UserIDParam)(nil), // 7: api.common.UserIDParam
  3667. (*WxConfReq)(nil), // 8: api.common.WxConfReq
  3668. (*WxConfResponse)(nil), // 9: api.common.WxConfResponse
  3669. (*HomeInfo)(nil), // 10: api.common.HomeInfo
  3670. (*PersonMsg)(nil), // 11: api.common.PersonMsg
  3671. (*LookedAndLikedNum)(nil), // 12: api.common.LookedAndLikedNum
  3672. (*AddFriendMessageInfo)(nil), // 13: api.common.AddFriendMessageInfo
  3673. (*PersonIDList)(nil), // 14: api.common.PersonIDList
  3674. (*PersonDBReply)(nil), // 15: api.common.PersonDBReply
  3675. (*PersonDB)(nil), // 16: api.common.PersonDB
  3676. (*ListPageRequest)(nil), // 17: api.common.ListPageRequest
  3677. (*ListPageAndSexRequest)(nil), // 18: api.common.ListPageAndSexRequest
  3678. (*FindChatTopicRequest)(nil), // 19: api.common.FindChatTopicRequest
  3679. (*ListPage2Request)(nil), // 20: api.common.ListPage2Request
  3680. (*ListPageAndPersonRequest)(nil), // 21: api.common.ListPageAndPersonRequest
  3681. (*SendPhoneCodeRequest)(nil), // 22: api.common.SendPhoneCodeRequest
  3682. (*CheckPhoneCodeRequest)(nil), // 23: api.common.CheckPhoneCodeRequest
  3683. (*UploadMaterialResponse)(nil), // 24: api.common.UploadMaterialResponse
  3684. (*Ids)(nil), // 25: api.common.Ids
  3685. (*TagListReply)(nil), // 26: api.common.TagListReply
  3686. (*TagList)(nil), // 27: api.common.TagList
  3687. (*SexReq)(nil), // 28: api.common.SexReq
  3688. (*RandomIntroduceReply)(nil), // 29: api.common.RandomIntroduceReply
  3689. (*UpdateInformationRequest)(nil), // 30: api.common.UpdateInformationRequest
  3690. (*OnlinePersonListReply)(nil), // 31: api.common.OnlinePersonListReply
  3691. (*OnlinePersonInfo)(nil), // 32: api.common.OnlinePersonInfo
  3692. (*ChatRecordListReply)(nil), // 33: api.common.ChatRecordListReply
  3693. (*ChatRoomMsg)(nil), // 34: api.common.ChatRoomMsg
  3694. (*ChatPersonMsg)(nil), // 35: api.common.ChatPersonMsg
  3695. (*ChatRecordInfo)(nil), // 36: api.common.ChatRecordInfo
  3696. (*ChatIsReadInfo)(nil), // 37: api.common.ChatIsReadInfo
  3697. (*GoToRoom)(nil), // 38: api.common.GoToRoom
  3698. (*Message)(nil), // 39: api.common.Message
  3699. (*FindChatRoomMsgRequest)(nil), // 40: api.common.FindChatRoomMsgRequest
  3700. (*RoomIDRequest)(nil), // 41: api.common.RoomIDRequest
  3701. (*FindChatRecordListRequest)(nil), // 42: api.common.FindChatRecordListRequest
  3702. (*IsLike)(nil), // 43: api.common.IsLike
  3703. (*BalanceRequest)(nil), // 44: api.common.BalanceRequest
  3704. (*RandomNum)(nil), // 45: api.common.RandomNum
  3705. (*RandomNumAndSex)(nil), // 46: api.common.RandomNumAndSex
  3706. (*MemeRequest)(nil), // 47: api.common.MemeRequest
  3707. (*CommonTextList)(nil), // 48: api.common.CommonTextList
  3708. (*MemeTitleList)(nil), // 49: api.common.MemeTitleList
  3709. (*MemeTitle)(nil), // 50: api.common.MemeTitle
  3710. (*MemeList)(nil), // 51: api.common.MemeList
  3711. (*ChatTopicList)(nil), // 52: api.common.ChatTopicList
  3712. (*ReportChatRequest)(nil), // 53: api.common.ReportChatRequest
  3713. (*ReportRequest)(nil), // 54: api.common.ReportRequest
  3714. }
  3715. var file_common_proto_depIdxs = []int32{
  3716. 27, // 0: api.common.ChatCardInfo.tagList:type_name -> api.common.TagList
  3717. 27, // 1: api.common.HomeInfo.tagList:type_name -> api.common.TagList
  3718. 16, // 2: api.common.PersonDBReply.list:type_name -> api.common.PersonDB
  3719. 27, // 3: api.common.TagListReply.list:type_name -> api.common.TagList
  3720. 32, // 4: api.common.OnlinePersonListReply.list:type_name -> api.common.OnlinePersonInfo
  3721. 36, // 5: api.common.ChatRecordListReply.list:type_name -> api.common.ChatRecordInfo
  3722. 35, // 6: api.common.ChatRoomMsg.self:type_name -> api.common.ChatPersonMsg
  3723. 35, // 7: api.common.ChatRoomMsg.other:type_name -> api.common.ChatPersonMsg
  3724. 39, // 8: api.common.ChatRecordInfo.message:type_name -> api.common.Message
  3725. 50, // 9: api.common.MemeTitleList.list:type_name -> api.common.MemeTitle
  3726. 10, // [10:10] is the sub-list for method output_type
  3727. 10, // [10:10] is the sub-list for method input_type
  3728. 10, // [10:10] is the sub-list for extension type_name
  3729. 10, // [10:10] is the sub-list for extension extendee
  3730. 0, // [0:10] is the sub-list for field type_name
  3731. }
  3732. func init() { file_common_proto_init() }
  3733. func file_common_proto_init() {
  3734. if File_common_proto != nil {
  3735. return
  3736. }
  3737. if !protoimpl.UnsafeEnabled {
  3738. file_common_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  3739. switch v := v.(*UserAndPartnerIdentifyIdParam); i {
  3740. case 0:
  3741. return &v.state
  3742. case 1:
  3743. return &v.sizeCache
  3744. case 2:
  3745. return &v.unknownFields
  3746. default:
  3747. return nil
  3748. }
  3749. }
  3750. file_common_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  3751. switch v := v.(*UserAndPartnerParam); i {
  3752. case 0:
  3753. return &v.state
  3754. case 1:
  3755. return &v.sizeCache
  3756. case 2:
  3757. return &v.unknownFields
  3758. default:
  3759. return nil
  3760. }
  3761. }
  3762. file_common_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  3763. switch v := v.(*User1AndUser2IdParam); i {
  3764. case 0:
  3765. return &v.state
  3766. case 1:
  3767. return &v.sizeCache
  3768. case 2:
  3769. return &v.unknownFields
  3770. default:
  3771. return nil
  3772. }
  3773. }
  3774. file_common_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  3775. switch v := v.(*PartnerIDParam); i {
  3776. case 0:
  3777. return &v.state
  3778. case 1:
  3779. return &v.sizeCache
  3780. case 2:
  3781. return &v.unknownFields
  3782. default:
  3783. return nil
  3784. }
  3785. }
  3786. file_common_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  3787. switch v := v.(*PersonIDParam); i {
  3788. case 0:
  3789. return &v.state
  3790. case 1:
  3791. return &v.sizeCache
  3792. case 2:
  3793. return &v.unknownFields
  3794. default:
  3795. return nil
  3796. }
  3797. }
  3798. file_common_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  3799. switch v := v.(*PersonParam); i {
  3800. case 0:
  3801. return &v.state
  3802. case 1:
  3803. return &v.sizeCache
  3804. case 2:
  3805. return &v.unknownFields
  3806. default:
  3807. return nil
  3808. }
  3809. }
  3810. file_common_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  3811. switch v := v.(*ChatCardInfo); i {
  3812. case 0:
  3813. return &v.state
  3814. case 1:
  3815. return &v.sizeCache
  3816. case 2:
  3817. return &v.unknownFields
  3818. default:
  3819. return nil
  3820. }
  3821. }
  3822. file_common_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  3823. switch v := v.(*UserIDParam); i {
  3824. case 0:
  3825. return &v.state
  3826. case 1:
  3827. return &v.sizeCache
  3828. case 2:
  3829. return &v.unknownFields
  3830. default:
  3831. return nil
  3832. }
  3833. }
  3834. file_common_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  3835. switch v := v.(*WxConfReq); i {
  3836. case 0:
  3837. return &v.state
  3838. case 1:
  3839. return &v.sizeCache
  3840. case 2:
  3841. return &v.unknownFields
  3842. default:
  3843. return nil
  3844. }
  3845. }
  3846. file_common_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  3847. switch v := v.(*WxConfResponse); i {
  3848. case 0:
  3849. return &v.state
  3850. case 1:
  3851. return &v.sizeCache
  3852. case 2:
  3853. return &v.unknownFields
  3854. default:
  3855. return nil
  3856. }
  3857. }
  3858. file_common_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  3859. switch v := v.(*HomeInfo); i {
  3860. case 0:
  3861. return &v.state
  3862. case 1:
  3863. return &v.sizeCache
  3864. case 2:
  3865. return &v.unknownFields
  3866. default:
  3867. return nil
  3868. }
  3869. }
  3870. file_common_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  3871. switch v := v.(*PersonMsg); i {
  3872. case 0:
  3873. return &v.state
  3874. case 1:
  3875. return &v.sizeCache
  3876. case 2:
  3877. return &v.unknownFields
  3878. default:
  3879. return nil
  3880. }
  3881. }
  3882. file_common_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  3883. switch v := v.(*LookedAndLikedNum); i {
  3884. case 0:
  3885. return &v.state
  3886. case 1:
  3887. return &v.sizeCache
  3888. case 2:
  3889. return &v.unknownFields
  3890. default:
  3891. return nil
  3892. }
  3893. }
  3894. file_common_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  3895. switch v := v.(*AddFriendMessageInfo); i {
  3896. case 0:
  3897. return &v.state
  3898. case 1:
  3899. return &v.sizeCache
  3900. case 2:
  3901. return &v.unknownFields
  3902. default:
  3903. return nil
  3904. }
  3905. }
  3906. file_common_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  3907. switch v := v.(*PersonIDList); i {
  3908. case 0:
  3909. return &v.state
  3910. case 1:
  3911. return &v.sizeCache
  3912. case 2:
  3913. return &v.unknownFields
  3914. default:
  3915. return nil
  3916. }
  3917. }
  3918. file_common_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  3919. switch v := v.(*PersonDBReply); i {
  3920. case 0:
  3921. return &v.state
  3922. case 1:
  3923. return &v.sizeCache
  3924. case 2:
  3925. return &v.unknownFields
  3926. default:
  3927. return nil
  3928. }
  3929. }
  3930. file_common_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  3931. switch v := v.(*PersonDB); i {
  3932. case 0:
  3933. return &v.state
  3934. case 1:
  3935. return &v.sizeCache
  3936. case 2:
  3937. return &v.unknownFields
  3938. default:
  3939. return nil
  3940. }
  3941. }
  3942. file_common_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  3943. switch v := v.(*ListPageRequest); i {
  3944. case 0:
  3945. return &v.state
  3946. case 1:
  3947. return &v.sizeCache
  3948. case 2:
  3949. return &v.unknownFields
  3950. default:
  3951. return nil
  3952. }
  3953. }
  3954. file_common_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  3955. switch v := v.(*ListPageAndSexRequest); i {
  3956. case 0:
  3957. return &v.state
  3958. case 1:
  3959. return &v.sizeCache
  3960. case 2:
  3961. return &v.unknownFields
  3962. default:
  3963. return nil
  3964. }
  3965. }
  3966. file_common_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  3967. switch v := v.(*FindChatTopicRequest); i {
  3968. case 0:
  3969. return &v.state
  3970. case 1:
  3971. return &v.sizeCache
  3972. case 2:
  3973. return &v.unknownFields
  3974. default:
  3975. return nil
  3976. }
  3977. }
  3978. file_common_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  3979. switch v := v.(*ListPage2Request); i {
  3980. case 0:
  3981. return &v.state
  3982. case 1:
  3983. return &v.sizeCache
  3984. case 2:
  3985. return &v.unknownFields
  3986. default:
  3987. return nil
  3988. }
  3989. }
  3990. file_common_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  3991. switch v := v.(*ListPageAndPersonRequest); i {
  3992. case 0:
  3993. return &v.state
  3994. case 1:
  3995. return &v.sizeCache
  3996. case 2:
  3997. return &v.unknownFields
  3998. default:
  3999. return nil
  4000. }
  4001. }
  4002. file_common_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  4003. switch v := v.(*SendPhoneCodeRequest); i {
  4004. case 0:
  4005. return &v.state
  4006. case 1:
  4007. return &v.sizeCache
  4008. case 2:
  4009. return &v.unknownFields
  4010. default:
  4011. return nil
  4012. }
  4013. }
  4014. file_common_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  4015. switch v := v.(*CheckPhoneCodeRequest); i {
  4016. case 0:
  4017. return &v.state
  4018. case 1:
  4019. return &v.sizeCache
  4020. case 2:
  4021. return &v.unknownFields
  4022. default:
  4023. return nil
  4024. }
  4025. }
  4026. file_common_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  4027. switch v := v.(*UploadMaterialResponse); i {
  4028. case 0:
  4029. return &v.state
  4030. case 1:
  4031. return &v.sizeCache
  4032. case 2:
  4033. return &v.unknownFields
  4034. default:
  4035. return nil
  4036. }
  4037. }
  4038. file_common_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  4039. switch v := v.(*Ids); i {
  4040. case 0:
  4041. return &v.state
  4042. case 1:
  4043. return &v.sizeCache
  4044. case 2:
  4045. return &v.unknownFields
  4046. default:
  4047. return nil
  4048. }
  4049. }
  4050. file_common_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  4051. switch v := v.(*TagListReply); i {
  4052. case 0:
  4053. return &v.state
  4054. case 1:
  4055. return &v.sizeCache
  4056. case 2:
  4057. return &v.unknownFields
  4058. default:
  4059. return nil
  4060. }
  4061. }
  4062. file_common_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  4063. switch v := v.(*TagList); i {
  4064. case 0:
  4065. return &v.state
  4066. case 1:
  4067. return &v.sizeCache
  4068. case 2:
  4069. return &v.unknownFields
  4070. default:
  4071. return nil
  4072. }
  4073. }
  4074. file_common_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  4075. switch v := v.(*SexReq); i {
  4076. case 0:
  4077. return &v.state
  4078. case 1:
  4079. return &v.sizeCache
  4080. case 2:
  4081. return &v.unknownFields
  4082. default:
  4083. return nil
  4084. }
  4085. }
  4086. file_common_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  4087. switch v := v.(*RandomIntroduceReply); i {
  4088. case 0:
  4089. return &v.state
  4090. case 1:
  4091. return &v.sizeCache
  4092. case 2:
  4093. return &v.unknownFields
  4094. default:
  4095. return nil
  4096. }
  4097. }
  4098. file_common_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  4099. switch v := v.(*UpdateInformationRequest); i {
  4100. case 0:
  4101. return &v.state
  4102. case 1:
  4103. return &v.sizeCache
  4104. case 2:
  4105. return &v.unknownFields
  4106. default:
  4107. return nil
  4108. }
  4109. }
  4110. file_common_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  4111. switch v := v.(*OnlinePersonListReply); i {
  4112. case 0:
  4113. return &v.state
  4114. case 1:
  4115. return &v.sizeCache
  4116. case 2:
  4117. return &v.unknownFields
  4118. default:
  4119. return nil
  4120. }
  4121. }
  4122. file_common_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  4123. switch v := v.(*OnlinePersonInfo); i {
  4124. case 0:
  4125. return &v.state
  4126. case 1:
  4127. return &v.sizeCache
  4128. case 2:
  4129. return &v.unknownFields
  4130. default:
  4131. return nil
  4132. }
  4133. }
  4134. file_common_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  4135. switch v := v.(*ChatRecordListReply); i {
  4136. case 0:
  4137. return &v.state
  4138. case 1:
  4139. return &v.sizeCache
  4140. case 2:
  4141. return &v.unknownFields
  4142. default:
  4143. return nil
  4144. }
  4145. }
  4146. file_common_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  4147. switch v := v.(*ChatRoomMsg); i {
  4148. case 0:
  4149. return &v.state
  4150. case 1:
  4151. return &v.sizeCache
  4152. case 2:
  4153. return &v.unknownFields
  4154. default:
  4155. return nil
  4156. }
  4157. }
  4158. file_common_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
  4159. switch v := v.(*ChatPersonMsg); i {
  4160. case 0:
  4161. return &v.state
  4162. case 1:
  4163. return &v.sizeCache
  4164. case 2:
  4165. return &v.unknownFields
  4166. default:
  4167. return nil
  4168. }
  4169. }
  4170. file_common_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
  4171. switch v := v.(*ChatRecordInfo); i {
  4172. case 0:
  4173. return &v.state
  4174. case 1:
  4175. return &v.sizeCache
  4176. case 2:
  4177. return &v.unknownFields
  4178. default:
  4179. return nil
  4180. }
  4181. }
  4182. file_common_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
  4183. switch v := v.(*ChatIsReadInfo); i {
  4184. case 0:
  4185. return &v.state
  4186. case 1:
  4187. return &v.sizeCache
  4188. case 2:
  4189. return &v.unknownFields
  4190. default:
  4191. return nil
  4192. }
  4193. }
  4194. file_common_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
  4195. switch v := v.(*GoToRoom); i {
  4196. case 0:
  4197. return &v.state
  4198. case 1:
  4199. return &v.sizeCache
  4200. case 2:
  4201. return &v.unknownFields
  4202. default:
  4203. return nil
  4204. }
  4205. }
  4206. file_common_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
  4207. switch v := v.(*Message); i {
  4208. case 0:
  4209. return &v.state
  4210. case 1:
  4211. return &v.sizeCache
  4212. case 2:
  4213. return &v.unknownFields
  4214. default:
  4215. return nil
  4216. }
  4217. }
  4218. file_common_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
  4219. switch v := v.(*FindChatRoomMsgRequest); i {
  4220. case 0:
  4221. return &v.state
  4222. case 1:
  4223. return &v.sizeCache
  4224. case 2:
  4225. return &v.unknownFields
  4226. default:
  4227. return nil
  4228. }
  4229. }
  4230. file_common_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
  4231. switch v := v.(*RoomIDRequest); i {
  4232. case 0:
  4233. return &v.state
  4234. case 1:
  4235. return &v.sizeCache
  4236. case 2:
  4237. return &v.unknownFields
  4238. default:
  4239. return nil
  4240. }
  4241. }
  4242. file_common_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
  4243. switch v := v.(*FindChatRecordListRequest); i {
  4244. case 0:
  4245. return &v.state
  4246. case 1:
  4247. return &v.sizeCache
  4248. case 2:
  4249. return &v.unknownFields
  4250. default:
  4251. return nil
  4252. }
  4253. }
  4254. file_common_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
  4255. switch v := v.(*IsLike); i {
  4256. case 0:
  4257. return &v.state
  4258. case 1:
  4259. return &v.sizeCache
  4260. case 2:
  4261. return &v.unknownFields
  4262. default:
  4263. return nil
  4264. }
  4265. }
  4266. file_common_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
  4267. switch v := v.(*BalanceRequest); i {
  4268. case 0:
  4269. return &v.state
  4270. case 1:
  4271. return &v.sizeCache
  4272. case 2:
  4273. return &v.unknownFields
  4274. default:
  4275. return nil
  4276. }
  4277. }
  4278. file_common_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {
  4279. switch v := v.(*RandomNum); i {
  4280. case 0:
  4281. return &v.state
  4282. case 1:
  4283. return &v.sizeCache
  4284. case 2:
  4285. return &v.unknownFields
  4286. default:
  4287. return nil
  4288. }
  4289. }
  4290. file_common_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {
  4291. switch v := v.(*RandomNumAndSex); i {
  4292. case 0:
  4293. return &v.state
  4294. case 1:
  4295. return &v.sizeCache
  4296. case 2:
  4297. return &v.unknownFields
  4298. default:
  4299. return nil
  4300. }
  4301. }
  4302. file_common_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} {
  4303. switch v := v.(*MemeRequest); i {
  4304. case 0:
  4305. return &v.state
  4306. case 1:
  4307. return &v.sizeCache
  4308. case 2:
  4309. return &v.unknownFields
  4310. default:
  4311. return nil
  4312. }
  4313. }
  4314. file_common_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} {
  4315. switch v := v.(*CommonTextList); i {
  4316. case 0:
  4317. return &v.state
  4318. case 1:
  4319. return &v.sizeCache
  4320. case 2:
  4321. return &v.unknownFields
  4322. default:
  4323. return nil
  4324. }
  4325. }
  4326. file_common_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} {
  4327. switch v := v.(*MemeTitleList); i {
  4328. case 0:
  4329. return &v.state
  4330. case 1:
  4331. return &v.sizeCache
  4332. case 2:
  4333. return &v.unknownFields
  4334. default:
  4335. return nil
  4336. }
  4337. }
  4338. file_common_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} {
  4339. switch v := v.(*MemeTitle); i {
  4340. case 0:
  4341. return &v.state
  4342. case 1:
  4343. return &v.sizeCache
  4344. case 2:
  4345. return &v.unknownFields
  4346. default:
  4347. return nil
  4348. }
  4349. }
  4350. file_common_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} {
  4351. switch v := v.(*MemeList); i {
  4352. case 0:
  4353. return &v.state
  4354. case 1:
  4355. return &v.sizeCache
  4356. case 2:
  4357. return &v.unknownFields
  4358. default:
  4359. return nil
  4360. }
  4361. }
  4362. file_common_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} {
  4363. switch v := v.(*ChatTopicList); i {
  4364. case 0:
  4365. return &v.state
  4366. case 1:
  4367. return &v.sizeCache
  4368. case 2:
  4369. return &v.unknownFields
  4370. default:
  4371. return nil
  4372. }
  4373. }
  4374. file_common_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} {
  4375. switch v := v.(*ReportChatRequest); i {
  4376. case 0:
  4377. return &v.state
  4378. case 1:
  4379. return &v.sizeCache
  4380. case 2:
  4381. return &v.unknownFields
  4382. default:
  4383. return nil
  4384. }
  4385. }
  4386. file_common_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} {
  4387. switch v := v.(*ReportRequest); i {
  4388. case 0:
  4389. return &v.state
  4390. case 1:
  4391. return &v.sizeCache
  4392. case 2:
  4393. return &v.unknownFields
  4394. default:
  4395. return nil
  4396. }
  4397. }
  4398. }
  4399. type x struct{}
  4400. out := protoimpl.TypeBuilder{
  4401. File: protoimpl.DescBuilder{
  4402. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  4403. RawDescriptor: file_common_proto_rawDesc,
  4404. NumEnums: 0,
  4405. NumMessages: 55,
  4406. NumExtensions: 0,
  4407. NumServices: 0,
  4408. },
  4409. GoTypes: file_common_proto_goTypes,
  4410. DependencyIndexes: file_common_proto_depIdxs,
  4411. MessageInfos: file_common_proto_msgTypes,
  4412. }.Build()
  4413. File_common_proto = out.File
  4414. file_common_proto_rawDesc = nil
  4415. file_common_proto_goTypes = nil
  4416. file_common_proto_depIdxs = nil
  4417. }