common.pb.go 145 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746
  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 FindChatTopicRequest struct {
  1316. state protoimpl.MessageState
  1317. sizeCache protoimpl.SizeCache
  1318. unknownFields protoimpl.UnknownFields
  1319. Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type"` // 话题类型
  1320. Sex int64 `protobuf:"varint,2,opt,name=sex,proto3" json:"sex"` // 对方的性别
  1321. }
  1322. func (x *FindChatTopicRequest) Reset() {
  1323. *x = FindChatTopicRequest{}
  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 *FindChatTopicRequest) String() string {
  1331. return protoimpl.X.MessageStringOf(x)
  1332. }
  1333. func (*FindChatTopicRequest) ProtoMessage() {}
  1334. func (x *FindChatTopicRequest) 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 FindChatTopicRequest.ProtoReflect.Descriptor instead.
  1346. func (*FindChatTopicRequest) Descriptor() ([]byte, []int) {
  1347. return file_common_proto_rawDescGZIP(), []int{19}
  1348. }
  1349. func (x *FindChatTopicRequest) GetType() string {
  1350. if x != nil {
  1351. return x.Type
  1352. }
  1353. return ""
  1354. }
  1355. func (x *FindChatTopicRequest) GetSex() int64 {
  1356. if x != nil {
  1357. return x.Sex
  1358. }
  1359. return 0
  1360. }
  1361. type ListPage2Request 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. }
  1368. func (x *ListPage2Request) Reset() {
  1369. *x = ListPage2Request{}
  1370. if protoimpl.UnsafeEnabled {
  1371. mi := &file_common_proto_msgTypes[20]
  1372. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1373. ms.StoreMessageInfo(mi)
  1374. }
  1375. }
  1376. func (x *ListPage2Request) String() string {
  1377. return protoimpl.X.MessageStringOf(x)
  1378. }
  1379. func (*ListPage2Request) ProtoMessage() {}
  1380. func (x *ListPage2Request) ProtoReflect() protoreflect.Message {
  1381. mi := &file_common_proto_msgTypes[20]
  1382. if protoimpl.UnsafeEnabled && x != nil {
  1383. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1384. if ms.LoadMessageInfo() == nil {
  1385. ms.StoreMessageInfo(mi)
  1386. }
  1387. return ms
  1388. }
  1389. return mi.MessageOf(x)
  1390. }
  1391. // Deprecated: Use ListPage2Request.ProtoReflect.Descriptor instead.
  1392. func (*ListPage2Request) Descriptor() ([]byte, []int) {
  1393. return file_common_proto_rawDescGZIP(), []int{20}
  1394. }
  1395. func (x *ListPage2Request) GetNextId() string {
  1396. if x != nil {
  1397. return x.NextId
  1398. }
  1399. return ""
  1400. }
  1401. func (x *ListPage2Request) GetOffset() int64 {
  1402. if x != nil {
  1403. return x.Offset
  1404. }
  1405. return 0
  1406. }
  1407. type ListPageAndPersonRequest struct {
  1408. state protoimpl.MessageState
  1409. sizeCache protoimpl.SizeCache
  1410. unknownFields protoimpl.UnknownFields
  1411. NextId string `protobuf:"bytes,1,opt,name=nextId,proto3" json:"nextId"`
  1412. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  1413. PersonID string `protobuf:"bytes,3,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  1414. PersonType string `protobuf:"bytes,4,opt,name=personType,proto3" json:"personType"` // 类型
  1415. }
  1416. func (x *ListPageAndPersonRequest) Reset() {
  1417. *x = ListPageAndPersonRequest{}
  1418. if protoimpl.UnsafeEnabled {
  1419. mi := &file_common_proto_msgTypes[21]
  1420. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1421. ms.StoreMessageInfo(mi)
  1422. }
  1423. }
  1424. func (x *ListPageAndPersonRequest) String() string {
  1425. return protoimpl.X.MessageStringOf(x)
  1426. }
  1427. func (*ListPageAndPersonRequest) ProtoMessage() {}
  1428. func (x *ListPageAndPersonRequest) ProtoReflect() protoreflect.Message {
  1429. mi := &file_common_proto_msgTypes[21]
  1430. if protoimpl.UnsafeEnabled && x != nil {
  1431. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1432. if ms.LoadMessageInfo() == nil {
  1433. ms.StoreMessageInfo(mi)
  1434. }
  1435. return ms
  1436. }
  1437. return mi.MessageOf(x)
  1438. }
  1439. // Deprecated: Use ListPageAndPersonRequest.ProtoReflect.Descriptor instead.
  1440. func (*ListPageAndPersonRequest) Descriptor() ([]byte, []int) {
  1441. return file_common_proto_rawDescGZIP(), []int{21}
  1442. }
  1443. func (x *ListPageAndPersonRequest) GetNextId() string {
  1444. if x != nil {
  1445. return x.NextId
  1446. }
  1447. return ""
  1448. }
  1449. func (x *ListPageAndPersonRequest) GetOffset() int64 {
  1450. if x != nil {
  1451. return x.Offset
  1452. }
  1453. return 0
  1454. }
  1455. func (x *ListPageAndPersonRequest) GetPersonID() string {
  1456. if x != nil {
  1457. return x.PersonID
  1458. }
  1459. return ""
  1460. }
  1461. func (x *ListPageAndPersonRequest) GetPersonType() string {
  1462. if x != nil {
  1463. return x.PersonType
  1464. }
  1465. return ""
  1466. }
  1467. type SendPhoneCodeRequest struct {
  1468. state protoimpl.MessageState
  1469. sizeCache protoimpl.SizeCache
  1470. unknownFields protoimpl.UnknownFields
  1471. Phone string `protobuf:"bytes,1,opt,name=phone,proto3" json:"phone"`
  1472. }
  1473. func (x *SendPhoneCodeRequest) Reset() {
  1474. *x = SendPhoneCodeRequest{}
  1475. if protoimpl.UnsafeEnabled {
  1476. mi := &file_common_proto_msgTypes[22]
  1477. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1478. ms.StoreMessageInfo(mi)
  1479. }
  1480. }
  1481. func (x *SendPhoneCodeRequest) String() string {
  1482. return protoimpl.X.MessageStringOf(x)
  1483. }
  1484. func (*SendPhoneCodeRequest) ProtoMessage() {}
  1485. func (x *SendPhoneCodeRequest) ProtoReflect() protoreflect.Message {
  1486. mi := &file_common_proto_msgTypes[22]
  1487. if protoimpl.UnsafeEnabled && x != nil {
  1488. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1489. if ms.LoadMessageInfo() == nil {
  1490. ms.StoreMessageInfo(mi)
  1491. }
  1492. return ms
  1493. }
  1494. return mi.MessageOf(x)
  1495. }
  1496. // Deprecated: Use SendPhoneCodeRequest.ProtoReflect.Descriptor instead.
  1497. func (*SendPhoneCodeRequest) Descriptor() ([]byte, []int) {
  1498. return file_common_proto_rawDescGZIP(), []int{22}
  1499. }
  1500. func (x *SendPhoneCodeRequest) GetPhone() string {
  1501. if x != nil {
  1502. return x.Phone
  1503. }
  1504. return ""
  1505. }
  1506. type CheckPhoneCodeRequest struct {
  1507. state protoimpl.MessageState
  1508. sizeCache protoimpl.SizeCache
  1509. unknownFields protoimpl.UnknownFields
  1510. Phone string `protobuf:"bytes,1,opt,name=phone,proto3" json:"phone"`
  1511. Code string `protobuf:"bytes,2,opt,name=code,proto3" json:"code"`
  1512. }
  1513. func (x *CheckPhoneCodeRequest) Reset() {
  1514. *x = CheckPhoneCodeRequest{}
  1515. if protoimpl.UnsafeEnabled {
  1516. mi := &file_common_proto_msgTypes[23]
  1517. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1518. ms.StoreMessageInfo(mi)
  1519. }
  1520. }
  1521. func (x *CheckPhoneCodeRequest) String() string {
  1522. return protoimpl.X.MessageStringOf(x)
  1523. }
  1524. func (*CheckPhoneCodeRequest) ProtoMessage() {}
  1525. func (x *CheckPhoneCodeRequest) ProtoReflect() protoreflect.Message {
  1526. mi := &file_common_proto_msgTypes[23]
  1527. if protoimpl.UnsafeEnabled && x != nil {
  1528. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1529. if ms.LoadMessageInfo() == nil {
  1530. ms.StoreMessageInfo(mi)
  1531. }
  1532. return ms
  1533. }
  1534. return mi.MessageOf(x)
  1535. }
  1536. // Deprecated: Use CheckPhoneCodeRequest.ProtoReflect.Descriptor instead.
  1537. func (*CheckPhoneCodeRequest) Descriptor() ([]byte, []int) {
  1538. return file_common_proto_rawDescGZIP(), []int{23}
  1539. }
  1540. func (x *CheckPhoneCodeRequest) GetPhone() string {
  1541. if x != nil {
  1542. return x.Phone
  1543. }
  1544. return ""
  1545. }
  1546. func (x *CheckPhoneCodeRequest) GetCode() string {
  1547. if x != nil {
  1548. return x.Code
  1549. }
  1550. return ""
  1551. }
  1552. type UploadMaterialResponse struct {
  1553. state protoimpl.MessageState
  1554. sizeCache protoimpl.SizeCache
  1555. unknownFields protoimpl.UnknownFields
  1556. Link string `protobuf:"bytes,1,opt,name=link,proto3" json:"link"`
  1557. }
  1558. func (x *UploadMaterialResponse) Reset() {
  1559. *x = UploadMaterialResponse{}
  1560. if protoimpl.UnsafeEnabled {
  1561. mi := &file_common_proto_msgTypes[24]
  1562. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1563. ms.StoreMessageInfo(mi)
  1564. }
  1565. }
  1566. func (x *UploadMaterialResponse) String() string {
  1567. return protoimpl.X.MessageStringOf(x)
  1568. }
  1569. func (*UploadMaterialResponse) ProtoMessage() {}
  1570. func (x *UploadMaterialResponse) ProtoReflect() protoreflect.Message {
  1571. mi := &file_common_proto_msgTypes[24]
  1572. if protoimpl.UnsafeEnabled && x != nil {
  1573. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1574. if ms.LoadMessageInfo() == nil {
  1575. ms.StoreMessageInfo(mi)
  1576. }
  1577. return ms
  1578. }
  1579. return mi.MessageOf(x)
  1580. }
  1581. // Deprecated: Use UploadMaterialResponse.ProtoReflect.Descriptor instead.
  1582. func (*UploadMaterialResponse) Descriptor() ([]byte, []int) {
  1583. return file_common_proto_rawDescGZIP(), []int{24}
  1584. }
  1585. func (x *UploadMaterialResponse) GetLink() string {
  1586. if x != nil {
  1587. return x.Link
  1588. }
  1589. return ""
  1590. }
  1591. type Ids struct {
  1592. state protoimpl.MessageState
  1593. sizeCache protoimpl.SizeCache
  1594. unknownFields protoimpl.UnknownFields
  1595. Ids []int64 `protobuf:"varint,1,rep,packed,name=ids,proto3" json:"ids"` // 标签ID
  1596. }
  1597. func (x *Ids) Reset() {
  1598. *x = Ids{}
  1599. if protoimpl.UnsafeEnabled {
  1600. mi := &file_common_proto_msgTypes[25]
  1601. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1602. ms.StoreMessageInfo(mi)
  1603. }
  1604. }
  1605. func (x *Ids) String() string {
  1606. return protoimpl.X.MessageStringOf(x)
  1607. }
  1608. func (*Ids) ProtoMessage() {}
  1609. func (x *Ids) ProtoReflect() protoreflect.Message {
  1610. mi := &file_common_proto_msgTypes[25]
  1611. if protoimpl.UnsafeEnabled && x != nil {
  1612. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1613. if ms.LoadMessageInfo() == nil {
  1614. ms.StoreMessageInfo(mi)
  1615. }
  1616. return ms
  1617. }
  1618. return mi.MessageOf(x)
  1619. }
  1620. // Deprecated: Use Ids.ProtoReflect.Descriptor instead.
  1621. func (*Ids) Descriptor() ([]byte, []int) {
  1622. return file_common_proto_rawDescGZIP(), []int{25}
  1623. }
  1624. func (x *Ids) GetIds() []int64 {
  1625. if x != nil {
  1626. return x.Ids
  1627. }
  1628. return nil
  1629. }
  1630. type TagListReply struct {
  1631. state protoimpl.MessageState
  1632. sizeCache protoimpl.SizeCache
  1633. unknownFields protoimpl.UnknownFields
  1634. List []*TagList `protobuf:"bytes,1,rep,name=list,proto3" json:"list"` // 标签列表
  1635. }
  1636. func (x *TagListReply) Reset() {
  1637. *x = TagListReply{}
  1638. if protoimpl.UnsafeEnabled {
  1639. mi := &file_common_proto_msgTypes[26]
  1640. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1641. ms.StoreMessageInfo(mi)
  1642. }
  1643. }
  1644. func (x *TagListReply) String() string {
  1645. return protoimpl.X.MessageStringOf(x)
  1646. }
  1647. func (*TagListReply) ProtoMessage() {}
  1648. func (x *TagListReply) ProtoReflect() protoreflect.Message {
  1649. mi := &file_common_proto_msgTypes[26]
  1650. if protoimpl.UnsafeEnabled && x != nil {
  1651. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1652. if ms.LoadMessageInfo() == nil {
  1653. ms.StoreMessageInfo(mi)
  1654. }
  1655. return ms
  1656. }
  1657. return mi.MessageOf(x)
  1658. }
  1659. // Deprecated: Use TagListReply.ProtoReflect.Descriptor instead.
  1660. func (*TagListReply) Descriptor() ([]byte, []int) {
  1661. return file_common_proto_rawDescGZIP(), []int{26}
  1662. }
  1663. func (x *TagListReply) GetList() []*TagList {
  1664. if x != nil {
  1665. return x.List
  1666. }
  1667. return nil
  1668. }
  1669. type TagList struct {
  1670. state protoimpl.MessageState
  1671. sizeCache protoimpl.SizeCache
  1672. unknownFields protoimpl.UnknownFields
  1673. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"` // 标签ID
  1674. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name"` // 分组名
  1675. }
  1676. func (x *TagList) Reset() {
  1677. *x = TagList{}
  1678. if protoimpl.UnsafeEnabled {
  1679. mi := &file_common_proto_msgTypes[27]
  1680. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1681. ms.StoreMessageInfo(mi)
  1682. }
  1683. }
  1684. func (x *TagList) String() string {
  1685. return protoimpl.X.MessageStringOf(x)
  1686. }
  1687. func (*TagList) ProtoMessage() {}
  1688. func (x *TagList) ProtoReflect() protoreflect.Message {
  1689. mi := &file_common_proto_msgTypes[27]
  1690. if protoimpl.UnsafeEnabled && x != nil {
  1691. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1692. if ms.LoadMessageInfo() == nil {
  1693. ms.StoreMessageInfo(mi)
  1694. }
  1695. return ms
  1696. }
  1697. return mi.MessageOf(x)
  1698. }
  1699. // Deprecated: Use TagList.ProtoReflect.Descriptor instead.
  1700. func (*TagList) Descriptor() ([]byte, []int) {
  1701. return file_common_proto_rawDescGZIP(), []int{27}
  1702. }
  1703. func (x *TagList) GetId() int64 {
  1704. if x != nil {
  1705. return x.Id
  1706. }
  1707. return 0
  1708. }
  1709. func (x *TagList) GetName() string {
  1710. if x != nil {
  1711. return x.Name
  1712. }
  1713. return ""
  1714. }
  1715. type SexReq struct {
  1716. state protoimpl.MessageState
  1717. sizeCache protoimpl.SizeCache
  1718. unknownFields protoimpl.UnknownFields
  1719. Sex int64 `protobuf:"varint,1,opt,name=sex,proto3" json:"sex"`
  1720. }
  1721. func (x *SexReq) Reset() {
  1722. *x = SexReq{}
  1723. if protoimpl.UnsafeEnabled {
  1724. mi := &file_common_proto_msgTypes[28]
  1725. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1726. ms.StoreMessageInfo(mi)
  1727. }
  1728. }
  1729. func (x *SexReq) String() string {
  1730. return protoimpl.X.MessageStringOf(x)
  1731. }
  1732. func (*SexReq) ProtoMessage() {}
  1733. func (x *SexReq) ProtoReflect() protoreflect.Message {
  1734. mi := &file_common_proto_msgTypes[28]
  1735. if protoimpl.UnsafeEnabled && x != nil {
  1736. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1737. if ms.LoadMessageInfo() == nil {
  1738. ms.StoreMessageInfo(mi)
  1739. }
  1740. return ms
  1741. }
  1742. return mi.MessageOf(x)
  1743. }
  1744. // Deprecated: Use SexReq.ProtoReflect.Descriptor instead.
  1745. func (*SexReq) Descriptor() ([]byte, []int) {
  1746. return file_common_proto_rawDescGZIP(), []int{28}
  1747. }
  1748. func (x *SexReq) GetSex() int64 {
  1749. if x != nil {
  1750. return x.Sex
  1751. }
  1752. return 0
  1753. }
  1754. type RandomIntroduceReply struct {
  1755. state protoimpl.MessageState
  1756. sizeCache protoimpl.SizeCache
  1757. unknownFields protoimpl.UnknownFields
  1758. Introduce string `protobuf:"bytes,1,opt,name=introduce,proto3" json:"introduce"`
  1759. }
  1760. func (x *RandomIntroduceReply) Reset() {
  1761. *x = RandomIntroduceReply{}
  1762. if protoimpl.UnsafeEnabled {
  1763. mi := &file_common_proto_msgTypes[29]
  1764. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1765. ms.StoreMessageInfo(mi)
  1766. }
  1767. }
  1768. func (x *RandomIntroduceReply) String() string {
  1769. return protoimpl.X.MessageStringOf(x)
  1770. }
  1771. func (*RandomIntroduceReply) ProtoMessage() {}
  1772. func (x *RandomIntroduceReply) ProtoReflect() protoreflect.Message {
  1773. mi := &file_common_proto_msgTypes[29]
  1774. if protoimpl.UnsafeEnabled && x != nil {
  1775. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1776. if ms.LoadMessageInfo() == nil {
  1777. ms.StoreMessageInfo(mi)
  1778. }
  1779. return ms
  1780. }
  1781. return mi.MessageOf(x)
  1782. }
  1783. // Deprecated: Use RandomIntroduceReply.ProtoReflect.Descriptor instead.
  1784. func (*RandomIntroduceReply) Descriptor() ([]byte, []int) {
  1785. return file_common_proto_rawDescGZIP(), []int{29}
  1786. }
  1787. func (x *RandomIntroduceReply) GetIntroduce() string {
  1788. if x != nil {
  1789. return x.Introduce
  1790. }
  1791. return ""
  1792. }
  1793. type UpdateInformationRequest struct {
  1794. state protoimpl.MessageState
  1795. sizeCache protoimpl.SizeCache
  1796. unknownFields protoimpl.UnknownFields
  1797. Nickname string `protobuf:"bytes,1,opt,name=nickname,proto3" json:"nickname"` // 昵称
  1798. AvatarUrl string `protobuf:"bytes,2,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像
  1799. Sex int64 `protobuf:"varint,3,opt,name=sex,proto3" json:"sex"` // 性别
  1800. Birthday int64 `protobuf:"varint,4,opt,name=birthday,proto3" json:"birthday"` // 出生日期(毫秒级时间戳)
  1801. TagList []int64 `protobuf:"varint,5,rep,packed,name=tagList,proto3" json:"tagList"` // 标签id列表
  1802. IntroduceVoice string `protobuf:"bytes,6,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音的链接
  1803. Signature string `protobuf:"bytes,7,opt,name=signature,proto3" json:"signature"` // 介绍(签名)
  1804. Pictures []string `protobuf:"bytes,8,rep,name=pictures,proto3" json:"pictures"` // 相册(主页图片)
  1805. Province string `protobuf:"bytes,9,opt,name=province,proto3" json:"province"` // 省
  1806. City string `protobuf:"bytes,10,opt,name=city,proto3" json:"city"` // 市
  1807. Area string `protobuf:"bytes,11,opt,name=area,proto3" json:"area"` // 区
  1808. }
  1809. func (x *UpdateInformationRequest) Reset() {
  1810. *x = UpdateInformationRequest{}
  1811. if protoimpl.UnsafeEnabled {
  1812. mi := &file_common_proto_msgTypes[30]
  1813. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1814. ms.StoreMessageInfo(mi)
  1815. }
  1816. }
  1817. func (x *UpdateInformationRequest) String() string {
  1818. return protoimpl.X.MessageStringOf(x)
  1819. }
  1820. func (*UpdateInformationRequest) ProtoMessage() {}
  1821. func (x *UpdateInformationRequest) ProtoReflect() protoreflect.Message {
  1822. mi := &file_common_proto_msgTypes[30]
  1823. if protoimpl.UnsafeEnabled && x != nil {
  1824. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1825. if ms.LoadMessageInfo() == nil {
  1826. ms.StoreMessageInfo(mi)
  1827. }
  1828. return ms
  1829. }
  1830. return mi.MessageOf(x)
  1831. }
  1832. // Deprecated: Use UpdateInformationRequest.ProtoReflect.Descriptor instead.
  1833. func (*UpdateInformationRequest) Descriptor() ([]byte, []int) {
  1834. return file_common_proto_rawDescGZIP(), []int{30}
  1835. }
  1836. func (x *UpdateInformationRequest) GetNickname() string {
  1837. if x != nil {
  1838. return x.Nickname
  1839. }
  1840. return ""
  1841. }
  1842. func (x *UpdateInformationRequest) GetAvatarUrl() string {
  1843. if x != nil {
  1844. return x.AvatarUrl
  1845. }
  1846. return ""
  1847. }
  1848. func (x *UpdateInformationRequest) GetSex() int64 {
  1849. if x != nil {
  1850. return x.Sex
  1851. }
  1852. return 0
  1853. }
  1854. func (x *UpdateInformationRequest) GetBirthday() int64 {
  1855. if x != nil {
  1856. return x.Birthday
  1857. }
  1858. return 0
  1859. }
  1860. func (x *UpdateInformationRequest) GetTagList() []int64 {
  1861. if x != nil {
  1862. return x.TagList
  1863. }
  1864. return nil
  1865. }
  1866. func (x *UpdateInformationRequest) GetIntroduceVoice() string {
  1867. if x != nil {
  1868. return x.IntroduceVoice
  1869. }
  1870. return ""
  1871. }
  1872. func (x *UpdateInformationRequest) GetSignature() string {
  1873. if x != nil {
  1874. return x.Signature
  1875. }
  1876. return ""
  1877. }
  1878. func (x *UpdateInformationRequest) GetPictures() []string {
  1879. if x != nil {
  1880. return x.Pictures
  1881. }
  1882. return nil
  1883. }
  1884. func (x *UpdateInformationRequest) GetProvince() string {
  1885. if x != nil {
  1886. return x.Province
  1887. }
  1888. return ""
  1889. }
  1890. func (x *UpdateInformationRequest) GetCity() string {
  1891. if x != nil {
  1892. return x.City
  1893. }
  1894. return ""
  1895. }
  1896. func (x *UpdateInformationRequest) GetArea() string {
  1897. if x != nil {
  1898. return x.Area
  1899. }
  1900. return ""
  1901. }
  1902. type OnlinePersonListReply struct {
  1903. state protoimpl.MessageState
  1904. sizeCache protoimpl.SizeCache
  1905. unknownFields protoimpl.UnknownFields
  1906. List []*OnlinePersonInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1907. NextId string `protobuf:"bytes,2,opt,name=nextId,proto3" json:"nextId"`
  1908. }
  1909. func (x *OnlinePersonListReply) Reset() {
  1910. *x = OnlinePersonListReply{}
  1911. if protoimpl.UnsafeEnabled {
  1912. mi := &file_common_proto_msgTypes[31]
  1913. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1914. ms.StoreMessageInfo(mi)
  1915. }
  1916. }
  1917. func (x *OnlinePersonListReply) String() string {
  1918. return protoimpl.X.MessageStringOf(x)
  1919. }
  1920. func (*OnlinePersonListReply) ProtoMessage() {}
  1921. func (x *OnlinePersonListReply) ProtoReflect() protoreflect.Message {
  1922. mi := &file_common_proto_msgTypes[31]
  1923. if protoimpl.UnsafeEnabled && x != nil {
  1924. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1925. if ms.LoadMessageInfo() == nil {
  1926. ms.StoreMessageInfo(mi)
  1927. }
  1928. return ms
  1929. }
  1930. return mi.MessageOf(x)
  1931. }
  1932. // Deprecated: Use OnlinePersonListReply.ProtoReflect.Descriptor instead.
  1933. func (*OnlinePersonListReply) Descriptor() ([]byte, []int) {
  1934. return file_common_proto_rawDescGZIP(), []int{31}
  1935. }
  1936. func (x *OnlinePersonListReply) GetList() []*OnlinePersonInfo {
  1937. if x != nil {
  1938. return x.List
  1939. }
  1940. return nil
  1941. }
  1942. func (x *OnlinePersonListReply) GetNextId() string {
  1943. if x != nil {
  1944. return x.NextId
  1945. }
  1946. return ""
  1947. }
  1948. type OnlinePersonInfo struct {
  1949. state protoimpl.MessageState
  1950. sizeCache protoimpl.SizeCache
  1951. unknownFields protoimpl.UnknownFields
  1952. PersonID string `protobuf:"bytes,1,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  1953. PersonType string `protobuf:"bytes,2,opt,name=personType,proto3" json:"personType"` // 类型
  1954. Nickname string `protobuf:"bytes,3,opt,name=nickname,proto3" json:"nickname"` // 昵称
  1955. AvatarUrl string `protobuf:"bytes,4,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  1956. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  1957. Age int64 `protobuf:"varint,6,opt,name=age,proto3" json:"age"` // 年龄
  1958. Constellation string `protobuf:"bytes,7,opt,name=constellation,proto3" json:"constellation"` // 星座
  1959. Signature string `protobuf:"bytes,8,opt,name=signature,proto3" json:"signature"` // 签名
  1960. Province string `protobuf:"bytes,9,opt,name=province,proto3" json:"province"` // 省
  1961. City string `protobuf:"bytes,10,opt,name=city,proto3" json:"city"` // 市
  1962. Area string `protobuf:"bytes,11,opt,name=area,proto3" json:"area"` // 区
  1963. IntroduceVoice string `protobuf:"bytes,12,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音
  1964. TagList []string `protobuf:"bytes,13,rep,name=tagList,proto3" json:"tagList"` // 标签
  1965. }
  1966. func (x *OnlinePersonInfo) Reset() {
  1967. *x = OnlinePersonInfo{}
  1968. if protoimpl.UnsafeEnabled {
  1969. mi := &file_common_proto_msgTypes[32]
  1970. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1971. ms.StoreMessageInfo(mi)
  1972. }
  1973. }
  1974. func (x *OnlinePersonInfo) String() string {
  1975. return protoimpl.X.MessageStringOf(x)
  1976. }
  1977. func (*OnlinePersonInfo) ProtoMessage() {}
  1978. func (x *OnlinePersonInfo) ProtoReflect() protoreflect.Message {
  1979. mi := &file_common_proto_msgTypes[32]
  1980. if protoimpl.UnsafeEnabled && x != nil {
  1981. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1982. if ms.LoadMessageInfo() == nil {
  1983. ms.StoreMessageInfo(mi)
  1984. }
  1985. return ms
  1986. }
  1987. return mi.MessageOf(x)
  1988. }
  1989. // Deprecated: Use OnlinePersonInfo.ProtoReflect.Descriptor instead.
  1990. func (*OnlinePersonInfo) Descriptor() ([]byte, []int) {
  1991. return file_common_proto_rawDescGZIP(), []int{32}
  1992. }
  1993. func (x *OnlinePersonInfo) GetPersonID() string {
  1994. if x != nil {
  1995. return x.PersonID
  1996. }
  1997. return ""
  1998. }
  1999. func (x *OnlinePersonInfo) GetPersonType() string {
  2000. if x != nil {
  2001. return x.PersonType
  2002. }
  2003. return ""
  2004. }
  2005. func (x *OnlinePersonInfo) GetNickname() string {
  2006. if x != nil {
  2007. return x.Nickname
  2008. }
  2009. return ""
  2010. }
  2011. func (x *OnlinePersonInfo) GetAvatarUrl() string {
  2012. if x != nil {
  2013. return x.AvatarUrl
  2014. }
  2015. return ""
  2016. }
  2017. func (x *OnlinePersonInfo) GetSex() int64 {
  2018. if x != nil {
  2019. return x.Sex
  2020. }
  2021. return 0
  2022. }
  2023. func (x *OnlinePersonInfo) GetAge() int64 {
  2024. if x != nil {
  2025. return x.Age
  2026. }
  2027. return 0
  2028. }
  2029. func (x *OnlinePersonInfo) GetConstellation() string {
  2030. if x != nil {
  2031. return x.Constellation
  2032. }
  2033. return ""
  2034. }
  2035. func (x *OnlinePersonInfo) GetSignature() string {
  2036. if x != nil {
  2037. return x.Signature
  2038. }
  2039. return ""
  2040. }
  2041. func (x *OnlinePersonInfo) GetProvince() string {
  2042. if x != nil {
  2043. return x.Province
  2044. }
  2045. return ""
  2046. }
  2047. func (x *OnlinePersonInfo) GetCity() string {
  2048. if x != nil {
  2049. return x.City
  2050. }
  2051. return ""
  2052. }
  2053. func (x *OnlinePersonInfo) GetArea() string {
  2054. if x != nil {
  2055. return x.Area
  2056. }
  2057. return ""
  2058. }
  2059. func (x *OnlinePersonInfo) GetIntroduceVoice() string {
  2060. if x != nil {
  2061. return x.IntroduceVoice
  2062. }
  2063. return ""
  2064. }
  2065. func (x *OnlinePersonInfo) GetTagList() []string {
  2066. if x != nil {
  2067. return x.TagList
  2068. }
  2069. return nil
  2070. }
  2071. type ChatRecordListReply struct {
  2072. state protoimpl.MessageState
  2073. sizeCache protoimpl.SizeCache
  2074. unknownFields protoimpl.UnknownFields
  2075. List []*ChatRecordInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  2076. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  2077. }
  2078. func (x *ChatRecordListReply) Reset() {
  2079. *x = ChatRecordListReply{}
  2080. if protoimpl.UnsafeEnabled {
  2081. mi := &file_common_proto_msgTypes[33]
  2082. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2083. ms.StoreMessageInfo(mi)
  2084. }
  2085. }
  2086. func (x *ChatRecordListReply) String() string {
  2087. return protoimpl.X.MessageStringOf(x)
  2088. }
  2089. func (*ChatRecordListReply) ProtoMessage() {}
  2090. func (x *ChatRecordListReply) ProtoReflect() protoreflect.Message {
  2091. mi := &file_common_proto_msgTypes[33]
  2092. if protoimpl.UnsafeEnabled && x != nil {
  2093. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2094. if ms.LoadMessageInfo() == nil {
  2095. ms.StoreMessageInfo(mi)
  2096. }
  2097. return ms
  2098. }
  2099. return mi.MessageOf(x)
  2100. }
  2101. // Deprecated: Use ChatRecordListReply.ProtoReflect.Descriptor instead.
  2102. func (*ChatRecordListReply) Descriptor() ([]byte, []int) {
  2103. return file_common_proto_rawDescGZIP(), []int{33}
  2104. }
  2105. func (x *ChatRecordListReply) GetList() []*ChatRecordInfo {
  2106. if x != nil {
  2107. return x.List
  2108. }
  2109. return nil
  2110. }
  2111. func (x *ChatRecordListReply) GetNextId() int64 {
  2112. if x != nil {
  2113. return x.NextId
  2114. }
  2115. return 0
  2116. }
  2117. type ChatRoomMsg struct {
  2118. state protoimpl.MessageState
  2119. sizeCache protoimpl.SizeCache
  2120. unknownFields protoimpl.UnknownFields
  2121. RoomId int64 `protobuf:"varint,1,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  2122. Self *ChatPersonMsg `protobuf:"bytes,2,opt,name=self,proto3" json:"self"` // 自己的信息
  2123. Other *ChatPersonMsg `protobuf:"bytes,3,opt,name=other,proto3" json:"other"` // 对方的信息
  2124. Likeability int64 `protobuf:"varint,5,opt,name=likeability,proto3" json:"likeability"` // 对对方的好感度
  2125. }
  2126. func (x *ChatRoomMsg) Reset() {
  2127. *x = ChatRoomMsg{}
  2128. if protoimpl.UnsafeEnabled {
  2129. mi := &file_common_proto_msgTypes[34]
  2130. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2131. ms.StoreMessageInfo(mi)
  2132. }
  2133. }
  2134. func (x *ChatRoomMsg) String() string {
  2135. return protoimpl.X.MessageStringOf(x)
  2136. }
  2137. func (*ChatRoomMsg) ProtoMessage() {}
  2138. func (x *ChatRoomMsg) ProtoReflect() protoreflect.Message {
  2139. mi := &file_common_proto_msgTypes[34]
  2140. if protoimpl.UnsafeEnabled && x != nil {
  2141. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2142. if ms.LoadMessageInfo() == nil {
  2143. ms.StoreMessageInfo(mi)
  2144. }
  2145. return ms
  2146. }
  2147. return mi.MessageOf(x)
  2148. }
  2149. // Deprecated: Use ChatRoomMsg.ProtoReflect.Descriptor instead.
  2150. func (*ChatRoomMsg) Descriptor() ([]byte, []int) {
  2151. return file_common_proto_rawDescGZIP(), []int{34}
  2152. }
  2153. func (x *ChatRoomMsg) GetRoomId() int64 {
  2154. if x != nil {
  2155. return x.RoomId
  2156. }
  2157. return 0
  2158. }
  2159. func (x *ChatRoomMsg) GetSelf() *ChatPersonMsg {
  2160. if x != nil {
  2161. return x.Self
  2162. }
  2163. return nil
  2164. }
  2165. func (x *ChatRoomMsg) GetOther() *ChatPersonMsg {
  2166. if x != nil {
  2167. return x.Other
  2168. }
  2169. return nil
  2170. }
  2171. func (x *ChatRoomMsg) GetLikeability() int64 {
  2172. if x != nil {
  2173. return x.Likeability
  2174. }
  2175. return 0
  2176. }
  2177. type ChatPersonMsg struct {
  2178. state protoimpl.MessageState
  2179. sizeCache protoimpl.SizeCache
  2180. unknownFields protoimpl.UnknownFields
  2181. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  2182. Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type"` // 类型
  2183. Nickname string `protobuf:"bytes,3,opt,name=nickname,proto3" json:"nickname"` // 昵称
  2184. Avatar string `protobuf:"bytes,4,opt,name=avatar,proto3" json:"avatar"` // 头像
  2185. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  2186. }
  2187. func (x *ChatPersonMsg) Reset() {
  2188. *x = ChatPersonMsg{}
  2189. if protoimpl.UnsafeEnabled {
  2190. mi := &file_common_proto_msgTypes[35]
  2191. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2192. ms.StoreMessageInfo(mi)
  2193. }
  2194. }
  2195. func (x *ChatPersonMsg) String() string {
  2196. return protoimpl.X.MessageStringOf(x)
  2197. }
  2198. func (*ChatPersonMsg) ProtoMessage() {}
  2199. func (x *ChatPersonMsg) ProtoReflect() protoreflect.Message {
  2200. mi := &file_common_proto_msgTypes[35]
  2201. if protoimpl.UnsafeEnabled && x != nil {
  2202. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2203. if ms.LoadMessageInfo() == nil {
  2204. ms.StoreMessageInfo(mi)
  2205. }
  2206. return ms
  2207. }
  2208. return mi.MessageOf(x)
  2209. }
  2210. // Deprecated: Use ChatPersonMsg.ProtoReflect.Descriptor instead.
  2211. func (*ChatPersonMsg) Descriptor() ([]byte, []int) {
  2212. return file_common_proto_rawDescGZIP(), []int{35}
  2213. }
  2214. func (x *ChatPersonMsg) GetId() string {
  2215. if x != nil {
  2216. return x.Id
  2217. }
  2218. return ""
  2219. }
  2220. func (x *ChatPersonMsg) GetType() string {
  2221. if x != nil {
  2222. return x.Type
  2223. }
  2224. return ""
  2225. }
  2226. func (x *ChatPersonMsg) GetNickname() string {
  2227. if x != nil {
  2228. return x.Nickname
  2229. }
  2230. return ""
  2231. }
  2232. func (x *ChatPersonMsg) GetAvatar() string {
  2233. if x != nil {
  2234. return x.Avatar
  2235. }
  2236. return ""
  2237. }
  2238. func (x *ChatPersonMsg) GetSex() int64 {
  2239. if x != nil {
  2240. return x.Sex
  2241. }
  2242. return 0
  2243. }
  2244. type ChatRecordInfo struct {
  2245. state protoimpl.MessageState
  2246. sizeCache protoimpl.SizeCache
  2247. unknownFields protoimpl.UnknownFields
  2248. MessageId int64 `protobuf:"varint,1,opt,name=messageId,proto3" json:"messageId"` // 消息的ID
  2249. MsgType string `protobuf:"bytes,2,opt,name=msgType,proto3" json:"msgType"` // 消息类型
  2250. Message *Message `protobuf:"bytes,3,opt,name=message,proto3" json:"message"` // 消息的结构
  2251. RoomId int64 `protobuf:"varint,4,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  2252. IsSelf bool `protobuf:"varint,5,opt,name=isSelf,proto3" json:"isSelf"` // 是否是自己
  2253. SendTime int64 `protobuf:"varint,6,opt,name=sendTime,proto3" json:"sendTime"` // 发送时间
  2254. Status string `protobuf:"bytes,7,opt,name=status,proto3" json:"status"` // 消息状态
  2255. StatusMsg string `protobuf:"bytes,8,opt,name=statusMsg,proto3" json:"statusMsg"` // 状态说明
  2256. IsRead bool `protobuf:"varint,9,opt,name=isRead,proto3" json:"isRead"` // 对方是否已读
  2257. }
  2258. func (x *ChatRecordInfo) Reset() {
  2259. *x = ChatRecordInfo{}
  2260. if protoimpl.UnsafeEnabled {
  2261. mi := &file_common_proto_msgTypes[36]
  2262. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2263. ms.StoreMessageInfo(mi)
  2264. }
  2265. }
  2266. func (x *ChatRecordInfo) String() string {
  2267. return protoimpl.X.MessageStringOf(x)
  2268. }
  2269. func (*ChatRecordInfo) ProtoMessage() {}
  2270. func (x *ChatRecordInfo) ProtoReflect() protoreflect.Message {
  2271. mi := &file_common_proto_msgTypes[36]
  2272. if protoimpl.UnsafeEnabled && x != nil {
  2273. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2274. if ms.LoadMessageInfo() == nil {
  2275. ms.StoreMessageInfo(mi)
  2276. }
  2277. return ms
  2278. }
  2279. return mi.MessageOf(x)
  2280. }
  2281. // Deprecated: Use ChatRecordInfo.ProtoReflect.Descriptor instead.
  2282. func (*ChatRecordInfo) Descriptor() ([]byte, []int) {
  2283. return file_common_proto_rawDescGZIP(), []int{36}
  2284. }
  2285. func (x *ChatRecordInfo) GetMessageId() int64 {
  2286. if x != nil {
  2287. return x.MessageId
  2288. }
  2289. return 0
  2290. }
  2291. func (x *ChatRecordInfo) GetMsgType() string {
  2292. if x != nil {
  2293. return x.MsgType
  2294. }
  2295. return ""
  2296. }
  2297. func (x *ChatRecordInfo) GetMessage() *Message {
  2298. if x != nil {
  2299. return x.Message
  2300. }
  2301. return nil
  2302. }
  2303. func (x *ChatRecordInfo) GetRoomId() int64 {
  2304. if x != nil {
  2305. return x.RoomId
  2306. }
  2307. return 0
  2308. }
  2309. func (x *ChatRecordInfo) GetIsSelf() bool {
  2310. if x != nil {
  2311. return x.IsSelf
  2312. }
  2313. return false
  2314. }
  2315. func (x *ChatRecordInfo) GetSendTime() int64 {
  2316. if x != nil {
  2317. return x.SendTime
  2318. }
  2319. return 0
  2320. }
  2321. func (x *ChatRecordInfo) GetStatus() string {
  2322. if x != nil {
  2323. return x.Status
  2324. }
  2325. return ""
  2326. }
  2327. func (x *ChatRecordInfo) GetStatusMsg() string {
  2328. if x != nil {
  2329. return x.StatusMsg
  2330. }
  2331. return ""
  2332. }
  2333. func (x *ChatRecordInfo) GetIsRead() bool {
  2334. if x != nil {
  2335. return x.IsRead
  2336. }
  2337. return false
  2338. }
  2339. type ChatIsReadInfo struct {
  2340. state protoimpl.MessageState
  2341. sizeCache protoimpl.SizeCache
  2342. unknownFields protoimpl.UnknownFields
  2343. MessageId int64 `protobuf:"varint,1,opt,name=messageId,proto3" json:"messageId"` // 消息的ID
  2344. RoomId int64 `protobuf:"varint,4,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  2345. }
  2346. func (x *ChatIsReadInfo) Reset() {
  2347. *x = ChatIsReadInfo{}
  2348. if protoimpl.UnsafeEnabled {
  2349. mi := &file_common_proto_msgTypes[37]
  2350. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2351. ms.StoreMessageInfo(mi)
  2352. }
  2353. }
  2354. func (x *ChatIsReadInfo) String() string {
  2355. return protoimpl.X.MessageStringOf(x)
  2356. }
  2357. func (*ChatIsReadInfo) ProtoMessage() {}
  2358. func (x *ChatIsReadInfo) ProtoReflect() protoreflect.Message {
  2359. mi := &file_common_proto_msgTypes[37]
  2360. if protoimpl.UnsafeEnabled && x != nil {
  2361. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2362. if ms.LoadMessageInfo() == nil {
  2363. ms.StoreMessageInfo(mi)
  2364. }
  2365. return ms
  2366. }
  2367. return mi.MessageOf(x)
  2368. }
  2369. // Deprecated: Use ChatIsReadInfo.ProtoReflect.Descriptor instead.
  2370. func (*ChatIsReadInfo) Descriptor() ([]byte, []int) {
  2371. return file_common_proto_rawDescGZIP(), []int{37}
  2372. }
  2373. func (x *ChatIsReadInfo) GetMessageId() int64 {
  2374. if x != nil {
  2375. return x.MessageId
  2376. }
  2377. return 0
  2378. }
  2379. func (x *ChatIsReadInfo) GetRoomId() int64 {
  2380. if x != nil {
  2381. return x.RoomId
  2382. }
  2383. return 0
  2384. }
  2385. type GoToRoom struct {
  2386. state protoimpl.MessageState
  2387. sizeCache protoimpl.SizeCache
  2388. unknownFields protoimpl.UnknownFields
  2389. RoomId int64 `protobuf:"varint,1,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  2390. }
  2391. func (x *GoToRoom) Reset() {
  2392. *x = GoToRoom{}
  2393. if protoimpl.UnsafeEnabled {
  2394. mi := &file_common_proto_msgTypes[38]
  2395. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2396. ms.StoreMessageInfo(mi)
  2397. }
  2398. }
  2399. func (x *GoToRoom) String() string {
  2400. return protoimpl.X.MessageStringOf(x)
  2401. }
  2402. func (*GoToRoom) ProtoMessage() {}
  2403. func (x *GoToRoom) ProtoReflect() protoreflect.Message {
  2404. mi := &file_common_proto_msgTypes[38]
  2405. if protoimpl.UnsafeEnabled && x != nil {
  2406. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2407. if ms.LoadMessageInfo() == nil {
  2408. ms.StoreMessageInfo(mi)
  2409. }
  2410. return ms
  2411. }
  2412. return mi.MessageOf(x)
  2413. }
  2414. // Deprecated: Use GoToRoom.ProtoReflect.Descriptor instead.
  2415. func (*GoToRoom) Descriptor() ([]byte, []int) {
  2416. return file_common_proto_rawDescGZIP(), []int{38}
  2417. }
  2418. func (x *GoToRoom) GetRoomId() int64 {
  2419. if x != nil {
  2420. return x.RoomId
  2421. }
  2422. return 0
  2423. }
  2424. type Message struct {
  2425. state protoimpl.MessageState
  2426. sizeCache protoimpl.SizeCache
  2427. unknownFields protoimpl.UnknownFields
  2428. Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content"` // 文本内容
  2429. MaterialUrl string `protobuf:"bytes,2,opt,name=materialUrl,proto3" json:"materialUrl"` // 素材链接
  2430. }
  2431. func (x *Message) Reset() {
  2432. *x = Message{}
  2433. if protoimpl.UnsafeEnabled {
  2434. mi := &file_common_proto_msgTypes[39]
  2435. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2436. ms.StoreMessageInfo(mi)
  2437. }
  2438. }
  2439. func (x *Message) String() string {
  2440. return protoimpl.X.MessageStringOf(x)
  2441. }
  2442. func (*Message) ProtoMessage() {}
  2443. func (x *Message) ProtoReflect() protoreflect.Message {
  2444. mi := &file_common_proto_msgTypes[39]
  2445. if protoimpl.UnsafeEnabled && x != nil {
  2446. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2447. if ms.LoadMessageInfo() == nil {
  2448. ms.StoreMessageInfo(mi)
  2449. }
  2450. return ms
  2451. }
  2452. return mi.MessageOf(x)
  2453. }
  2454. // Deprecated: Use Message.ProtoReflect.Descriptor instead.
  2455. func (*Message) Descriptor() ([]byte, []int) {
  2456. return file_common_proto_rawDescGZIP(), []int{39}
  2457. }
  2458. func (x *Message) GetContent() string {
  2459. if x != nil {
  2460. return x.Content
  2461. }
  2462. return ""
  2463. }
  2464. func (x *Message) GetMaterialUrl() string {
  2465. if x != nil {
  2466. return x.MaterialUrl
  2467. }
  2468. return ""
  2469. }
  2470. type FindChatRoomMsgRequest struct {
  2471. state protoimpl.MessageState
  2472. sizeCache protoimpl.SizeCache
  2473. unknownFields protoimpl.UnknownFields
  2474. RoomId int64 `protobuf:"varint,1,opt,name=roomId,proto3" json:"roomId"`
  2475. }
  2476. func (x *FindChatRoomMsgRequest) Reset() {
  2477. *x = FindChatRoomMsgRequest{}
  2478. if protoimpl.UnsafeEnabled {
  2479. mi := &file_common_proto_msgTypes[40]
  2480. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2481. ms.StoreMessageInfo(mi)
  2482. }
  2483. }
  2484. func (x *FindChatRoomMsgRequest) String() string {
  2485. return protoimpl.X.MessageStringOf(x)
  2486. }
  2487. func (*FindChatRoomMsgRequest) ProtoMessage() {}
  2488. func (x *FindChatRoomMsgRequest) ProtoReflect() protoreflect.Message {
  2489. mi := &file_common_proto_msgTypes[40]
  2490. if protoimpl.UnsafeEnabled && x != nil {
  2491. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2492. if ms.LoadMessageInfo() == nil {
  2493. ms.StoreMessageInfo(mi)
  2494. }
  2495. return ms
  2496. }
  2497. return mi.MessageOf(x)
  2498. }
  2499. // Deprecated: Use FindChatRoomMsgRequest.ProtoReflect.Descriptor instead.
  2500. func (*FindChatRoomMsgRequest) Descriptor() ([]byte, []int) {
  2501. return file_common_proto_rawDescGZIP(), []int{40}
  2502. }
  2503. func (x *FindChatRoomMsgRequest) GetRoomId() int64 {
  2504. if x != nil {
  2505. return x.RoomId
  2506. }
  2507. return 0
  2508. }
  2509. type RoomIDRequest struct {
  2510. state protoimpl.MessageState
  2511. sizeCache protoimpl.SizeCache
  2512. unknownFields protoimpl.UnknownFields
  2513. RoomId int64 `protobuf:"varint,1,opt,name=roomId,proto3" json:"roomId"`
  2514. }
  2515. func (x *RoomIDRequest) Reset() {
  2516. *x = RoomIDRequest{}
  2517. if protoimpl.UnsafeEnabled {
  2518. mi := &file_common_proto_msgTypes[41]
  2519. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2520. ms.StoreMessageInfo(mi)
  2521. }
  2522. }
  2523. func (x *RoomIDRequest) String() string {
  2524. return protoimpl.X.MessageStringOf(x)
  2525. }
  2526. func (*RoomIDRequest) ProtoMessage() {}
  2527. func (x *RoomIDRequest) ProtoReflect() protoreflect.Message {
  2528. mi := &file_common_proto_msgTypes[41]
  2529. if protoimpl.UnsafeEnabled && x != nil {
  2530. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2531. if ms.LoadMessageInfo() == nil {
  2532. ms.StoreMessageInfo(mi)
  2533. }
  2534. return ms
  2535. }
  2536. return mi.MessageOf(x)
  2537. }
  2538. // Deprecated: Use RoomIDRequest.ProtoReflect.Descriptor instead.
  2539. func (*RoomIDRequest) Descriptor() ([]byte, []int) {
  2540. return file_common_proto_rawDescGZIP(), []int{41}
  2541. }
  2542. func (x *RoomIDRequest) GetRoomId() int64 {
  2543. if x != nil {
  2544. return x.RoomId
  2545. }
  2546. return 0
  2547. }
  2548. type FindChatRecordListRequest struct {
  2549. state protoimpl.MessageState
  2550. sizeCache protoimpl.SizeCache
  2551. unknownFields protoimpl.UnknownFields
  2552. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  2553. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  2554. RoomId int64 `protobuf:"varint,3,opt,name=roomId,proto3" json:"roomId"`
  2555. }
  2556. func (x *FindChatRecordListRequest) Reset() {
  2557. *x = FindChatRecordListRequest{}
  2558. if protoimpl.UnsafeEnabled {
  2559. mi := &file_common_proto_msgTypes[42]
  2560. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2561. ms.StoreMessageInfo(mi)
  2562. }
  2563. }
  2564. func (x *FindChatRecordListRequest) String() string {
  2565. return protoimpl.X.MessageStringOf(x)
  2566. }
  2567. func (*FindChatRecordListRequest) ProtoMessage() {}
  2568. func (x *FindChatRecordListRequest) ProtoReflect() protoreflect.Message {
  2569. mi := &file_common_proto_msgTypes[42]
  2570. if protoimpl.UnsafeEnabled && x != nil {
  2571. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2572. if ms.LoadMessageInfo() == nil {
  2573. ms.StoreMessageInfo(mi)
  2574. }
  2575. return ms
  2576. }
  2577. return mi.MessageOf(x)
  2578. }
  2579. // Deprecated: Use FindChatRecordListRequest.ProtoReflect.Descriptor instead.
  2580. func (*FindChatRecordListRequest) Descriptor() ([]byte, []int) {
  2581. return file_common_proto_rawDescGZIP(), []int{42}
  2582. }
  2583. func (x *FindChatRecordListRequest) GetNextId() int64 {
  2584. if x != nil {
  2585. return x.NextId
  2586. }
  2587. return 0
  2588. }
  2589. func (x *FindChatRecordListRequest) GetOffset() int64 {
  2590. if x != nil {
  2591. return x.Offset
  2592. }
  2593. return 0
  2594. }
  2595. func (x *FindChatRecordListRequest) GetRoomId() int64 {
  2596. if x != nil {
  2597. return x.RoomId
  2598. }
  2599. return 0
  2600. }
  2601. type IsLike struct {
  2602. state protoimpl.MessageState
  2603. sizeCache protoimpl.SizeCache
  2604. unknownFields protoimpl.UnknownFields
  2605. IsLike bool `protobuf:"varint,1,opt,name=isLike,proto3" json:"isLike"` // 是否喜欢(关注)
  2606. }
  2607. func (x *IsLike) Reset() {
  2608. *x = IsLike{}
  2609. if protoimpl.UnsafeEnabled {
  2610. mi := &file_common_proto_msgTypes[43]
  2611. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2612. ms.StoreMessageInfo(mi)
  2613. }
  2614. }
  2615. func (x *IsLike) String() string {
  2616. return protoimpl.X.MessageStringOf(x)
  2617. }
  2618. func (*IsLike) ProtoMessage() {}
  2619. func (x *IsLike) ProtoReflect() protoreflect.Message {
  2620. mi := &file_common_proto_msgTypes[43]
  2621. if protoimpl.UnsafeEnabled && x != nil {
  2622. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2623. if ms.LoadMessageInfo() == nil {
  2624. ms.StoreMessageInfo(mi)
  2625. }
  2626. return ms
  2627. }
  2628. return mi.MessageOf(x)
  2629. }
  2630. // Deprecated: Use IsLike.ProtoReflect.Descriptor instead.
  2631. func (*IsLike) Descriptor() ([]byte, []int) {
  2632. return file_common_proto_rawDescGZIP(), []int{43}
  2633. }
  2634. func (x *IsLike) GetIsLike() bool {
  2635. if x != nil {
  2636. return x.IsLike
  2637. }
  2638. return false
  2639. }
  2640. type BalanceRequest struct {
  2641. state protoimpl.MessageState
  2642. sizeCache protoimpl.SizeCache
  2643. unknownFields protoimpl.UnknownFields
  2644. PersonID string `protobuf:"bytes,1,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  2645. PersonType string `protobuf:"bytes,2,opt,name=personType,proto3" json:"personType"` // 类型
  2646. Balance int64 `protobuf:"varint,3,opt,name=balance,proto3" json:"balance"` // 充值或者减少的金额
  2647. }
  2648. func (x *BalanceRequest) Reset() {
  2649. *x = BalanceRequest{}
  2650. if protoimpl.UnsafeEnabled {
  2651. mi := &file_common_proto_msgTypes[44]
  2652. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2653. ms.StoreMessageInfo(mi)
  2654. }
  2655. }
  2656. func (x *BalanceRequest) String() string {
  2657. return protoimpl.X.MessageStringOf(x)
  2658. }
  2659. func (*BalanceRequest) ProtoMessage() {}
  2660. func (x *BalanceRequest) ProtoReflect() protoreflect.Message {
  2661. mi := &file_common_proto_msgTypes[44]
  2662. if protoimpl.UnsafeEnabled && x != nil {
  2663. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2664. if ms.LoadMessageInfo() == nil {
  2665. ms.StoreMessageInfo(mi)
  2666. }
  2667. return ms
  2668. }
  2669. return mi.MessageOf(x)
  2670. }
  2671. // Deprecated: Use BalanceRequest.ProtoReflect.Descriptor instead.
  2672. func (*BalanceRequest) Descriptor() ([]byte, []int) {
  2673. return file_common_proto_rawDescGZIP(), []int{44}
  2674. }
  2675. func (x *BalanceRequest) GetPersonID() string {
  2676. if x != nil {
  2677. return x.PersonID
  2678. }
  2679. return ""
  2680. }
  2681. func (x *BalanceRequest) GetPersonType() string {
  2682. if x != nil {
  2683. return x.PersonType
  2684. }
  2685. return ""
  2686. }
  2687. func (x *BalanceRequest) GetBalance() int64 {
  2688. if x != nil {
  2689. return x.Balance
  2690. }
  2691. return 0
  2692. }
  2693. type RandomNum struct {
  2694. state protoimpl.MessageState
  2695. sizeCache protoimpl.SizeCache
  2696. unknownFields protoimpl.UnknownFields
  2697. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"` // 随机的数量
  2698. }
  2699. func (x *RandomNum) Reset() {
  2700. *x = RandomNum{}
  2701. if protoimpl.UnsafeEnabled {
  2702. mi := &file_common_proto_msgTypes[45]
  2703. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2704. ms.StoreMessageInfo(mi)
  2705. }
  2706. }
  2707. func (x *RandomNum) String() string {
  2708. return protoimpl.X.MessageStringOf(x)
  2709. }
  2710. func (*RandomNum) ProtoMessage() {}
  2711. func (x *RandomNum) ProtoReflect() protoreflect.Message {
  2712. mi := &file_common_proto_msgTypes[45]
  2713. if protoimpl.UnsafeEnabled && x != nil {
  2714. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2715. if ms.LoadMessageInfo() == nil {
  2716. ms.StoreMessageInfo(mi)
  2717. }
  2718. return ms
  2719. }
  2720. return mi.MessageOf(x)
  2721. }
  2722. // Deprecated: Use RandomNum.ProtoReflect.Descriptor instead.
  2723. func (*RandomNum) Descriptor() ([]byte, []int) {
  2724. return file_common_proto_rawDescGZIP(), []int{45}
  2725. }
  2726. func (x *RandomNum) GetNum() int64 {
  2727. if x != nil {
  2728. return x.Num
  2729. }
  2730. return 0
  2731. }
  2732. type RandomNumAndSex struct {
  2733. state protoimpl.MessageState
  2734. sizeCache protoimpl.SizeCache
  2735. unknownFields protoimpl.UnknownFields
  2736. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"` // 随机的数量
  2737. Sex int64 `protobuf:"varint,2,opt,name=sex,proto3" json:"sex"` // 对方的性别
  2738. }
  2739. func (x *RandomNumAndSex) Reset() {
  2740. *x = RandomNumAndSex{}
  2741. if protoimpl.UnsafeEnabled {
  2742. mi := &file_common_proto_msgTypes[46]
  2743. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2744. ms.StoreMessageInfo(mi)
  2745. }
  2746. }
  2747. func (x *RandomNumAndSex) String() string {
  2748. return protoimpl.X.MessageStringOf(x)
  2749. }
  2750. func (*RandomNumAndSex) ProtoMessage() {}
  2751. func (x *RandomNumAndSex) ProtoReflect() protoreflect.Message {
  2752. mi := &file_common_proto_msgTypes[46]
  2753. if protoimpl.UnsafeEnabled && x != nil {
  2754. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2755. if ms.LoadMessageInfo() == nil {
  2756. ms.StoreMessageInfo(mi)
  2757. }
  2758. return ms
  2759. }
  2760. return mi.MessageOf(x)
  2761. }
  2762. // Deprecated: Use RandomNumAndSex.ProtoReflect.Descriptor instead.
  2763. func (*RandomNumAndSex) Descriptor() ([]byte, []int) {
  2764. return file_common_proto_rawDescGZIP(), []int{46}
  2765. }
  2766. func (x *RandomNumAndSex) GetNum() int64 {
  2767. if x != nil {
  2768. return x.Num
  2769. }
  2770. return 0
  2771. }
  2772. func (x *RandomNumAndSex) GetSex() int64 {
  2773. if x != nil {
  2774. return x.Sex
  2775. }
  2776. return 0
  2777. }
  2778. type MemeRequest struct {
  2779. state protoimpl.MessageState
  2780. sizeCache protoimpl.SizeCache
  2781. unknownFields protoimpl.UnknownFields
  2782. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  2783. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  2784. Type string `protobuf:"bytes,3,opt,name=type,proto3" json:"type"`
  2785. }
  2786. func (x *MemeRequest) Reset() {
  2787. *x = MemeRequest{}
  2788. if protoimpl.UnsafeEnabled {
  2789. mi := &file_common_proto_msgTypes[47]
  2790. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2791. ms.StoreMessageInfo(mi)
  2792. }
  2793. }
  2794. func (x *MemeRequest) String() string {
  2795. return protoimpl.X.MessageStringOf(x)
  2796. }
  2797. func (*MemeRequest) ProtoMessage() {}
  2798. func (x *MemeRequest) ProtoReflect() protoreflect.Message {
  2799. mi := &file_common_proto_msgTypes[47]
  2800. if protoimpl.UnsafeEnabled && x != nil {
  2801. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2802. if ms.LoadMessageInfo() == nil {
  2803. ms.StoreMessageInfo(mi)
  2804. }
  2805. return ms
  2806. }
  2807. return mi.MessageOf(x)
  2808. }
  2809. // Deprecated: Use MemeRequest.ProtoReflect.Descriptor instead.
  2810. func (*MemeRequest) Descriptor() ([]byte, []int) {
  2811. return file_common_proto_rawDescGZIP(), []int{47}
  2812. }
  2813. func (x *MemeRequest) GetNextId() int64 {
  2814. if x != nil {
  2815. return x.NextId
  2816. }
  2817. return 0
  2818. }
  2819. func (x *MemeRequest) GetOffset() int64 {
  2820. if x != nil {
  2821. return x.Offset
  2822. }
  2823. return 0
  2824. }
  2825. func (x *MemeRequest) GetType() string {
  2826. if x != nil {
  2827. return x.Type
  2828. }
  2829. return ""
  2830. }
  2831. type CommonTextList struct {
  2832. state protoimpl.MessageState
  2833. sizeCache protoimpl.SizeCache
  2834. unknownFields protoimpl.UnknownFields
  2835. List []string `protobuf:"bytes,1,rep,name=list,proto3" json:"list"` // 需要的数据集合(随机表情包、随机打招呼)
  2836. }
  2837. func (x *CommonTextList) Reset() {
  2838. *x = CommonTextList{}
  2839. if protoimpl.UnsafeEnabled {
  2840. mi := &file_common_proto_msgTypes[48]
  2841. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2842. ms.StoreMessageInfo(mi)
  2843. }
  2844. }
  2845. func (x *CommonTextList) String() string {
  2846. return protoimpl.X.MessageStringOf(x)
  2847. }
  2848. func (*CommonTextList) ProtoMessage() {}
  2849. func (x *CommonTextList) ProtoReflect() protoreflect.Message {
  2850. mi := &file_common_proto_msgTypes[48]
  2851. if protoimpl.UnsafeEnabled && x != nil {
  2852. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2853. if ms.LoadMessageInfo() == nil {
  2854. ms.StoreMessageInfo(mi)
  2855. }
  2856. return ms
  2857. }
  2858. return mi.MessageOf(x)
  2859. }
  2860. // Deprecated: Use CommonTextList.ProtoReflect.Descriptor instead.
  2861. func (*CommonTextList) Descriptor() ([]byte, []int) {
  2862. return file_common_proto_rawDescGZIP(), []int{48}
  2863. }
  2864. func (x *CommonTextList) GetList() []string {
  2865. if x != nil {
  2866. return x.List
  2867. }
  2868. return nil
  2869. }
  2870. type MemeTitleList struct {
  2871. state protoimpl.MessageState
  2872. sizeCache protoimpl.SizeCache
  2873. unknownFields protoimpl.UnknownFields
  2874. List []*MemeTitle `protobuf:"bytes,1,rep,name=list,proto3" json:"list"` // 需要的数据集合(随机表情包、随机打招呼)
  2875. }
  2876. func (x *MemeTitleList) Reset() {
  2877. *x = MemeTitleList{}
  2878. if protoimpl.UnsafeEnabled {
  2879. mi := &file_common_proto_msgTypes[49]
  2880. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2881. ms.StoreMessageInfo(mi)
  2882. }
  2883. }
  2884. func (x *MemeTitleList) String() string {
  2885. return protoimpl.X.MessageStringOf(x)
  2886. }
  2887. func (*MemeTitleList) ProtoMessage() {}
  2888. func (x *MemeTitleList) ProtoReflect() protoreflect.Message {
  2889. mi := &file_common_proto_msgTypes[49]
  2890. if protoimpl.UnsafeEnabled && x != nil {
  2891. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2892. if ms.LoadMessageInfo() == nil {
  2893. ms.StoreMessageInfo(mi)
  2894. }
  2895. return ms
  2896. }
  2897. return mi.MessageOf(x)
  2898. }
  2899. // Deprecated: Use MemeTitleList.ProtoReflect.Descriptor instead.
  2900. func (*MemeTitleList) Descriptor() ([]byte, []int) {
  2901. return file_common_proto_rawDescGZIP(), []int{49}
  2902. }
  2903. func (x *MemeTitleList) GetList() []*MemeTitle {
  2904. if x != nil {
  2905. return x.List
  2906. }
  2907. return nil
  2908. }
  2909. type MemeTitle struct {
  2910. state protoimpl.MessageState
  2911. sizeCache protoimpl.SizeCache
  2912. unknownFields protoimpl.UnknownFields
  2913. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name"` // 名称
  2914. Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type"` // 类型
  2915. }
  2916. func (x *MemeTitle) Reset() {
  2917. *x = MemeTitle{}
  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 *MemeTitle) String() string {
  2925. return protoimpl.X.MessageStringOf(x)
  2926. }
  2927. func (*MemeTitle) ProtoMessage() {}
  2928. func (x *MemeTitle) 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 MemeTitle.ProtoReflect.Descriptor instead.
  2940. func (*MemeTitle) Descriptor() ([]byte, []int) {
  2941. return file_common_proto_rawDescGZIP(), []int{50}
  2942. }
  2943. func (x *MemeTitle) GetName() string {
  2944. if x != nil {
  2945. return x.Name
  2946. }
  2947. return ""
  2948. }
  2949. func (x *MemeTitle) GetType() string {
  2950. if x != nil {
  2951. return x.Type
  2952. }
  2953. return ""
  2954. }
  2955. type MemeList 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 *MemeList) Reset() {
  2963. *x = MemeList{}
  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 *MemeList) String() string {
  2971. return protoimpl.X.MessageStringOf(x)
  2972. }
  2973. func (*MemeList) ProtoMessage() {}
  2974. func (x *MemeList) 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 MemeList.ProtoReflect.Descriptor instead.
  2986. func (*MemeList) Descriptor() ([]byte, []int) {
  2987. return file_common_proto_rawDescGZIP(), []int{51}
  2988. }
  2989. func (x *MemeList) GetList() []string {
  2990. if x != nil {
  2991. return x.List
  2992. }
  2993. return nil
  2994. }
  2995. func (x *MemeList) GetNextId() int64 {
  2996. if x != nil {
  2997. return x.NextId
  2998. }
  2999. return 0
  3000. }
  3001. type ChatTopicList struct {
  3002. state protoimpl.MessageState
  3003. sizeCache protoimpl.SizeCache
  3004. unknownFields protoimpl.UnknownFields
  3005. List []string `protobuf:"bytes,1,rep,name=list,proto3" json:"list"` // 话题列表
  3006. }
  3007. func (x *ChatTopicList) Reset() {
  3008. *x = ChatTopicList{}
  3009. if protoimpl.UnsafeEnabled {
  3010. mi := &file_common_proto_msgTypes[52]
  3011. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3012. ms.StoreMessageInfo(mi)
  3013. }
  3014. }
  3015. func (x *ChatTopicList) String() string {
  3016. return protoimpl.X.MessageStringOf(x)
  3017. }
  3018. func (*ChatTopicList) ProtoMessage() {}
  3019. func (x *ChatTopicList) ProtoReflect() protoreflect.Message {
  3020. mi := &file_common_proto_msgTypes[52]
  3021. if protoimpl.UnsafeEnabled && x != nil {
  3022. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3023. if ms.LoadMessageInfo() == nil {
  3024. ms.StoreMessageInfo(mi)
  3025. }
  3026. return ms
  3027. }
  3028. return mi.MessageOf(x)
  3029. }
  3030. // Deprecated: Use ChatTopicList.ProtoReflect.Descriptor instead.
  3031. func (*ChatTopicList) Descriptor() ([]byte, []int) {
  3032. return file_common_proto_rawDescGZIP(), []int{52}
  3033. }
  3034. func (x *ChatTopicList) GetList() []string {
  3035. if x != nil {
  3036. return x.List
  3037. }
  3038. return nil
  3039. }
  3040. var File_common_proto protoreflect.FileDescriptor
  3041. var file_common_proto_rawDesc = []byte{
  3042. 0x0a, 0x0c, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0a,
  3043. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x22, 0x75, 0x0a, 0x1d, 0x55, 0x73,
  3044. 0x65, 0x72, 0x41, 0x6e, 0x64, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e,
  3045. 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x2c, 0x0a, 0x11, 0x70,
  3046. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64,
  3047. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49,
  3048. 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x12, 0x26, 0x0a, 0x0e, 0x75, 0x73, 0x65,
  3049. 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  3050. 0x09, 0x52, 0x0e, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49,
  3051. 0x64, 0x22, 0xa1, 0x01, 0x0a, 0x13, 0x55, 0x73, 0x65, 0x72, 0x41, 0x6e, 0x64, 0x50, 0x61, 0x72,
  3052. 0x74, 0x6e, 0x65, 0x72, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72,
  3053. 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61,
  3054. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x12, 0x2c, 0x0a, 0x11, 0x70, 0x61, 0x72, 0x74, 0x6e,
  3055. 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01,
  3056. 0x28, 0x09, 0x52, 0x11, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74,
  3057. 0x69, 0x66, 0x79, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18,
  3058. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x26, 0x0a,
  3059. 0x0e, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x44, 0x18,
  3060. 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74,
  3061. 0x69, 0x66, 0x79, 0x49, 0x44, 0x22, 0x42, 0x0a, 0x14, 0x55, 0x73, 0x65, 0x72, 0x31, 0x41, 0x6e,
  3062. 0x64, 0x55, 0x73, 0x65, 0x72, 0x32, 0x49, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x14, 0x0a,
  3063. 0x05, 0x75, 0x73, 0x65, 0x72, 0x31, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x75, 0x73,
  3064. 0x65, 0x72, 0x31, 0x12, 0x14, 0x0a, 0x05, 0x75, 0x73, 0x65, 0x72, 0x32, 0x18, 0x02, 0x20, 0x01,
  3065. 0x28, 0x09, 0x52, 0x05, 0x75, 0x73, 0x65, 0x72, 0x32, 0x22, 0x2e, 0x0a, 0x0e, 0x50, 0x61, 0x72,
  3066. 0x74, 0x6e, 0x65, 0x72, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x1c, 0x0a, 0x09, 0x70,
  3067. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
  3068. 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x44, 0x22, 0x2b, 0x0a, 0x0d, 0x50, 0x65, 0x72,
  3069. 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65,
  3070. 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65,
  3071. 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x22, 0x49, 0x0a, 0x0b, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  3072. 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  3073. 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  3074. 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18,
  3075. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70,
  3076. 0x65, 0x22, 0xef, 0x02, 0x0a, 0x0c, 0x43, 0x68, 0x61, 0x74, 0x43, 0x61, 0x72, 0x64, 0x49, 0x6e,
  3077. 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02,
  3078. 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02,
  3079. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c,
  3080. 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28,
  3081. 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03,
  3082. 0x73, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x10,
  3083. 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65,
  3084. 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f,
  3085. 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c,
  3086. 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2d, 0x0a, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73,
  3087. 0x74, 0x18, 0x09, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3088. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x07, 0x74, 0x61,
  3089. 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75,
  3090. 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69,
  3091. 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1a, 0x0a,
  3092. 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52,
  3093. 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74,
  3094. 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x12, 0x0a,
  3095. 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65,
  3096. 0x61, 0x12, 0x30, 0x0a, 0x13, 0x69, 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66,
  3097. 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x08, 0x52, 0x13,
  3098. 0x69, 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74,
  3099. 0x69, 0x6f, 0x6e, 0x22, 0x25, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x50, 0x61, 0x72,
  3100. 0x61, 0x6d, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01,
  3101. 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x1d, 0x0a, 0x09, 0x57, 0x78,
  3102. 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x01,
  3103. 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x22, 0x90, 0x01, 0x0a, 0x0e, 0x57, 0x78,
  3104. 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05,
  3105. 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70,
  3106. 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18,
  3107. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70,
  3108. 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x6f, 0x6e, 0x63, 0x65, 0x53, 0x74, 0x72, 0x18, 0x03, 0x20, 0x01,
  3109. 0x28, 0x09, 0x52, 0x08, 0x6e, 0x6f, 0x6e, 0x63, 0x65, 0x53, 0x74, 0x72, 0x12, 0x1c, 0x0a, 0x09,
  3110. 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
  3111. 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72,
  3112. 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x22, 0xf3, 0x02, 0x0a,
  3113. 0x08, 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
  3114. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63,
  3115. 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63,
  3116. 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55,
  3117. 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72,
  3118. 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03,
  3119. 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65,
  3120. 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65,
  3121. 0x73, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03,
  3122. 0x61, 0x67, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61,
  3123. 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73,
  3124. 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2d, 0x0a, 0x07, 0x74, 0x61, 0x67,
  3125. 0x4c, 0x69, 0x73, 0x74, 0x18, 0x08, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x61, 0x70, 0x69,
  3126. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52,
  3127. 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e,
  3128. 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67,
  3129. 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64,
  3130. 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e,
  3131. 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1a,
  3132. 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09,
  3133. 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69,
  3134. 0x74, 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x12,
  3135. 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72,
  3136. 0x65, 0x61, 0x22, 0x91, 0x03, 0x0a, 0x09, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x73, 0x67,
  3137. 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64,
  3138. 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01,
  3139. 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09,
  3140. 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  3141. 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65,
  3142. 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1a, 0x0a, 0x08,
  3143. 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08,
  3144. 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18,
  3145. 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f,
  3146. 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28,
  3147. 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  3148. 0x12, 0x18, 0x0a, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x08, 0x20, 0x03, 0x28,
  3149. 0x03, 0x52, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69,
  3150. 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73,
  3151. 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72,
  3152. 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09,
  3153. 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65,
  3154. 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x0b, 0x20, 0x01,
  3155. 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04,
  3156. 0x63, 0x69, 0x74, 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79,
  3157. 0x12, 0x12, 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
  3158. 0x61, 0x72, 0x65, 0x61, 0x12, 0x30, 0x0a, 0x13, 0x69, 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68,
  3159. 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0e, 0x20, 0x01, 0x28,
  3160. 0x08, 0x52, 0x13, 0x69, 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72,
  3161. 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x5d, 0x0a, 0x11, 0x4c, 0x6f, 0x6f, 0x6b, 0x65, 0x64,
  3162. 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x0e, 0x0a, 0x02, 0x69,
  3163. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x6c,
  3164. 0x6f, 0x6f, 0x6b, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
  3165. 0x6c, 0x6f, 0x6f, 0x6b, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x69, 0x6b,
  3166. 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6c, 0x69, 0x6b,
  3167. 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x22, 0xc4, 0x03, 0x0a, 0x14, 0x41, 0x64, 0x64, 0x46, 0x72, 0x69,
  3168. 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e,
  3169. 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a,
  3170. 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  3171. 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76,
  3172. 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61,
  3173. 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18,
  3174. 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x69,
  3175. 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x70, 0x69,
  3176. 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x66, 0x72, 0x6f, 0x6d, 0x4f, 0x70,
  3177. 0x65, 0x6e, 0x49, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x66, 0x72, 0x6f, 0x6d,
  3178. 0x4f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x67, 0x69,
  3179. 0x73, 0x74, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x52, 0x65,
  3180. 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x43, 0x68, 0x61, 0x74,
  3181. 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x43, 0x68, 0x61, 0x74, 0x12, 0x1a,
  3182. 0x0a, 0x08, 0x69, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x55, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x08,
  3183. 0x52, 0x08, 0x69, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x55, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x66, 0x72,
  3184. 0x6f, 0x6d, 0x41, 0x70, 0x70, 0x49, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x66,
  3185. 0x72, 0x6f, 0x6d, 0x41, 0x70, 0x70, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x72, 0x6f, 0x6d,
  3186. 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x72, 0x6f, 0x6d,
  3187. 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c,
  3188. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e,
  3189. 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69,
  3190. 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73,
  3191. 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76,
  3192. 0x69, 0x6e, 0x63, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76,
  3193. 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, 0x0f, 0x20, 0x01,
  3194. 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61,
  3195. 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61, 0x22, 0x2c, 0x0a, 0x0c,
  3196. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09,
  3197. 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52,
  3198. 0x09, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x73, 0x22, 0x39, 0x0a, 0x0d, 0x50, 0x65,
  3199. 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x28, 0x0a, 0x04, 0x6c,
  3200. 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3201. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x52,
  3202. 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x90, 0x03, 0x0a, 0x08, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  3203. 0x44, 0x42, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02,
  3204. 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02,
  3205. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c,
  3206. 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28,
  3207. 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03,
  3208. 0x73, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1a,
  3209. 0x0a, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09,
  3210. 0x52, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67,
  3211. 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x24, 0x0a, 0x0d,
  3212. 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20,
  3213. 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69,
  3214. 0x6f, 0x6e, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56,
  3215. 0x6f, 0x69, 0x63, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x72,
  3216. 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72,
  3217. 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72,
  3218. 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, 0x0a,
  3219. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x72,
  3220. 0x65, 0x61, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61, 0x12, 0x1c,
  3221. 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28,
  3222. 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x30, 0x0a, 0x13,
  3223. 0x69, 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74,
  3224. 0x69, 0x6f, 0x6e, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x08, 0x52, 0x13, 0x69, 0x73, 0x46, 0x69, 0x6e,
  3225. 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x18,
  3226. 0x0a, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x0e, 0x20, 0x03, 0x28, 0x03, 0x52,
  3227. 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x41, 0x0a, 0x0f, 0x4c, 0x69, 0x73, 0x74,
  3228. 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e,
  3229. 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78,
  3230. 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20,
  3231. 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x22, 0x59, 0x0a, 0x15, 0x4c,
  3232. 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x41, 0x6e, 0x64, 0x53, 0x65, 0x78, 0x52, 0x65, 0x71,
  3233. 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01,
  3234. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06,
  3235. 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66,
  3236. 0x66, 0x73, 0x65, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x03, 0x20, 0x01, 0x28,
  3237. 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x22, 0x3c, 0x0a, 0x14, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68,
  3238. 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12,
  3239. 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79,
  3240. 0x70, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  3241. 0x03, 0x73, 0x65, 0x78, 0x22, 0x42, 0x0a, 0x10, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65,
  3242. 0x32, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74,
  3243. 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64,
  3244. 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  3245. 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x22, 0x86, 0x01, 0x0a, 0x18, 0x4c, 0x69, 0x73,
  3246. 0x74, 0x50, 0x61, 0x67, 0x65, 0x41, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65,
  3247. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18,
  3248. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a,
  3249. 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f,
  3250. 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  3251. 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  3252. 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18,
  3253. 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70,
  3254. 0x65, 0x22, 0x2c, 0x0a, 0x14, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f,
  3255. 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f,
  3256. 0x6e, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x22,
  3257. 0x41, 0x0a, 0x15, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64,
  3258. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e,
  3259. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x12,
  3260. 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x6f,
  3261. 0x64, 0x65, 0x22, 0x2c, 0x0a, 0x16, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x4d, 0x61, 0x74, 0x65,
  3262. 0x72, 0x69, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04,
  3263. 0x6c, 0x69, 0x6e, 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6c, 0x69, 0x6e, 0x6b,
  3264. 0x22, 0x17, 0x0a, 0x03, 0x49, 0x64, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x69, 0x64, 0x73, 0x18, 0x01,
  3265. 0x20, 0x03, 0x28, 0x03, 0x52, 0x03, 0x69, 0x64, 0x73, 0x22, 0x37, 0x0a, 0x0c, 0x54, 0x61, 0x67,
  3266. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x27, 0x0a, 0x04, 0x6c, 0x69, 0x73,
  3267. 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3268. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x04, 0x6c, 0x69,
  3269. 0x73, 0x74, 0x22, 0x2d, 0x0a, 0x07, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x0e, 0x0a,
  3270. 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a,
  3271. 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d,
  3272. 0x65, 0x22, 0x1a, 0x0a, 0x06, 0x53, 0x65, 0x78, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x73,
  3273. 0x65, 0x78, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x22, 0x34, 0x0a,
  3274. 0x14, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65,
  3275. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75,
  3276. 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64,
  3277. 0x75, 0x63, 0x65, 0x22, 0xc2, 0x02, 0x0a, 0x18, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e,
  3278. 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  3279. 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01,
  3280. 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09,
  3281. 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  3282. 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65,
  3283. 0x78, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1a, 0x0a, 0x08,
  3284. 0x62, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08,
  3285. 0x62, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x74, 0x61, 0x67, 0x4c,
  3286. 0x69, 0x73, 0x74, 0x18, 0x05, 0x20, 0x03, 0x28, 0x03, 0x52, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69,
  3287. 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56,
  3288. 0x6f, 0x69, 0x63, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x72,
  3289. 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69,
  3290. 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73,
  3291. 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x69, 0x63, 0x74,
  3292. 0x75, 0x72, 0x65, 0x73, 0x18, 0x08, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x70, 0x69, 0x63, 0x74,
  3293. 0x75, 0x72, 0x65, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65,
  3294. 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65,
  3295. 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
  3296. 0x63, 0x69, 0x74, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x0b, 0x20, 0x01,
  3297. 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61, 0x22, 0x61, 0x0a, 0x15, 0x4f, 0x6e, 0x6c, 0x69,
  3298. 0x6e, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c,
  3299. 0x79, 0x12, 0x30, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32,
  3300. 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4f, 0x6e, 0x6c,
  3301. 0x69, 0x6e, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c,
  3302. 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20,
  3303. 0x01, 0x28, 0x09, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x22, 0xf6, 0x02, 0x0a, 0x10,
  3304. 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f,
  3305. 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01,
  3306. 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a,
  3307. 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  3308. 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08,
  3309. 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  3310. 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74,
  3311. 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61,
  3312. 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20,
  3313. 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18,
  3314. 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f,
  3315. 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28,
  3316. 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  3317. 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x08, 0x20,
  3318. 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x1a,
  3319. 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09,
  3320. 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69,
  3321. 0x74, 0x79, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x12,
  3322. 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72,
  3323. 0x65, 0x61, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56,
  3324. 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x72,
  3325. 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x74, 0x61,
  3326. 0x67, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x0d, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x74, 0x61, 0x67,
  3327. 0x4c, 0x69, 0x73, 0x74, 0x22, 0x5d, 0x0a, 0x13, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f,
  3328. 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x2e, 0x0a, 0x04, 0x6c,
  3329. 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3330. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72,
  3331. 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e,
  3332. 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78,
  3333. 0x74, 0x49, 0x64, 0x22, 0xa7, 0x01, 0x0a, 0x0b, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d,
  3334. 0x4d, 0x73, 0x67, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x01, 0x20,
  3335. 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x12, 0x2d, 0x0a, 0x04, 0x73,
  3336. 0x65, 0x6c, 0x66, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3337. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x50, 0x65, 0x72, 0x73, 0x6f,
  3338. 0x6e, 0x4d, 0x73, 0x67, 0x52, 0x04, 0x73, 0x65, 0x6c, 0x66, 0x12, 0x2f, 0x0a, 0x05, 0x6f, 0x74,
  3339. 0x68, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3340. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x50, 0x65, 0x72, 0x73, 0x6f,
  3341. 0x6e, 0x4d, 0x73, 0x67, 0x52, 0x05, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x12, 0x20, 0x0a, 0x0b, 0x6c,
  3342. 0x69, 0x6b, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03,
  3343. 0x52, 0x0b, 0x6c, 0x69, 0x6b, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x22, 0x79, 0x0a,
  3344. 0x0d, 0x43, 0x68, 0x61, 0x74, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x73, 0x67, 0x12, 0x0e,
  3345. 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12,
  3346. 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79,
  3347. 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03,
  3348. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16,
  3349. 0x0a, 0x06, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
  3350. 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20,
  3351. 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x22, 0x91, 0x02, 0x0a, 0x0e, 0x43, 0x68, 0x61,
  3352. 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1c, 0x0a, 0x09, 0x6d,
  3353. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
  3354. 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67,
  3355. 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54,
  3356. 0x79, 0x70, 0x65, 0x12, 0x2d, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x03,
  3357. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  3358. 0x6e, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61,
  3359. 0x67, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01,
  3360. 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73,
  3361. 0x53, 0x65, 0x6c, 0x66, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x53, 0x65,
  3362. 0x6c, 0x66, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06,
  3363. 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x73, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x16,
  3364. 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
  3365. 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
  3366. 0x4d, 0x73, 0x67, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x74, 0x75,
  3367. 0x73, 0x4d, 0x73, 0x67, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x52, 0x65, 0x61, 0x64, 0x18, 0x09,
  3368. 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x52, 0x65, 0x61, 0x64, 0x22, 0x46, 0x0a, 0x0e,
  3369. 0x43, 0x68, 0x61, 0x74, 0x49, 0x73, 0x52, 0x65, 0x61, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1c,
  3370. 0x0a, 0x09, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  3371. 0x03, 0x52, 0x09, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06,
  3372. 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f,
  3373. 0x6f, 0x6d, 0x49, 0x64, 0x22, 0x22, 0x0a, 0x08, 0x47, 0x6f, 0x54, 0x6f, 0x52, 0x6f, 0x6f, 0x6d,
  3374. 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  3375. 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22, 0x45, 0x0a, 0x07, 0x4d, 0x65, 0x73, 0x73,
  3376. 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x01,
  3377. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x20, 0x0a,
  3378. 0x0b, 0x6d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01,
  3379. 0x28, 0x09, 0x52, 0x0b, 0x6d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x55, 0x72, 0x6c, 0x22,
  3380. 0x30, 0x0a, 0x16, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d,
  3381. 0x73, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f,
  3382. 0x6d, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49,
  3383. 0x64, 0x22, 0x27, 0x0a, 0x0d, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65,
  3384. 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01,
  3385. 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22, 0x63, 0x0a, 0x19, 0x46, 0x69,
  3386. 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74,
  3387. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49,
  3388. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12,
  3389. 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  3390. 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49,
  3391. 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22,
  3392. 0x20, 0x0a, 0x06, 0x49, 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x4c,
  3393. 0x69, 0x6b, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x4c, 0x69, 0x6b,
  3394. 0x65, 0x22, 0x66, 0x0a, 0x0e, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75,
  3395. 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18,
  3396. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x12,
  3397. 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20,
  3398. 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12,
  3399. 0x18, 0x0a, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,
  3400. 0x52, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x22, 0x1d, 0x0a, 0x09, 0x52, 0x61, 0x6e,
  3401. 0x64, 0x6f, 0x6d, 0x4e, 0x75, 0x6d, 0x12, 0x10, 0x0a, 0x03, 0x6e, 0x75, 0x6d, 0x18, 0x01, 0x20,
  3402. 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e, 0x75, 0x6d, 0x22, 0x35, 0x0a, 0x0f, 0x52, 0x61, 0x6e, 0x64,
  3403. 0x6f, 0x6d, 0x4e, 0x75, 0x6d, 0x41, 0x6e, 0x64, 0x53, 0x65, 0x78, 0x12, 0x10, 0x0a, 0x03, 0x6e,
  3404. 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e, 0x75, 0x6d, 0x12, 0x10, 0x0a,
  3405. 0x03, 0x73, 0x65, 0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x22,
  3406. 0x51, 0x0a, 0x0b, 0x4d, 0x65, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16,
  3407. 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  3408. 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74,
  3409. 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x12,
  3410. 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79,
  3411. 0x70, 0x65, 0x22, 0x24, 0x0a, 0x0e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74,
  3412. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03,
  3413. 0x28, 0x09, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x3a, 0x0a, 0x0d, 0x4d, 0x65, 0x6d, 0x65,
  3414. 0x54, 0x69, 0x74, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x29, 0x0a, 0x04, 0x6c, 0x69, 0x73,
  3415. 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3416. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x52, 0x04,
  3417. 0x6c, 0x69, 0x73, 0x74, 0x22, 0x33, 0x0a, 0x09, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c,
  3418. 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  3419. 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20,
  3420. 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22, 0x36, 0x0a, 0x08, 0x4d, 0x65, 0x6d,
  3421. 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20,
  3422. 0x03, 0x28, 0x09, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78,
  3423. 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49,
  3424. 0x64, 0x22, 0x23, 0x0a, 0x0d, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x4c, 0x69,
  3425. 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09,
  3426. 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x42, 0x43, 0x0a, 0x0a, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3427. 0x6d, 0x6d, 0x6f, 0x6e, 0x50, 0x01, 0x5a, 0x33, 0x67, 0x69, 0x74, 0x2e, 0x69, 0x6b, 0x75, 0x62,
  3428. 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2f, 0x70, 0x77,
  3429. 0x2d, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f,
  3430. 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f,
  3431. 0x74, 0x6f, 0x33,
  3432. }
  3433. var (
  3434. file_common_proto_rawDescOnce sync.Once
  3435. file_common_proto_rawDescData = file_common_proto_rawDesc
  3436. )
  3437. func file_common_proto_rawDescGZIP() []byte {
  3438. file_common_proto_rawDescOnce.Do(func() {
  3439. file_common_proto_rawDescData = protoimpl.X.CompressGZIP(file_common_proto_rawDescData)
  3440. })
  3441. return file_common_proto_rawDescData
  3442. }
  3443. var file_common_proto_msgTypes = make([]protoimpl.MessageInfo, 53)
  3444. var file_common_proto_goTypes = []interface{}{
  3445. (*UserAndPartnerIdentifyIdParam)(nil), // 0: api.common.UserAndPartnerIdentifyIdParam
  3446. (*UserAndPartnerParam)(nil), // 1: api.common.UserAndPartnerParam
  3447. (*User1AndUser2IdParam)(nil), // 2: api.common.User1AndUser2IdParam
  3448. (*PartnerIDParam)(nil), // 3: api.common.PartnerIDParam
  3449. (*PersonIDParam)(nil), // 4: api.common.PersonIDParam
  3450. (*PersonParam)(nil), // 5: api.common.PersonParam
  3451. (*ChatCardInfo)(nil), // 6: api.common.ChatCardInfo
  3452. (*UserIDParam)(nil), // 7: api.common.UserIDParam
  3453. (*WxConfReq)(nil), // 8: api.common.WxConfReq
  3454. (*WxConfResponse)(nil), // 9: api.common.WxConfResponse
  3455. (*HomeInfo)(nil), // 10: api.common.HomeInfo
  3456. (*PersonMsg)(nil), // 11: api.common.PersonMsg
  3457. (*LookedAndLikedNum)(nil), // 12: api.common.LookedAndLikedNum
  3458. (*AddFriendMessageInfo)(nil), // 13: api.common.AddFriendMessageInfo
  3459. (*PersonIDList)(nil), // 14: api.common.PersonIDList
  3460. (*PersonDBReply)(nil), // 15: api.common.PersonDBReply
  3461. (*PersonDB)(nil), // 16: api.common.PersonDB
  3462. (*ListPageRequest)(nil), // 17: api.common.ListPageRequest
  3463. (*ListPageAndSexRequest)(nil), // 18: api.common.ListPageAndSexRequest
  3464. (*FindChatTopicRequest)(nil), // 19: api.common.FindChatTopicRequest
  3465. (*ListPage2Request)(nil), // 20: api.common.ListPage2Request
  3466. (*ListPageAndPersonRequest)(nil), // 21: api.common.ListPageAndPersonRequest
  3467. (*SendPhoneCodeRequest)(nil), // 22: api.common.SendPhoneCodeRequest
  3468. (*CheckPhoneCodeRequest)(nil), // 23: api.common.CheckPhoneCodeRequest
  3469. (*UploadMaterialResponse)(nil), // 24: api.common.UploadMaterialResponse
  3470. (*Ids)(nil), // 25: api.common.Ids
  3471. (*TagListReply)(nil), // 26: api.common.TagListReply
  3472. (*TagList)(nil), // 27: api.common.TagList
  3473. (*SexReq)(nil), // 28: api.common.SexReq
  3474. (*RandomIntroduceReply)(nil), // 29: api.common.RandomIntroduceReply
  3475. (*UpdateInformationRequest)(nil), // 30: api.common.UpdateInformationRequest
  3476. (*OnlinePersonListReply)(nil), // 31: api.common.OnlinePersonListReply
  3477. (*OnlinePersonInfo)(nil), // 32: api.common.OnlinePersonInfo
  3478. (*ChatRecordListReply)(nil), // 33: api.common.ChatRecordListReply
  3479. (*ChatRoomMsg)(nil), // 34: api.common.ChatRoomMsg
  3480. (*ChatPersonMsg)(nil), // 35: api.common.ChatPersonMsg
  3481. (*ChatRecordInfo)(nil), // 36: api.common.ChatRecordInfo
  3482. (*ChatIsReadInfo)(nil), // 37: api.common.ChatIsReadInfo
  3483. (*GoToRoom)(nil), // 38: api.common.GoToRoom
  3484. (*Message)(nil), // 39: api.common.Message
  3485. (*FindChatRoomMsgRequest)(nil), // 40: api.common.FindChatRoomMsgRequest
  3486. (*RoomIDRequest)(nil), // 41: api.common.RoomIDRequest
  3487. (*FindChatRecordListRequest)(nil), // 42: api.common.FindChatRecordListRequest
  3488. (*IsLike)(nil), // 43: api.common.IsLike
  3489. (*BalanceRequest)(nil), // 44: api.common.BalanceRequest
  3490. (*RandomNum)(nil), // 45: api.common.RandomNum
  3491. (*RandomNumAndSex)(nil), // 46: api.common.RandomNumAndSex
  3492. (*MemeRequest)(nil), // 47: api.common.MemeRequest
  3493. (*CommonTextList)(nil), // 48: api.common.CommonTextList
  3494. (*MemeTitleList)(nil), // 49: api.common.MemeTitleList
  3495. (*MemeTitle)(nil), // 50: api.common.MemeTitle
  3496. (*MemeList)(nil), // 51: api.common.MemeList
  3497. (*ChatTopicList)(nil), // 52: api.common.ChatTopicList
  3498. }
  3499. var file_common_proto_depIdxs = []int32{
  3500. 27, // 0: api.common.ChatCardInfo.tagList:type_name -> api.common.TagList
  3501. 27, // 1: api.common.HomeInfo.tagList:type_name -> api.common.TagList
  3502. 16, // 2: api.common.PersonDBReply.list:type_name -> api.common.PersonDB
  3503. 27, // 3: api.common.TagListReply.list:type_name -> api.common.TagList
  3504. 32, // 4: api.common.OnlinePersonListReply.list:type_name -> api.common.OnlinePersonInfo
  3505. 36, // 5: api.common.ChatRecordListReply.list:type_name -> api.common.ChatRecordInfo
  3506. 35, // 6: api.common.ChatRoomMsg.self:type_name -> api.common.ChatPersonMsg
  3507. 35, // 7: api.common.ChatRoomMsg.other:type_name -> api.common.ChatPersonMsg
  3508. 39, // 8: api.common.ChatRecordInfo.message:type_name -> api.common.Message
  3509. 50, // 9: api.common.MemeTitleList.list:type_name -> api.common.MemeTitle
  3510. 10, // [10:10] is the sub-list for method output_type
  3511. 10, // [10:10] is the sub-list for method input_type
  3512. 10, // [10:10] is the sub-list for extension type_name
  3513. 10, // [10:10] is the sub-list for extension extendee
  3514. 0, // [0:10] is the sub-list for field type_name
  3515. }
  3516. func init() { file_common_proto_init() }
  3517. func file_common_proto_init() {
  3518. if File_common_proto != nil {
  3519. return
  3520. }
  3521. if !protoimpl.UnsafeEnabled {
  3522. file_common_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  3523. switch v := v.(*UserAndPartnerIdentifyIdParam); i {
  3524. case 0:
  3525. return &v.state
  3526. case 1:
  3527. return &v.sizeCache
  3528. case 2:
  3529. return &v.unknownFields
  3530. default:
  3531. return nil
  3532. }
  3533. }
  3534. file_common_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  3535. switch v := v.(*UserAndPartnerParam); i {
  3536. case 0:
  3537. return &v.state
  3538. case 1:
  3539. return &v.sizeCache
  3540. case 2:
  3541. return &v.unknownFields
  3542. default:
  3543. return nil
  3544. }
  3545. }
  3546. file_common_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  3547. switch v := v.(*User1AndUser2IdParam); i {
  3548. case 0:
  3549. return &v.state
  3550. case 1:
  3551. return &v.sizeCache
  3552. case 2:
  3553. return &v.unknownFields
  3554. default:
  3555. return nil
  3556. }
  3557. }
  3558. file_common_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  3559. switch v := v.(*PartnerIDParam); i {
  3560. case 0:
  3561. return &v.state
  3562. case 1:
  3563. return &v.sizeCache
  3564. case 2:
  3565. return &v.unknownFields
  3566. default:
  3567. return nil
  3568. }
  3569. }
  3570. file_common_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  3571. switch v := v.(*PersonIDParam); i {
  3572. case 0:
  3573. return &v.state
  3574. case 1:
  3575. return &v.sizeCache
  3576. case 2:
  3577. return &v.unknownFields
  3578. default:
  3579. return nil
  3580. }
  3581. }
  3582. file_common_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  3583. switch v := v.(*PersonParam); i {
  3584. case 0:
  3585. return &v.state
  3586. case 1:
  3587. return &v.sizeCache
  3588. case 2:
  3589. return &v.unknownFields
  3590. default:
  3591. return nil
  3592. }
  3593. }
  3594. file_common_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  3595. switch v := v.(*ChatCardInfo); i {
  3596. case 0:
  3597. return &v.state
  3598. case 1:
  3599. return &v.sizeCache
  3600. case 2:
  3601. return &v.unknownFields
  3602. default:
  3603. return nil
  3604. }
  3605. }
  3606. file_common_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  3607. switch v := v.(*UserIDParam); i {
  3608. case 0:
  3609. return &v.state
  3610. case 1:
  3611. return &v.sizeCache
  3612. case 2:
  3613. return &v.unknownFields
  3614. default:
  3615. return nil
  3616. }
  3617. }
  3618. file_common_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  3619. switch v := v.(*WxConfReq); i {
  3620. case 0:
  3621. return &v.state
  3622. case 1:
  3623. return &v.sizeCache
  3624. case 2:
  3625. return &v.unknownFields
  3626. default:
  3627. return nil
  3628. }
  3629. }
  3630. file_common_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  3631. switch v := v.(*WxConfResponse); i {
  3632. case 0:
  3633. return &v.state
  3634. case 1:
  3635. return &v.sizeCache
  3636. case 2:
  3637. return &v.unknownFields
  3638. default:
  3639. return nil
  3640. }
  3641. }
  3642. file_common_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  3643. switch v := v.(*HomeInfo); i {
  3644. case 0:
  3645. return &v.state
  3646. case 1:
  3647. return &v.sizeCache
  3648. case 2:
  3649. return &v.unknownFields
  3650. default:
  3651. return nil
  3652. }
  3653. }
  3654. file_common_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  3655. switch v := v.(*PersonMsg); i {
  3656. case 0:
  3657. return &v.state
  3658. case 1:
  3659. return &v.sizeCache
  3660. case 2:
  3661. return &v.unknownFields
  3662. default:
  3663. return nil
  3664. }
  3665. }
  3666. file_common_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  3667. switch v := v.(*LookedAndLikedNum); i {
  3668. case 0:
  3669. return &v.state
  3670. case 1:
  3671. return &v.sizeCache
  3672. case 2:
  3673. return &v.unknownFields
  3674. default:
  3675. return nil
  3676. }
  3677. }
  3678. file_common_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  3679. switch v := v.(*AddFriendMessageInfo); i {
  3680. case 0:
  3681. return &v.state
  3682. case 1:
  3683. return &v.sizeCache
  3684. case 2:
  3685. return &v.unknownFields
  3686. default:
  3687. return nil
  3688. }
  3689. }
  3690. file_common_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  3691. switch v := v.(*PersonIDList); i {
  3692. case 0:
  3693. return &v.state
  3694. case 1:
  3695. return &v.sizeCache
  3696. case 2:
  3697. return &v.unknownFields
  3698. default:
  3699. return nil
  3700. }
  3701. }
  3702. file_common_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  3703. switch v := v.(*PersonDBReply); i {
  3704. case 0:
  3705. return &v.state
  3706. case 1:
  3707. return &v.sizeCache
  3708. case 2:
  3709. return &v.unknownFields
  3710. default:
  3711. return nil
  3712. }
  3713. }
  3714. file_common_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  3715. switch v := v.(*PersonDB); i {
  3716. case 0:
  3717. return &v.state
  3718. case 1:
  3719. return &v.sizeCache
  3720. case 2:
  3721. return &v.unknownFields
  3722. default:
  3723. return nil
  3724. }
  3725. }
  3726. file_common_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  3727. switch v := v.(*ListPageRequest); i {
  3728. case 0:
  3729. return &v.state
  3730. case 1:
  3731. return &v.sizeCache
  3732. case 2:
  3733. return &v.unknownFields
  3734. default:
  3735. return nil
  3736. }
  3737. }
  3738. file_common_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  3739. switch v := v.(*ListPageAndSexRequest); i {
  3740. case 0:
  3741. return &v.state
  3742. case 1:
  3743. return &v.sizeCache
  3744. case 2:
  3745. return &v.unknownFields
  3746. default:
  3747. return nil
  3748. }
  3749. }
  3750. file_common_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  3751. switch v := v.(*FindChatTopicRequest); i {
  3752. case 0:
  3753. return &v.state
  3754. case 1:
  3755. return &v.sizeCache
  3756. case 2:
  3757. return &v.unknownFields
  3758. default:
  3759. return nil
  3760. }
  3761. }
  3762. file_common_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  3763. switch v := v.(*ListPage2Request); i {
  3764. case 0:
  3765. return &v.state
  3766. case 1:
  3767. return &v.sizeCache
  3768. case 2:
  3769. return &v.unknownFields
  3770. default:
  3771. return nil
  3772. }
  3773. }
  3774. file_common_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  3775. switch v := v.(*ListPageAndPersonRequest); i {
  3776. case 0:
  3777. return &v.state
  3778. case 1:
  3779. return &v.sizeCache
  3780. case 2:
  3781. return &v.unknownFields
  3782. default:
  3783. return nil
  3784. }
  3785. }
  3786. file_common_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  3787. switch v := v.(*SendPhoneCodeRequest); i {
  3788. case 0:
  3789. return &v.state
  3790. case 1:
  3791. return &v.sizeCache
  3792. case 2:
  3793. return &v.unknownFields
  3794. default:
  3795. return nil
  3796. }
  3797. }
  3798. file_common_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  3799. switch v := v.(*CheckPhoneCodeRequest); i {
  3800. case 0:
  3801. return &v.state
  3802. case 1:
  3803. return &v.sizeCache
  3804. case 2:
  3805. return &v.unknownFields
  3806. default:
  3807. return nil
  3808. }
  3809. }
  3810. file_common_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  3811. switch v := v.(*UploadMaterialResponse); i {
  3812. case 0:
  3813. return &v.state
  3814. case 1:
  3815. return &v.sizeCache
  3816. case 2:
  3817. return &v.unknownFields
  3818. default:
  3819. return nil
  3820. }
  3821. }
  3822. file_common_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  3823. switch v := v.(*Ids); i {
  3824. case 0:
  3825. return &v.state
  3826. case 1:
  3827. return &v.sizeCache
  3828. case 2:
  3829. return &v.unknownFields
  3830. default:
  3831. return nil
  3832. }
  3833. }
  3834. file_common_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  3835. switch v := v.(*TagListReply); i {
  3836. case 0:
  3837. return &v.state
  3838. case 1:
  3839. return &v.sizeCache
  3840. case 2:
  3841. return &v.unknownFields
  3842. default:
  3843. return nil
  3844. }
  3845. }
  3846. file_common_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  3847. switch v := v.(*TagList); i {
  3848. case 0:
  3849. return &v.state
  3850. case 1:
  3851. return &v.sizeCache
  3852. case 2:
  3853. return &v.unknownFields
  3854. default:
  3855. return nil
  3856. }
  3857. }
  3858. file_common_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  3859. switch v := v.(*SexReq); i {
  3860. case 0:
  3861. return &v.state
  3862. case 1:
  3863. return &v.sizeCache
  3864. case 2:
  3865. return &v.unknownFields
  3866. default:
  3867. return nil
  3868. }
  3869. }
  3870. file_common_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  3871. switch v := v.(*RandomIntroduceReply); i {
  3872. case 0:
  3873. return &v.state
  3874. case 1:
  3875. return &v.sizeCache
  3876. case 2:
  3877. return &v.unknownFields
  3878. default:
  3879. return nil
  3880. }
  3881. }
  3882. file_common_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  3883. switch v := v.(*UpdateInformationRequest); i {
  3884. case 0:
  3885. return &v.state
  3886. case 1:
  3887. return &v.sizeCache
  3888. case 2:
  3889. return &v.unknownFields
  3890. default:
  3891. return nil
  3892. }
  3893. }
  3894. file_common_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  3895. switch v := v.(*OnlinePersonListReply); i {
  3896. case 0:
  3897. return &v.state
  3898. case 1:
  3899. return &v.sizeCache
  3900. case 2:
  3901. return &v.unknownFields
  3902. default:
  3903. return nil
  3904. }
  3905. }
  3906. file_common_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  3907. switch v := v.(*OnlinePersonInfo); i {
  3908. case 0:
  3909. return &v.state
  3910. case 1:
  3911. return &v.sizeCache
  3912. case 2:
  3913. return &v.unknownFields
  3914. default:
  3915. return nil
  3916. }
  3917. }
  3918. file_common_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  3919. switch v := v.(*ChatRecordListReply); i {
  3920. case 0:
  3921. return &v.state
  3922. case 1:
  3923. return &v.sizeCache
  3924. case 2:
  3925. return &v.unknownFields
  3926. default:
  3927. return nil
  3928. }
  3929. }
  3930. file_common_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  3931. switch v := v.(*ChatRoomMsg); i {
  3932. case 0:
  3933. return &v.state
  3934. case 1:
  3935. return &v.sizeCache
  3936. case 2:
  3937. return &v.unknownFields
  3938. default:
  3939. return nil
  3940. }
  3941. }
  3942. file_common_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
  3943. switch v := v.(*ChatPersonMsg); i {
  3944. case 0:
  3945. return &v.state
  3946. case 1:
  3947. return &v.sizeCache
  3948. case 2:
  3949. return &v.unknownFields
  3950. default:
  3951. return nil
  3952. }
  3953. }
  3954. file_common_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
  3955. switch v := v.(*ChatRecordInfo); i {
  3956. case 0:
  3957. return &v.state
  3958. case 1:
  3959. return &v.sizeCache
  3960. case 2:
  3961. return &v.unknownFields
  3962. default:
  3963. return nil
  3964. }
  3965. }
  3966. file_common_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
  3967. switch v := v.(*ChatIsReadInfo); i {
  3968. case 0:
  3969. return &v.state
  3970. case 1:
  3971. return &v.sizeCache
  3972. case 2:
  3973. return &v.unknownFields
  3974. default:
  3975. return nil
  3976. }
  3977. }
  3978. file_common_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
  3979. switch v := v.(*GoToRoom); i {
  3980. case 0:
  3981. return &v.state
  3982. case 1:
  3983. return &v.sizeCache
  3984. case 2:
  3985. return &v.unknownFields
  3986. default:
  3987. return nil
  3988. }
  3989. }
  3990. file_common_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
  3991. switch v := v.(*Message); i {
  3992. case 0:
  3993. return &v.state
  3994. case 1:
  3995. return &v.sizeCache
  3996. case 2:
  3997. return &v.unknownFields
  3998. default:
  3999. return nil
  4000. }
  4001. }
  4002. file_common_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
  4003. switch v := v.(*FindChatRoomMsgRequest); i {
  4004. case 0:
  4005. return &v.state
  4006. case 1:
  4007. return &v.sizeCache
  4008. case 2:
  4009. return &v.unknownFields
  4010. default:
  4011. return nil
  4012. }
  4013. }
  4014. file_common_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
  4015. switch v := v.(*RoomIDRequest); i {
  4016. case 0:
  4017. return &v.state
  4018. case 1:
  4019. return &v.sizeCache
  4020. case 2:
  4021. return &v.unknownFields
  4022. default:
  4023. return nil
  4024. }
  4025. }
  4026. file_common_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
  4027. switch v := v.(*FindChatRecordListRequest); i {
  4028. case 0:
  4029. return &v.state
  4030. case 1:
  4031. return &v.sizeCache
  4032. case 2:
  4033. return &v.unknownFields
  4034. default:
  4035. return nil
  4036. }
  4037. }
  4038. file_common_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
  4039. switch v := v.(*IsLike); i {
  4040. case 0:
  4041. return &v.state
  4042. case 1:
  4043. return &v.sizeCache
  4044. case 2:
  4045. return &v.unknownFields
  4046. default:
  4047. return nil
  4048. }
  4049. }
  4050. file_common_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
  4051. switch v := v.(*BalanceRequest); i {
  4052. case 0:
  4053. return &v.state
  4054. case 1:
  4055. return &v.sizeCache
  4056. case 2:
  4057. return &v.unknownFields
  4058. default:
  4059. return nil
  4060. }
  4061. }
  4062. file_common_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {
  4063. switch v := v.(*RandomNum); i {
  4064. case 0:
  4065. return &v.state
  4066. case 1:
  4067. return &v.sizeCache
  4068. case 2:
  4069. return &v.unknownFields
  4070. default:
  4071. return nil
  4072. }
  4073. }
  4074. file_common_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {
  4075. switch v := v.(*RandomNumAndSex); i {
  4076. case 0:
  4077. return &v.state
  4078. case 1:
  4079. return &v.sizeCache
  4080. case 2:
  4081. return &v.unknownFields
  4082. default:
  4083. return nil
  4084. }
  4085. }
  4086. file_common_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} {
  4087. switch v := v.(*MemeRequest); i {
  4088. case 0:
  4089. return &v.state
  4090. case 1:
  4091. return &v.sizeCache
  4092. case 2:
  4093. return &v.unknownFields
  4094. default:
  4095. return nil
  4096. }
  4097. }
  4098. file_common_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} {
  4099. switch v := v.(*CommonTextList); i {
  4100. case 0:
  4101. return &v.state
  4102. case 1:
  4103. return &v.sizeCache
  4104. case 2:
  4105. return &v.unknownFields
  4106. default:
  4107. return nil
  4108. }
  4109. }
  4110. file_common_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} {
  4111. switch v := v.(*MemeTitleList); i {
  4112. case 0:
  4113. return &v.state
  4114. case 1:
  4115. return &v.sizeCache
  4116. case 2:
  4117. return &v.unknownFields
  4118. default:
  4119. return nil
  4120. }
  4121. }
  4122. file_common_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} {
  4123. switch v := v.(*MemeTitle); i {
  4124. case 0:
  4125. return &v.state
  4126. case 1:
  4127. return &v.sizeCache
  4128. case 2:
  4129. return &v.unknownFields
  4130. default:
  4131. return nil
  4132. }
  4133. }
  4134. file_common_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} {
  4135. switch v := v.(*MemeList); i {
  4136. case 0:
  4137. return &v.state
  4138. case 1:
  4139. return &v.sizeCache
  4140. case 2:
  4141. return &v.unknownFields
  4142. default:
  4143. return nil
  4144. }
  4145. }
  4146. file_common_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} {
  4147. switch v := v.(*ChatTopicList); i {
  4148. case 0:
  4149. return &v.state
  4150. case 1:
  4151. return &v.sizeCache
  4152. case 2:
  4153. return &v.unknownFields
  4154. default:
  4155. return nil
  4156. }
  4157. }
  4158. }
  4159. type x struct{}
  4160. out := protoimpl.TypeBuilder{
  4161. File: protoimpl.DescBuilder{
  4162. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  4163. RawDescriptor: file_common_proto_rawDesc,
  4164. NumEnums: 0,
  4165. NumMessages: 53,
  4166. NumExtensions: 0,
  4167. NumServices: 0,
  4168. },
  4169. GoTypes: file_common_proto_goTypes,
  4170. DependencyIndexes: file_common_proto_depIdxs,
  4171. MessageInfos: file_common_proto_msgTypes,
  4172. }.Build()
  4173. File_common_proto = out.File
  4174. file_common_proto_rawDesc = nil
  4175. file_common_proto_goTypes = nil
  4176. file_common_proto_depIdxs = nil
  4177. }