common.pb.go 144 KB

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