mtp2.pb.go 339 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.25.0
  4. // protoc v3.11.4
  5. // source: mtp2.proto
  6. package pb
  7. import (
  8. proto "github.com/golang/protobuf/proto"
  9. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  10. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  11. reflect "reflect"
  12. sync "sync"
  13. )
  14. const (
  15. // Verify that this generated code is sufficiently up-to-date.
  16. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  17. // Verify that runtime/protoimpl is sufficiently up-to-date.
  18. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  19. )
  20. // This is a compile-time assertion that a sufficiently up-to-date version
  21. // of the legacy proto package is being used.
  22. const _ = proto.ProtoPackageIsVersion4
  23. // 消息头
  24. type MessageHead struct {
  25. state protoimpl.MessageState
  26. sizeCache protoimpl.SizeCache
  27. unknownFields protoimpl.UnknownFields
  28. FunCode *uint32 `protobuf:"varint,1,opt,name=FunCode" json:"FunCode,omitempty"` // 功能号
  29. RequestID *uint32 `protobuf:"varint,2,opt,name=RequestID" json:"RequestID,omitempty"` // 客户端的流水ID
  30. AccountID *uint64 `protobuf:"varint,3,opt,name=AccountID" json:"AccountID,omitempty"` // 账号ID
  31. AccessID *uint32 `protobuf:"varint,4,opt,name=AccessID" json:"AccessID,omitempty"` //二级分配给客户端的接入ID
  32. ClientTime *int64 `protobuf:"varint,5,opt,name=ClientTime" json:"ClientTime,omitempty"` //消息发起时间
  33. GoodsID *uint32 `protobuf:"varint,6,opt,name=GoodsID" json:"GoodsID,omitempty"` //商品ID
  34. UUID *string `protobuf:"bytes,7,opt,name=UUID" json:"UUID,omitempty"` // 消息唯一ID
  35. MarketID *uint32 `protobuf:"varint,8,opt,name=MarketID" json:"MarketID,omitempty"` // 所属市场ID
  36. UserID *uint32 `protobuf:"varint,9,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  37. ResponseTopic *string `protobuf:"bytes,10,opt,name=ResponseTopic" json:"ResponseTopic,omitempty"` // 应答消息所属主题
  38. AccountID2 *uint64 `protobuf:"varint,11,opt,name=AccountID2" json:"AccountID2,omitempty"` // 账号ID-币币交易使用
  39. }
  40. func (x *MessageHead) Reset() {
  41. *x = MessageHead{}
  42. if protoimpl.UnsafeEnabled {
  43. mi := &file_mtp2_proto_msgTypes[0]
  44. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  45. ms.StoreMessageInfo(mi)
  46. }
  47. }
  48. func (x *MessageHead) String() string {
  49. return protoimpl.X.MessageStringOf(x)
  50. }
  51. func (*MessageHead) ProtoMessage() {}
  52. func (x *MessageHead) ProtoReflect() protoreflect.Message {
  53. mi := &file_mtp2_proto_msgTypes[0]
  54. if protoimpl.UnsafeEnabled && x != nil {
  55. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  56. if ms.LoadMessageInfo() == nil {
  57. ms.StoreMessageInfo(mi)
  58. }
  59. return ms
  60. }
  61. return mi.MessageOf(x)
  62. }
  63. // Deprecated: Use MessageHead.ProtoReflect.Descriptor instead.
  64. func (*MessageHead) Descriptor() ([]byte, []int) {
  65. return file_mtp2_proto_rawDescGZIP(), []int{0}
  66. }
  67. func (x *MessageHead) GetFunCode() uint32 {
  68. if x != nil && x.FunCode != nil {
  69. return *x.FunCode
  70. }
  71. return 0
  72. }
  73. func (x *MessageHead) GetRequestID() uint32 {
  74. if x != nil && x.RequestID != nil {
  75. return *x.RequestID
  76. }
  77. return 0
  78. }
  79. func (x *MessageHead) GetAccountID() uint64 {
  80. if x != nil && x.AccountID != nil {
  81. return *x.AccountID
  82. }
  83. return 0
  84. }
  85. func (x *MessageHead) GetAccessID() uint32 {
  86. if x != nil && x.AccessID != nil {
  87. return *x.AccessID
  88. }
  89. return 0
  90. }
  91. func (x *MessageHead) GetClientTime() int64 {
  92. if x != nil && x.ClientTime != nil {
  93. return *x.ClientTime
  94. }
  95. return 0
  96. }
  97. func (x *MessageHead) GetGoodsID() uint32 {
  98. if x != nil && x.GoodsID != nil {
  99. return *x.GoodsID
  100. }
  101. return 0
  102. }
  103. func (x *MessageHead) GetUUID() string {
  104. if x != nil && x.UUID != nil {
  105. return *x.UUID
  106. }
  107. return ""
  108. }
  109. func (x *MessageHead) GetMarketID() uint32 {
  110. if x != nil && x.MarketID != nil {
  111. return *x.MarketID
  112. }
  113. return 0
  114. }
  115. func (x *MessageHead) GetUserID() uint32 {
  116. if x != nil && x.UserID != nil {
  117. return *x.UserID
  118. }
  119. return 0
  120. }
  121. func (x *MessageHead) GetResponseTopic() string {
  122. if x != nil && x.ResponseTopic != nil {
  123. return *x.ResponseTopic
  124. }
  125. return ""
  126. }
  127. func (x *MessageHead) GetAccountID2() uint64 {
  128. if x != nil && x.AccountID2 != nil {
  129. return *x.AccountID2
  130. }
  131. return 0
  132. }
  133. // 修改账户密码请求
  134. type ModifyPwdReq struct {
  135. state protoimpl.MessageState
  136. sizeCache protoimpl.SizeCache
  137. unknownFields protoimpl.UnknownFields
  138. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  139. ModifyPwdType *uint32 `protobuf:"varint,2,opt,name=ModifyPwdType" json:"ModifyPwdType,omitempty"` // 修改密码类型1:登陆密码2:资金账户密码
  140. ModifyPwdID *uint64 `protobuf:"varint,3,opt,name=ModifyPwdID" json:"ModifyPwdID,omitempty"` // 被修改的ID(ModifyType=1:LoginIDModifyType=2:AccountID)
  141. OldPwd *string `protobuf:"bytes,4,opt,name=OldPwd" json:"OldPwd,omitempty"` // 旧资金密码
  142. NewPwd *string `protobuf:"bytes,5,opt,name=NewPwd" json:"NewPwd,omitempty"` // 新资金密码
  143. }
  144. func (x *ModifyPwdReq) Reset() {
  145. *x = ModifyPwdReq{}
  146. if protoimpl.UnsafeEnabled {
  147. mi := &file_mtp2_proto_msgTypes[1]
  148. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  149. ms.StoreMessageInfo(mi)
  150. }
  151. }
  152. func (x *ModifyPwdReq) String() string {
  153. return protoimpl.X.MessageStringOf(x)
  154. }
  155. func (*ModifyPwdReq) ProtoMessage() {}
  156. func (x *ModifyPwdReq) ProtoReflect() protoreflect.Message {
  157. mi := &file_mtp2_proto_msgTypes[1]
  158. if protoimpl.UnsafeEnabled && x != nil {
  159. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  160. if ms.LoadMessageInfo() == nil {
  161. ms.StoreMessageInfo(mi)
  162. }
  163. return ms
  164. }
  165. return mi.MessageOf(x)
  166. }
  167. // Deprecated: Use ModifyPwdReq.ProtoReflect.Descriptor instead.
  168. func (*ModifyPwdReq) Descriptor() ([]byte, []int) {
  169. return file_mtp2_proto_rawDescGZIP(), []int{1}
  170. }
  171. func (x *ModifyPwdReq) GetHeader() *MessageHead {
  172. if x != nil {
  173. return x.Header
  174. }
  175. return nil
  176. }
  177. func (x *ModifyPwdReq) GetModifyPwdType() uint32 {
  178. if x != nil && x.ModifyPwdType != nil {
  179. return *x.ModifyPwdType
  180. }
  181. return 0
  182. }
  183. func (x *ModifyPwdReq) GetModifyPwdID() uint64 {
  184. if x != nil && x.ModifyPwdID != nil {
  185. return *x.ModifyPwdID
  186. }
  187. return 0
  188. }
  189. func (x *ModifyPwdReq) GetOldPwd() string {
  190. if x != nil && x.OldPwd != nil {
  191. return *x.OldPwd
  192. }
  193. return ""
  194. }
  195. func (x *ModifyPwdReq) GetNewPwd() string {
  196. if x != nil && x.NewPwd != nil {
  197. return *x.NewPwd
  198. }
  199. return ""
  200. }
  201. // 修改账户密码应答
  202. type ModifyPwdRsp struct {
  203. state protoimpl.MessageState
  204. sizeCache protoimpl.SizeCache
  205. unknownFields protoimpl.UnknownFields
  206. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  207. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  208. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  209. }
  210. func (x *ModifyPwdRsp) Reset() {
  211. *x = ModifyPwdRsp{}
  212. if protoimpl.UnsafeEnabled {
  213. mi := &file_mtp2_proto_msgTypes[2]
  214. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  215. ms.StoreMessageInfo(mi)
  216. }
  217. }
  218. func (x *ModifyPwdRsp) String() string {
  219. return protoimpl.X.MessageStringOf(x)
  220. }
  221. func (*ModifyPwdRsp) ProtoMessage() {}
  222. func (x *ModifyPwdRsp) ProtoReflect() protoreflect.Message {
  223. mi := &file_mtp2_proto_msgTypes[2]
  224. if protoimpl.UnsafeEnabled && x != nil {
  225. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  226. if ms.LoadMessageInfo() == nil {
  227. ms.StoreMessageInfo(mi)
  228. }
  229. return ms
  230. }
  231. return mi.MessageOf(x)
  232. }
  233. // Deprecated: Use ModifyPwdRsp.ProtoReflect.Descriptor instead.
  234. func (*ModifyPwdRsp) Descriptor() ([]byte, []int) {
  235. return file_mtp2_proto_rawDescGZIP(), []int{2}
  236. }
  237. func (x *ModifyPwdRsp) GetHeader() *MessageHead {
  238. if x != nil {
  239. return x.Header
  240. }
  241. return nil
  242. }
  243. func (x *ModifyPwdRsp) GetRetCode() int32 {
  244. if x != nil && x.RetCode != nil {
  245. return *x.RetCode
  246. }
  247. return 0
  248. }
  249. func (x *ModifyPwdRsp) GetRetDesc() string {
  250. if x != nil && x.RetDesc != nil {
  251. return *x.RetDesc
  252. }
  253. return ""
  254. }
  255. // 新增修改收货地址请求
  256. type UserReceiveInfoReq struct {
  257. state protoimpl.MessageState
  258. sizeCache protoimpl.SizeCache
  259. unknownFields protoimpl.UnknownFields
  260. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  261. ClientSerialID *uint64 `protobuf:"varint,2,opt,name=ClientSerialID" json:"ClientSerialID,omitempty"` // 客户端唯一ID
  262. UserID *uint32 `protobuf:"varint,3,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  263. ReceiverName *string `protobuf:"bytes,4,opt,name=ReceiverName" json:"ReceiverName,omitempty"` // 提货人姓名
  264. CardTypeID *uint32 `protobuf:"varint,5,opt,name=CardTypeID" json:"CardTypeID,omitempty"` // 证件类型
  265. CardNum *string `protobuf:"bytes,6,opt,name=CardNum" json:"CardNum,omitempty"` // 证件号码
  266. PhoneNum *string `protobuf:"bytes,7,opt,name=PhoneNum" json:"PhoneNum,omitempty"` // 提货人联系方式
  267. CountryID *uint32 `protobuf:"varint,8,opt,name=CountryID" json:"CountryID,omitempty"` // 国家
  268. ProvinceID *uint32 `protobuf:"varint,9,opt,name=ProvinceID" json:"ProvinceID,omitempty"` // 省
  269. CityID *uint32 `protobuf:"varint,10,opt,name=CityID" json:"CityID,omitempty"` // 市
  270. DistrictID *uint32 `protobuf:"varint,11,opt,name=DistrictID" json:"DistrictID,omitempty"` // 地区
  271. Address *string `protobuf:"bytes,12,opt,name=Address" json:"Address,omitempty"` // 提货人详细地址
  272. TakeRemark *string `protobuf:"bytes,13,opt,name=TakeRemark" json:"TakeRemark,omitempty"` // 提货备注
  273. ReceiveInfoId *uint64 `protobuf:"varint,14,opt,name=ReceiveInfoId" json:"ReceiveInfoId,omitempty"` // 修改时填收货地址id
  274. }
  275. func (x *UserReceiveInfoReq) Reset() {
  276. *x = UserReceiveInfoReq{}
  277. if protoimpl.UnsafeEnabled {
  278. mi := &file_mtp2_proto_msgTypes[3]
  279. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  280. ms.StoreMessageInfo(mi)
  281. }
  282. }
  283. func (x *UserReceiveInfoReq) String() string {
  284. return protoimpl.X.MessageStringOf(x)
  285. }
  286. func (*UserReceiveInfoReq) ProtoMessage() {}
  287. func (x *UserReceiveInfoReq) ProtoReflect() protoreflect.Message {
  288. mi := &file_mtp2_proto_msgTypes[3]
  289. if protoimpl.UnsafeEnabled && x != nil {
  290. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  291. if ms.LoadMessageInfo() == nil {
  292. ms.StoreMessageInfo(mi)
  293. }
  294. return ms
  295. }
  296. return mi.MessageOf(x)
  297. }
  298. // Deprecated: Use UserReceiveInfoReq.ProtoReflect.Descriptor instead.
  299. func (*UserReceiveInfoReq) Descriptor() ([]byte, []int) {
  300. return file_mtp2_proto_rawDescGZIP(), []int{3}
  301. }
  302. func (x *UserReceiveInfoReq) GetHeader() *MessageHead {
  303. if x != nil {
  304. return x.Header
  305. }
  306. return nil
  307. }
  308. func (x *UserReceiveInfoReq) GetClientSerialID() uint64 {
  309. if x != nil && x.ClientSerialID != nil {
  310. return *x.ClientSerialID
  311. }
  312. return 0
  313. }
  314. func (x *UserReceiveInfoReq) GetUserID() uint32 {
  315. if x != nil && x.UserID != nil {
  316. return *x.UserID
  317. }
  318. return 0
  319. }
  320. func (x *UserReceiveInfoReq) GetReceiverName() string {
  321. if x != nil && x.ReceiverName != nil {
  322. return *x.ReceiverName
  323. }
  324. return ""
  325. }
  326. func (x *UserReceiveInfoReq) GetCardTypeID() uint32 {
  327. if x != nil && x.CardTypeID != nil {
  328. return *x.CardTypeID
  329. }
  330. return 0
  331. }
  332. func (x *UserReceiveInfoReq) GetCardNum() string {
  333. if x != nil && x.CardNum != nil {
  334. return *x.CardNum
  335. }
  336. return ""
  337. }
  338. func (x *UserReceiveInfoReq) GetPhoneNum() string {
  339. if x != nil && x.PhoneNum != nil {
  340. return *x.PhoneNum
  341. }
  342. return ""
  343. }
  344. func (x *UserReceiveInfoReq) GetCountryID() uint32 {
  345. if x != nil && x.CountryID != nil {
  346. return *x.CountryID
  347. }
  348. return 0
  349. }
  350. func (x *UserReceiveInfoReq) GetProvinceID() uint32 {
  351. if x != nil && x.ProvinceID != nil {
  352. return *x.ProvinceID
  353. }
  354. return 0
  355. }
  356. func (x *UserReceiveInfoReq) GetCityID() uint32 {
  357. if x != nil && x.CityID != nil {
  358. return *x.CityID
  359. }
  360. return 0
  361. }
  362. func (x *UserReceiveInfoReq) GetDistrictID() uint32 {
  363. if x != nil && x.DistrictID != nil {
  364. return *x.DistrictID
  365. }
  366. return 0
  367. }
  368. func (x *UserReceiveInfoReq) GetAddress() string {
  369. if x != nil && x.Address != nil {
  370. return *x.Address
  371. }
  372. return ""
  373. }
  374. func (x *UserReceiveInfoReq) GetTakeRemark() string {
  375. if x != nil && x.TakeRemark != nil {
  376. return *x.TakeRemark
  377. }
  378. return ""
  379. }
  380. func (x *UserReceiveInfoReq) GetReceiveInfoId() uint64 {
  381. if x != nil && x.ReceiveInfoId != nil {
  382. return *x.ReceiveInfoId
  383. }
  384. return 0
  385. }
  386. // 新增修改收货地址请求响应
  387. type UserReceiveInfoRsp struct {
  388. state protoimpl.MessageState
  389. sizeCache protoimpl.SizeCache
  390. unknownFields protoimpl.UnknownFields
  391. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  392. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  393. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  394. ReceiveInfoId *uint64 `protobuf:"varint,4,opt,name=ReceiveInfoId" json:"ReceiveInfoId,omitempty"` // 响应返回autoid
  395. }
  396. func (x *UserReceiveInfoRsp) Reset() {
  397. *x = UserReceiveInfoRsp{}
  398. if protoimpl.UnsafeEnabled {
  399. mi := &file_mtp2_proto_msgTypes[4]
  400. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  401. ms.StoreMessageInfo(mi)
  402. }
  403. }
  404. func (x *UserReceiveInfoRsp) String() string {
  405. return protoimpl.X.MessageStringOf(x)
  406. }
  407. func (*UserReceiveInfoRsp) ProtoMessage() {}
  408. func (x *UserReceiveInfoRsp) ProtoReflect() protoreflect.Message {
  409. mi := &file_mtp2_proto_msgTypes[4]
  410. if protoimpl.UnsafeEnabled && x != nil {
  411. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  412. if ms.LoadMessageInfo() == nil {
  413. ms.StoreMessageInfo(mi)
  414. }
  415. return ms
  416. }
  417. return mi.MessageOf(x)
  418. }
  419. // Deprecated: Use UserReceiveInfoRsp.ProtoReflect.Descriptor instead.
  420. func (*UserReceiveInfoRsp) Descriptor() ([]byte, []int) {
  421. return file_mtp2_proto_rawDescGZIP(), []int{4}
  422. }
  423. func (x *UserReceiveInfoRsp) GetHeader() *MessageHead {
  424. if x != nil {
  425. return x.Header
  426. }
  427. return nil
  428. }
  429. func (x *UserReceiveInfoRsp) GetRetCode() int32 {
  430. if x != nil && x.RetCode != nil {
  431. return *x.RetCode
  432. }
  433. return 0
  434. }
  435. func (x *UserReceiveInfoRsp) GetRetDesc() string {
  436. if x != nil && x.RetDesc != nil {
  437. return *x.RetDesc
  438. }
  439. return ""
  440. }
  441. func (x *UserReceiveInfoRsp) GetReceiveInfoId() uint64 {
  442. if x != nil && x.ReceiveInfoId != nil {
  443. return *x.ReceiveInfoId
  444. }
  445. return 0
  446. }
  447. // 删除收货地址请求
  448. type DelUserReceiveInfoReq struct {
  449. state protoimpl.MessageState
  450. sizeCache protoimpl.SizeCache
  451. unknownFields protoimpl.UnknownFields
  452. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  453. ReceiveInfoId *uint64 `protobuf:"varint,2,opt,name=ReceiveInfoId" json:"ReceiveInfoId,omitempty"` // 收货地址id
  454. }
  455. func (x *DelUserReceiveInfoReq) Reset() {
  456. *x = DelUserReceiveInfoReq{}
  457. if protoimpl.UnsafeEnabled {
  458. mi := &file_mtp2_proto_msgTypes[5]
  459. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  460. ms.StoreMessageInfo(mi)
  461. }
  462. }
  463. func (x *DelUserReceiveInfoReq) String() string {
  464. return protoimpl.X.MessageStringOf(x)
  465. }
  466. func (*DelUserReceiveInfoReq) ProtoMessage() {}
  467. func (x *DelUserReceiveInfoReq) ProtoReflect() protoreflect.Message {
  468. mi := &file_mtp2_proto_msgTypes[5]
  469. if protoimpl.UnsafeEnabled && x != nil {
  470. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  471. if ms.LoadMessageInfo() == nil {
  472. ms.StoreMessageInfo(mi)
  473. }
  474. return ms
  475. }
  476. return mi.MessageOf(x)
  477. }
  478. // Deprecated: Use DelUserReceiveInfoReq.ProtoReflect.Descriptor instead.
  479. func (*DelUserReceiveInfoReq) Descriptor() ([]byte, []int) {
  480. return file_mtp2_proto_rawDescGZIP(), []int{5}
  481. }
  482. func (x *DelUserReceiveInfoReq) GetHeader() *MessageHead {
  483. if x != nil {
  484. return x.Header
  485. }
  486. return nil
  487. }
  488. func (x *DelUserReceiveInfoReq) GetReceiveInfoId() uint64 {
  489. if x != nil && x.ReceiveInfoId != nil {
  490. return *x.ReceiveInfoId
  491. }
  492. return 0
  493. }
  494. // 删除收货地址请求响应
  495. type DelUserReceiveInfoRsp struct {
  496. state protoimpl.MessageState
  497. sizeCache protoimpl.SizeCache
  498. unknownFields protoimpl.UnknownFields
  499. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  500. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  501. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  502. }
  503. func (x *DelUserReceiveInfoRsp) Reset() {
  504. *x = DelUserReceiveInfoRsp{}
  505. if protoimpl.UnsafeEnabled {
  506. mi := &file_mtp2_proto_msgTypes[6]
  507. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  508. ms.StoreMessageInfo(mi)
  509. }
  510. }
  511. func (x *DelUserReceiveInfoRsp) String() string {
  512. return protoimpl.X.MessageStringOf(x)
  513. }
  514. func (*DelUserReceiveInfoRsp) ProtoMessage() {}
  515. func (x *DelUserReceiveInfoRsp) ProtoReflect() protoreflect.Message {
  516. mi := &file_mtp2_proto_msgTypes[6]
  517. if protoimpl.UnsafeEnabled && x != nil {
  518. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  519. if ms.LoadMessageInfo() == nil {
  520. ms.StoreMessageInfo(mi)
  521. }
  522. return ms
  523. }
  524. return mi.MessageOf(x)
  525. }
  526. // Deprecated: Use DelUserReceiveInfoRsp.ProtoReflect.Descriptor instead.
  527. func (*DelUserReceiveInfoRsp) Descriptor() ([]byte, []int) {
  528. return file_mtp2_proto_rawDescGZIP(), []int{6}
  529. }
  530. func (x *DelUserReceiveInfoRsp) GetHeader() *MessageHead {
  531. if x != nil {
  532. return x.Header
  533. }
  534. return nil
  535. }
  536. func (x *DelUserReceiveInfoRsp) GetRetCode() int32 {
  537. if x != nil && x.RetCode != nil {
  538. return *x.RetCode
  539. }
  540. return 0
  541. }
  542. func (x *DelUserReceiveInfoRsp) GetRetDesc() string {
  543. if x != nil && x.RetDesc != nil {
  544. return *x.RetDesc
  545. }
  546. return ""
  547. }
  548. // 设置默认收货地址请求
  549. type UserReceiveIsDefaultReq struct {
  550. state protoimpl.MessageState
  551. sizeCache protoimpl.SizeCache
  552. unknownFields protoimpl.UnknownFields
  553. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  554. AutoId *uint64 `protobuf:"varint,2,opt,name=AutoId" json:"AutoId,omitempty"` // 提货地址ID
  555. UserId *uint64 `protobuf:"varint,3,opt,name=UserId" json:"UserId,omitempty"` // 用户ID
  556. }
  557. func (x *UserReceiveIsDefaultReq) Reset() {
  558. *x = UserReceiveIsDefaultReq{}
  559. if protoimpl.UnsafeEnabled {
  560. mi := &file_mtp2_proto_msgTypes[7]
  561. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  562. ms.StoreMessageInfo(mi)
  563. }
  564. }
  565. func (x *UserReceiveIsDefaultReq) String() string {
  566. return protoimpl.X.MessageStringOf(x)
  567. }
  568. func (*UserReceiveIsDefaultReq) ProtoMessage() {}
  569. func (x *UserReceiveIsDefaultReq) ProtoReflect() protoreflect.Message {
  570. mi := &file_mtp2_proto_msgTypes[7]
  571. if protoimpl.UnsafeEnabled && x != nil {
  572. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  573. if ms.LoadMessageInfo() == nil {
  574. ms.StoreMessageInfo(mi)
  575. }
  576. return ms
  577. }
  578. return mi.MessageOf(x)
  579. }
  580. // Deprecated: Use UserReceiveIsDefaultReq.ProtoReflect.Descriptor instead.
  581. func (*UserReceiveIsDefaultReq) Descriptor() ([]byte, []int) {
  582. return file_mtp2_proto_rawDescGZIP(), []int{7}
  583. }
  584. func (x *UserReceiveIsDefaultReq) GetHeader() *MessageHead {
  585. if x != nil {
  586. return x.Header
  587. }
  588. return nil
  589. }
  590. func (x *UserReceiveIsDefaultReq) GetAutoId() uint64 {
  591. if x != nil && x.AutoId != nil {
  592. return *x.AutoId
  593. }
  594. return 0
  595. }
  596. func (x *UserReceiveIsDefaultReq) GetUserId() uint64 {
  597. if x != nil && x.UserId != nil {
  598. return *x.UserId
  599. }
  600. return 0
  601. }
  602. // 设置默认收货地址应答
  603. type UserReceiveIsDefaultRsp struct {
  604. state protoimpl.MessageState
  605. sizeCache protoimpl.SizeCache
  606. unknownFields protoimpl.UnknownFields
  607. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  608. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  609. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  610. AutoId *uint64 `protobuf:"varint,4,opt,name=AutoId" json:"AutoId,omitempty"` // 提货地址ID
  611. }
  612. func (x *UserReceiveIsDefaultRsp) Reset() {
  613. *x = UserReceiveIsDefaultRsp{}
  614. if protoimpl.UnsafeEnabled {
  615. mi := &file_mtp2_proto_msgTypes[8]
  616. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  617. ms.StoreMessageInfo(mi)
  618. }
  619. }
  620. func (x *UserReceiveIsDefaultRsp) String() string {
  621. return protoimpl.X.MessageStringOf(x)
  622. }
  623. func (*UserReceiveIsDefaultRsp) ProtoMessage() {}
  624. func (x *UserReceiveIsDefaultRsp) ProtoReflect() protoreflect.Message {
  625. mi := &file_mtp2_proto_msgTypes[8]
  626. if protoimpl.UnsafeEnabled && x != nil {
  627. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  628. if ms.LoadMessageInfo() == nil {
  629. ms.StoreMessageInfo(mi)
  630. }
  631. return ms
  632. }
  633. return mi.MessageOf(x)
  634. }
  635. // Deprecated: Use UserReceiveIsDefaultRsp.ProtoReflect.Descriptor instead.
  636. func (*UserReceiveIsDefaultRsp) Descriptor() ([]byte, []int) {
  637. return file_mtp2_proto_rawDescGZIP(), []int{8}
  638. }
  639. func (x *UserReceiveIsDefaultRsp) GetHeader() *MessageHead {
  640. if x != nil {
  641. return x.Header
  642. }
  643. return nil
  644. }
  645. func (x *UserReceiveIsDefaultRsp) GetRetCode() int32 {
  646. if x != nil && x.RetCode != nil {
  647. return *x.RetCode
  648. }
  649. return 0
  650. }
  651. func (x *UserReceiveIsDefaultRsp) GetRetDesc() string {
  652. if x != nil && x.RetDesc != nil {
  653. return *x.RetDesc
  654. }
  655. return ""
  656. }
  657. func (x *UserReceiveIsDefaultRsp) GetAutoId() uint64 {
  658. if x != nil && x.AutoId != nil {
  659. return *x.AutoId
  660. }
  661. return 0
  662. }
  663. // 新增修改用户发票信息请求
  664. type UserReceiptInfoReq struct {
  665. state protoimpl.MessageState
  666. sizeCache protoimpl.SizeCache
  667. unknownFields protoimpl.UnknownFields
  668. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  669. ClientSerialID *uint64 `protobuf:"varint,2,opt,name=ClientSerialID" json:"ClientSerialID,omitempty"` // 客户端唯一ID
  670. UserID *uint32 `protobuf:"varint,3,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  671. UserName *string `protobuf:"bytes,4,opt,name=UserName" json:"UserName,omitempty"` // 发票抬头姓名
  672. ReceiptType *uint32 `protobuf:"varint,5,opt,name=ReceiptType" json:"ReceiptType,omitempty"` // 发票类型
  673. TaxpayerID *string `protobuf:"bytes,6,opt,name=TaxpayerID" json:"TaxpayerID,omitempty"` // 纳税人识别号
  674. ContactInfo *string `protobuf:"bytes,7,opt,name=ContactInfo" json:"ContactInfo,omitempty"` // 联系方式
  675. ReceiptInfoId *uint64 `protobuf:"varint,8,opt,name=ReceiptInfoId" json:"ReceiptInfoId,omitempty"` // 修改时填用户发票信息id
  676. ReceiptBank *string `protobuf:"bytes,9,opt,name=ReceiptBank" json:"ReceiptBank,omitempty"` // 发票开户行[发票类型:企业]
  677. ReceiptAccount *string `protobuf:"bytes,10,opt,name=ReceiptAccount" json:"ReceiptAccount,omitempty"` // 发票帐号[发票类型:企业]
  678. Address *string `protobuf:"bytes,11,opt,name=Address" json:"Address,omitempty"` // 地址[发票类型:企业]
  679. IDNum *string `protobuf:"bytes,12,opt,name=IDNum" json:"IDNum,omitempty"` // 身份证号码[发票类型:个人]
  680. }
  681. func (x *UserReceiptInfoReq) Reset() {
  682. *x = UserReceiptInfoReq{}
  683. if protoimpl.UnsafeEnabled {
  684. mi := &file_mtp2_proto_msgTypes[9]
  685. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  686. ms.StoreMessageInfo(mi)
  687. }
  688. }
  689. func (x *UserReceiptInfoReq) String() string {
  690. return protoimpl.X.MessageStringOf(x)
  691. }
  692. func (*UserReceiptInfoReq) ProtoMessage() {}
  693. func (x *UserReceiptInfoReq) ProtoReflect() protoreflect.Message {
  694. mi := &file_mtp2_proto_msgTypes[9]
  695. if protoimpl.UnsafeEnabled && x != nil {
  696. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  697. if ms.LoadMessageInfo() == nil {
  698. ms.StoreMessageInfo(mi)
  699. }
  700. return ms
  701. }
  702. return mi.MessageOf(x)
  703. }
  704. // Deprecated: Use UserReceiptInfoReq.ProtoReflect.Descriptor instead.
  705. func (*UserReceiptInfoReq) Descriptor() ([]byte, []int) {
  706. return file_mtp2_proto_rawDescGZIP(), []int{9}
  707. }
  708. func (x *UserReceiptInfoReq) GetHeader() *MessageHead {
  709. if x != nil {
  710. return x.Header
  711. }
  712. return nil
  713. }
  714. func (x *UserReceiptInfoReq) GetClientSerialID() uint64 {
  715. if x != nil && x.ClientSerialID != nil {
  716. return *x.ClientSerialID
  717. }
  718. return 0
  719. }
  720. func (x *UserReceiptInfoReq) GetUserID() uint32 {
  721. if x != nil && x.UserID != nil {
  722. return *x.UserID
  723. }
  724. return 0
  725. }
  726. func (x *UserReceiptInfoReq) GetUserName() string {
  727. if x != nil && x.UserName != nil {
  728. return *x.UserName
  729. }
  730. return ""
  731. }
  732. func (x *UserReceiptInfoReq) GetReceiptType() uint32 {
  733. if x != nil && x.ReceiptType != nil {
  734. return *x.ReceiptType
  735. }
  736. return 0
  737. }
  738. func (x *UserReceiptInfoReq) GetTaxpayerID() string {
  739. if x != nil && x.TaxpayerID != nil {
  740. return *x.TaxpayerID
  741. }
  742. return ""
  743. }
  744. func (x *UserReceiptInfoReq) GetContactInfo() string {
  745. if x != nil && x.ContactInfo != nil {
  746. return *x.ContactInfo
  747. }
  748. return ""
  749. }
  750. func (x *UserReceiptInfoReq) GetReceiptInfoId() uint64 {
  751. if x != nil && x.ReceiptInfoId != nil {
  752. return *x.ReceiptInfoId
  753. }
  754. return 0
  755. }
  756. func (x *UserReceiptInfoReq) GetReceiptBank() string {
  757. if x != nil && x.ReceiptBank != nil {
  758. return *x.ReceiptBank
  759. }
  760. return ""
  761. }
  762. func (x *UserReceiptInfoReq) GetReceiptAccount() string {
  763. if x != nil && x.ReceiptAccount != nil {
  764. return *x.ReceiptAccount
  765. }
  766. return ""
  767. }
  768. func (x *UserReceiptInfoReq) GetAddress() string {
  769. if x != nil && x.Address != nil {
  770. return *x.Address
  771. }
  772. return ""
  773. }
  774. func (x *UserReceiptInfoReq) GetIDNum() string {
  775. if x != nil && x.IDNum != nil {
  776. return *x.IDNum
  777. }
  778. return ""
  779. }
  780. // 新增修改用户发票信息请求响应
  781. type UserReceiptInfoRsp struct {
  782. state protoimpl.MessageState
  783. sizeCache protoimpl.SizeCache
  784. unknownFields protoimpl.UnknownFields
  785. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  786. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  787. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  788. ReceiptInfoId *uint64 `protobuf:"varint,4,opt,name=ReceiptInfoId" json:"ReceiptInfoId,omitempty"` // 响应返回发票信息id
  789. }
  790. func (x *UserReceiptInfoRsp) Reset() {
  791. *x = UserReceiptInfoRsp{}
  792. if protoimpl.UnsafeEnabled {
  793. mi := &file_mtp2_proto_msgTypes[10]
  794. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  795. ms.StoreMessageInfo(mi)
  796. }
  797. }
  798. func (x *UserReceiptInfoRsp) String() string {
  799. return protoimpl.X.MessageStringOf(x)
  800. }
  801. func (*UserReceiptInfoRsp) ProtoMessage() {}
  802. func (x *UserReceiptInfoRsp) ProtoReflect() protoreflect.Message {
  803. mi := &file_mtp2_proto_msgTypes[10]
  804. if protoimpl.UnsafeEnabled && x != nil {
  805. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  806. if ms.LoadMessageInfo() == nil {
  807. ms.StoreMessageInfo(mi)
  808. }
  809. return ms
  810. }
  811. return mi.MessageOf(x)
  812. }
  813. // Deprecated: Use UserReceiptInfoRsp.ProtoReflect.Descriptor instead.
  814. func (*UserReceiptInfoRsp) Descriptor() ([]byte, []int) {
  815. return file_mtp2_proto_rawDescGZIP(), []int{10}
  816. }
  817. func (x *UserReceiptInfoRsp) GetHeader() *MessageHead {
  818. if x != nil {
  819. return x.Header
  820. }
  821. return nil
  822. }
  823. func (x *UserReceiptInfoRsp) GetRetCode() int32 {
  824. if x != nil && x.RetCode != nil {
  825. return *x.RetCode
  826. }
  827. return 0
  828. }
  829. func (x *UserReceiptInfoRsp) GetRetDesc() string {
  830. if x != nil && x.RetDesc != nil {
  831. return *x.RetDesc
  832. }
  833. return ""
  834. }
  835. func (x *UserReceiptInfoRsp) GetReceiptInfoId() uint64 {
  836. if x != nil && x.ReceiptInfoId != nil {
  837. return *x.ReceiptInfoId
  838. }
  839. return 0
  840. }
  841. // 删除用户发票信息请求
  842. type DelUserReceiptInfoReq struct {
  843. state protoimpl.MessageState
  844. sizeCache protoimpl.SizeCache
  845. unknownFields protoimpl.UnknownFields
  846. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  847. ReceiptInfoId *uint64 `protobuf:"varint,2,opt,name=ReceiptInfoId" json:"ReceiptInfoId,omitempty"` // 删除发票信息id
  848. }
  849. func (x *DelUserReceiptInfoReq) Reset() {
  850. *x = DelUserReceiptInfoReq{}
  851. if protoimpl.UnsafeEnabled {
  852. mi := &file_mtp2_proto_msgTypes[11]
  853. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  854. ms.StoreMessageInfo(mi)
  855. }
  856. }
  857. func (x *DelUserReceiptInfoReq) String() string {
  858. return protoimpl.X.MessageStringOf(x)
  859. }
  860. func (*DelUserReceiptInfoReq) ProtoMessage() {}
  861. func (x *DelUserReceiptInfoReq) ProtoReflect() protoreflect.Message {
  862. mi := &file_mtp2_proto_msgTypes[11]
  863. if protoimpl.UnsafeEnabled && x != nil {
  864. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  865. if ms.LoadMessageInfo() == nil {
  866. ms.StoreMessageInfo(mi)
  867. }
  868. return ms
  869. }
  870. return mi.MessageOf(x)
  871. }
  872. // Deprecated: Use DelUserReceiptInfoReq.ProtoReflect.Descriptor instead.
  873. func (*DelUserReceiptInfoReq) Descriptor() ([]byte, []int) {
  874. return file_mtp2_proto_rawDescGZIP(), []int{11}
  875. }
  876. func (x *DelUserReceiptInfoReq) GetHeader() *MessageHead {
  877. if x != nil {
  878. return x.Header
  879. }
  880. return nil
  881. }
  882. func (x *DelUserReceiptInfoReq) GetReceiptInfoId() uint64 {
  883. if x != nil && x.ReceiptInfoId != nil {
  884. return *x.ReceiptInfoId
  885. }
  886. return 0
  887. }
  888. // 删除用户发票信息请求响应
  889. type DelUserReceiptInfoRsp struct {
  890. state protoimpl.MessageState
  891. sizeCache protoimpl.SizeCache
  892. unknownFields protoimpl.UnknownFields
  893. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  894. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  895. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  896. }
  897. func (x *DelUserReceiptInfoRsp) Reset() {
  898. *x = DelUserReceiptInfoRsp{}
  899. if protoimpl.UnsafeEnabled {
  900. mi := &file_mtp2_proto_msgTypes[12]
  901. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  902. ms.StoreMessageInfo(mi)
  903. }
  904. }
  905. func (x *DelUserReceiptInfoRsp) String() string {
  906. return protoimpl.X.MessageStringOf(x)
  907. }
  908. func (*DelUserReceiptInfoRsp) ProtoMessage() {}
  909. func (x *DelUserReceiptInfoRsp) ProtoReflect() protoreflect.Message {
  910. mi := &file_mtp2_proto_msgTypes[12]
  911. if protoimpl.UnsafeEnabled && x != nil {
  912. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  913. if ms.LoadMessageInfo() == nil {
  914. ms.StoreMessageInfo(mi)
  915. }
  916. return ms
  917. }
  918. return mi.MessageOf(x)
  919. }
  920. // Deprecated: Use DelUserReceiptInfoRsp.ProtoReflect.Descriptor instead.
  921. func (*DelUserReceiptInfoRsp) Descriptor() ([]byte, []int) {
  922. return file_mtp2_proto_rawDescGZIP(), []int{12}
  923. }
  924. func (x *DelUserReceiptInfoRsp) GetHeader() *MessageHead {
  925. if x != nil {
  926. return x.Header
  927. }
  928. return nil
  929. }
  930. func (x *DelUserReceiptInfoRsp) GetRetCode() int32 {
  931. if x != nil && x.RetCode != nil {
  932. return *x.RetCode
  933. }
  934. return 0
  935. }
  936. func (x *DelUserReceiptInfoRsp) GetRetDesc() string {
  937. if x != nil && x.RetDesc != nil {
  938. return *x.RetDesc
  939. }
  940. return ""
  941. }
  942. // 签约请求
  943. type T2BBankSignReq struct {
  944. state protoimpl.MessageState
  945. sizeCache protoimpl.SizeCache
  946. unknownFields protoimpl.UnknownFields
  947. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  948. ExtOperatorID *uint64 `protobuf:"varint,2,req,name=ExtOperatorID" json:"ExtOperatorID,omitempty"` // 外部操作流水号
  949. ExchId *string `protobuf:"bytes,3,opt,name=ExchId" json:"ExchId,omitempty"` // 交易所编号
  950. TradeDate *string `protobuf:"bytes,4,opt,name=TradeDate" json:"TradeDate,omitempty"` // 交易所业务日期
  951. ExchTicket *string `protobuf:"bytes,5,opt,name=ExchTicket" json:"ExchTicket,omitempty"` // 交易所流水号
  952. AccountCode *string `protobuf:"bytes,6,req,name=AccountCode" json:"AccountCode,omitempty"` // 账户
  953. AccountName *string `protobuf:"bytes,7,req,name=AccountName" json:"AccountName,omitempty"` // 客户名称
  954. CusBankID *string `protobuf:"bytes,8,req,name=CusBankID" json:"CusBankID,omitempty"` // 托管银行编号
  955. OperateType *int32 `protobuf:"varint,9,req,name=OperateType" json:"OperateType,omitempty"` // 变更类型[1-增加;2-修改;4-绑卡;
  956. IsForce *int32 `protobuf:"varint,10,req,name=IsForce" json:"IsForce,omitempty"` // 是否强制[0-否;1-是]强制,只更新中心签约信息,不发送银行。用于银行信息不一致的情况
  957. Currency *string `protobuf:"bytes,11,opt,name=Currency" json:"Currency,omitempty"` // 币种
  958. AccountType *int32 `protobuf:"varint,12,opt,name=AccountType" json:"AccountType,omitempty"` // 账户类型[1-对私;2-对公]
  959. OpenBankAccId *string `protobuf:"bytes,13,req,name=OpenBankAccId" json:"OpenBankAccId,omitempty"` // 银行卡行号
  960. ForceSignBankAccountNo *string `protobuf:"bytes,14,opt,name=ForceSignBankAccountNo" json:"ForceSignBankAccountNo,omitempty"` // 银行账户[强制签约时填写]
  961. ForceSignBankAccountName *string `protobuf:"bytes,15,opt,name=ForceSignBankAccountName" json:"ForceSignBankAccountName,omitempty"` // 银行账户名称[强制签约时填写]
  962. BankAccountNo *string `protobuf:"bytes,16,req,name=BankAccountNo" json:"BankAccountNo,omitempty"` // 银行账户
  963. BankAccountName *string `protobuf:"bytes,17,opt,name=BankAccountName" json:"BankAccountName,omitempty"` // 银行账户名称
  964. ExBankName *string `protobuf:"bytes,18,req,name=ExBankName" json:"ExBankName,omitempty"` // 开户行名称
  965. OpenBankNo *string `protobuf:"bytes,19,opt,name=OpenBankNo" json:"OpenBankNo,omitempty"` // 开户支行编号
  966. OpenBankName *string `protobuf:"bytes,20,opt,name=OpenBankName" json:"OpenBankName,omitempty"` // 开户支行名称
  967. CertType *string `protobuf:"bytes,21,req,name=CertType" json:"CertType,omitempty"` // 证件类型
  968. CertID *string `protobuf:"bytes,22,req,name=CertID" json:"CertID,omitempty"` // 证件号码
  969. BankAccountPWD *string `protobuf:"bytes,23,opt,name=BankAccountPWD" json:"BankAccountPWD,omitempty"` // 银行账户密码
  970. AgentName *string `protobuf:"bytes,24,opt,name=AgentName" json:"AgentName,omitempty"` // 授权代理人姓名
  971. AgentCertType *int32 `protobuf:"varint,25,opt,name=AgentCertType" json:"AgentCertType,omitempty"` // 授权代理人证件类型
  972. AgentCertID *string `protobuf:"bytes,26,opt,name=AgentCertID" json:"AgentCertID,omitempty"` // 授权代理人证件号
  973. BankAccountType *int32 `protobuf:"varint,27,opt,name=BankAccountType" json:"BankAccountType,omitempty"` // 银行账户类型
  974. BankProvince *string `protobuf:"bytes,28,opt,name=BankProvince" json:"BankProvince,omitempty"` // 开户银行所在省份
  975. BankCity *string `protobuf:"bytes,29,opt,name=BankCity" json:"BankCity,omitempty"` // 开户银行所在市
  976. BankCardType *int32 `protobuf:"varint,30,opt,name=BankCardType" json:"BankCardType,omitempty"` // 银行卡类型
  977. MobilePhone *string `protobuf:"bytes,31,opt,name=MobilePhone" json:"MobilePhone,omitempty"` // 移动电话
  978. IdentifyCode *string `protobuf:"bytes,32,opt,name=IdentifyCode" json:"IdentifyCode,omitempty"` // 验证码
  979. Email *string `protobuf:"bytes,33,opt,name=email" json:"email,omitempty"` // 电子邮箱
  980. ExtendInfo *string `protobuf:"bytes,34,opt,name=extend_info,json=extendInfo" json:"extend_info,omitempty"` // 扩展信息(JSON串,参考配置要求进行填充)
  981. }
  982. func (x *T2BBankSignReq) Reset() {
  983. *x = T2BBankSignReq{}
  984. if protoimpl.UnsafeEnabled {
  985. mi := &file_mtp2_proto_msgTypes[13]
  986. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  987. ms.StoreMessageInfo(mi)
  988. }
  989. }
  990. func (x *T2BBankSignReq) String() string {
  991. return protoimpl.X.MessageStringOf(x)
  992. }
  993. func (*T2BBankSignReq) ProtoMessage() {}
  994. func (x *T2BBankSignReq) ProtoReflect() protoreflect.Message {
  995. mi := &file_mtp2_proto_msgTypes[13]
  996. if protoimpl.UnsafeEnabled && x != nil {
  997. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  998. if ms.LoadMessageInfo() == nil {
  999. ms.StoreMessageInfo(mi)
  1000. }
  1001. return ms
  1002. }
  1003. return mi.MessageOf(x)
  1004. }
  1005. // Deprecated: Use T2BBankSignReq.ProtoReflect.Descriptor instead.
  1006. func (*T2BBankSignReq) Descriptor() ([]byte, []int) {
  1007. return file_mtp2_proto_rawDescGZIP(), []int{13}
  1008. }
  1009. func (x *T2BBankSignReq) GetHeader() *MessageHead {
  1010. if x != nil {
  1011. return x.Header
  1012. }
  1013. return nil
  1014. }
  1015. func (x *T2BBankSignReq) GetExtOperatorID() uint64 {
  1016. if x != nil && x.ExtOperatorID != nil {
  1017. return *x.ExtOperatorID
  1018. }
  1019. return 0
  1020. }
  1021. func (x *T2BBankSignReq) GetExchId() string {
  1022. if x != nil && x.ExchId != nil {
  1023. return *x.ExchId
  1024. }
  1025. return ""
  1026. }
  1027. func (x *T2BBankSignReq) GetTradeDate() string {
  1028. if x != nil && x.TradeDate != nil {
  1029. return *x.TradeDate
  1030. }
  1031. return ""
  1032. }
  1033. func (x *T2BBankSignReq) GetExchTicket() string {
  1034. if x != nil && x.ExchTicket != nil {
  1035. return *x.ExchTicket
  1036. }
  1037. return ""
  1038. }
  1039. func (x *T2BBankSignReq) GetAccountCode() string {
  1040. if x != nil && x.AccountCode != nil {
  1041. return *x.AccountCode
  1042. }
  1043. return ""
  1044. }
  1045. func (x *T2BBankSignReq) GetAccountName() string {
  1046. if x != nil && x.AccountName != nil {
  1047. return *x.AccountName
  1048. }
  1049. return ""
  1050. }
  1051. func (x *T2BBankSignReq) GetCusBankID() string {
  1052. if x != nil && x.CusBankID != nil {
  1053. return *x.CusBankID
  1054. }
  1055. return ""
  1056. }
  1057. func (x *T2BBankSignReq) GetOperateType() int32 {
  1058. if x != nil && x.OperateType != nil {
  1059. return *x.OperateType
  1060. }
  1061. return 0
  1062. }
  1063. func (x *T2BBankSignReq) GetIsForce() int32 {
  1064. if x != nil && x.IsForce != nil {
  1065. return *x.IsForce
  1066. }
  1067. return 0
  1068. }
  1069. func (x *T2BBankSignReq) GetCurrency() string {
  1070. if x != nil && x.Currency != nil {
  1071. return *x.Currency
  1072. }
  1073. return ""
  1074. }
  1075. func (x *T2BBankSignReq) GetAccountType() int32 {
  1076. if x != nil && x.AccountType != nil {
  1077. return *x.AccountType
  1078. }
  1079. return 0
  1080. }
  1081. func (x *T2BBankSignReq) GetOpenBankAccId() string {
  1082. if x != nil && x.OpenBankAccId != nil {
  1083. return *x.OpenBankAccId
  1084. }
  1085. return ""
  1086. }
  1087. func (x *T2BBankSignReq) GetForceSignBankAccountNo() string {
  1088. if x != nil && x.ForceSignBankAccountNo != nil {
  1089. return *x.ForceSignBankAccountNo
  1090. }
  1091. return ""
  1092. }
  1093. func (x *T2BBankSignReq) GetForceSignBankAccountName() string {
  1094. if x != nil && x.ForceSignBankAccountName != nil {
  1095. return *x.ForceSignBankAccountName
  1096. }
  1097. return ""
  1098. }
  1099. func (x *T2BBankSignReq) GetBankAccountNo() string {
  1100. if x != nil && x.BankAccountNo != nil {
  1101. return *x.BankAccountNo
  1102. }
  1103. return ""
  1104. }
  1105. func (x *T2BBankSignReq) GetBankAccountName() string {
  1106. if x != nil && x.BankAccountName != nil {
  1107. return *x.BankAccountName
  1108. }
  1109. return ""
  1110. }
  1111. func (x *T2BBankSignReq) GetExBankName() string {
  1112. if x != nil && x.ExBankName != nil {
  1113. return *x.ExBankName
  1114. }
  1115. return ""
  1116. }
  1117. func (x *T2BBankSignReq) GetOpenBankNo() string {
  1118. if x != nil && x.OpenBankNo != nil {
  1119. return *x.OpenBankNo
  1120. }
  1121. return ""
  1122. }
  1123. func (x *T2BBankSignReq) GetOpenBankName() string {
  1124. if x != nil && x.OpenBankName != nil {
  1125. return *x.OpenBankName
  1126. }
  1127. return ""
  1128. }
  1129. func (x *T2BBankSignReq) GetCertType() string {
  1130. if x != nil && x.CertType != nil {
  1131. return *x.CertType
  1132. }
  1133. return ""
  1134. }
  1135. func (x *T2BBankSignReq) GetCertID() string {
  1136. if x != nil && x.CertID != nil {
  1137. return *x.CertID
  1138. }
  1139. return ""
  1140. }
  1141. func (x *T2BBankSignReq) GetBankAccountPWD() string {
  1142. if x != nil && x.BankAccountPWD != nil {
  1143. return *x.BankAccountPWD
  1144. }
  1145. return ""
  1146. }
  1147. func (x *T2BBankSignReq) GetAgentName() string {
  1148. if x != nil && x.AgentName != nil {
  1149. return *x.AgentName
  1150. }
  1151. return ""
  1152. }
  1153. func (x *T2BBankSignReq) GetAgentCertType() int32 {
  1154. if x != nil && x.AgentCertType != nil {
  1155. return *x.AgentCertType
  1156. }
  1157. return 0
  1158. }
  1159. func (x *T2BBankSignReq) GetAgentCertID() string {
  1160. if x != nil && x.AgentCertID != nil {
  1161. return *x.AgentCertID
  1162. }
  1163. return ""
  1164. }
  1165. func (x *T2BBankSignReq) GetBankAccountType() int32 {
  1166. if x != nil && x.BankAccountType != nil {
  1167. return *x.BankAccountType
  1168. }
  1169. return 0
  1170. }
  1171. func (x *T2BBankSignReq) GetBankProvince() string {
  1172. if x != nil && x.BankProvince != nil {
  1173. return *x.BankProvince
  1174. }
  1175. return ""
  1176. }
  1177. func (x *T2BBankSignReq) GetBankCity() string {
  1178. if x != nil && x.BankCity != nil {
  1179. return *x.BankCity
  1180. }
  1181. return ""
  1182. }
  1183. func (x *T2BBankSignReq) GetBankCardType() int32 {
  1184. if x != nil && x.BankCardType != nil {
  1185. return *x.BankCardType
  1186. }
  1187. return 0
  1188. }
  1189. func (x *T2BBankSignReq) GetMobilePhone() string {
  1190. if x != nil && x.MobilePhone != nil {
  1191. return *x.MobilePhone
  1192. }
  1193. return ""
  1194. }
  1195. func (x *T2BBankSignReq) GetIdentifyCode() string {
  1196. if x != nil && x.IdentifyCode != nil {
  1197. return *x.IdentifyCode
  1198. }
  1199. return ""
  1200. }
  1201. func (x *T2BBankSignReq) GetEmail() string {
  1202. if x != nil && x.Email != nil {
  1203. return *x.Email
  1204. }
  1205. return ""
  1206. }
  1207. func (x *T2BBankSignReq) GetExtendInfo() string {
  1208. if x != nil && x.ExtendInfo != nil {
  1209. return *x.ExtendInfo
  1210. }
  1211. return ""
  1212. }
  1213. // 签约应答
  1214. type T2BBankSignRsp struct {
  1215. state protoimpl.MessageState
  1216. sizeCache protoimpl.SizeCache
  1217. unknownFields protoimpl.UnknownFields
  1218. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  1219. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  1220. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  1221. ExtOperatorID *uint64 `protobuf:"varint,4,opt,name=ExtOperatorID" json:"ExtOperatorID,omitempty"` // 外部操作流水号
  1222. AccountCode *string `protobuf:"bytes,5,opt,name=AccountCode" json:"AccountCode,omitempty"` // 账户
  1223. NetAddr *string `protobuf:"bytes,6,opt,name=NetAddr" json:"NetAddr,omitempty"` // 网络地址(当这里有网址时,应自动跳转网页)
  1224. Status *int32 `protobuf:"varint,7,opt,name=Status" json:"Status,omitempty"` // 状态(0成功,其他数值参考银行服务的错误码)
  1225. ExchTicket *string `protobuf:"bytes,8,req,name=ExchTicket" json:"ExchTicket,omitempty"` // 交易所流水号
  1226. ExchId *string `protobuf:"bytes,9,opt,name=ExchId" json:"ExchId,omitempty"` // 交易所编号
  1227. TradeDate *string `protobuf:"bytes,10,opt,name=TradeDate" json:"TradeDate,omitempty"` // 交易所业务日期
  1228. CenterTicket *string `protobuf:"bytes,11,opt,name=CenterTicket" json:"CenterTicket,omitempty"` // 中心流水号
  1229. CenterErrCode *string `protobuf:"bytes,12,opt,name=CenterErrCode" json:"CenterErrCode,omitempty"` // 返回码
  1230. CenterErrMsg *string `protobuf:"bytes,13,opt,name=CenterErrMsg" json:"CenterErrMsg,omitempty"` // 返回结果说明
  1231. BankChildAcc *string `protobuf:"bytes,14,opt,name=bankChildAcc" json:"bankChildAcc,omitempty"` // 银行账号
  1232. BankChildAccName *string `protobuf:"bytes,15,opt,name=bankChildAccName" json:"bankChildAccName,omitempty"` // 银行账户名
  1233. BankId *string `protobuf:"bytes,16,opt,name=BankId" json:"BankId,omitempty"` // 银行卡行号
  1234. BankAccNum *string `protobuf:"bytes,17,opt,name=BankAccNum" json:"BankAccNum,omitempty"` // 银行卡号
  1235. BankAccName *string `protobuf:"bytes,18,opt,name=BankAccName" json:"BankAccName,omitempty"` // 银行卡户名
  1236. }
  1237. func (x *T2BBankSignRsp) Reset() {
  1238. *x = T2BBankSignRsp{}
  1239. if protoimpl.UnsafeEnabled {
  1240. mi := &file_mtp2_proto_msgTypes[14]
  1241. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1242. ms.StoreMessageInfo(mi)
  1243. }
  1244. }
  1245. func (x *T2BBankSignRsp) String() string {
  1246. return protoimpl.X.MessageStringOf(x)
  1247. }
  1248. func (*T2BBankSignRsp) ProtoMessage() {}
  1249. func (x *T2BBankSignRsp) ProtoReflect() protoreflect.Message {
  1250. mi := &file_mtp2_proto_msgTypes[14]
  1251. if protoimpl.UnsafeEnabled && x != nil {
  1252. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1253. if ms.LoadMessageInfo() == nil {
  1254. ms.StoreMessageInfo(mi)
  1255. }
  1256. return ms
  1257. }
  1258. return mi.MessageOf(x)
  1259. }
  1260. // Deprecated: Use T2BBankSignRsp.ProtoReflect.Descriptor instead.
  1261. func (*T2BBankSignRsp) Descriptor() ([]byte, []int) {
  1262. return file_mtp2_proto_rawDescGZIP(), []int{14}
  1263. }
  1264. func (x *T2BBankSignRsp) GetHeader() *MessageHead {
  1265. if x != nil {
  1266. return x.Header
  1267. }
  1268. return nil
  1269. }
  1270. func (x *T2BBankSignRsp) GetRetCode() int32 {
  1271. if x != nil && x.RetCode != nil {
  1272. return *x.RetCode
  1273. }
  1274. return 0
  1275. }
  1276. func (x *T2BBankSignRsp) GetRetDesc() string {
  1277. if x != nil && x.RetDesc != nil {
  1278. return *x.RetDesc
  1279. }
  1280. return ""
  1281. }
  1282. func (x *T2BBankSignRsp) GetExtOperatorID() uint64 {
  1283. if x != nil && x.ExtOperatorID != nil {
  1284. return *x.ExtOperatorID
  1285. }
  1286. return 0
  1287. }
  1288. func (x *T2BBankSignRsp) GetAccountCode() string {
  1289. if x != nil && x.AccountCode != nil {
  1290. return *x.AccountCode
  1291. }
  1292. return ""
  1293. }
  1294. func (x *T2BBankSignRsp) GetNetAddr() string {
  1295. if x != nil && x.NetAddr != nil {
  1296. return *x.NetAddr
  1297. }
  1298. return ""
  1299. }
  1300. func (x *T2BBankSignRsp) GetStatus() int32 {
  1301. if x != nil && x.Status != nil {
  1302. return *x.Status
  1303. }
  1304. return 0
  1305. }
  1306. func (x *T2BBankSignRsp) GetExchTicket() string {
  1307. if x != nil && x.ExchTicket != nil {
  1308. return *x.ExchTicket
  1309. }
  1310. return ""
  1311. }
  1312. func (x *T2BBankSignRsp) GetExchId() string {
  1313. if x != nil && x.ExchId != nil {
  1314. return *x.ExchId
  1315. }
  1316. return ""
  1317. }
  1318. func (x *T2BBankSignRsp) GetTradeDate() string {
  1319. if x != nil && x.TradeDate != nil {
  1320. return *x.TradeDate
  1321. }
  1322. return ""
  1323. }
  1324. func (x *T2BBankSignRsp) GetCenterTicket() string {
  1325. if x != nil && x.CenterTicket != nil {
  1326. return *x.CenterTicket
  1327. }
  1328. return ""
  1329. }
  1330. func (x *T2BBankSignRsp) GetCenterErrCode() string {
  1331. if x != nil && x.CenterErrCode != nil {
  1332. return *x.CenterErrCode
  1333. }
  1334. return ""
  1335. }
  1336. func (x *T2BBankSignRsp) GetCenterErrMsg() string {
  1337. if x != nil && x.CenterErrMsg != nil {
  1338. return *x.CenterErrMsg
  1339. }
  1340. return ""
  1341. }
  1342. func (x *T2BBankSignRsp) GetBankChildAcc() string {
  1343. if x != nil && x.BankChildAcc != nil {
  1344. return *x.BankChildAcc
  1345. }
  1346. return ""
  1347. }
  1348. func (x *T2BBankSignRsp) GetBankChildAccName() string {
  1349. if x != nil && x.BankChildAccName != nil {
  1350. return *x.BankChildAccName
  1351. }
  1352. return ""
  1353. }
  1354. func (x *T2BBankSignRsp) GetBankId() string {
  1355. if x != nil && x.BankId != nil {
  1356. return *x.BankId
  1357. }
  1358. return ""
  1359. }
  1360. func (x *T2BBankSignRsp) GetBankAccNum() string {
  1361. if x != nil && x.BankAccNum != nil {
  1362. return *x.BankAccNum
  1363. }
  1364. return ""
  1365. }
  1366. func (x *T2BBankSignRsp) GetBankAccName() string {
  1367. if x != nil && x.BankAccName != nil {
  1368. return *x.BankAccName
  1369. }
  1370. return ""
  1371. }
  1372. // 解约请求
  1373. type T2BBankCancelSignReq struct {
  1374. state protoimpl.MessageState
  1375. sizeCache protoimpl.SizeCache
  1376. unknownFields protoimpl.UnknownFields
  1377. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  1378. ExtOperatorID *uint64 `protobuf:"varint,2,req,name=ExtOperatorID" json:"ExtOperatorID,omitempty"` // 外部操作流水号
  1379. ExchId *string `protobuf:"bytes,3,opt,name=ExchId" json:"ExchId,omitempty"` // 交易所编号
  1380. AccountCode *string `protobuf:"bytes,4,req,name=AccountCode" json:"AccountCode,omitempty"` // 账户
  1381. CusBankID *string `protobuf:"bytes,5,req,name=CusBankID" json:"CusBankID,omitempty"` // 托管银行编号
  1382. IsForce *int32 `protobuf:"varint,6,req,name=IsForce" json:"IsForce,omitempty"` // 是否强制
  1383. Currency *string `protobuf:"bytes,7,opt,name=Currency" json:"Currency,omitempty"` // 币种
  1384. TradeDate *string `protobuf:"bytes,8,opt,name=TradeDate" json:"TradeDate,omitempty"` // 交易所业务日期
  1385. ExchTicket *string `protobuf:"bytes,9,opt,name=ExchTicket" json:"ExchTicket,omitempty"` // 交易所流水号
  1386. BankChildAcc *string `protobuf:"bytes,10,opt,name=BankChildAcc" json:"BankChildAcc,omitempty"` // 银行子账号
  1387. BankChildAccName *string `protobuf:"bytes,11,opt,name=BankChildAccName" json:"BankChildAccName,omitempty"` // 银行子账号名
  1388. }
  1389. func (x *T2BBankCancelSignReq) Reset() {
  1390. *x = T2BBankCancelSignReq{}
  1391. if protoimpl.UnsafeEnabled {
  1392. mi := &file_mtp2_proto_msgTypes[15]
  1393. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1394. ms.StoreMessageInfo(mi)
  1395. }
  1396. }
  1397. func (x *T2BBankCancelSignReq) String() string {
  1398. return protoimpl.X.MessageStringOf(x)
  1399. }
  1400. func (*T2BBankCancelSignReq) ProtoMessage() {}
  1401. func (x *T2BBankCancelSignReq) ProtoReflect() protoreflect.Message {
  1402. mi := &file_mtp2_proto_msgTypes[15]
  1403. if protoimpl.UnsafeEnabled && x != nil {
  1404. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1405. if ms.LoadMessageInfo() == nil {
  1406. ms.StoreMessageInfo(mi)
  1407. }
  1408. return ms
  1409. }
  1410. return mi.MessageOf(x)
  1411. }
  1412. // Deprecated: Use T2BBankCancelSignReq.ProtoReflect.Descriptor instead.
  1413. func (*T2BBankCancelSignReq) Descriptor() ([]byte, []int) {
  1414. return file_mtp2_proto_rawDescGZIP(), []int{15}
  1415. }
  1416. func (x *T2BBankCancelSignReq) GetHeader() *MessageHead {
  1417. if x != nil {
  1418. return x.Header
  1419. }
  1420. return nil
  1421. }
  1422. func (x *T2BBankCancelSignReq) GetExtOperatorID() uint64 {
  1423. if x != nil && x.ExtOperatorID != nil {
  1424. return *x.ExtOperatorID
  1425. }
  1426. return 0
  1427. }
  1428. func (x *T2BBankCancelSignReq) GetExchId() string {
  1429. if x != nil && x.ExchId != nil {
  1430. return *x.ExchId
  1431. }
  1432. return ""
  1433. }
  1434. func (x *T2BBankCancelSignReq) GetAccountCode() string {
  1435. if x != nil && x.AccountCode != nil {
  1436. return *x.AccountCode
  1437. }
  1438. return ""
  1439. }
  1440. func (x *T2BBankCancelSignReq) GetCusBankID() string {
  1441. if x != nil && x.CusBankID != nil {
  1442. return *x.CusBankID
  1443. }
  1444. return ""
  1445. }
  1446. func (x *T2BBankCancelSignReq) GetIsForce() int32 {
  1447. if x != nil && x.IsForce != nil {
  1448. return *x.IsForce
  1449. }
  1450. return 0
  1451. }
  1452. func (x *T2BBankCancelSignReq) GetCurrency() string {
  1453. if x != nil && x.Currency != nil {
  1454. return *x.Currency
  1455. }
  1456. return ""
  1457. }
  1458. func (x *T2BBankCancelSignReq) GetTradeDate() string {
  1459. if x != nil && x.TradeDate != nil {
  1460. return *x.TradeDate
  1461. }
  1462. return ""
  1463. }
  1464. func (x *T2BBankCancelSignReq) GetExchTicket() string {
  1465. if x != nil && x.ExchTicket != nil {
  1466. return *x.ExchTicket
  1467. }
  1468. return ""
  1469. }
  1470. func (x *T2BBankCancelSignReq) GetBankChildAcc() string {
  1471. if x != nil && x.BankChildAcc != nil {
  1472. return *x.BankChildAcc
  1473. }
  1474. return ""
  1475. }
  1476. func (x *T2BBankCancelSignReq) GetBankChildAccName() string {
  1477. if x != nil && x.BankChildAccName != nil {
  1478. return *x.BankChildAccName
  1479. }
  1480. return ""
  1481. }
  1482. // 解约应答
  1483. type T2BBankCancelSignRsp struct {
  1484. state protoimpl.MessageState
  1485. sizeCache protoimpl.SizeCache
  1486. unknownFields protoimpl.UnknownFields
  1487. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  1488. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  1489. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  1490. ExtOperatorID *uint64 `protobuf:"varint,4,opt,name=ExtOperatorID" json:"ExtOperatorID,omitempty"` // 外部操作流水号
  1491. AccountCode *string `protobuf:"bytes,5,opt,name=AccountCode" json:"AccountCode,omitempty"` // 账户
  1492. NetAddr *string `protobuf:"bytes,6,opt,name=NetAddr" json:"NetAddr,omitempty"` // 网络地址(当这里有网址时,应自动跳转网页)
  1493. Status *int32 `protobuf:"varint,7,opt,name=Status" json:"Status,omitempty"` // 状态(0成功,其他数值参考银行服务的错误码)
  1494. ExchTicket *string `protobuf:"bytes,8,req,name=ExchTicket" json:"ExchTicket,omitempty"` // 交易所流水号
  1495. ExchId *string `protobuf:"bytes,9,opt,name=ExchId" json:"ExchId,omitempty"` // 交易所编号
  1496. TradeDate *string `protobuf:"bytes,10,opt,name=TradeDate" json:"TradeDate,omitempty"` // 交易所业务日期
  1497. CenterTicket *string `protobuf:"bytes,11,opt,name=CenterTicket" json:"CenterTicket,omitempty"` // 中心流水号
  1498. CenterErrCode *string `protobuf:"bytes,12,opt,name=CenterErrCode" json:"CenterErrCode,omitempty"` // 返回码
  1499. CenterErrMsg *string `protobuf:"bytes,13,opt,name=CenterErrMsg" json:"CenterErrMsg,omitempty"` // 返回结果说明
  1500. }
  1501. func (x *T2BBankCancelSignRsp) Reset() {
  1502. *x = T2BBankCancelSignRsp{}
  1503. if protoimpl.UnsafeEnabled {
  1504. mi := &file_mtp2_proto_msgTypes[16]
  1505. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1506. ms.StoreMessageInfo(mi)
  1507. }
  1508. }
  1509. func (x *T2BBankCancelSignRsp) String() string {
  1510. return protoimpl.X.MessageStringOf(x)
  1511. }
  1512. func (*T2BBankCancelSignRsp) ProtoMessage() {}
  1513. func (x *T2BBankCancelSignRsp) ProtoReflect() protoreflect.Message {
  1514. mi := &file_mtp2_proto_msgTypes[16]
  1515. if protoimpl.UnsafeEnabled && x != nil {
  1516. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1517. if ms.LoadMessageInfo() == nil {
  1518. ms.StoreMessageInfo(mi)
  1519. }
  1520. return ms
  1521. }
  1522. return mi.MessageOf(x)
  1523. }
  1524. // Deprecated: Use T2BBankCancelSignRsp.ProtoReflect.Descriptor instead.
  1525. func (*T2BBankCancelSignRsp) Descriptor() ([]byte, []int) {
  1526. return file_mtp2_proto_rawDescGZIP(), []int{16}
  1527. }
  1528. func (x *T2BBankCancelSignRsp) GetHeader() *MessageHead {
  1529. if x != nil {
  1530. return x.Header
  1531. }
  1532. return nil
  1533. }
  1534. func (x *T2BBankCancelSignRsp) GetRetCode() int32 {
  1535. if x != nil && x.RetCode != nil {
  1536. return *x.RetCode
  1537. }
  1538. return 0
  1539. }
  1540. func (x *T2BBankCancelSignRsp) GetRetDesc() string {
  1541. if x != nil && x.RetDesc != nil {
  1542. return *x.RetDesc
  1543. }
  1544. return ""
  1545. }
  1546. func (x *T2BBankCancelSignRsp) GetExtOperatorID() uint64 {
  1547. if x != nil && x.ExtOperatorID != nil {
  1548. return *x.ExtOperatorID
  1549. }
  1550. return 0
  1551. }
  1552. func (x *T2BBankCancelSignRsp) GetAccountCode() string {
  1553. if x != nil && x.AccountCode != nil {
  1554. return *x.AccountCode
  1555. }
  1556. return ""
  1557. }
  1558. func (x *T2BBankCancelSignRsp) GetNetAddr() string {
  1559. if x != nil && x.NetAddr != nil {
  1560. return *x.NetAddr
  1561. }
  1562. return ""
  1563. }
  1564. func (x *T2BBankCancelSignRsp) GetStatus() int32 {
  1565. if x != nil && x.Status != nil {
  1566. return *x.Status
  1567. }
  1568. return 0
  1569. }
  1570. func (x *T2BBankCancelSignRsp) GetExchTicket() string {
  1571. if x != nil && x.ExchTicket != nil {
  1572. return *x.ExchTicket
  1573. }
  1574. return ""
  1575. }
  1576. func (x *T2BBankCancelSignRsp) GetExchId() string {
  1577. if x != nil && x.ExchId != nil {
  1578. return *x.ExchId
  1579. }
  1580. return ""
  1581. }
  1582. func (x *T2BBankCancelSignRsp) GetTradeDate() string {
  1583. if x != nil && x.TradeDate != nil {
  1584. return *x.TradeDate
  1585. }
  1586. return ""
  1587. }
  1588. func (x *T2BBankCancelSignRsp) GetCenterTicket() string {
  1589. if x != nil && x.CenterTicket != nil {
  1590. return *x.CenterTicket
  1591. }
  1592. return ""
  1593. }
  1594. func (x *T2BBankCancelSignRsp) GetCenterErrCode() string {
  1595. if x != nil && x.CenterErrCode != nil {
  1596. return *x.CenterErrCode
  1597. }
  1598. return ""
  1599. }
  1600. func (x *T2BBankCancelSignRsp) GetCenterErrMsg() string {
  1601. if x != nil && x.CenterErrMsg != nil {
  1602. return *x.CenterErrMsg
  1603. }
  1604. return ""
  1605. }
  1606. // 出金请求
  1607. type T2BBankWithdrawReq struct {
  1608. state protoimpl.MessageState
  1609. sizeCache protoimpl.SizeCache
  1610. unknownFields protoimpl.UnknownFields
  1611. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  1612. ExtOperatorID *uint64 `protobuf:"varint,2,req,name=ExtOperatorID" json:"ExtOperatorID,omitempty"` // 外部操作流水号
  1613. ExchId *string `protobuf:"bytes,3,opt,name=ExchId" json:"ExchId,omitempty"` // 交易所编号
  1614. AccountCode *string `protobuf:"bytes,4,req,name=AccountCode" json:"AccountCode,omitempty"` // 资金账户
  1615. CusBankID *string `protobuf:"bytes,5,req,name=CusBankID" json:"CusBankID,omitempty"` // 托管银行编号
  1616. Currency *string `protobuf:"bytes,6,req,name=Currency" json:"Currency,omitempty"` // 币种
  1617. AccountType *int32 `protobuf:"varint,7,opt,name=AccountType" json:"AccountType,omitempty"` // 账户类型
  1618. BankChildAccount *string `protobuf:"bytes,8,opt,name=BankChildAccount" json:"BankChildAccount,omitempty"` // 银行子账号
  1619. BankChildAccountName *string `protobuf:"bytes,9,opt,name=BankChildAccountName" json:"BankChildAccountName,omitempty"` // 银行子账号名
  1620. OpenCardBankId *string `protobuf:"bytes,10,opt,name=OpenCardBankId" json:"OpenCardBankId,omitempty"` // 银行卡行号
  1621. BankAccoutNum *string `protobuf:"bytes,11,opt,name=BankAccoutNum" json:"BankAccoutNum,omitempty"` // 银行卡号
  1622. BankAccoutName *string `protobuf:"bytes,12,opt,name=BankAccoutName" json:"BankAccoutName,omitempty"` // 银行卡户名
  1623. Amount *float64 `protobuf:"fixed64,13,req,name=Amount" json:"Amount,omitempty"` // 出金金额
  1624. AppDateTime *string `protobuf:"bytes,14,opt,name=AppDateTime" json:"AppDateTime,omitempty"` // 申请日期和时间
  1625. OldTaPWD *string `protobuf:"bytes,15,opt,name=OldTaPWD" json:"OldTaPWD,omitempty"` // 资金密码
  1626. Desc *string `protobuf:"bytes,16,opt,name=Desc" json:"Desc,omitempty"` // 备注
  1627. IdentifyCode *string `protobuf:"bytes,17,opt,name=IdentifyCode" json:"IdentifyCode,omitempty"` // 验证码
  1628. BranchBankName *string `protobuf:"bytes,18,opt,name=BranchBankName" json:"BranchBankName,omitempty"` // 收款支行名称
  1629. ExtendInfo *string `protobuf:"bytes,19,opt,name=extend_info,json=extendInfo" json:"extend_info,omitempty"` // 扩展信息(JSON串,参考配置要求进行填充)
  1630. Remark *string `protobuf:"bytes,20,opt,name=Remark" json:"Remark,omitempty"` // 备注
  1631. ExchTicket *string `protobuf:"bytes,21,opt,name=ExchTicket" json:"ExchTicket,omitempty"` // 交易所流水号
  1632. }
  1633. func (x *T2BBankWithdrawReq) Reset() {
  1634. *x = T2BBankWithdrawReq{}
  1635. if protoimpl.UnsafeEnabled {
  1636. mi := &file_mtp2_proto_msgTypes[17]
  1637. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1638. ms.StoreMessageInfo(mi)
  1639. }
  1640. }
  1641. func (x *T2BBankWithdrawReq) String() string {
  1642. return protoimpl.X.MessageStringOf(x)
  1643. }
  1644. func (*T2BBankWithdrawReq) ProtoMessage() {}
  1645. func (x *T2BBankWithdrawReq) ProtoReflect() protoreflect.Message {
  1646. mi := &file_mtp2_proto_msgTypes[17]
  1647. if protoimpl.UnsafeEnabled && x != nil {
  1648. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1649. if ms.LoadMessageInfo() == nil {
  1650. ms.StoreMessageInfo(mi)
  1651. }
  1652. return ms
  1653. }
  1654. return mi.MessageOf(x)
  1655. }
  1656. // Deprecated: Use T2BBankWithdrawReq.ProtoReflect.Descriptor instead.
  1657. func (*T2BBankWithdrawReq) Descriptor() ([]byte, []int) {
  1658. return file_mtp2_proto_rawDescGZIP(), []int{17}
  1659. }
  1660. func (x *T2BBankWithdrawReq) GetHeader() *MessageHead {
  1661. if x != nil {
  1662. return x.Header
  1663. }
  1664. return nil
  1665. }
  1666. func (x *T2BBankWithdrawReq) GetExtOperatorID() uint64 {
  1667. if x != nil && x.ExtOperatorID != nil {
  1668. return *x.ExtOperatorID
  1669. }
  1670. return 0
  1671. }
  1672. func (x *T2BBankWithdrawReq) GetExchId() string {
  1673. if x != nil && x.ExchId != nil {
  1674. return *x.ExchId
  1675. }
  1676. return ""
  1677. }
  1678. func (x *T2BBankWithdrawReq) GetAccountCode() string {
  1679. if x != nil && x.AccountCode != nil {
  1680. return *x.AccountCode
  1681. }
  1682. return ""
  1683. }
  1684. func (x *T2BBankWithdrawReq) GetCusBankID() string {
  1685. if x != nil && x.CusBankID != nil {
  1686. return *x.CusBankID
  1687. }
  1688. return ""
  1689. }
  1690. func (x *T2BBankWithdrawReq) GetCurrency() string {
  1691. if x != nil && x.Currency != nil {
  1692. return *x.Currency
  1693. }
  1694. return ""
  1695. }
  1696. func (x *T2BBankWithdrawReq) GetAccountType() int32 {
  1697. if x != nil && x.AccountType != nil {
  1698. return *x.AccountType
  1699. }
  1700. return 0
  1701. }
  1702. func (x *T2BBankWithdrawReq) GetBankChildAccount() string {
  1703. if x != nil && x.BankChildAccount != nil {
  1704. return *x.BankChildAccount
  1705. }
  1706. return ""
  1707. }
  1708. func (x *T2BBankWithdrawReq) GetBankChildAccountName() string {
  1709. if x != nil && x.BankChildAccountName != nil {
  1710. return *x.BankChildAccountName
  1711. }
  1712. return ""
  1713. }
  1714. func (x *T2BBankWithdrawReq) GetOpenCardBankId() string {
  1715. if x != nil && x.OpenCardBankId != nil {
  1716. return *x.OpenCardBankId
  1717. }
  1718. return ""
  1719. }
  1720. func (x *T2BBankWithdrawReq) GetBankAccoutNum() string {
  1721. if x != nil && x.BankAccoutNum != nil {
  1722. return *x.BankAccoutNum
  1723. }
  1724. return ""
  1725. }
  1726. func (x *T2BBankWithdrawReq) GetBankAccoutName() string {
  1727. if x != nil && x.BankAccoutName != nil {
  1728. return *x.BankAccoutName
  1729. }
  1730. return ""
  1731. }
  1732. func (x *T2BBankWithdrawReq) GetAmount() float64 {
  1733. if x != nil && x.Amount != nil {
  1734. return *x.Amount
  1735. }
  1736. return 0
  1737. }
  1738. func (x *T2BBankWithdrawReq) GetAppDateTime() string {
  1739. if x != nil && x.AppDateTime != nil {
  1740. return *x.AppDateTime
  1741. }
  1742. return ""
  1743. }
  1744. func (x *T2BBankWithdrawReq) GetOldTaPWD() string {
  1745. if x != nil && x.OldTaPWD != nil {
  1746. return *x.OldTaPWD
  1747. }
  1748. return ""
  1749. }
  1750. func (x *T2BBankWithdrawReq) GetDesc() string {
  1751. if x != nil && x.Desc != nil {
  1752. return *x.Desc
  1753. }
  1754. return ""
  1755. }
  1756. func (x *T2BBankWithdrawReq) GetIdentifyCode() string {
  1757. if x != nil && x.IdentifyCode != nil {
  1758. return *x.IdentifyCode
  1759. }
  1760. return ""
  1761. }
  1762. func (x *T2BBankWithdrawReq) GetBranchBankName() string {
  1763. if x != nil && x.BranchBankName != nil {
  1764. return *x.BranchBankName
  1765. }
  1766. return ""
  1767. }
  1768. func (x *T2BBankWithdrawReq) GetExtendInfo() string {
  1769. if x != nil && x.ExtendInfo != nil {
  1770. return *x.ExtendInfo
  1771. }
  1772. return ""
  1773. }
  1774. func (x *T2BBankWithdrawReq) GetRemark() string {
  1775. if x != nil && x.Remark != nil {
  1776. return *x.Remark
  1777. }
  1778. return ""
  1779. }
  1780. func (x *T2BBankWithdrawReq) GetExchTicket() string {
  1781. if x != nil && x.ExchTicket != nil {
  1782. return *x.ExchTicket
  1783. }
  1784. return ""
  1785. }
  1786. // 出金应答
  1787. type T2BBankWithdrawRsp struct {
  1788. state protoimpl.MessageState
  1789. sizeCache protoimpl.SizeCache
  1790. unknownFields protoimpl.UnknownFields
  1791. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  1792. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  1793. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  1794. ExtOperatorID *uint64 `protobuf:"varint,4,opt,name=ExtOperatorID" json:"ExtOperatorID,omitempty"` // 外部操作流水号
  1795. Status *int32 `protobuf:"varint,5,opt,name=Status" json:"Status,omitempty"` // 状态(0成功,其他数值参考银行服务的错误码)
  1796. ExchTicket *string `protobuf:"bytes,6,req,name=ExchTicket" json:"ExchTicket,omitempty"` // 交易所流水号
  1797. ExchId *string `protobuf:"bytes,7,opt,name=ExchId" json:"ExchId,omitempty"` // 交易所编号
  1798. TradeDate *string `protobuf:"bytes,8,opt,name=TradeDate" json:"TradeDate,omitempty"` // 交易日
  1799. CenterTicket *string `protobuf:"bytes,9,opt,name=CenterTicket" json:"CenterTicket,omitempty"` // 中心流水号
  1800. CenterErrCode *string `protobuf:"bytes,10,opt,name=CenterErrCode" json:"CenterErrCode,omitempty"` // 中心返回码
  1801. CenterErrMsg *string `protobuf:"bytes,11,opt,name=CenterErrMsg" json:"CenterErrMsg,omitempty"` // 中心返回结果说明
  1802. CerterCheckDate *string `protobuf:"bytes,12,opt,name=CerterCheckDate" json:"CerterCheckDate,omitempty"` // 中心对账日期
  1803. NetAddr *string `protobuf:"bytes,13,opt,name=NetAddr" json:"NetAddr,omitempty"` // 网络地址(当这里有网址时,应自动跳转网页)
  1804. }
  1805. func (x *T2BBankWithdrawRsp) Reset() {
  1806. *x = T2BBankWithdrawRsp{}
  1807. if protoimpl.UnsafeEnabled {
  1808. mi := &file_mtp2_proto_msgTypes[18]
  1809. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1810. ms.StoreMessageInfo(mi)
  1811. }
  1812. }
  1813. func (x *T2BBankWithdrawRsp) String() string {
  1814. return protoimpl.X.MessageStringOf(x)
  1815. }
  1816. func (*T2BBankWithdrawRsp) ProtoMessage() {}
  1817. func (x *T2BBankWithdrawRsp) ProtoReflect() protoreflect.Message {
  1818. mi := &file_mtp2_proto_msgTypes[18]
  1819. if protoimpl.UnsafeEnabled && x != nil {
  1820. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1821. if ms.LoadMessageInfo() == nil {
  1822. ms.StoreMessageInfo(mi)
  1823. }
  1824. return ms
  1825. }
  1826. return mi.MessageOf(x)
  1827. }
  1828. // Deprecated: Use T2BBankWithdrawRsp.ProtoReflect.Descriptor instead.
  1829. func (*T2BBankWithdrawRsp) Descriptor() ([]byte, []int) {
  1830. return file_mtp2_proto_rawDescGZIP(), []int{18}
  1831. }
  1832. func (x *T2BBankWithdrawRsp) GetHeader() *MessageHead {
  1833. if x != nil {
  1834. return x.Header
  1835. }
  1836. return nil
  1837. }
  1838. func (x *T2BBankWithdrawRsp) GetRetCode() int32 {
  1839. if x != nil && x.RetCode != nil {
  1840. return *x.RetCode
  1841. }
  1842. return 0
  1843. }
  1844. func (x *T2BBankWithdrawRsp) GetRetDesc() string {
  1845. if x != nil && x.RetDesc != nil {
  1846. return *x.RetDesc
  1847. }
  1848. return ""
  1849. }
  1850. func (x *T2BBankWithdrawRsp) GetExtOperatorID() uint64 {
  1851. if x != nil && x.ExtOperatorID != nil {
  1852. return *x.ExtOperatorID
  1853. }
  1854. return 0
  1855. }
  1856. func (x *T2BBankWithdrawRsp) GetStatus() int32 {
  1857. if x != nil && x.Status != nil {
  1858. return *x.Status
  1859. }
  1860. return 0
  1861. }
  1862. func (x *T2BBankWithdrawRsp) GetExchTicket() string {
  1863. if x != nil && x.ExchTicket != nil {
  1864. return *x.ExchTicket
  1865. }
  1866. return ""
  1867. }
  1868. func (x *T2BBankWithdrawRsp) GetExchId() string {
  1869. if x != nil && x.ExchId != nil {
  1870. return *x.ExchId
  1871. }
  1872. return ""
  1873. }
  1874. func (x *T2BBankWithdrawRsp) GetTradeDate() string {
  1875. if x != nil && x.TradeDate != nil {
  1876. return *x.TradeDate
  1877. }
  1878. return ""
  1879. }
  1880. func (x *T2BBankWithdrawRsp) GetCenterTicket() string {
  1881. if x != nil && x.CenterTicket != nil {
  1882. return *x.CenterTicket
  1883. }
  1884. return ""
  1885. }
  1886. func (x *T2BBankWithdrawRsp) GetCenterErrCode() string {
  1887. if x != nil && x.CenterErrCode != nil {
  1888. return *x.CenterErrCode
  1889. }
  1890. return ""
  1891. }
  1892. func (x *T2BBankWithdrawRsp) GetCenterErrMsg() string {
  1893. if x != nil && x.CenterErrMsg != nil {
  1894. return *x.CenterErrMsg
  1895. }
  1896. return ""
  1897. }
  1898. func (x *T2BBankWithdrawRsp) GetCerterCheckDate() string {
  1899. if x != nil && x.CerterCheckDate != nil {
  1900. return *x.CerterCheckDate
  1901. }
  1902. return ""
  1903. }
  1904. func (x *T2BBankWithdrawRsp) GetNetAddr() string {
  1905. if x != nil && x.NetAddr != nil {
  1906. return *x.NetAddr
  1907. }
  1908. return ""
  1909. }
  1910. // 入金请求
  1911. type T2BBankDepositReq struct {
  1912. state protoimpl.MessageState
  1913. sizeCache protoimpl.SizeCache
  1914. unknownFields protoimpl.UnknownFields
  1915. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  1916. ExtOperatorID *uint64 `protobuf:"varint,2,req,name=ExtOperatorID" json:"ExtOperatorID,omitempty"` // 外部操作流水号
  1917. CusBankID *string `protobuf:"bytes,3,req,name=CusBankID" json:"CusBankID,omitempty"` // 托管银行编号
  1918. ExchId *string `protobuf:"bytes,4,opt,name=ExchId" json:"ExchId,omitempty"` // 交易所编号
  1919. TradeDate *string `protobuf:"bytes,5,opt,name=TradeDate" json:"TradeDate,omitempty"` // 交易日
  1920. ExchTicket *string `protobuf:"bytes,6,opt,name=ExchTicket" json:"ExchTicket,omitempty"` // 交易所流水号
  1921. AccountCode *string `protobuf:"bytes,7,req,name=AccountCode" json:"AccountCode,omitempty"` // 资金账户
  1922. BusinessNo *string `protobuf:"bytes,8,opt,name=BusinessNo" json:"BusinessNo,omitempty"` // 银行业务编号
  1923. BankChildAccount *string `protobuf:"bytes,9,opt,name=BankChildAccount" json:"BankChildAccount,omitempty"` // 银行子账号
  1924. BankChildAccountName *string `protobuf:"bytes,10,opt,name=BankChildAccountName" json:"BankChildAccountName,omitempty"` // 银行子账号名
  1925. OldTaPWD *string `protobuf:"bytes,11,opt,name=OldTaPWD" json:"OldTaPWD,omitempty"` // 资金密码
  1926. Amount *float64 `protobuf:"fixed64,12,req,name=Amount" json:"Amount,omitempty"` // 金额
  1927. Currency *string `protobuf:"bytes,13,req,name=Currency" json:"Currency,omitempty"` // 币种
  1928. Remark *string `protobuf:"bytes,14,opt,name=Remark" json:"Remark,omitempty"` // 备注
  1929. OpenCardBankId *string `protobuf:"bytes,15,opt,name=OpenCardBankId" json:"OpenCardBankId,omitempty"` // 银行卡行号
  1930. BankAccoutNum *string `protobuf:"bytes,16,opt,name=BankAccoutNum" json:"BankAccoutNum,omitempty"` // 银行卡号
  1931. BankAccoutName *string `protobuf:"bytes,17,opt,name=BankAccoutName" json:"BankAccoutName,omitempty"` // 银行卡户名
  1932. ExtendInfo *string `protobuf:"bytes,18,opt,name=extend_info,json=extendInfo" json:"extend_info,omitempty"` // 扩展信息(JSON串,参考配置要求进行填充)
  1933. }
  1934. func (x *T2BBankDepositReq) Reset() {
  1935. *x = T2BBankDepositReq{}
  1936. if protoimpl.UnsafeEnabled {
  1937. mi := &file_mtp2_proto_msgTypes[19]
  1938. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1939. ms.StoreMessageInfo(mi)
  1940. }
  1941. }
  1942. func (x *T2BBankDepositReq) String() string {
  1943. return protoimpl.X.MessageStringOf(x)
  1944. }
  1945. func (*T2BBankDepositReq) ProtoMessage() {}
  1946. func (x *T2BBankDepositReq) ProtoReflect() protoreflect.Message {
  1947. mi := &file_mtp2_proto_msgTypes[19]
  1948. if protoimpl.UnsafeEnabled && x != nil {
  1949. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1950. if ms.LoadMessageInfo() == nil {
  1951. ms.StoreMessageInfo(mi)
  1952. }
  1953. return ms
  1954. }
  1955. return mi.MessageOf(x)
  1956. }
  1957. // Deprecated: Use T2BBankDepositReq.ProtoReflect.Descriptor instead.
  1958. func (*T2BBankDepositReq) Descriptor() ([]byte, []int) {
  1959. return file_mtp2_proto_rawDescGZIP(), []int{19}
  1960. }
  1961. func (x *T2BBankDepositReq) GetHeader() *MessageHead {
  1962. if x != nil {
  1963. return x.Header
  1964. }
  1965. return nil
  1966. }
  1967. func (x *T2BBankDepositReq) GetExtOperatorID() uint64 {
  1968. if x != nil && x.ExtOperatorID != nil {
  1969. return *x.ExtOperatorID
  1970. }
  1971. return 0
  1972. }
  1973. func (x *T2BBankDepositReq) GetCusBankID() string {
  1974. if x != nil && x.CusBankID != nil {
  1975. return *x.CusBankID
  1976. }
  1977. return ""
  1978. }
  1979. func (x *T2BBankDepositReq) GetExchId() string {
  1980. if x != nil && x.ExchId != nil {
  1981. return *x.ExchId
  1982. }
  1983. return ""
  1984. }
  1985. func (x *T2BBankDepositReq) GetTradeDate() string {
  1986. if x != nil && x.TradeDate != nil {
  1987. return *x.TradeDate
  1988. }
  1989. return ""
  1990. }
  1991. func (x *T2BBankDepositReq) GetExchTicket() string {
  1992. if x != nil && x.ExchTicket != nil {
  1993. return *x.ExchTicket
  1994. }
  1995. return ""
  1996. }
  1997. func (x *T2BBankDepositReq) GetAccountCode() string {
  1998. if x != nil && x.AccountCode != nil {
  1999. return *x.AccountCode
  2000. }
  2001. return ""
  2002. }
  2003. func (x *T2BBankDepositReq) GetBusinessNo() string {
  2004. if x != nil && x.BusinessNo != nil {
  2005. return *x.BusinessNo
  2006. }
  2007. return ""
  2008. }
  2009. func (x *T2BBankDepositReq) GetBankChildAccount() string {
  2010. if x != nil && x.BankChildAccount != nil {
  2011. return *x.BankChildAccount
  2012. }
  2013. return ""
  2014. }
  2015. func (x *T2BBankDepositReq) GetBankChildAccountName() string {
  2016. if x != nil && x.BankChildAccountName != nil {
  2017. return *x.BankChildAccountName
  2018. }
  2019. return ""
  2020. }
  2021. func (x *T2BBankDepositReq) GetOldTaPWD() string {
  2022. if x != nil && x.OldTaPWD != nil {
  2023. return *x.OldTaPWD
  2024. }
  2025. return ""
  2026. }
  2027. func (x *T2BBankDepositReq) GetAmount() float64 {
  2028. if x != nil && x.Amount != nil {
  2029. return *x.Amount
  2030. }
  2031. return 0
  2032. }
  2033. func (x *T2BBankDepositReq) GetCurrency() string {
  2034. if x != nil && x.Currency != nil {
  2035. return *x.Currency
  2036. }
  2037. return ""
  2038. }
  2039. func (x *T2BBankDepositReq) GetRemark() string {
  2040. if x != nil && x.Remark != nil {
  2041. return *x.Remark
  2042. }
  2043. return ""
  2044. }
  2045. func (x *T2BBankDepositReq) GetOpenCardBankId() string {
  2046. if x != nil && x.OpenCardBankId != nil {
  2047. return *x.OpenCardBankId
  2048. }
  2049. return ""
  2050. }
  2051. func (x *T2BBankDepositReq) GetBankAccoutNum() string {
  2052. if x != nil && x.BankAccoutNum != nil {
  2053. return *x.BankAccoutNum
  2054. }
  2055. return ""
  2056. }
  2057. func (x *T2BBankDepositReq) GetBankAccoutName() string {
  2058. if x != nil && x.BankAccoutName != nil {
  2059. return *x.BankAccoutName
  2060. }
  2061. return ""
  2062. }
  2063. func (x *T2BBankDepositReq) GetExtendInfo() string {
  2064. if x != nil && x.ExtendInfo != nil {
  2065. return *x.ExtendInfo
  2066. }
  2067. return ""
  2068. }
  2069. // 入金应答
  2070. type T2BBankDepositRsp struct {
  2071. state protoimpl.MessageState
  2072. sizeCache protoimpl.SizeCache
  2073. unknownFields protoimpl.UnknownFields
  2074. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  2075. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  2076. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  2077. ExtOperatorID *uint64 `protobuf:"varint,4,opt,name=ExtOperatorID" json:"ExtOperatorID,omitempty"` // 外部操作流水号
  2078. Status *int32 `protobuf:"varint,5,opt,name=Status" json:"Status,omitempty"` // 状态(0成功,其他数值参考银行服务的错误码)
  2079. ExchTicket *string `protobuf:"bytes,6,req,name=ExchTicket" json:"ExchTicket,omitempty"` // 交易所流水号
  2080. ExchId *string `protobuf:"bytes,7,opt,name=ExchId" json:"ExchId,omitempty"` // 交易所编号
  2081. TradeDate *string `protobuf:"bytes,8,opt,name=TradeDate" json:"TradeDate,omitempty"` // 交易日
  2082. CenterTicket *string `protobuf:"bytes,9,opt,name=CenterTicket" json:"CenterTicket,omitempty"` // 中心流水号
  2083. CenterErrCode *string `protobuf:"bytes,10,opt,name=CenterErrCode" json:"CenterErrCode,omitempty"` // 中心返回码
  2084. CenterErrMsg *string `protobuf:"bytes,11,opt,name=CenterErrMsg" json:"CenterErrMsg,omitempty"` // 中心返回结果说明
  2085. CerterCheckDate *string `protobuf:"bytes,12,opt,name=CerterCheckDate" json:"CerterCheckDate,omitempty"` // 中心对账日期
  2086. NetAddr *string `protobuf:"bytes,13,opt,name=NetAddr" json:"NetAddr,omitempty"` // 网络地址(当这里有网址时,应自动跳转网页)
  2087. }
  2088. func (x *T2BBankDepositRsp) Reset() {
  2089. *x = T2BBankDepositRsp{}
  2090. if protoimpl.UnsafeEnabled {
  2091. mi := &file_mtp2_proto_msgTypes[20]
  2092. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2093. ms.StoreMessageInfo(mi)
  2094. }
  2095. }
  2096. func (x *T2BBankDepositRsp) String() string {
  2097. return protoimpl.X.MessageStringOf(x)
  2098. }
  2099. func (*T2BBankDepositRsp) ProtoMessage() {}
  2100. func (x *T2BBankDepositRsp) ProtoReflect() protoreflect.Message {
  2101. mi := &file_mtp2_proto_msgTypes[20]
  2102. if protoimpl.UnsafeEnabled && x != nil {
  2103. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2104. if ms.LoadMessageInfo() == nil {
  2105. ms.StoreMessageInfo(mi)
  2106. }
  2107. return ms
  2108. }
  2109. return mi.MessageOf(x)
  2110. }
  2111. // Deprecated: Use T2BBankDepositRsp.ProtoReflect.Descriptor instead.
  2112. func (*T2BBankDepositRsp) Descriptor() ([]byte, []int) {
  2113. return file_mtp2_proto_rawDescGZIP(), []int{20}
  2114. }
  2115. func (x *T2BBankDepositRsp) GetHeader() *MessageHead {
  2116. if x != nil {
  2117. return x.Header
  2118. }
  2119. return nil
  2120. }
  2121. func (x *T2BBankDepositRsp) GetRetCode() int32 {
  2122. if x != nil && x.RetCode != nil {
  2123. return *x.RetCode
  2124. }
  2125. return 0
  2126. }
  2127. func (x *T2BBankDepositRsp) GetRetDesc() string {
  2128. if x != nil && x.RetDesc != nil {
  2129. return *x.RetDesc
  2130. }
  2131. return ""
  2132. }
  2133. func (x *T2BBankDepositRsp) GetExtOperatorID() uint64 {
  2134. if x != nil && x.ExtOperatorID != nil {
  2135. return *x.ExtOperatorID
  2136. }
  2137. return 0
  2138. }
  2139. func (x *T2BBankDepositRsp) GetStatus() int32 {
  2140. if x != nil && x.Status != nil {
  2141. return *x.Status
  2142. }
  2143. return 0
  2144. }
  2145. func (x *T2BBankDepositRsp) GetExchTicket() string {
  2146. if x != nil && x.ExchTicket != nil {
  2147. return *x.ExchTicket
  2148. }
  2149. return ""
  2150. }
  2151. func (x *T2BBankDepositRsp) GetExchId() string {
  2152. if x != nil && x.ExchId != nil {
  2153. return *x.ExchId
  2154. }
  2155. return ""
  2156. }
  2157. func (x *T2BBankDepositRsp) GetTradeDate() string {
  2158. if x != nil && x.TradeDate != nil {
  2159. return *x.TradeDate
  2160. }
  2161. return ""
  2162. }
  2163. func (x *T2BBankDepositRsp) GetCenterTicket() string {
  2164. if x != nil && x.CenterTicket != nil {
  2165. return *x.CenterTicket
  2166. }
  2167. return ""
  2168. }
  2169. func (x *T2BBankDepositRsp) GetCenterErrCode() string {
  2170. if x != nil && x.CenterErrCode != nil {
  2171. return *x.CenterErrCode
  2172. }
  2173. return ""
  2174. }
  2175. func (x *T2BBankDepositRsp) GetCenterErrMsg() string {
  2176. if x != nil && x.CenterErrMsg != nil {
  2177. return *x.CenterErrMsg
  2178. }
  2179. return ""
  2180. }
  2181. func (x *T2BBankDepositRsp) GetCerterCheckDate() string {
  2182. if x != nil && x.CerterCheckDate != nil {
  2183. return *x.CerterCheckDate
  2184. }
  2185. return ""
  2186. }
  2187. func (x *T2BBankDepositRsp) GetNetAddr() string {
  2188. if x != nil && x.NetAddr != nil {
  2189. return *x.NetAddr
  2190. }
  2191. return ""
  2192. }
  2193. // 仓单服务公共协议结构
  2194. type WRCommon struct {
  2195. state protoimpl.MessageState
  2196. sizeCache protoimpl.SizeCache
  2197. unknownFields protoimpl.UnknownFields
  2198. UserID *uint64 `protobuf:"varint,1,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  2199. RelatedOrderID *uint64 `protobuf:"varint,2,opt,name=RelatedOrderID" json:"RelatedOrderID,omitempty"` // 关联ID
  2200. BusinessID *uint64 `protobuf:"varint,3,opt,name=BusinessID" json:"BusinessID,omitempty"` // 业务ID
  2201. TradeID *uint64 `protobuf:"varint,4,opt,name=TradeID" json:"TradeID,omitempty"` // 成交ID
  2202. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // 账号ID
  2203. }
  2204. func (x *WRCommon) Reset() {
  2205. *x = WRCommon{}
  2206. if protoimpl.UnsafeEnabled {
  2207. mi := &file_mtp2_proto_msgTypes[21]
  2208. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2209. ms.StoreMessageInfo(mi)
  2210. }
  2211. }
  2212. func (x *WRCommon) String() string {
  2213. return protoimpl.X.MessageStringOf(x)
  2214. }
  2215. func (*WRCommon) ProtoMessage() {}
  2216. func (x *WRCommon) ProtoReflect() protoreflect.Message {
  2217. mi := &file_mtp2_proto_msgTypes[21]
  2218. if protoimpl.UnsafeEnabled && x != nil {
  2219. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2220. if ms.LoadMessageInfo() == nil {
  2221. ms.StoreMessageInfo(mi)
  2222. }
  2223. return ms
  2224. }
  2225. return mi.MessageOf(x)
  2226. }
  2227. // Deprecated: Use WRCommon.ProtoReflect.Descriptor instead.
  2228. func (*WRCommon) Descriptor() ([]byte, []int) {
  2229. return file_mtp2_proto_rawDescGZIP(), []int{21}
  2230. }
  2231. func (x *WRCommon) GetUserID() uint64 {
  2232. if x != nil && x.UserID != nil {
  2233. return *x.UserID
  2234. }
  2235. return 0
  2236. }
  2237. func (x *WRCommon) GetRelatedOrderID() uint64 {
  2238. if x != nil && x.RelatedOrderID != nil {
  2239. return *x.RelatedOrderID
  2240. }
  2241. return 0
  2242. }
  2243. func (x *WRCommon) GetBusinessID() uint64 {
  2244. if x != nil && x.BusinessID != nil {
  2245. return *x.BusinessID
  2246. }
  2247. return 0
  2248. }
  2249. func (x *WRCommon) GetTradeID() uint64 {
  2250. if x != nil && x.TradeID != nil {
  2251. return *x.TradeID
  2252. }
  2253. return 0
  2254. }
  2255. func (x *WRCommon) GetAccountID() uint64 {
  2256. if x != nil && x.AccountID != nil {
  2257. return *x.AccountID
  2258. }
  2259. return 0
  2260. }
  2261. // 仓库申请请求 0 29 141
  2262. type WarehouseApplyReq struct {
  2263. state protoimpl.MessageState
  2264. sizeCache protoimpl.SizeCache
  2265. unknownFields protoimpl.UnknownFields
  2266. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // MessageHead
  2267. Userid *uint64 `protobuf:"varint,2,opt,name=userid" json:"userid,omitempty"` // uint64 用户ID
  2268. Type *int32 `protobuf:"varint,3,opt,name=type" json:"type,omitempty"` // int32 类型 1 新增 2 修改
  2269. Warehouseid *uint64 `protobuf:"varint,4,opt,name=warehouseid" json:"warehouseid,omitempty"` // uint64 仓库ID
  2270. Warehousecode *string `protobuf:"bytes,5,opt,name=warehousecode" json:"warehousecode,omitempty"` // string 仓库代码
  2271. Warehousename *string `protobuf:"bytes,6,opt,name=warehousename" json:"warehousename,omitempty"` // string 仓库名称
  2272. Warehousetype *int32 `protobuf:"varint,7,opt,name=warehousetype" json:"warehousetype,omitempty"` // int32 仓库类型 - 1 厂库 2 自有库 3 合作库
  2273. Provinceid *uint64 `protobuf:"varint,8,opt,name=provinceid" json:"provinceid,omitempty"` // uint64 省
  2274. Cityid *uint64 `protobuf:"varint,9,opt,name=cityid" json:"cityid,omitempty"` // uint64 市
  2275. Districtid *int32 `protobuf:"varint,10,opt,name=districtid" json:"districtid,omitempty"` // int32 区
  2276. Address *string `protobuf:"bytes,11,opt,name=address" json:"address,omitempty"` // string 详细地址
  2277. Contactname *string `protobuf:"bytes,12,opt,name=contactname" json:"contactname,omitempty"` // string 联系人
  2278. Contactnum *string `protobuf:"bytes,13,opt,name=contactnum" json:"contactnum,omitempty"` // string 联系电话
  2279. }
  2280. func (x *WarehouseApplyReq) Reset() {
  2281. *x = WarehouseApplyReq{}
  2282. if protoimpl.UnsafeEnabled {
  2283. mi := &file_mtp2_proto_msgTypes[22]
  2284. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2285. ms.StoreMessageInfo(mi)
  2286. }
  2287. }
  2288. func (x *WarehouseApplyReq) String() string {
  2289. return protoimpl.X.MessageStringOf(x)
  2290. }
  2291. func (*WarehouseApplyReq) ProtoMessage() {}
  2292. func (x *WarehouseApplyReq) ProtoReflect() protoreflect.Message {
  2293. mi := &file_mtp2_proto_msgTypes[22]
  2294. if protoimpl.UnsafeEnabled && x != nil {
  2295. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2296. if ms.LoadMessageInfo() == nil {
  2297. ms.StoreMessageInfo(mi)
  2298. }
  2299. return ms
  2300. }
  2301. return mi.MessageOf(x)
  2302. }
  2303. // Deprecated: Use WarehouseApplyReq.ProtoReflect.Descriptor instead.
  2304. func (*WarehouseApplyReq) Descriptor() ([]byte, []int) {
  2305. return file_mtp2_proto_rawDescGZIP(), []int{22}
  2306. }
  2307. func (x *WarehouseApplyReq) GetHeader() *MessageHead {
  2308. if x != nil {
  2309. return x.Header
  2310. }
  2311. return nil
  2312. }
  2313. func (x *WarehouseApplyReq) GetUserid() uint64 {
  2314. if x != nil && x.Userid != nil {
  2315. return *x.Userid
  2316. }
  2317. return 0
  2318. }
  2319. func (x *WarehouseApplyReq) GetType() int32 {
  2320. if x != nil && x.Type != nil {
  2321. return *x.Type
  2322. }
  2323. return 0
  2324. }
  2325. func (x *WarehouseApplyReq) GetWarehouseid() uint64 {
  2326. if x != nil && x.Warehouseid != nil {
  2327. return *x.Warehouseid
  2328. }
  2329. return 0
  2330. }
  2331. func (x *WarehouseApplyReq) GetWarehousecode() string {
  2332. if x != nil && x.Warehousecode != nil {
  2333. return *x.Warehousecode
  2334. }
  2335. return ""
  2336. }
  2337. func (x *WarehouseApplyReq) GetWarehousename() string {
  2338. if x != nil && x.Warehousename != nil {
  2339. return *x.Warehousename
  2340. }
  2341. return ""
  2342. }
  2343. func (x *WarehouseApplyReq) GetWarehousetype() int32 {
  2344. if x != nil && x.Warehousetype != nil {
  2345. return *x.Warehousetype
  2346. }
  2347. return 0
  2348. }
  2349. func (x *WarehouseApplyReq) GetProvinceid() uint64 {
  2350. if x != nil && x.Provinceid != nil {
  2351. return *x.Provinceid
  2352. }
  2353. return 0
  2354. }
  2355. func (x *WarehouseApplyReq) GetCityid() uint64 {
  2356. if x != nil && x.Cityid != nil {
  2357. return *x.Cityid
  2358. }
  2359. return 0
  2360. }
  2361. func (x *WarehouseApplyReq) GetDistrictid() int32 {
  2362. if x != nil && x.Districtid != nil {
  2363. return *x.Districtid
  2364. }
  2365. return 0
  2366. }
  2367. func (x *WarehouseApplyReq) GetAddress() string {
  2368. if x != nil && x.Address != nil {
  2369. return *x.Address
  2370. }
  2371. return ""
  2372. }
  2373. func (x *WarehouseApplyReq) GetContactname() string {
  2374. if x != nil && x.Contactname != nil {
  2375. return *x.Contactname
  2376. }
  2377. return ""
  2378. }
  2379. func (x *WarehouseApplyReq) GetContactnum() string {
  2380. if x != nil && x.Contactnum != nil {
  2381. return *x.Contactnum
  2382. }
  2383. return ""
  2384. }
  2385. // 仓库申请请求 0 29 142
  2386. type WarehouseApplyRsp struct {
  2387. state protoimpl.MessageState
  2388. sizeCache protoimpl.SizeCache
  2389. unknownFields protoimpl.UnknownFields
  2390. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // MessageHead 消息头
  2391. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // int32 返回码
  2392. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // string 描述信息
  2393. Warehouseid *uint64 `protobuf:"varint,4,opt,name=warehouseid" json:"warehouseid,omitempty"` // uint64 仓库ID
  2394. }
  2395. func (x *WarehouseApplyRsp) Reset() {
  2396. *x = WarehouseApplyRsp{}
  2397. if protoimpl.UnsafeEnabled {
  2398. mi := &file_mtp2_proto_msgTypes[23]
  2399. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2400. ms.StoreMessageInfo(mi)
  2401. }
  2402. }
  2403. func (x *WarehouseApplyRsp) String() string {
  2404. return protoimpl.X.MessageStringOf(x)
  2405. }
  2406. func (*WarehouseApplyRsp) ProtoMessage() {}
  2407. func (x *WarehouseApplyRsp) ProtoReflect() protoreflect.Message {
  2408. mi := &file_mtp2_proto_msgTypes[23]
  2409. if protoimpl.UnsafeEnabled && x != nil {
  2410. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2411. if ms.LoadMessageInfo() == nil {
  2412. ms.StoreMessageInfo(mi)
  2413. }
  2414. return ms
  2415. }
  2416. return mi.MessageOf(x)
  2417. }
  2418. // Deprecated: Use WarehouseApplyRsp.ProtoReflect.Descriptor instead.
  2419. func (*WarehouseApplyRsp) Descriptor() ([]byte, []int) {
  2420. return file_mtp2_proto_rawDescGZIP(), []int{23}
  2421. }
  2422. func (x *WarehouseApplyRsp) GetHeader() *MessageHead {
  2423. if x != nil {
  2424. return x.Header
  2425. }
  2426. return nil
  2427. }
  2428. func (x *WarehouseApplyRsp) GetRetCode() int32 {
  2429. if x != nil && x.RetCode != nil {
  2430. return *x.RetCode
  2431. }
  2432. return 0
  2433. }
  2434. func (x *WarehouseApplyRsp) GetRetDesc() string {
  2435. if x != nil && x.RetDesc != nil {
  2436. return *x.RetDesc
  2437. }
  2438. return ""
  2439. }
  2440. func (x *WarehouseApplyRsp) GetWarehouseid() uint64 {
  2441. if x != nil && x.Warehouseid != nil {
  2442. return *x.Warehouseid
  2443. }
  2444. return 0
  2445. }
  2446. // 违约申请请求 0 20 9
  2447. type PerformanceContractedApplyReq struct {
  2448. state protoimpl.MessageState
  2449. sizeCache protoimpl.SizeCache
  2450. unknownFields protoimpl.UnknownFields
  2451. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // MessageHead
  2452. PerformancePlanID *uint64 `protobuf:"varint,2,opt,name=PerformancePlanID" json:"PerformancePlanID,omitempty"` // uint64 履约计划ID
  2453. BreachType *uint32 `protobuf:"varint,3,opt,name=BreachType" json:"BreachType,omitempty"` // uint32 违约方类型
  2454. Applicant *uint64 `protobuf:"varint,4,opt,name=Applicant" json:"Applicant,omitempty"` // uint64 违约申请人
  2455. ApplyRemark *string `protobuf:"bytes,5,opt,name=ApplyRemark" json:"ApplyRemark,omitempty"` // string 申请备注
  2456. Attachment *string `protobuf:"bytes,6,opt,name=Attachment" json:"Attachment,omitempty"` // string 附件
  2457. }
  2458. func (x *PerformanceContractedApplyReq) Reset() {
  2459. *x = PerformanceContractedApplyReq{}
  2460. if protoimpl.UnsafeEnabled {
  2461. mi := &file_mtp2_proto_msgTypes[24]
  2462. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2463. ms.StoreMessageInfo(mi)
  2464. }
  2465. }
  2466. func (x *PerformanceContractedApplyReq) String() string {
  2467. return protoimpl.X.MessageStringOf(x)
  2468. }
  2469. func (*PerformanceContractedApplyReq) ProtoMessage() {}
  2470. func (x *PerformanceContractedApplyReq) ProtoReflect() protoreflect.Message {
  2471. mi := &file_mtp2_proto_msgTypes[24]
  2472. if protoimpl.UnsafeEnabled && x != nil {
  2473. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2474. if ms.LoadMessageInfo() == nil {
  2475. ms.StoreMessageInfo(mi)
  2476. }
  2477. return ms
  2478. }
  2479. return mi.MessageOf(x)
  2480. }
  2481. // Deprecated: Use PerformanceContractedApplyReq.ProtoReflect.Descriptor instead.
  2482. func (*PerformanceContractedApplyReq) Descriptor() ([]byte, []int) {
  2483. return file_mtp2_proto_rawDescGZIP(), []int{24}
  2484. }
  2485. func (x *PerformanceContractedApplyReq) GetHeader() *MessageHead {
  2486. if x != nil {
  2487. return x.Header
  2488. }
  2489. return nil
  2490. }
  2491. func (x *PerformanceContractedApplyReq) GetPerformancePlanID() uint64 {
  2492. if x != nil && x.PerformancePlanID != nil {
  2493. return *x.PerformancePlanID
  2494. }
  2495. return 0
  2496. }
  2497. func (x *PerformanceContractedApplyReq) GetBreachType() uint32 {
  2498. if x != nil && x.BreachType != nil {
  2499. return *x.BreachType
  2500. }
  2501. return 0
  2502. }
  2503. func (x *PerformanceContractedApplyReq) GetApplicant() uint64 {
  2504. if x != nil && x.Applicant != nil {
  2505. return *x.Applicant
  2506. }
  2507. return 0
  2508. }
  2509. func (x *PerformanceContractedApplyReq) GetApplyRemark() string {
  2510. if x != nil && x.ApplyRemark != nil {
  2511. return *x.ApplyRemark
  2512. }
  2513. return ""
  2514. }
  2515. func (x *PerformanceContractedApplyReq) GetAttachment() string {
  2516. if x != nil && x.Attachment != nil {
  2517. return *x.Attachment
  2518. }
  2519. return ""
  2520. }
  2521. // 违约申请应答 0 20 10
  2522. type PerformanceContractedApplyRsp struct {
  2523. state protoimpl.MessageState
  2524. sizeCache protoimpl.SizeCache
  2525. unknownFields protoimpl.UnknownFields
  2526. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // MessageHead 消息头
  2527. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // int32 返回码
  2528. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // string 描述信息
  2529. PerformancePlanID *uint64 `protobuf:"varint,4,opt,name=PerformancePlanID" json:"PerformancePlanID,omitempty"` // uint64 履约计划ID
  2530. }
  2531. func (x *PerformanceContractedApplyRsp) Reset() {
  2532. *x = PerformanceContractedApplyRsp{}
  2533. if protoimpl.UnsafeEnabled {
  2534. mi := &file_mtp2_proto_msgTypes[25]
  2535. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2536. ms.StoreMessageInfo(mi)
  2537. }
  2538. }
  2539. func (x *PerformanceContractedApplyRsp) String() string {
  2540. return protoimpl.X.MessageStringOf(x)
  2541. }
  2542. func (*PerformanceContractedApplyRsp) ProtoMessage() {}
  2543. func (x *PerformanceContractedApplyRsp) ProtoReflect() protoreflect.Message {
  2544. mi := &file_mtp2_proto_msgTypes[25]
  2545. if protoimpl.UnsafeEnabled && x != nil {
  2546. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2547. if ms.LoadMessageInfo() == nil {
  2548. ms.StoreMessageInfo(mi)
  2549. }
  2550. return ms
  2551. }
  2552. return mi.MessageOf(x)
  2553. }
  2554. // Deprecated: Use PerformanceContractedApplyRsp.ProtoReflect.Descriptor instead.
  2555. func (*PerformanceContractedApplyRsp) Descriptor() ([]byte, []int) {
  2556. return file_mtp2_proto_rawDescGZIP(), []int{25}
  2557. }
  2558. func (x *PerformanceContractedApplyRsp) GetHeader() *MessageHead {
  2559. if x != nil {
  2560. return x.Header
  2561. }
  2562. return nil
  2563. }
  2564. func (x *PerformanceContractedApplyRsp) GetRetCode() int32 {
  2565. if x != nil && x.RetCode != nil {
  2566. return *x.RetCode
  2567. }
  2568. return 0
  2569. }
  2570. func (x *PerformanceContractedApplyRsp) GetRetDesc() string {
  2571. if x != nil && x.RetDesc != nil {
  2572. return *x.RetDesc
  2573. }
  2574. return ""
  2575. }
  2576. func (x *PerformanceContractedApplyRsp) GetPerformancePlanID() uint64 {
  2577. if x != nil && x.PerformancePlanID != nil {
  2578. return *x.PerformancePlanID
  2579. }
  2580. return 0
  2581. }
  2582. // 延期申请请求 0 20 5
  2583. type PerformanceDelayApplyReq struct {
  2584. state protoimpl.MessageState
  2585. sizeCache protoimpl.SizeCache
  2586. unknownFields protoimpl.UnknownFields
  2587. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // MessageHead
  2588. PerformancePlanStepID *uint64 `protobuf:"varint,2,opt,name=PerformancePlanStepID" json:"PerformancePlanStepID,omitempty"` // uint64 履约计划步骤ID
  2589. Delaydays *uint32 `protobuf:"varint,3,opt,name=delaydays" json:"delaydays,omitempty"` // uint32 申请延期天数
  2590. Applicant *uint64 `protobuf:"varint,4,opt,name=applicant" json:"applicant,omitempty"` // uint64 申请人
  2591. Applyremark *string `protobuf:"bytes,5,opt,name=applyremark" json:"applyremark,omitempty"` // string 申请备注
  2592. }
  2593. func (x *PerformanceDelayApplyReq) Reset() {
  2594. *x = PerformanceDelayApplyReq{}
  2595. if protoimpl.UnsafeEnabled {
  2596. mi := &file_mtp2_proto_msgTypes[26]
  2597. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2598. ms.StoreMessageInfo(mi)
  2599. }
  2600. }
  2601. func (x *PerformanceDelayApplyReq) String() string {
  2602. return protoimpl.X.MessageStringOf(x)
  2603. }
  2604. func (*PerformanceDelayApplyReq) ProtoMessage() {}
  2605. func (x *PerformanceDelayApplyReq) ProtoReflect() protoreflect.Message {
  2606. mi := &file_mtp2_proto_msgTypes[26]
  2607. if protoimpl.UnsafeEnabled && x != nil {
  2608. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2609. if ms.LoadMessageInfo() == nil {
  2610. ms.StoreMessageInfo(mi)
  2611. }
  2612. return ms
  2613. }
  2614. return mi.MessageOf(x)
  2615. }
  2616. // Deprecated: Use PerformanceDelayApplyReq.ProtoReflect.Descriptor instead.
  2617. func (*PerformanceDelayApplyReq) Descriptor() ([]byte, []int) {
  2618. return file_mtp2_proto_rawDescGZIP(), []int{26}
  2619. }
  2620. func (x *PerformanceDelayApplyReq) GetHeader() *MessageHead {
  2621. if x != nil {
  2622. return x.Header
  2623. }
  2624. return nil
  2625. }
  2626. func (x *PerformanceDelayApplyReq) GetPerformancePlanStepID() uint64 {
  2627. if x != nil && x.PerformancePlanStepID != nil {
  2628. return *x.PerformancePlanStepID
  2629. }
  2630. return 0
  2631. }
  2632. func (x *PerformanceDelayApplyReq) GetDelaydays() uint32 {
  2633. if x != nil && x.Delaydays != nil {
  2634. return *x.Delaydays
  2635. }
  2636. return 0
  2637. }
  2638. func (x *PerformanceDelayApplyReq) GetApplicant() uint64 {
  2639. if x != nil && x.Applicant != nil {
  2640. return *x.Applicant
  2641. }
  2642. return 0
  2643. }
  2644. func (x *PerformanceDelayApplyReq) GetApplyremark() string {
  2645. if x != nil && x.Applyremark != nil {
  2646. return *x.Applyremark
  2647. }
  2648. return ""
  2649. }
  2650. // 延期申请应答 0 20 6
  2651. type PerformanceDelayApplyRsp struct {
  2652. state protoimpl.MessageState
  2653. sizeCache protoimpl.SizeCache
  2654. unknownFields protoimpl.UnknownFields
  2655. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // MessageHead 消息头
  2656. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // int32 返回码
  2657. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // string 描述信息
  2658. PerformancePlanStepID *uint64 `protobuf:"varint,4,opt,name=PerformancePlanStepID" json:"PerformancePlanStepID,omitempty"` // uint64 履约计划步骤ID
  2659. Applicant *uint64 `protobuf:"varint,5,opt,name=applicant" json:"applicant,omitempty"` // uint64 申请人
  2660. }
  2661. func (x *PerformanceDelayApplyRsp) Reset() {
  2662. *x = PerformanceDelayApplyRsp{}
  2663. if protoimpl.UnsafeEnabled {
  2664. mi := &file_mtp2_proto_msgTypes[27]
  2665. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2666. ms.StoreMessageInfo(mi)
  2667. }
  2668. }
  2669. func (x *PerformanceDelayApplyRsp) String() string {
  2670. return protoimpl.X.MessageStringOf(x)
  2671. }
  2672. func (*PerformanceDelayApplyRsp) ProtoMessage() {}
  2673. func (x *PerformanceDelayApplyRsp) ProtoReflect() protoreflect.Message {
  2674. mi := &file_mtp2_proto_msgTypes[27]
  2675. if protoimpl.UnsafeEnabled && x != nil {
  2676. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2677. if ms.LoadMessageInfo() == nil {
  2678. ms.StoreMessageInfo(mi)
  2679. }
  2680. return ms
  2681. }
  2682. return mi.MessageOf(x)
  2683. }
  2684. // Deprecated: Use PerformanceDelayApplyRsp.ProtoReflect.Descriptor instead.
  2685. func (*PerformanceDelayApplyRsp) Descriptor() ([]byte, []int) {
  2686. return file_mtp2_proto_rawDescGZIP(), []int{27}
  2687. }
  2688. func (x *PerformanceDelayApplyRsp) GetHeader() *MessageHead {
  2689. if x != nil {
  2690. return x.Header
  2691. }
  2692. return nil
  2693. }
  2694. func (x *PerformanceDelayApplyRsp) GetRetCode() int32 {
  2695. if x != nil && x.RetCode != nil {
  2696. return *x.RetCode
  2697. }
  2698. return 0
  2699. }
  2700. func (x *PerformanceDelayApplyRsp) GetRetDesc() string {
  2701. if x != nil && x.RetDesc != nil {
  2702. return *x.RetDesc
  2703. }
  2704. return ""
  2705. }
  2706. func (x *PerformanceDelayApplyRsp) GetPerformancePlanStepID() uint64 {
  2707. if x != nil && x.PerformancePlanStepID != nil {
  2708. return *x.PerformancePlanStepID
  2709. }
  2710. return 0
  2711. }
  2712. func (x *PerformanceDelayApplyRsp) GetApplicant() uint64 {
  2713. if x != nil && x.Applicant != nil {
  2714. return *x.Applicant
  2715. }
  2716. return 0
  2717. }
  2718. // 履约手动确认请求 0 20 3
  2719. type PerformanceManualConfirmReq struct {
  2720. state protoimpl.MessageState
  2721. sizeCache protoimpl.SizeCache
  2722. unknownFields protoimpl.UnknownFields
  2723. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // MessageHead
  2724. PerformancePlanStepID *uint64 `protobuf:"varint,2,opt,name=PerformancePlanStepID" json:"PerformancePlanStepID,omitempty"` // uint64 履约计划步骤ID
  2725. OverShortAmount *float64 `protobuf:"fixed64,3,opt,name=OverShortAmount" json:"OverShortAmount,omitempty"` // double 溢短金额
  2726. PerformanceExecuteSide *uint32 `protobuf:"varint,4,opt,name=PerformanceExecuteSide" json:"PerformanceExecuteSide,omitempty"` // uint32 履约步骤执行方 1买方 2 卖方
  2727. StepRemark *string `protobuf:"bytes,5,opt,name=StepRemark" json:"StepRemark,omitempty"` // string 步骤备注
  2728. OverShortQty *float64 `protobuf:"fixed64,6,opt,name=OverShortQty" json:"OverShortQty,omitempty"` // double 溢短数量
  2729. ExpressFee *float64 `protobuf:"fixed64,7,opt,name=ExpressFee" json:"ExpressFee,omitempty"` // double 运费金额
  2730. }
  2731. func (x *PerformanceManualConfirmReq) Reset() {
  2732. *x = PerformanceManualConfirmReq{}
  2733. if protoimpl.UnsafeEnabled {
  2734. mi := &file_mtp2_proto_msgTypes[28]
  2735. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2736. ms.StoreMessageInfo(mi)
  2737. }
  2738. }
  2739. func (x *PerformanceManualConfirmReq) String() string {
  2740. return protoimpl.X.MessageStringOf(x)
  2741. }
  2742. func (*PerformanceManualConfirmReq) ProtoMessage() {}
  2743. func (x *PerformanceManualConfirmReq) ProtoReflect() protoreflect.Message {
  2744. mi := &file_mtp2_proto_msgTypes[28]
  2745. if protoimpl.UnsafeEnabled && x != nil {
  2746. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2747. if ms.LoadMessageInfo() == nil {
  2748. ms.StoreMessageInfo(mi)
  2749. }
  2750. return ms
  2751. }
  2752. return mi.MessageOf(x)
  2753. }
  2754. // Deprecated: Use PerformanceManualConfirmReq.ProtoReflect.Descriptor instead.
  2755. func (*PerformanceManualConfirmReq) Descriptor() ([]byte, []int) {
  2756. return file_mtp2_proto_rawDescGZIP(), []int{28}
  2757. }
  2758. func (x *PerformanceManualConfirmReq) GetHeader() *MessageHead {
  2759. if x != nil {
  2760. return x.Header
  2761. }
  2762. return nil
  2763. }
  2764. func (x *PerformanceManualConfirmReq) GetPerformancePlanStepID() uint64 {
  2765. if x != nil && x.PerformancePlanStepID != nil {
  2766. return *x.PerformancePlanStepID
  2767. }
  2768. return 0
  2769. }
  2770. func (x *PerformanceManualConfirmReq) GetOverShortAmount() float64 {
  2771. if x != nil && x.OverShortAmount != nil {
  2772. return *x.OverShortAmount
  2773. }
  2774. return 0
  2775. }
  2776. func (x *PerformanceManualConfirmReq) GetPerformanceExecuteSide() uint32 {
  2777. if x != nil && x.PerformanceExecuteSide != nil {
  2778. return *x.PerformanceExecuteSide
  2779. }
  2780. return 0
  2781. }
  2782. func (x *PerformanceManualConfirmReq) GetStepRemark() string {
  2783. if x != nil && x.StepRemark != nil {
  2784. return *x.StepRemark
  2785. }
  2786. return ""
  2787. }
  2788. func (x *PerformanceManualConfirmReq) GetOverShortQty() float64 {
  2789. if x != nil && x.OverShortQty != nil {
  2790. return *x.OverShortQty
  2791. }
  2792. return 0
  2793. }
  2794. func (x *PerformanceManualConfirmReq) GetExpressFee() float64 {
  2795. if x != nil && x.ExpressFee != nil {
  2796. return *x.ExpressFee
  2797. }
  2798. return 0
  2799. }
  2800. // 履约手动确认应答 0 20 4
  2801. type PerformanceManualConfirmRsp struct {
  2802. state protoimpl.MessageState
  2803. sizeCache protoimpl.SizeCache
  2804. unknownFields protoimpl.UnknownFields
  2805. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // MessageHead 消息头
  2806. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // int32 返回码
  2807. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // string 描述信息
  2808. PerformancePlanStepID *uint64 `protobuf:"varint,4,opt,name=PerformancePlanStepID" json:"PerformancePlanStepID,omitempty"` // uint64 履约计划步骤ID
  2809. }
  2810. func (x *PerformanceManualConfirmRsp) Reset() {
  2811. *x = PerformanceManualConfirmRsp{}
  2812. if protoimpl.UnsafeEnabled {
  2813. mi := &file_mtp2_proto_msgTypes[29]
  2814. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2815. ms.StoreMessageInfo(mi)
  2816. }
  2817. }
  2818. func (x *PerformanceManualConfirmRsp) String() string {
  2819. return protoimpl.X.MessageStringOf(x)
  2820. }
  2821. func (*PerformanceManualConfirmRsp) ProtoMessage() {}
  2822. func (x *PerformanceManualConfirmRsp) ProtoReflect() protoreflect.Message {
  2823. mi := &file_mtp2_proto_msgTypes[29]
  2824. if protoimpl.UnsafeEnabled && x != nil {
  2825. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2826. if ms.LoadMessageInfo() == nil {
  2827. ms.StoreMessageInfo(mi)
  2828. }
  2829. return ms
  2830. }
  2831. return mi.MessageOf(x)
  2832. }
  2833. // Deprecated: Use PerformanceManualConfirmRsp.ProtoReflect.Descriptor instead.
  2834. func (*PerformanceManualConfirmRsp) Descriptor() ([]byte, []int) {
  2835. return file_mtp2_proto_rawDescGZIP(), []int{29}
  2836. }
  2837. func (x *PerformanceManualConfirmRsp) GetHeader() *MessageHead {
  2838. if x != nil {
  2839. return x.Header
  2840. }
  2841. return nil
  2842. }
  2843. func (x *PerformanceManualConfirmRsp) GetRetCode() int32 {
  2844. if x != nil && x.RetCode != nil {
  2845. return *x.RetCode
  2846. }
  2847. return 0
  2848. }
  2849. func (x *PerformanceManualConfirmRsp) GetRetDesc() string {
  2850. if x != nil && x.RetDesc != nil {
  2851. return *x.RetDesc
  2852. }
  2853. return ""
  2854. }
  2855. func (x *PerformanceManualConfirmRsp) GetPerformancePlanStepID() uint64 {
  2856. if x != nil && x.PerformancePlanStepID != nil {
  2857. return *x.PerformancePlanStepID
  2858. }
  2859. return 0
  2860. }
  2861. // 履约修改联络信息请求 0 20 15
  2862. type PerformanceModifyContactReq struct {
  2863. state protoimpl.MessageState
  2864. sizeCache protoimpl.SizeCache
  2865. unknownFields protoimpl.UnknownFields
  2866. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // MessageHead
  2867. PerformancePlanID *uint64 `protobuf:"varint,2,opt,name=PerformancePlanID" json:"PerformancePlanID,omitempty"` // uint64 履约计划ID
  2868. AccountID *uint64 `protobuf:"varint,3,opt,name=AccountID" json:"AccountID,omitempty"` // uint64 账号
  2869. ContactInfo *string `protobuf:"bytes,4,opt,name=ContactInfo" json:"ContactInfo,omitempty"` // string 联络信息
  2870. }
  2871. func (x *PerformanceModifyContactReq) Reset() {
  2872. *x = PerformanceModifyContactReq{}
  2873. if protoimpl.UnsafeEnabled {
  2874. mi := &file_mtp2_proto_msgTypes[30]
  2875. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2876. ms.StoreMessageInfo(mi)
  2877. }
  2878. }
  2879. func (x *PerformanceModifyContactReq) String() string {
  2880. return protoimpl.X.MessageStringOf(x)
  2881. }
  2882. func (*PerformanceModifyContactReq) ProtoMessage() {}
  2883. func (x *PerformanceModifyContactReq) ProtoReflect() protoreflect.Message {
  2884. mi := &file_mtp2_proto_msgTypes[30]
  2885. if protoimpl.UnsafeEnabled && x != nil {
  2886. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2887. if ms.LoadMessageInfo() == nil {
  2888. ms.StoreMessageInfo(mi)
  2889. }
  2890. return ms
  2891. }
  2892. return mi.MessageOf(x)
  2893. }
  2894. // Deprecated: Use PerformanceModifyContactReq.ProtoReflect.Descriptor instead.
  2895. func (*PerformanceModifyContactReq) Descriptor() ([]byte, []int) {
  2896. return file_mtp2_proto_rawDescGZIP(), []int{30}
  2897. }
  2898. func (x *PerformanceModifyContactReq) GetHeader() *MessageHead {
  2899. if x != nil {
  2900. return x.Header
  2901. }
  2902. return nil
  2903. }
  2904. func (x *PerformanceModifyContactReq) GetPerformancePlanID() uint64 {
  2905. if x != nil && x.PerformancePlanID != nil {
  2906. return *x.PerformancePlanID
  2907. }
  2908. return 0
  2909. }
  2910. func (x *PerformanceModifyContactReq) GetAccountID() uint64 {
  2911. if x != nil && x.AccountID != nil {
  2912. return *x.AccountID
  2913. }
  2914. return 0
  2915. }
  2916. func (x *PerformanceModifyContactReq) GetContactInfo() string {
  2917. if x != nil && x.ContactInfo != nil {
  2918. return *x.ContactInfo
  2919. }
  2920. return ""
  2921. }
  2922. // 履约修改联络信息回应 0 20 16
  2923. type PerformanceModifyContactRsp struct {
  2924. state protoimpl.MessageState
  2925. sizeCache protoimpl.SizeCache
  2926. unknownFields protoimpl.UnknownFields
  2927. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // MessageHead 消息头
  2928. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // int32 返回码
  2929. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // string 描述信息
  2930. PerformancePlanID *uint64 `protobuf:"varint,4,opt,name=PerformancePlanID" json:"PerformancePlanID,omitempty"` // uint64 履约计划ID
  2931. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // uint64 账号
  2932. }
  2933. func (x *PerformanceModifyContactRsp) Reset() {
  2934. *x = PerformanceModifyContactRsp{}
  2935. if protoimpl.UnsafeEnabled {
  2936. mi := &file_mtp2_proto_msgTypes[31]
  2937. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2938. ms.StoreMessageInfo(mi)
  2939. }
  2940. }
  2941. func (x *PerformanceModifyContactRsp) String() string {
  2942. return protoimpl.X.MessageStringOf(x)
  2943. }
  2944. func (*PerformanceModifyContactRsp) ProtoMessage() {}
  2945. func (x *PerformanceModifyContactRsp) ProtoReflect() protoreflect.Message {
  2946. mi := &file_mtp2_proto_msgTypes[31]
  2947. if protoimpl.UnsafeEnabled && x != nil {
  2948. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2949. if ms.LoadMessageInfo() == nil {
  2950. ms.StoreMessageInfo(mi)
  2951. }
  2952. return ms
  2953. }
  2954. return mi.MessageOf(x)
  2955. }
  2956. // Deprecated: Use PerformanceModifyContactRsp.ProtoReflect.Descriptor instead.
  2957. func (*PerformanceModifyContactRsp) Descriptor() ([]byte, []int) {
  2958. return file_mtp2_proto_rawDescGZIP(), []int{31}
  2959. }
  2960. func (x *PerformanceModifyContactRsp) GetHeader() *MessageHead {
  2961. if x != nil {
  2962. return x.Header
  2963. }
  2964. return nil
  2965. }
  2966. func (x *PerformanceModifyContactRsp) GetRetCode() int32 {
  2967. if x != nil && x.RetCode != nil {
  2968. return *x.RetCode
  2969. }
  2970. return 0
  2971. }
  2972. func (x *PerformanceModifyContactRsp) GetRetDesc() string {
  2973. if x != nil && x.RetDesc != nil {
  2974. return *x.RetDesc
  2975. }
  2976. return ""
  2977. }
  2978. func (x *PerformanceModifyContactRsp) GetPerformancePlanID() uint64 {
  2979. if x != nil && x.PerformancePlanID != nil {
  2980. return *x.PerformancePlanID
  2981. }
  2982. return 0
  2983. }
  2984. func (x *PerformanceModifyContactRsp) GetAccountID() uint64 {
  2985. if x != nil && x.AccountID != nil {
  2986. return *x.AccountID
  2987. }
  2988. return 0
  2989. }
  2990. // 新增钻石商品接口响应
  2991. type AddZSGoodsRsp struct {
  2992. state protoimpl.MessageState
  2993. sizeCache protoimpl.SizeCache
  2994. unknownFields protoimpl.UnknownFields
  2995. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  2996. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  2997. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  2998. UserID *uint64 `protobuf:"varint,4,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  2999. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账户ID
  3000. WRStandardID *uint64 `protobuf:"varint,6,opt,name=WRStandardID" json:"WRStandardID,omitempty"` // 现货商品ID
  3001. WRFactorTypeID *uint64 `protobuf:"varint,7,opt,name=WRFactorTypeID" json:"WRFactorTypeID,omitempty"` // 仓单要素类型ID
  3002. LadingBillID *uint64 `protobuf:"varint,8,opt,name=LadingBillID" json:"LadingBillID,omitempty"` // 提单ID
  3003. SubNum *uint32 `protobuf:"varint,9,opt,name=SubNum" json:"SubNum,omitempty"` // 提单子单号
  3004. ClientSerialNo *string `protobuf:"bytes,10,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  3005. }
  3006. func (x *AddZSGoodsRsp) Reset() {
  3007. *x = AddZSGoodsRsp{}
  3008. if protoimpl.UnsafeEnabled {
  3009. mi := &file_mtp2_proto_msgTypes[32]
  3010. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3011. ms.StoreMessageInfo(mi)
  3012. }
  3013. }
  3014. func (x *AddZSGoodsRsp) String() string {
  3015. return protoimpl.X.MessageStringOf(x)
  3016. }
  3017. func (*AddZSGoodsRsp) ProtoMessage() {}
  3018. func (x *AddZSGoodsRsp) ProtoReflect() protoreflect.Message {
  3019. mi := &file_mtp2_proto_msgTypes[32]
  3020. if protoimpl.UnsafeEnabled && x != nil {
  3021. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3022. if ms.LoadMessageInfo() == nil {
  3023. ms.StoreMessageInfo(mi)
  3024. }
  3025. return ms
  3026. }
  3027. return mi.MessageOf(x)
  3028. }
  3029. // Deprecated: Use AddZSGoodsRsp.ProtoReflect.Descriptor instead.
  3030. func (*AddZSGoodsRsp) Descriptor() ([]byte, []int) {
  3031. return file_mtp2_proto_rawDescGZIP(), []int{32}
  3032. }
  3033. func (x *AddZSGoodsRsp) GetHeader() *MessageHead {
  3034. if x != nil {
  3035. return x.Header
  3036. }
  3037. return nil
  3038. }
  3039. func (x *AddZSGoodsRsp) GetRetCode() int32 {
  3040. if x != nil && x.RetCode != nil {
  3041. return *x.RetCode
  3042. }
  3043. return 0
  3044. }
  3045. func (x *AddZSGoodsRsp) GetRetDesc() string {
  3046. if x != nil && x.RetDesc != nil {
  3047. return *x.RetDesc
  3048. }
  3049. return ""
  3050. }
  3051. func (x *AddZSGoodsRsp) GetUserID() uint64 {
  3052. if x != nil && x.UserID != nil {
  3053. return *x.UserID
  3054. }
  3055. return 0
  3056. }
  3057. func (x *AddZSGoodsRsp) GetAccountID() uint64 {
  3058. if x != nil && x.AccountID != nil {
  3059. return *x.AccountID
  3060. }
  3061. return 0
  3062. }
  3063. func (x *AddZSGoodsRsp) GetWRStandardID() uint64 {
  3064. if x != nil && x.WRStandardID != nil {
  3065. return *x.WRStandardID
  3066. }
  3067. return 0
  3068. }
  3069. func (x *AddZSGoodsRsp) GetWRFactorTypeID() uint64 {
  3070. if x != nil && x.WRFactorTypeID != nil {
  3071. return *x.WRFactorTypeID
  3072. }
  3073. return 0
  3074. }
  3075. func (x *AddZSGoodsRsp) GetLadingBillID() uint64 {
  3076. if x != nil && x.LadingBillID != nil {
  3077. return *x.LadingBillID
  3078. }
  3079. return 0
  3080. }
  3081. func (x *AddZSGoodsRsp) GetSubNum() uint32 {
  3082. if x != nil && x.SubNum != nil {
  3083. return *x.SubNum
  3084. }
  3085. return 0
  3086. }
  3087. func (x *AddZSGoodsRsp) GetClientSerialNo() string {
  3088. if x != nil && x.ClientSerialNo != nil {
  3089. return *x.ClientSerialNo
  3090. }
  3091. return ""
  3092. }
  3093. // 商品收藏操作接口请求
  3094. type GoodsFavoriteOperateReq struct {
  3095. state protoimpl.MessageState
  3096. sizeCache protoimpl.SizeCache
  3097. unknownFields protoimpl.UnknownFields
  3098. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  3099. UserID *uint32 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  3100. WRTradeOrderID *uint64 `protobuf:"varint,3,opt,name=WRTradeOrderID" json:"WRTradeOrderID,omitempty"` // 委托单ID,必填
  3101. OperateType *uint32 `protobuf:"varint,4,opt,name=OperateType" json:"OperateType,omitempty"` // 操作类型,1:添加2:删除,必填
  3102. ClientType *uint32 `protobuf:"varint,5,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  3103. MarketID *uint32 `protobuf:"varint,6,opt,name=MarketID" json:"MarketID,omitempty"` // 市场ID,必填
  3104. ClientSerialNo *string `protobuf:"bytes,7,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  3105. }
  3106. func (x *GoodsFavoriteOperateReq) Reset() {
  3107. *x = GoodsFavoriteOperateReq{}
  3108. if protoimpl.UnsafeEnabled {
  3109. mi := &file_mtp2_proto_msgTypes[33]
  3110. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3111. ms.StoreMessageInfo(mi)
  3112. }
  3113. }
  3114. func (x *GoodsFavoriteOperateReq) String() string {
  3115. return protoimpl.X.MessageStringOf(x)
  3116. }
  3117. func (*GoodsFavoriteOperateReq) ProtoMessage() {}
  3118. func (x *GoodsFavoriteOperateReq) ProtoReflect() protoreflect.Message {
  3119. mi := &file_mtp2_proto_msgTypes[33]
  3120. if protoimpl.UnsafeEnabled && x != nil {
  3121. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3122. if ms.LoadMessageInfo() == nil {
  3123. ms.StoreMessageInfo(mi)
  3124. }
  3125. return ms
  3126. }
  3127. return mi.MessageOf(x)
  3128. }
  3129. // Deprecated: Use GoodsFavoriteOperateReq.ProtoReflect.Descriptor instead.
  3130. func (*GoodsFavoriteOperateReq) Descriptor() ([]byte, []int) {
  3131. return file_mtp2_proto_rawDescGZIP(), []int{33}
  3132. }
  3133. func (x *GoodsFavoriteOperateReq) GetHeader() *MessageHead {
  3134. if x != nil {
  3135. return x.Header
  3136. }
  3137. return nil
  3138. }
  3139. func (x *GoodsFavoriteOperateReq) GetUserID() uint32 {
  3140. if x != nil && x.UserID != nil {
  3141. return *x.UserID
  3142. }
  3143. return 0
  3144. }
  3145. func (x *GoodsFavoriteOperateReq) GetWRTradeOrderID() uint64 {
  3146. if x != nil && x.WRTradeOrderID != nil {
  3147. return *x.WRTradeOrderID
  3148. }
  3149. return 0
  3150. }
  3151. func (x *GoodsFavoriteOperateReq) GetOperateType() uint32 {
  3152. if x != nil && x.OperateType != nil {
  3153. return *x.OperateType
  3154. }
  3155. return 0
  3156. }
  3157. func (x *GoodsFavoriteOperateReq) GetClientType() uint32 {
  3158. if x != nil && x.ClientType != nil {
  3159. return *x.ClientType
  3160. }
  3161. return 0
  3162. }
  3163. func (x *GoodsFavoriteOperateReq) GetMarketID() uint32 {
  3164. if x != nil && x.MarketID != nil {
  3165. return *x.MarketID
  3166. }
  3167. return 0
  3168. }
  3169. func (x *GoodsFavoriteOperateReq) GetClientSerialNo() string {
  3170. if x != nil && x.ClientSerialNo != nil {
  3171. return *x.ClientSerialNo
  3172. }
  3173. return ""
  3174. }
  3175. // 商品收藏操作接口应答
  3176. type GoodsFavoriteOperateRsp struct {
  3177. state protoimpl.MessageState
  3178. sizeCache protoimpl.SizeCache
  3179. unknownFields protoimpl.UnknownFields
  3180. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  3181. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  3182. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  3183. UserID *uint32 `protobuf:"varint,4,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  3184. WRTradeOrderID *uint64 `protobuf:"varint,5,opt,name=WRTradeOrderID" json:"WRTradeOrderID,omitempty"` // 委托单ID
  3185. ClientSerialNo *string `protobuf:"bytes,6,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  3186. }
  3187. func (x *GoodsFavoriteOperateRsp) Reset() {
  3188. *x = GoodsFavoriteOperateRsp{}
  3189. if protoimpl.UnsafeEnabled {
  3190. mi := &file_mtp2_proto_msgTypes[34]
  3191. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3192. ms.StoreMessageInfo(mi)
  3193. }
  3194. }
  3195. func (x *GoodsFavoriteOperateRsp) String() string {
  3196. return protoimpl.X.MessageStringOf(x)
  3197. }
  3198. func (*GoodsFavoriteOperateRsp) ProtoMessage() {}
  3199. func (x *GoodsFavoriteOperateRsp) ProtoReflect() protoreflect.Message {
  3200. mi := &file_mtp2_proto_msgTypes[34]
  3201. if protoimpl.UnsafeEnabled && x != nil {
  3202. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3203. if ms.LoadMessageInfo() == nil {
  3204. ms.StoreMessageInfo(mi)
  3205. }
  3206. return ms
  3207. }
  3208. return mi.MessageOf(x)
  3209. }
  3210. // Deprecated: Use GoodsFavoriteOperateRsp.ProtoReflect.Descriptor instead.
  3211. func (*GoodsFavoriteOperateRsp) Descriptor() ([]byte, []int) {
  3212. return file_mtp2_proto_rawDescGZIP(), []int{34}
  3213. }
  3214. func (x *GoodsFavoriteOperateRsp) GetHeader() *MessageHead {
  3215. if x != nil {
  3216. return x.Header
  3217. }
  3218. return nil
  3219. }
  3220. func (x *GoodsFavoriteOperateRsp) GetRetCode() int32 {
  3221. if x != nil && x.RetCode != nil {
  3222. return *x.RetCode
  3223. }
  3224. return 0
  3225. }
  3226. func (x *GoodsFavoriteOperateRsp) GetRetDesc() string {
  3227. if x != nil && x.RetDesc != nil {
  3228. return *x.RetDesc
  3229. }
  3230. return ""
  3231. }
  3232. func (x *GoodsFavoriteOperateRsp) GetUserID() uint32 {
  3233. if x != nil && x.UserID != nil {
  3234. return *x.UserID
  3235. }
  3236. return 0
  3237. }
  3238. func (x *GoodsFavoriteOperateRsp) GetWRTradeOrderID() uint64 {
  3239. if x != nil && x.WRTradeOrderID != nil {
  3240. return *x.WRTradeOrderID
  3241. }
  3242. return 0
  3243. }
  3244. func (x *GoodsFavoriteOperateRsp) GetClientSerialNo() string {
  3245. if x != nil && x.ClientSerialNo != nil {
  3246. return *x.ClientSerialNo
  3247. }
  3248. return ""
  3249. }
  3250. // 钻石买挂牌属性
  3251. type GZBuyOrderDetailExInfo struct {
  3252. state protoimpl.MessageState
  3253. sizeCache protoimpl.SizeCache
  3254. unknownFields protoimpl.UnknownFields
  3255. UserID *uint64 `protobuf:"varint,1,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  3256. AccountID *uint64 `protobuf:"varint,2,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账户ID
  3257. ZSCategory *uint32 `protobuf:"varint,3,opt,name=ZSCategory" json:"ZSCategory,omitempty"` // 钻石分类
  3258. ZSCurrencyType []uint32 `protobuf:"varint,4,rep,name=ZSCurrencyType" json:"ZSCurrencyType,omitempty"` // 货币类型
  3259. ZSShapeType []uint32 `protobuf:"varint,5,rep,name=ZSShapeType" json:"ZSShapeType,omitempty"` // 形状
  3260. ZSColorType []uint32 `protobuf:"varint,6,rep,name=ZSColorType" json:"ZSColorType,omitempty"` // 颜色
  3261. ZSClarityType []uint32 `protobuf:"varint,7,rep,name=ZSClarityType" json:"ZSClarityType,omitempty"` // 净度
  3262. ZSCutType []uint32 `protobuf:"varint,8,rep,name=ZSCutType" json:"ZSCutType,omitempty"` // 切工
  3263. ZSSymmetryType []uint32 `protobuf:"varint,9,rep,name=ZSSymmetryType" json:"ZSSymmetryType,omitempty"` // 对称度
  3264. ZSPolishType []uint32 `protobuf:"varint,10,rep,name=ZSPolishType" json:"ZSPolishType,omitempty"` // 抛光度
  3265. ZSFluorescenceType []uint32 `protobuf:"varint,11,rep,name=ZSFluorescenceType" json:"ZSFluorescenceType,omitempty"` // 荧光
  3266. Size []float64 `protobuf:"fixed64,12,rep,name=Size" json:"Size,omitempty"` // 尺寸
  3267. ZSCrystalType []uint32 `protobuf:"varint,13,rep,name=ZSCrystalType" json:"ZSCrystalType,omitempty"` // 晶型
  3268. Origin *string `protobuf:"bytes,14,opt,name=Origin" json:"Origin,omitempty"` // 原产地
  3269. ZSStyleType []uint32 `protobuf:"varint,15,rep,name=ZSStyleType" json:"ZSStyleType,omitempty"` // 款式
  3270. ZSCZColor1Type []uint32 `protobuf:"varint,16,rep,name=ZSCZColor1Type" json:"ZSCZColor1Type,omitempty"` // 彩钻颜色1
  3271. ZSCZColor2Type []uint32 `protobuf:"varint,17,rep,name=ZSCZColor2Type" json:"ZSCZColor2Type,omitempty"` // 彩钻颜色2
  3272. ZSCZColor3Type []uint32 `protobuf:"varint,18,rep,name=ZSCZColor3Type" json:"ZSCZColor3Type,omitempty"` // 彩钻颜色3
  3273. Remark *string `protobuf:"bytes,19,opt,name=Remark" json:"Remark,omitempty"` // 备注
  3274. WarehouseIDs []uint64 `protobuf:"varint,20,rep,name=WarehouseIDs" json:"WarehouseIDs,omitempty"` // 仓库ID
  3275. }
  3276. func (x *GZBuyOrderDetailExInfo) Reset() {
  3277. *x = GZBuyOrderDetailExInfo{}
  3278. if protoimpl.UnsafeEnabled {
  3279. mi := &file_mtp2_proto_msgTypes[35]
  3280. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3281. ms.StoreMessageInfo(mi)
  3282. }
  3283. }
  3284. func (x *GZBuyOrderDetailExInfo) String() string {
  3285. return protoimpl.X.MessageStringOf(x)
  3286. }
  3287. func (*GZBuyOrderDetailExInfo) ProtoMessage() {}
  3288. func (x *GZBuyOrderDetailExInfo) ProtoReflect() protoreflect.Message {
  3289. mi := &file_mtp2_proto_msgTypes[35]
  3290. if protoimpl.UnsafeEnabled && x != nil {
  3291. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3292. if ms.LoadMessageInfo() == nil {
  3293. ms.StoreMessageInfo(mi)
  3294. }
  3295. return ms
  3296. }
  3297. return mi.MessageOf(x)
  3298. }
  3299. // Deprecated: Use GZBuyOrderDetailExInfo.ProtoReflect.Descriptor instead.
  3300. func (*GZBuyOrderDetailExInfo) Descriptor() ([]byte, []int) {
  3301. return file_mtp2_proto_rawDescGZIP(), []int{35}
  3302. }
  3303. func (x *GZBuyOrderDetailExInfo) GetUserID() uint64 {
  3304. if x != nil && x.UserID != nil {
  3305. return *x.UserID
  3306. }
  3307. return 0
  3308. }
  3309. func (x *GZBuyOrderDetailExInfo) GetAccountID() uint64 {
  3310. if x != nil && x.AccountID != nil {
  3311. return *x.AccountID
  3312. }
  3313. return 0
  3314. }
  3315. func (x *GZBuyOrderDetailExInfo) GetZSCategory() uint32 {
  3316. if x != nil && x.ZSCategory != nil {
  3317. return *x.ZSCategory
  3318. }
  3319. return 0
  3320. }
  3321. func (x *GZBuyOrderDetailExInfo) GetZSCurrencyType() []uint32 {
  3322. if x != nil {
  3323. return x.ZSCurrencyType
  3324. }
  3325. return nil
  3326. }
  3327. func (x *GZBuyOrderDetailExInfo) GetZSShapeType() []uint32 {
  3328. if x != nil {
  3329. return x.ZSShapeType
  3330. }
  3331. return nil
  3332. }
  3333. func (x *GZBuyOrderDetailExInfo) GetZSColorType() []uint32 {
  3334. if x != nil {
  3335. return x.ZSColorType
  3336. }
  3337. return nil
  3338. }
  3339. func (x *GZBuyOrderDetailExInfo) GetZSClarityType() []uint32 {
  3340. if x != nil {
  3341. return x.ZSClarityType
  3342. }
  3343. return nil
  3344. }
  3345. func (x *GZBuyOrderDetailExInfo) GetZSCutType() []uint32 {
  3346. if x != nil {
  3347. return x.ZSCutType
  3348. }
  3349. return nil
  3350. }
  3351. func (x *GZBuyOrderDetailExInfo) GetZSSymmetryType() []uint32 {
  3352. if x != nil {
  3353. return x.ZSSymmetryType
  3354. }
  3355. return nil
  3356. }
  3357. func (x *GZBuyOrderDetailExInfo) GetZSPolishType() []uint32 {
  3358. if x != nil {
  3359. return x.ZSPolishType
  3360. }
  3361. return nil
  3362. }
  3363. func (x *GZBuyOrderDetailExInfo) GetZSFluorescenceType() []uint32 {
  3364. if x != nil {
  3365. return x.ZSFluorescenceType
  3366. }
  3367. return nil
  3368. }
  3369. func (x *GZBuyOrderDetailExInfo) GetSize() []float64 {
  3370. if x != nil {
  3371. return x.Size
  3372. }
  3373. return nil
  3374. }
  3375. func (x *GZBuyOrderDetailExInfo) GetZSCrystalType() []uint32 {
  3376. if x != nil {
  3377. return x.ZSCrystalType
  3378. }
  3379. return nil
  3380. }
  3381. func (x *GZBuyOrderDetailExInfo) GetOrigin() string {
  3382. if x != nil && x.Origin != nil {
  3383. return *x.Origin
  3384. }
  3385. return ""
  3386. }
  3387. func (x *GZBuyOrderDetailExInfo) GetZSStyleType() []uint32 {
  3388. if x != nil {
  3389. return x.ZSStyleType
  3390. }
  3391. return nil
  3392. }
  3393. func (x *GZBuyOrderDetailExInfo) GetZSCZColor1Type() []uint32 {
  3394. if x != nil {
  3395. return x.ZSCZColor1Type
  3396. }
  3397. return nil
  3398. }
  3399. func (x *GZBuyOrderDetailExInfo) GetZSCZColor2Type() []uint32 {
  3400. if x != nil {
  3401. return x.ZSCZColor2Type
  3402. }
  3403. return nil
  3404. }
  3405. func (x *GZBuyOrderDetailExInfo) GetZSCZColor3Type() []uint32 {
  3406. if x != nil {
  3407. return x.ZSCZColor3Type
  3408. }
  3409. return nil
  3410. }
  3411. func (x *GZBuyOrderDetailExInfo) GetRemark() string {
  3412. if x != nil && x.Remark != nil {
  3413. return *x.Remark
  3414. }
  3415. return ""
  3416. }
  3417. func (x *GZBuyOrderDetailExInfo) GetWarehouseIDs() []uint64 {
  3418. if x != nil {
  3419. return x.WarehouseIDs
  3420. }
  3421. return nil
  3422. }
  3423. // 钻石买挂牌接口请求
  3424. type ZSBuyOrderListingReq struct {
  3425. state protoimpl.MessageState
  3426. sizeCache protoimpl.SizeCache
  3427. unknownFields protoimpl.UnknownFields
  3428. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  3429. UserID *uint32 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  3430. AccountID *uint64 `protobuf:"varint,3,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号,必填
  3431. GZ_BuyOrderDetailExInfo *GZBuyOrderDetailExInfo `protobuf:"bytes,4,opt,name=GZ_BuyOrderDetailExInfo,json=GZBuyOrderDetailExInfo" json:"GZ_BuyOrderDetailExInfo,omitempty"` // 钻石买挂牌属性
  3432. PerformanceTemplateID *int64 `protobuf:"varint,5,opt,name=PerformanceTemplateID" json:"PerformanceTemplateID,omitempty"` // 履约计划模板ID
  3433. MarketID *uint32 `protobuf:"varint,6,opt,name=MarketID" json:"MarketID,omitempty"` // 市场ID,必填
  3434. OrderSrc *uint32 `protobuf:"varint,7,opt,name=OrderSrc" json:"OrderSrc,omitempty"` // 委托来源
  3435. ClientOrderTime *string `protobuf:"bytes,8,opt,name=ClientOrderTime" json:"ClientOrderTime,omitempty"` // 客户端委托时间
  3436. ClientType *uint32 `protobuf:"varint,9,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  3437. ClientSerialNo *string `protobuf:"bytes,10,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  3438. }
  3439. func (x *ZSBuyOrderListingReq) Reset() {
  3440. *x = ZSBuyOrderListingReq{}
  3441. if protoimpl.UnsafeEnabled {
  3442. mi := &file_mtp2_proto_msgTypes[36]
  3443. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3444. ms.StoreMessageInfo(mi)
  3445. }
  3446. }
  3447. func (x *ZSBuyOrderListingReq) String() string {
  3448. return protoimpl.X.MessageStringOf(x)
  3449. }
  3450. func (*ZSBuyOrderListingReq) ProtoMessage() {}
  3451. func (x *ZSBuyOrderListingReq) ProtoReflect() protoreflect.Message {
  3452. mi := &file_mtp2_proto_msgTypes[36]
  3453. if protoimpl.UnsafeEnabled && x != nil {
  3454. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3455. if ms.LoadMessageInfo() == nil {
  3456. ms.StoreMessageInfo(mi)
  3457. }
  3458. return ms
  3459. }
  3460. return mi.MessageOf(x)
  3461. }
  3462. // Deprecated: Use ZSBuyOrderListingReq.ProtoReflect.Descriptor instead.
  3463. func (*ZSBuyOrderListingReq) Descriptor() ([]byte, []int) {
  3464. return file_mtp2_proto_rawDescGZIP(), []int{36}
  3465. }
  3466. func (x *ZSBuyOrderListingReq) GetHeader() *MessageHead {
  3467. if x != nil {
  3468. return x.Header
  3469. }
  3470. return nil
  3471. }
  3472. func (x *ZSBuyOrderListingReq) GetUserID() uint32 {
  3473. if x != nil && x.UserID != nil {
  3474. return *x.UserID
  3475. }
  3476. return 0
  3477. }
  3478. func (x *ZSBuyOrderListingReq) GetAccountID() uint64 {
  3479. if x != nil && x.AccountID != nil {
  3480. return *x.AccountID
  3481. }
  3482. return 0
  3483. }
  3484. func (x *ZSBuyOrderListingReq) GetGZ_BuyOrderDetailExInfo() *GZBuyOrderDetailExInfo {
  3485. if x != nil {
  3486. return x.GZ_BuyOrderDetailExInfo
  3487. }
  3488. return nil
  3489. }
  3490. func (x *ZSBuyOrderListingReq) GetPerformanceTemplateID() int64 {
  3491. if x != nil && x.PerformanceTemplateID != nil {
  3492. return *x.PerformanceTemplateID
  3493. }
  3494. return 0
  3495. }
  3496. func (x *ZSBuyOrderListingReq) GetMarketID() uint32 {
  3497. if x != nil && x.MarketID != nil {
  3498. return *x.MarketID
  3499. }
  3500. return 0
  3501. }
  3502. func (x *ZSBuyOrderListingReq) GetOrderSrc() uint32 {
  3503. if x != nil && x.OrderSrc != nil {
  3504. return *x.OrderSrc
  3505. }
  3506. return 0
  3507. }
  3508. func (x *ZSBuyOrderListingReq) GetClientOrderTime() string {
  3509. if x != nil && x.ClientOrderTime != nil {
  3510. return *x.ClientOrderTime
  3511. }
  3512. return ""
  3513. }
  3514. func (x *ZSBuyOrderListingReq) GetClientType() uint32 {
  3515. if x != nil && x.ClientType != nil {
  3516. return *x.ClientType
  3517. }
  3518. return 0
  3519. }
  3520. func (x *ZSBuyOrderListingReq) GetClientSerialNo() string {
  3521. if x != nil && x.ClientSerialNo != nil {
  3522. return *x.ClientSerialNo
  3523. }
  3524. return ""
  3525. }
  3526. // 钻石买挂牌接口应答
  3527. type ZSBuyOrderListingRsp struct {
  3528. state protoimpl.MessageState
  3529. sizeCache protoimpl.SizeCache
  3530. unknownFields protoimpl.UnknownFields
  3531. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  3532. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  3533. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  3534. UserID *uint32 `protobuf:"varint,4,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  3535. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
  3536. WRTradeOrderID *uint64 `protobuf:"varint,6,opt,name=WRTradeOrderID" json:"WRTradeOrderID,omitempty"` // 仓单贸易委托单ID
  3537. OrderTime *string `protobuf:"bytes,7,opt,name=OrderTime" json:"OrderTime,omitempty"` // 接收委托交易的时间
  3538. ClientSerialNo *string `protobuf:"bytes,8,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  3539. }
  3540. func (x *ZSBuyOrderListingRsp) Reset() {
  3541. *x = ZSBuyOrderListingRsp{}
  3542. if protoimpl.UnsafeEnabled {
  3543. mi := &file_mtp2_proto_msgTypes[37]
  3544. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3545. ms.StoreMessageInfo(mi)
  3546. }
  3547. }
  3548. func (x *ZSBuyOrderListingRsp) String() string {
  3549. return protoimpl.X.MessageStringOf(x)
  3550. }
  3551. func (*ZSBuyOrderListingRsp) ProtoMessage() {}
  3552. func (x *ZSBuyOrderListingRsp) ProtoReflect() protoreflect.Message {
  3553. mi := &file_mtp2_proto_msgTypes[37]
  3554. if protoimpl.UnsafeEnabled && x != nil {
  3555. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3556. if ms.LoadMessageInfo() == nil {
  3557. ms.StoreMessageInfo(mi)
  3558. }
  3559. return ms
  3560. }
  3561. return mi.MessageOf(x)
  3562. }
  3563. // Deprecated: Use ZSBuyOrderListingRsp.ProtoReflect.Descriptor instead.
  3564. func (*ZSBuyOrderListingRsp) Descriptor() ([]byte, []int) {
  3565. return file_mtp2_proto_rawDescGZIP(), []int{37}
  3566. }
  3567. func (x *ZSBuyOrderListingRsp) GetHeader() *MessageHead {
  3568. if x != nil {
  3569. return x.Header
  3570. }
  3571. return nil
  3572. }
  3573. func (x *ZSBuyOrderListingRsp) GetRetCode() int32 {
  3574. if x != nil && x.RetCode != nil {
  3575. return *x.RetCode
  3576. }
  3577. return 0
  3578. }
  3579. func (x *ZSBuyOrderListingRsp) GetRetDesc() string {
  3580. if x != nil && x.RetDesc != nil {
  3581. return *x.RetDesc
  3582. }
  3583. return ""
  3584. }
  3585. func (x *ZSBuyOrderListingRsp) GetUserID() uint32 {
  3586. if x != nil && x.UserID != nil {
  3587. return *x.UserID
  3588. }
  3589. return 0
  3590. }
  3591. func (x *ZSBuyOrderListingRsp) GetAccountID() uint64 {
  3592. if x != nil && x.AccountID != nil {
  3593. return *x.AccountID
  3594. }
  3595. return 0
  3596. }
  3597. func (x *ZSBuyOrderListingRsp) GetWRTradeOrderID() uint64 {
  3598. if x != nil && x.WRTradeOrderID != nil {
  3599. return *x.WRTradeOrderID
  3600. }
  3601. return 0
  3602. }
  3603. func (x *ZSBuyOrderListingRsp) GetOrderTime() string {
  3604. if x != nil && x.OrderTime != nil {
  3605. return *x.OrderTime
  3606. }
  3607. return ""
  3608. }
  3609. func (x *ZSBuyOrderListingRsp) GetClientSerialNo() string {
  3610. if x != nil && x.ClientSerialNo != nil {
  3611. return *x.ClientSerialNo
  3612. }
  3613. return ""
  3614. }
  3615. // 钻石卖挂牌接口请求
  3616. type ZSSellOrderListingReq struct {
  3617. state protoimpl.MessageState
  3618. sizeCache protoimpl.SizeCache
  3619. unknownFields protoimpl.UnknownFields
  3620. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  3621. UserID *uint64 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  3622. AccountID *uint64 `protobuf:"varint,3,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账户ID,必填
  3623. WRStandardID *uint64 `protobuf:"varint,4,opt,name=WRStandardID" json:"WRStandardID,omitempty"` // 现货商品ID,必填
  3624. WRFactorTypeID *uint64 `protobuf:"varint,5,opt,name=WRFactorTypeID" json:"WRFactorTypeID,omitempty"` // 仓单要素类型ID,必填
  3625. OrderQty *float64 `protobuf:"fixed64,6,opt,name=OrderQty" json:"OrderQty,omitempty"` // 挂牌数量,必填2位小数,为WeigthAvg的整数倍
  3626. LadingBillID *uint64 `protobuf:"varint,7,opt,name=LadingBillID" json:"LadingBillID,omitempty"` // 提单ID,必填
  3627. SubNum *uint32 `protobuf:"varint,8,opt,name=SubNum" json:"SubNum,omitempty"` // 提单子单号,必填
  3628. PerformanceTemplateID *int64 `protobuf:"varint,9,opt,name=PerformanceTemplateID" json:"PerformanceTemplateID,omitempty"` // 履约计划模板ID
  3629. TimevalidType *uint32 `protobuf:"varint,10,opt,name=TimevalidType" json:"TimevalidType,omitempty"` // 时间有效类型
  3630. ValidTime *string `protobuf:"bytes,11,opt,name=ValidTime" json:"ValidTime,omitempty"` // 有效期限
  3631. OrderSrc *uint32 `protobuf:"varint,12,opt,name=OrderSrc" json:"OrderSrc,omitempty"` // 委托来源
  3632. ClientSerialNo *string `protobuf:"bytes,13,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  3633. ClientOrderTime *string `protobuf:"bytes,14,opt,name=ClientOrderTime" json:"ClientOrderTime,omitempty"` // 客户端委托时间
  3634. ClientType *uint32 `protobuf:"varint,15,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  3635. MarketID *uint64 `protobuf:"varint,16,opt,name=MarketID" json:"MarketID,omitempty"` // 市场ID,必填
  3636. }
  3637. func (x *ZSSellOrderListingReq) Reset() {
  3638. *x = ZSSellOrderListingReq{}
  3639. if protoimpl.UnsafeEnabled {
  3640. mi := &file_mtp2_proto_msgTypes[38]
  3641. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3642. ms.StoreMessageInfo(mi)
  3643. }
  3644. }
  3645. func (x *ZSSellOrderListingReq) String() string {
  3646. return protoimpl.X.MessageStringOf(x)
  3647. }
  3648. func (*ZSSellOrderListingReq) ProtoMessage() {}
  3649. func (x *ZSSellOrderListingReq) ProtoReflect() protoreflect.Message {
  3650. mi := &file_mtp2_proto_msgTypes[38]
  3651. if protoimpl.UnsafeEnabled && x != nil {
  3652. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3653. if ms.LoadMessageInfo() == nil {
  3654. ms.StoreMessageInfo(mi)
  3655. }
  3656. return ms
  3657. }
  3658. return mi.MessageOf(x)
  3659. }
  3660. // Deprecated: Use ZSSellOrderListingReq.ProtoReflect.Descriptor instead.
  3661. func (*ZSSellOrderListingReq) Descriptor() ([]byte, []int) {
  3662. return file_mtp2_proto_rawDescGZIP(), []int{38}
  3663. }
  3664. func (x *ZSSellOrderListingReq) GetHeader() *MessageHead {
  3665. if x != nil {
  3666. return x.Header
  3667. }
  3668. return nil
  3669. }
  3670. func (x *ZSSellOrderListingReq) GetUserID() uint64 {
  3671. if x != nil && x.UserID != nil {
  3672. return *x.UserID
  3673. }
  3674. return 0
  3675. }
  3676. func (x *ZSSellOrderListingReq) GetAccountID() uint64 {
  3677. if x != nil && x.AccountID != nil {
  3678. return *x.AccountID
  3679. }
  3680. return 0
  3681. }
  3682. func (x *ZSSellOrderListingReq) GetWRStandardID() uint64 {
  3683. if x != nil && x.WRStandardID != nil {
  3684. return *x.WRStandardID
  3685. }
  3686. return 0
  3687. }
  3688. func (x *ZSSellOrderListingReq) GetWRFactorTypeID() uint64 {
  3689. if x != nil && x.WRFactorTypeID != nil {
  3690. return *x.WRFactorTypeID
  3691. }
  3692. return 0
  3693. }
  3694. func (x *ZSSellOrderListingReq) GetOrderQty() float64 {
  3695. if x != nil && x.OrderQty != nil {
  3696. return *x.OrderQty
  3697. }
  3698. return 0
  3699. }
  3700. func (x *ZSSellOrderListingReq) GetLadingBillID() uint64 {
  3701. if x != nil && x.LadingBillID != nil {
  3702. return *x.LadingBillID
  3703. }
  3704. return 0
  3705. }
  3706. func (x *ZSSellOrderListingReq) GetSubNum() uint32 {
  3707. if x != nil && x.SubNum != nil {
  3708. return *x.SubNum
  3709. }
  3710. return 0
  3711. }
  3712. func (x *ZSSellOrderListingReq) GetPerformanceTemplateID() int64 {
  3713. if x != nil && x.PerformanceTemplateID != nil {
  3714. return *x.PerformanceTemplateID
  3715. }
  3716. return 0
  3717. }
  3718. func (x *ZSSellOrderListingReq) GetTimevalidType() uint32 {
  3719. if x != nil && x.TimevalidType != nil {
  3720. return *x.TimevalidType
  3721. }
  3722. return 0
  3723. }
  3724. func (x *ZSSellOrderListingReq) GetValidTime() string {
  3725. if x != nil && x.ValidTime != nil {
  3726. return *x.ValidTime
  3727. }
  3728. return ""
  3729. }
  3730. func (x *ZSSellOrderListingReq) GetOrderSrc() uint32 {
  3731. if x != nil && x.OrderSrc != nil {
  3732. return *x.OrderSrc
  3733. }
  3734. return 0
  3735. }
  3736. func (x *ZSSellOrderListingReq) GetClientSerialNo() string {
  3737. if x != nil && x.ClientSerialNo != nil {
  3738. return *x.ClientSerialNo
  3739. }
  3740. return ""
  3741. }
  3742. func (x *ZSSellOrderListingReq) GetClientOrderTime() string {
  3743. if x != nil && x.ClientOrderTime != nil {
  3744. return *x.ClientOrderTime
  3745. }
  3746. return ""
  3747. }
  3748. func (x *ZSSellOrderListingReq) GetClientType() uint32 {
  3749. if x != nil && x.ClientType != nil {
  3750. return *x.ClientType
  3751. }
  3752. return 0
  3753. }
  3754. func (x *ZSSellOrderListingReq) GetMarketID() uint64 {
  3755. if x != nil && x.MarketID != nil {
  3756. return *x.MarketID
  3757. }
  3758. return 0
  3759. }
  3760. // 钻石卖挂牌接口响应
  3761. type ZSSellOrderListingRsp struct {
  3762. state protoimpl.MessageState
  3763. sizeCache protoimpl.SizeCache
  3764. unknownFields protoimpl.UnknownFields
  3765. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  3766. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  3767. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  3768. UserID *uint32 `protobuf:"varint,4,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  3769. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
  3770. WRTradeOrderID *uint64 `protobuf:"varint,6,opt,name=WRTradeOrderID" json:"WRTradeOrderID,omitempty"` // 仓单贸易委托单ID
  3771. FreezeQty *uint64 `protobuf:"varint,7,opt,name=FreezeQty" json:"FreezeQty,omitempty"` // 冻结数量
  3772. OrderTime *string `protobuf:"bytes,8,opt,name=OrderTime" json:"OrderTime,omitempty"` // 接收委托交易的时间
  3773. ClientSerialNo *string `protobuf:"bytes,9,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  3774. }
  3775. func (x *ZSSellOrderListingRsp) Reset() {
  3776. *x = ZSSellOrderListingRsp{}
  3777. if protoimpl.UnsafeEnabled {
  3778. mi := &file_mtp2_proto_msgTypes[39]
  3779. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3780. ms.StoreMessageInfo(mi)
  3781. }
  3782. }
  3783. func (x *ZSSellOrderListingRsp) String() string {
  3784. return protoimpl.X.MessageStringOf(x)
  3785. }
  3786. func (*ZSSellOrderListingRsp) ProtoMessage() {}
  3787. func (x *ZSSellOrderListingRsp) ProtoReflect() protoreflect.Message {
  3788. mi := &file_mtp2_proto_msgTypes[39]
  3789. if protoimpl.UnsafeEnabled && x != nil {
  3790. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3791. if ms.LoadMessageInfo() == nil {
  3792. ms.StoreMessageInfo(mi)
  3793. }
  3794. return ms
  3795. }
  3796. return mi.MessageOf(x)
  3797. }
  3798. // Deprecated: Use ZSSellOrderListingRsp.ProtoReflect.Descriptor instead.
  3799. func (*ZSSellOrderListingRsp) Descriptor() ([]byte, []int) {
  3800. return file_mtp2_proto_rawDescGZIP(), []int{39}
  3801. }
  3802. func (x *ZSSellOrderListingRsp) GetHeader() *MessageHead {
  3803. if x != nil {
  3804. return x.Header
  3805. }
  3806. return nil
  3807. }
  3808. func (x *ZSSellOrderListingRsp) GetRetCode() int32 {
  3809. if x != nil && x.RetCode != nil {
  3810. return *x.RetCode
  3811. }
  3812. return 0
  3813. }
  3814. func (x *ZSSellOrderListingRsp) GetRetDesc() string {
  3815. if x != nil && x.RetDesc != nil {
  3816. return *x.RetDesc
  3817. }
  3818. return ""
  3819. }
  3820. func (x *ZSSellOrderListingRsp) GetUserID() uint32 {
  3821. if x != nil && x.UserID != nil {
  3822. return *x.UserID
  3823. }
  3824. return 0
  3825. }
  3826. func (x *ZSSellOrderListingRsp) GetAccountID() uint64 {
  3827. if x != nil && x.AccountID != nil {
  3828. return *x.AccountID
  3829. }
  3830. return 0
  3831. }
  3832. func (x *ZSSellOrderListingRsp) GetWRTradeOrderID() uint64 {
  3833. if x != nil && x.WRTradeOrderID != nil {
  3834. return *x.WRTradeOrderID
  3835. }
  3836. return 0
  3837. }
  3838. func (x *ZSSellOrderListingRsp) GetFreezeQty() uint64 {
  3839. if x != nil && x.FreezeQty != nil {
  3840. return *x.FreezeQty
  3841. }
  3842. return 0
  3843. }
  3844. func (x *ZSSellOrderListingRsp) GetOrderTime() string {
  3845. if x != nil && x.OrderTime != nil {
  3846. return *x.OrderTime
  3847. }
  3848. return ""
  3849. }
  3850. func (x *ZSSellOrderListingRsp) GetClientSerialNo() string {
  3851. if x != nil && x.ClientSerialNo != nil {
  3852. return *x.ClientSerialNo
  3853. }
  3854. return ""
  3855. }
  3856. // 钻石买摘牌接口请求
  3857. type ZSBuyOrderDestingReq struct {
  3858. state protoimpl.MessageState
  3859. sizeCache protoimpl.SizeCache
  3860. unknownFields protoimpl.UnknownFields
  3861. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  3862. UserID *uint32 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  3863. AccountID *uint64 `protobuf:"varint,3,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号,必填
  3864. RelatedWRTradeOrderID *uint64 `protobuf:"varint,4,opt,name=RelatedWRTradeOrderID" json:"RelatedWRTradeOrderID,omitempty"` // 卖委托单号,必填
  3865. OrderQty *float64 `protobuf:"fixed64,5,opt,name=OrderQty" json:"OrderQty,omitempty"` // 委托数量,必填2位小数,为WeigthAvg的整数倍
  3866. OrderSrc *uint32 `protobuf:"varint,6,opt,name=OrderSrc" json:"OrderSrc,omitempty"` // 委托来源
  3867. ClientSerialNo *string `protobuf:"bytes,7,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  3868. ClientOrderTime *string `protobuf:"bytes,8,opt,name=ClientOrderTime" json:"ClientOrderTime,omitempty"` // 客户端委托时间
  3869. ClientType *uint32 `protobuf:"varint,9,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  3870. OperatorID *uint64 `protobuf:"varint,10,opt,name=OperatorID" json:"OperatorID,omitempty"` // 操作员账号ID
  3871. MarketID *uint64 `protobuf:"varint,11,opt,name=MarketID" json:"MarketID,omitempty"` // 市场ID,必填
  3872. }
  3873. func (x *ZSBuyOrderDestingReq) Reset() {
  3874. *x = ZSBuyOrderDestingReq{}
  3875. if protoimpl.UnsafeEnabled {
  3876. mi := &file_mtp2_proto_msgTypes[40]
  3877. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3878. ms.StoreMessageInfo(mi)
  3879. }
  3880. }
  3881. func (x *ZSBuyOrderDestingReq) String() string {
  3882. return protoimpl.X.MessageStringOf(x)
  3883. }
  3884. func (*ZSBuyOrderDestingReq) ProtoMessage() {}
  3885. func (x *ZSBuyOrderDestingReq) ProtoReflect() protoreflect.Message {
  3886. mi := &file_mtp2_proto_msgTypes[40]
  3887. if protoimpl.UnsafeEnabled && x != nil {
  3888. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3889. if ms.LoadMessageInfo() == nil {
  3890. ms.StoreMessageInfo(mi)
  3891. }
  3892. return ms
  3893. }
  3894. return mi.MessageOf(x)
  3895. }
  3896. // Deprecated: Use ZSBuyOrderDestingReq.ProtoReflect.Descriptor instead.
  3897. func (*ZSBuyOrderDestingReq) Descriptor() ([]byte, []int) {
  3898. return file_mtp2_proto_rawDescGZIP(), []int{40}
  3899. }
  3900. func (x *ZSBuyOrderDestingReq) GetHeader() *MessageHead {
  3901. if x != nil {
  3902. return x.Header
  3903. }
  3904. return nil
  3905. }
  3906. func (x *ZSBuyOrderDestingReq) GetUserID() uint32 {
  3907. if x != nil && x.UserID != nil {
  3908. return *x.UserID
  3909. }
  3910. return 0
  3911. }
  3912. func (x *ZSBuyOrderDestingReq) GetAccountID() uint64 {
  3913. if x != nil && x.AccountID != nil {
  3914. return *x.AccountID
  3915. }
  3916. return 0
  3917. }
  3918. func (x *ZSBuyOrderDestingReq) GetRelatedWRTradeOrderID() uint64 {
  3919. if x != nil && x.RelatedWRTradeOrderID != nil {
  3920. return *x.RelatedWRTradeOrderID
  3921. }
  3922. return 0
  3923. }
  3924. func (x *ZSBuyOrderDestingReq) GetOrderQty() float64 {
  3925. if x != nil && x.OrderQty != nil {
  3926. return *x.OrderQty
  3927. }
  3928. return 0
  3929. }
  3930. func (x *ZSBuyOrderDestingReq) GetOrderSrc() uint32 {
  3931. if x != nil && x.OrderSrc != nil {
  3932. return *x.OrderSrc
  3933. }
  3934. return 0
  3935. }
  3936. func (x *ZSBuyOrderDestingReq) GetClientSerialNo() string {
  3937. if x != nil && x.ClientSerialNo != nil {
  3938. return *x.ClientSerialNo
  3939. }
  3940. return ""
  3941. }
  3942. func (x *ZSBuyOrderDestingReq) GetClientOrderTime() string {
  3943. if x != nil && x.ClientOrderTime != nil {
  3944. return *x.ClientOrderTime
  3945. }
  3946. return ""
  3947. }
  3948. func (x *ZSBuyOrderDestingReq) GetClientType() uint32 {
  3949. if x != nil && x.ClientType != nil {
  3950. return *x.ClientType
  3951. }
  3952. return 0
  3953. }
  3954. func (x *ZSBuyOrderDestingReq) GetOperatorID() uint64 {
  3955. if x != nil && x.OperatorID != nil {
  3956. return *x.OperatorID
  3957. }
  3958. return 0
  3959. }
  3960. func (x *ZSBuyOrderDestingReq) GetMarketID() uint64 {
  3961. if x != nil && x.MarketID != nil {
  3962. return *x.MarketID
  3963. }
  3964. return 0
  3965. }
  3966. // 钻石买摘牌接口响应
  3967. type ZSBuyOrderDestingRsp struct {
  3968. state protoimpl.MessageState
  3969. sizeCache protoimpl.SizeCache
  3970. unknownFields protoimpl.UnknownFields
  3971. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  3972. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  3973. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  3974. UserID *uint32 `protobuf:"varint,4,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  3975. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
  3976. WRTradeOrderID *uint64 `protobuf:"varint,6,opt,name=WRTradeOrderID" json:"WRTradeOrderID,omitempty"` // 仓单贸易委托单ID
  3977. RelatedWRTradeOrderID *uint64 `protobuf:"varint,7,opt,name=RelatedWRTradeOrderID" json:"RelatedWRTradeOrderID,omitempty"` // 关联委托单号(摘牌委托关联挂牌委托单ID)
  3978. FreezeAmount *float64 `protobuf:"fixed64,8,opt,name=FreezeAmount" json:"FreezeAmount,omitempty"` // 冻结货款
  3979. OrderTime *string `protobuf:"bytes,9,opt,name=OrderTime" json:"OrderTime,omitempty"` // 接收委托交易的时间
  3980. ClientSerialNo *string `protobuf:"bytes,10,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  3981. }
  3982. func (x *ZSBuyOrderDestingRsp) Reset() {
  3983. *x = ZSBuyOrderDestingRsp{}
  3984. if protoimpl.UnsafeEnabled {
  3985. mi := &file_mtp2_proto_msgTypes[41]
  3986. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3987. ms.StoreMessageInfo(mi)
  3988. }
  3989. }
  3990. func (x *ZSBuyOrderDestingRsp) String() string {
  3991. return protoimpl.X.MessageStringOf(x)
  3992. }
  3993. func (*ZSBuyOrderDestingRsp) ProtoMessage() {}
  3994. func (x *ZSBuyOrderDestingRsp) ProtoReflect() protoreflect.Message {
  3995. mi := &file_mtp2_proto_msgTypes[41]
  3996. if protoimpl.UnsafeEnabled && x != nil {
  3997. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3998. if ms.LoadMessageInfo() == nil {
  3999. ms.StoreMessageInfo(mi)
  4000. }
  4001. return ms
  4002. }
  4003. return mi.MessageOf(x)
  4004. }
  4005. // Deprecated: Use ZSBuyOrderDestingRsp.ProtoReflect.Descriptor instead.
  4006. func (*ZSBuyOrderDestingRsp) Descriptor() ([]byte, []int) {
  4007. return file_mtp2_proto_rawDescGZIP(), []int{41}
  4008. }
  4009. func (x *ZSBuyOrderDestingRsp) GetHeader() *MessageHead {
  4010. if x != nil {
  4011. return x.Header
  4012. }
  4013. return nil
  4014. }
  4015. func (x *ZSBuyOrderDestingRsp) GetRetCode() int32 {
  4016. if x != nil && x.RetCode != nil {
  4017. return *x.RetCode
  4018. }
  4019. return 0
  4020. }
  4021. func (x *ZSBuyOrderDestingRsp) GetRetDesc() string {
  4022. if x != nil && x.RetDesc != nil {
  4023. return *x.RetDesc
  4024. }
  4025. return ""
  4026. }
  4027. func (x *ZSBuyOrderDestingRsp) GetUserID() uint32 {
  4028. if x != nil && x.UserID != nil {
  4029. return *x.UserID
  4030. }
  4031. return 0
  4032. }
  4033. func (x *ZSBuyOrderDestingRsp) GetAccountID() uint64 {
  4034. if x != nil && x.AccountID != nil {
  4035. return *x.AccountID
  4036. }
  4037. return 0
  4038. }
  4039. func (x *ZSBuyOrderDestingRsp) GetWRTradeOrderID() uint64 {
  4040. if x != nil && x.WRTradeOrderID != nil {
  4041. return *x.WRTradeOrderID
  4042. }
  4043. return 0
  4044. }
  4045. func (x *ZSBuyOrderDestingRsp) GetRelatedWRTradeOrderID() uint64 {
  4046. if x != nil && x.RelatedWRTradeOrderID != nil {
  4047. return *x.RelatedWRTradeOrderID
  4048. }
  4049. return 0
  4050. }
  4051. func (x *ZSBuyOrderDestingRsp) GetFreezeAmount() float64 {
  4052. if x != nil && x.FreezeAmount != nil {
  4053. return *x.FreezeAmount
  4054. }
  4055. return 0
  4056. }
  4057. func (x *ZSBuyOrderDestingRsp) GetOrderTime() string {
  4058. if x != nil && x.OrderTime != nil {
  4059. return *x.OrderTime
  4060. }
  4061. return ""
  4062. }
  4063. func (x *ZSBuyOrderDestingRsp) GetClientSerialNo() string {
  4064. if x != nil && x.ClientSerialNo != nil {
  4065. return *x.ClientSerialNo
  4066. }
  4067. return ""
  4068. }
  4069. // 钻石卖摘牌申请接口请求
  4070. type ZSSellOrderDestingApplyReq struct {
  4071. state protoimpl.MessageState
  4072. sizeCache protoimpl.SizeCache
  4073. unknownFields protoimpl.UnknownFields
  4074. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  4075. UserID *uint64 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  4076. AccountID *uint64 `protobuf:"varint,3,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账户ID,必填
  4077. BuyWRTradeOrderID *uint64 `protobuf:"varint,4,opt,name=BuyWRTradeOrderID" json:"BuyWRTradeOrderID,omitempty"` // 买挂牌委托单ID,必填
  4078. WRStandardID *uint64 `protobuf:"varint,5,opt,name=WRStandardID" json:"WRStandardID,omitempty"` // 现货商品ID,必填
  4079. WRFactorTypeID *uint64 `protobuf:"varint,6,opt,name=WRFactorTypeID" json:"WRFactorTypeID,omitempty"` // 仓单要素类型ID,必填
  4080. ApplyQty *float64 `protobuf:"fixed64,7,opt,name=ApplyQty" json:"ApplyQty,omitempty"` // 申请数量,必填,2位小数
  4081. ApplyPrice *float64 `protobuf:"fixed64,8,opt,name=ApplyPrice" json:"ApplyPrice,omitempty"` // 申请价格,必填,2位小数
  4082. LadingBillID *uint64 `protobuf:"varint,9,opt,name=LadingBillID" json:"LadingBillID,omitempty"` // 提单ID,必填
  4083. SubNum *uint32 `protobuf:"varint,10,opt,name=SubNum" json:"SubNum,omitempty"` // 提单子单号,必填
  4084. ApplyRemark *string `protobuf:"bytes,11,opt,name=ApplyRemark" json:"ApplyRemark,omitempty"` // 备注
  4085. ClientType *uint32 `protobuf:"varint,12,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  4086. ClientSerialNo *string `protobuf:"bytes,13,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  4087. MarketID *uint64 `protobuf:"varint,14,opt,name=MarketID" json:"MarketID,omitempty"` // 市场ID,必填
  4088. }
  4089. func (x *ZSSellOrderDestingApplyReq) Reset() {
  4090. *x = ZSSellOrderDestingApplyReq{}
  4091. if protoimpl.UnsafeEnabled {
  4092. mi := &file_mtp2_proto_msgTypes[42]
  4093. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4094. ms.StoreMessageInfo(mi)
  4095. }
  4096. }
  4097. func (x *ZSSellOrderDestingApplyReq) String() string {
  4098. return protoimpl.X.MessageStringOf(x)
  4099. }
  4100. func (*ZSSellOrderDestingApplyReq) ProtoMessage() {}
  4101. func (x *ZSSellOrderDestingApplyReq) ProtoReflect() protoreflect.Message {
  4102. mi := &file_mtp2_proto_msgTypes[42]
  4103. if protoimpl.UnsafeEnabled && x != nil {
  4104. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4105. if ms.LoadMessageInfo() == nil {
  4106. ms.StoreMessageInfo(mi)
  4107. }
  4108. return ms
  4109. }
  4110. return mi.MessageOf(x)
  4111. }
  4112. // Deprecated: Use ZSSellOrderDestingApplyReq.ProtoReflect.Descriptor instead.
  4113. func (*ZSSellOrderDestingApplyReq) Descriptor() ([]byte, []int) {
  4114. return file_mtp2_proto_rawDescGZIP(), []int{42}
  4115. }
  4116. func (x *ZSSellOrderDestingApplyReq) GetHeader() *MessageHead {
  4117. if x != nil {
  4118. return x.Header
  4119. }
  4120. return nil
  4121. }
  4122. func (x *ZSSellOrderDestingApplyReq) GetUserID() uint64 {
  4123. if x != nil && x.UserID != nil {
  4124. return *x.UserID
  4125. }
  4126. return 0
  4127. }
  4128. func (x *ZSSellOrderDestingApplyReq) GetAccountID() uint64 {
  4129. if x != nil && x.AccountID != nil {
  4130. return *x.AccountID
  4131. }
  4132. return 0
  4133. }
  4134. func (x *ZSSellOrderDestingApplyReq) GetBuyWRTradeOrderID() uint64 {
  4135. if x != nil && x.BuyWRTradeOrderID != nil {
  4136. return *x.BuyWRTradeOrderID
  4137. }
  4138. return 0
  4139. }
  4140. func (x *ZSSellOrderDestingApplyReq) GetWRStandardID() uint64 {
  4141. if x != nil && x.WRStandardID != nil {
  4142. return *x.WRStandardID
  4143. }
  4144. return 0
  4145. }
  4146. func (x *ZSSellOrderDestingApplyReq) GetWRFactorTypeID() uint64 {
  4147. if x != nil && x.WRFactorTypeID != nil {
  4148. return *x.WRFactorTypeID
  4149. }
  4150. return 0
  4151. }
  4152. func (x *ZSSellOrderDestingApplyReq) GetApplyQty() float64 {
  4153. if x != nil && x.ApplyQty != nil {
  4154. return *x.ApplyQty
  4155. }
  4156. return 0
  4157. }
  4158. func (x *ZSSellOrderDestingApplyReq) GetApplyPrice() float64 {
  4159. if x != nil && x.ApplyPrice != nil {
  4160. return *x.ApplyPrice
  4161. }
  4162. return 0
  4163. }
  4164. func (x *ZSSellOrderDestingApplyReq) GetLadingBillID() uint64 {
  4165. if x != nil && x.LadingBillID != nil {
  4166. return *x.LadingBillID
  4167. }
  4168. return 0
  4169. }
  4170. func (x *ZSSellOrderDestingApplyReq) GetSubNum() uint32 {
  4171. if x != nil && x.SubNum != nil {
  4172. return *x.SubNum
  4173. }
  4174. return 0
  4175. }
  4176. func (x *ZSSellOrderDestingApplyReq) GetApplyRemark() string {
  4177. if x != nil && x.ApplyRemark != nil {
  4178. return *x.ApplyRemark
  4179. }
  4180. return ""
  4181. }
  4182. func (x *ZSSellOrderDestingApplyReq) GetClientType() uint32 {
  4183. if x != nil && x.ClientType != nil {
  4184. return *x.ClientType
  4185. }
  4186. return 0
  4187. }
  4188. func (x *ZSSellOrderDestingApplyReq) GetClientSerialNo() string {
  4189. if x != nil && x.ClientSerialNo != nil {
  4190. return *x.ClientSerialNo
  4191. }
  4192. return ""
  4193. }
  4194. func (x *ZSSellOrderDestingApplyReq) GetMarketID() uint64 {
  4195. if x != nil && x.MarketID != nil {
  4196. return *x.MarketID
  4197. }
  4198. return 0
  4199. }
  4200. // 钻石卖摘牌申请接口响应
  4201. type ZSSellOrderDestingApplyRsp struct {
  4202. state protoimpl.MessageState
  4203. sizeCache protoimpl.SizeCache
  4204. unknownFields protoimpl.UnknownFields
  4205. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  4206. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  4207. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  4208. UserID *uint32 `protobuf:"varint,4,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  4209. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
  4210. ApplyID *uint64 `protobuf:"varint,6,opt,name=ApplyID" json:"ApplyID,omitempty"` // 仓单贸易委托单ID
  4211. ClientSerialNo *string `protobuf:"bytes,7,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  4212. }
  4213. func (x *ZSSellOrderDestingApplyRsp) Reset() {
  4214. *x = ZSSellOrderDestingApplyRsp{}
  4215. if protoimpl.UnsafeEnabled {
  4216. mi := &file_mtp2_proto_msgTypes[43]
  4217. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4218. ms.StoreMessageInfo(mi)
  4219. }
  4220. }
  4221. func (x *ZSSellOrderDestingApplyRsp) String() string {
  4222. return protoimpl.X.MessageStringOf(x)
  4223. }
  4224. func (*ZSSellOrderDestingApplyRsp) ProtoMessage() {}
  4225. func (x *ZSSellOrderDestingApplyRsp) ProtoReflect() protoreflect.Message {
  4226. mi := &file_mtp2_proto_msgTypes[43]
  4227. if protoimpl.UnsafeEnabled && x != nil {
  4228. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4229. if ms.LoadMessageInfo() == nil {
  4230. ms.StoreMessageInfo(mi)
  4231. }
  4232. return ms
  4233. }
  4234. return mi.MessageOf(x)
  4235. }
  4236. // Deprecated: Use ZSSellOrderDestingApplyRsp.ProtoReflect.Descriptor instead.
  4237. func (*ZSSellOrderDestingApplyRsp) Descriptor() ([]byte, []int) {
  4238. return file_mtp2_proto_rawDescGZIP(), []int{43}
  4239. }
  4240. func (x *ZSSellOrderDestingApplyRsp) GetHeader() *MessageHead {
  4241. if x != nil {
  4242. return x.Header
  4243. }
  4244. return nil
  4245. }
  4246. func (x *ZSSellOrderDestingApplyRsp) GetRetCode() int32 {
  4247. if x != nil && x.RetCode != nil {
  4248. return *x.RetCode
  4249. }
  4250. return 0
  4251. }
  4252. func (x *ZSSellOrderDestingApplyRsp) GetRetDesc() string {
  4253. if x != nil && x.RetDesc != nil {
  4254. return *x.RetDesc
  4255. }
  4256. return ""
  4257. }
  4258. func (x *ZSSellOrderDestingApplyRsp) GetUserID() uint32 {
  4259. if x != nil && x.UserID != nil {
  4260. return *x.UserID
  4261. }
  4262. return 0
  4263. }
  4264. func (x *ZSSellOrderDestingApplyRsp) GetAccountID() uint64 {
  4265. if x != nil && x.AccountID != nil {
  4266. return *x.AccountID
  4267. }
  4268. return 0
  4269. }
  4270. func (x *ZSSellOrderDestingApplyRsp) GetApplyID() uint64 {
  4271. if x != nil && x.ApplyID != nil {
  4272. return *x.ApplyID
  4273. }
  4274. return 0
  4275. }
  4276. func (x *ZSSellOrderDestingApplyRsp) GetClientSerialNo() string {
  4277. if x != nil && x.ClientSerialNo != nil {
  4278. return *x.ClientSerialNo
  4279. }
  4280. return ""
  4281. }
  4282. // 钻石卖摘牌申请操作接口请求
  4283. type ZSSellOrderDestingApplyOperateReq struct {
  4284. state protoimpl.MessageState
  4285. sizeCache protoimpl.SizeCache
  4286. unknownFields protoimpl.UnknownFields
  4287. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  4288. UserID *uint32 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  4289. AccountID *uint64 `protobuf:"varint,3,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
  4290. SellDelistingApplyID *uint64 `protobuf:"varint,4,opt,name=SellDelistingApplyID" json:"SellDelistingApplyID,omitempty"` // 卖摘牌申请ID,必填
  4291. AuditRemark *string `protobuf:"bytes,5,opt,name=AuditRemark" json:"AuditRemark,omitempty"` // 备注
  4292. OperateType *uint32 `protobuf:"varint,6,opt,name=OperateType" json:"OperateType,omitempty"` // 操作类型,1:撤销2:拒绝
  4293. MarketID *uint32 `protobuf:"varint,7,opt,name=MarketID" json:"MarketID,omitempty"` // 市场ID,必填
  4294. ClientType *uint32 `protobuf:"varint,8,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  4295. OrderSrc *uint32 `protobuf:"varint,9,opt,name=OrderSrc" json:"OrderSrc,omitempty"` // 委托来源
  4296. ClientSerialNo *string `protobuf:"bytes,10,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  4297. }
  4298. func (x *ZSSellOrderDestingApplyOperateReq) Reset() {
  4299. *x = ZSSellOrderDestingApplyOperateReq{}
  4300. if protoimpl.UnsafeEnabled {
  4301. mi := &file_mtp2_proto_msgTypes[44]
  4302. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4303. ms.StoreMessageInfo(mi)
  4304. }
  4305. }
  4306. func (x *ZSSellOrderDestingApplyOperateReq) String() string {
  4307. return protoimpl.X.MessageStringOf(x)
  4308. }
  4309. func (*ZSSellOrderDestingApplyOperateReq) ProtoMessage() {}
  4310. func (x *ZSSellOrderDestingApplyOperateReq) ProtoReflect() protoreflect.Message {
  4311. mi := &file_mtp2_proto_msgTypes[44]
  4312. if protoimpl.UnsafeEnabled && x != nil {
  4313. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4314. if ms.LoadMessageInfo() == nil {
  4315. ms.StoreMessageInfo(mi)
  4316. }
  4317. return ms
  4318. }
  4319. return mi.MessageOf(x)
  4320. }
  4321. // Deprecated: Use ZSSellOrderDestingApplyOperateReq.ProtoReflect.Descriptor instead.
  4322. func (*ZSSellOrderDestingApplyOperateReq) Descriptor() ([]byte, []int) {
  4323. return file_mtp2_proto_rawDescGZIP(), []int{44}
  4324. }
  4325. func (x *ZSSellOrderDestingApplyOperateReq) GetHeader() *MessageHead {
  4326. if x != nil {
  4327. return x.Header
  4328. }
  4329. return nil
  4330. }
  4331. func (x *ZSSellOrderDestingApplyOperateReq) GetUserID() uint32 {
  4332. if x != nil && x.UserID != nil {
  4333. return *x.UserID
  4334. }
  4335. return 0
  4336. }
  4337. func (x *ZSSellOrderDestingApplyOperateReq) GetAccountID() uint64 {
  4338. if x != nil && x.AccountID != nil {
  4339. return *x.AccountID
  4340. }
  4341. return 0
  4342. }
  4343. func (x *ZSSellOrderDestingApplyOperateReq) GetSellDelistingApplyID() uint64 {
  4344. if x != nil && x.SellDelistingApplyID != nil {
  4345. return *x.SellDelistingApplyID
  4346. }
  4347. return 0
  4348. }
  4349. func (x *ZSSellOrderDestingApplyOperateReq) GetAuditRemark() string {
  4350. if x != nil && x.AuditRemark != nil {
  4351. return *x.AuditRemark
  4352. }
  4353. return ""
  4354. }
  4355. func (x *ZSSellOrderDestingApplyOperateReq) GetOperateType() uint32 {
  4356. if x != nil && x.OperateType != nil {
  4357. return *x.OperateType
  4358. }
  4359. return 0
  4360. }
  4361. func (x *ZSSellOrderDestingApplyOperateReq) GetMarketID() uint32 {
  4362. if x != nil && x.MarketID != nil {
  4363. return *x.MarketID
  4364. }
  4365. return 0
  4366. }
  4367. func (x *ZSSellOrderDestingApplyOperateReq) GetClientType() uint32 {
  4368. if x != nil && x.ClientType != nil {
  4369. return *x.ClientType
  4370. }
  4371. return 0
  4372. }
  4373. func (x *ZSSellOrderDestingApplyOperateReq) GetOrderSrc() uint32 {
  4374. if x != nil && x.OrderSrc != nil {
  4375. return *x.OrderSrc
  4376. }
  4377. return 0
  4378. }
  4379. func (x *ZSSellOrderDestingApplyOperateReq) GetClientSerialNo() string {
  4380. if x != nil && x.ClientSerialNo != nil {
  4381. return *x.ClientSerialNo
  4382. }
  4383. return ""
  4384. }
  4385. // 钻石卖摘牌申请操作接口应答
  4386. type ZSSellOrderDestingApplyOperateRsp struct {
  4387. state protoimpl.MessageState
  4388. sizeCache protoimpl.SizeCache
  4389. unknownFields protoimpl.UnknownFields
  4390. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  4391. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  4392. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  4393. UserID *uint32 `protobuf:"varint,4,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  4394. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
  4395. SellDelistingApplyID *uint64 `protobuf:"varint,6,opt,name=SellDelistingApplyID" json:"SellDelistingApplyID,omitempty"` // 卖摘牌申请ID
  4396. WRTradeOrderID *uint64 `protobuf:"varint,7,opt,name=WRTradeOrderID" json:"WRTradeOrderID,omitempty"` // 仓单贸易委托单ID
  4397. FreezeAmount *float64 `protobuf:"fixed64,8,opt,name=FreezeAmount" json:"FreezeAmount,omitempty"` // 冻结货款
  4398. OrderTime *string `protobuf:"bytes,9,opt,name=OrderTime" json:"OrderTime,omitempty"` // 接收委托交易的时间
  4399. ClientSerialNo *string `protobuf:"bytes,10,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  4400. }
  4401. func (x *ZSSellOrderDestingApplyOperateRsp) Reset() {
  4402. *x = ZSSellOrderDestingApplyOperateRsp{}
  4403. if protoimpl.UnsafeEnabled {
  4404. mi := &file_mtp2_proto_msgTypes[45]
  4405. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4406. ms.StoreMessageInfo(mi)
  4407. }
  4408. }
  4409. func (x *ZSSellOrderDestingApplyOperateRsp) String() string {
  4410. return protoimpl.X.MessageStringOf(x)
  4411. }
  4412. func (*ZSSellOrderDestingApplyOperateRsp) ProtoMessage() {}
  4413. func (x *ZSSellOrderDestingApplyOperateRsp) ProtoReflect() protoreflect.Message {
  4414. mi := &file_mtp2_proto_msgTypes[45]
  4415. if protoimpl.UnsafeEnabled && x != nil {
  4416. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4417. if ms.LoadMessageInfo() == nil {
  4418. ms.StoreMessageInfo(mi)
  4419. }
  4420. return ms
  4421. }
  4422. return mi.MessageOf(x)
  4423. }
  4424. // Deprecated: Use ZSSellOrderDestingApplyOperateRsp.ProtoReflect.Descriptor instead.
  4425. func (*ZSSellOrderDestingApplyOperateRsp) Descriptor() ([]byte, []int) {
  4426. return file_mtp2_proto_rawDescGZIP(), []int{45}
  4427. }
  4428. func (x *ZSSellOrderDestingApplyOperateRsp) GetHeader() *MessageHead {
  4429. if x != nil {
  4430. return x.Header
  4431. }
  4432. return nil
  4433. }
  4434. func (x *ZSSellOrderDestingApplyOperateRsp) GetRetCode() int32 {
  4435. if x != nil && x.RetCode != nil {
  4436. return *x.RetCode
  4437. }
  4438. return 0
  4439. }
  4440. func (x *ZSSellOrderDestingApplyOperateRsp) GetRetDesc() string {
  4441. if x != nil && x.RetDesc != nil {
  4442. return *x.RetDesc
  4443. }
  4444. return ""
  4445. }
  4446. func (x *ZSSellOrderDestingApplyOperateRsp) GetUserID() uint32 {
  4447. if x != nil && x.UserID != nil {
  4448. return *x.UserID
  4449. }
  4450. return 0
  4451. }
  4452. func (x *ZSSellOrderDestingApplyOperateRsp) GetAccountID() uint64 {
  4453. if x != nil && x.AccountID != nil {
  4454. return *x.AccountID
  4455. }
  4456. return 0
  4457. }
  4458. func (x *ZSSellOrderDestingApplyOperateRsp) GetSellDelistingApplyID() uint64 {
  4459. if x != nil && x.SellDelistingApplyID != nil {
  4460. return *x.SellDelistingApplyID
  4461. }
  4462. return 0
  4463. }
  4464. func (x *ZSSellOrderDestingApplyOperateRsp) GetWRTradeOrderID() uint64 {
  4465. if x != nil && x.WRTradeOrderID != nil {
  4466. return *x.WRTradeOrderID
  4467. }
  4468. return 0
  4469. }
  4470. func (x *ZSSellOrderDestingApplyOperateRsp) GetFreezeAmount() float64 {
  4471. if x != nil && x.FreezeAmount != nil {
  4472. return *x.FreezeAmount
  4473. }
  4474. return 0
  4475. }
  4476. func (x *ZSSellOrderDestingApplyOperateRsp) GetOrderTime() string {
  4477. if x != nil && x.OrderTime != nil {
  4478. return *x.OrderTime
  4479. }
  4480. return ""
  4481. }
  4482. func (x *ZSSellOrderDestingApplyOperateRsp) GetClientSerialNo() string {
  4483. if x != nil && x.ClientSerialNo != nil {
  4484. return *x.ClientSerialNo
  4485. }
  4486. return ""
  4487. }
  4488. // 买摘牌询价接口请求
  4489. type ZSBuyOrderDestingNegPriceReq struct {
  4490. state protoimpl.MessageState
  4491. sizeCache protoimpl.SizeCache
  4492. unknownFields protoimpl.UnknownFields
  4493. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  4494. UserID *uint32 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  4495. AccountID *uint64 `protobuf:"varint,3,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号,必填
  4496. RelatedOrderID *uint64 `protobuf:"varint,4,opt,name=RelatedOrderID" json:"RelatedOrderID,omitempty"` // 卖委托单号,必填
  4497. OrderQty *float64 `protobuf:"fixed64,5,opt,name=OrderQty" json:"OrderQty,omitempty"` // 议价数量,2位小数,必填
  4498. ApplyPrice *float64 `protobuf:"fixed64,6,opt,name=ApplyPrice" json:"ApplyPrice,omitempty"` // 协议价格,2位小数,必填
  4499. OrderSrc *uint32 `protobuf:"varint,7,opt,name=OrderSrc" json:"OrderSrc,omitempty"` // 委托来源
  4500. ClientSerialNo *string `protobuf:"bytes,8,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  4501. ClientOrderTime *string `protobuf:"bytes,9,opt,name=ClientOrderTime" json:"ClientOrderTime,omitempty"` // 客户端委托时间
  4502. ClientType *uint32 `protobuf:"varint,10,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  4503. OperatorID *uint64 `protobuf:"varint,11,opt,name=OperatorID" json:"OperatorID,omitempty"` // 操作员账号ID
  4504. MarketID *uint32 `protobuf:"varint,12,opt,name=MarketID" json:"MarketID,omitempty"` // 市场ID,必填
  4505. ApplyRemark *string `protobuf:"bytes,13,opt,name=ApplyRemark" json:"ApplyRemark,omitempty"` // 申请备注
  4506. }
  4507. func (x *ZSBuyOrderDestingNegPriceReq) Reset() {
  4508. *x = ZSBuyOrderDestingNegPriceReq{}
  4509. if protoimpl.UnsafeEnabled {
  4510. mi := &file_mtp2_proto_msgTypes[46]
  4511. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4512. ms.StoreMessageInfo(mi)
  4513. }
  4514. }
  4515. func (x *ZSBuyOrderDestingNegPriceReq) String() string {
  4516. return protoimpl.X.MessageStringOf(x)
  4517. }
  4518. func (*ZSBuyOrderDestingNegPriceReq) ProtoMessage() {}
  4519. func (x *ZSBuyOrderDestingNegPriceReq) ProtoReflect() protoreflect.Message {
  4520. mi := &file_mtp2_proto_msgTypes[46]
  4521. if protoimpl.UnsafeEnabled && x != nil {
  4522. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4523. if ms.LoadMessageInfo() == nil {
  4524. ms.StoreMessageInfo(mi)
  4525. }
  4526. return ms
  4527. }
  4528. return mi.MessageOf(x)
  4529. }
  4530. // Deprecated: Use ZSBuyOrderDestingNegPriceReq.ProtoReflect.Descriptor instead.
  4531. func (*ZSBuyOrderDestingNegPriceReq) Descriptor() ([]byte, []int) {
  4532. return file_mtp2_proto_rawDescGZIP(), []int{46}
  4533. }
  4534. func (x *ZSBuyOrderDestingNegPriceReq) GetHeader() *MessageHead {
  4535. if x != nil {
  4536. return x.Header
  4537. }
  4538. return nil
  4539. }
  4540. func (x *ZSBuyOrderDestingNegPriceReq) GetUserID() uint32 {
  4541. if x != nil && x.UserID != nil {
  4542. return *x.UserID
  4543. }
  4544. return 0
  4545. }
  4546. func (x *ZSBuyOrderDestingNegPriceReq) GetAccountID() uint64 {
  4547. if x != nil && x.AccountID != nil {
  4548. return *x.AccountID
  4549. }
  4550. return 0
  4551. }
  4552. func (x *ZSBuyOrderDestingNegPriceReq) GetRelatedOrderID() uint64 {
  4553. if x != nil && x.RelatedOrderID != nil {
  4554. return *x.RelatedOrderID
  4555. }
  4556. return 0
  4557. }
  4558. func (x *ZSBuyOrderDestingNegPriceReq) GetOrderQty() float64 {
  4559. if x != nil && x.OrderQty != nil {
  4560. return *x.OrderQty
  4561. }
  4562. return 0
  4563. }
  4564. func (x *ZSBuyOrderDestingNegPriceReq) GetApplyPrice() float64 {
  4565. if x != nil && x.ApplyPrice != nil {
  4566. return *x.ApplyPrice
  4567. }
  4568. return 0
  4569. }
  4570. func (x *ZSBuyOrderDestingNegPriceReq) GetOrderSrc() uint32 {
  4571. if x != nil && x.OrderSrc != nil {
  4572. return *x.OrderSrc
  4573. }
  4574. return 0
  4575. }
  4576. func (x *ZSBuyOrderDestingNegPriceReq) GetClientSerialNo() string {
  4577. if x != nil && x.ClientSerialNo != nil {
  4578. return *x.ClientSerialNo
  4579. }
  4580. return ""
  4581. }
  4582. func (x *ZSBuyOrderDestingNegPriceReq) GetClientOrderTime() string {
  4583. if x != nil && x.ClientOrderTime != nil {
  4584. return *x.ClientOrderTime
  4585. }
  4586. return ""
  4587. }
  4588. func (x *ZSBuyOrderDestingNegPriceReq) GetClientType() uint32 {
  4589. if x != nil && x.ClientType != nil {
  4590. return *x.ClientType
  4591. }
  4592. return 0
  4593. }
  4594. func (x *ZSBuyOrderDestingNegPriceReq) GetOperatorID() uint64 {
  4595. if x != nil && x.OperatorID != nil {
  4596. return *x.OperatorID
  4597. }
  4598. return 0
  4599. }
  4600. func (x *ZSBuyOrderDestingNegPriceReq) GetMarketID() uint32 {
  4601. if x != nil && x.MarketID != nil {
  4602. return *x.MarketID
  4603. }
  4604. return 0
  4605. }
  4606. func (x *ZSBuyOrderDestingNegPriceReq) GetApplyRemark() string {
  4607. if x != nil && x.ApplyRemark != nil {
  4608. return *x.ApplyRemark
  4609. }
  4610. return ""
  4611. }
  4612. // 买摘牌询价接口应答
  4613. type ZSBuyOrderDestingNegPriceRsp struct {
  4614. state protoimpl.MessageState
  4615. sizeCache protoimpl.SizeCache
  4616. unknownFields protoimpl.UnknownFields
  4617. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  4618. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  4619. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  4620. UserID *uint32 `protobuf:"varint,4,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  4621. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
  4622. WRTradeOrderID *uint64 `protobuf:"varint,6,opt,name=WRTradeOrderID" json:"WRTradeOrderID,omitempty"` // 摘牌委托单ID
  4623. WRBargainID *uint64 `protobuf:"varint,7,opt,name=WRBargainID" json:"WRBargainID,omitempty"` // 议价申请单ID
  4624. OrderTime *string `protobuf:"bytes,8,opt,name=OrderTime" json:"OrderTime,omitempty"` // 接收委托交易的时间
  4625. ClientSerialNo *string `protobuf:"bytes,9,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  4626. }
  4627. func (x *ZSBuyOrderDestingNegPriceRsp) Reset() {
  4628. *x = ZSBuyOrderDestingNegPriceRsp{}
  4629. if protoimpl.UnsafeEnabled {
  4630. mi := &file_mtp2_proto_msgTypes[47]
  4631. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4632. ms.StoreMessageInfo(mi)
  4633. }
  4634. }
  4635. func (x *ZSBuyOrderDestingNegPriceRsp) String() string {
  4636. return protoimpl.X.MessageStringOf(x)
  4637. }
  4638. func (*ZSBuyOrderDestingNegPriceRsp) ProtoMessage() {}
  4639. func (x *ZSBuyOrderDestingNegPriceRsp) ProtoReflect() protoreflect.Message {
  4640. mi := &file_mtp2_proto_msgTypes[47]
  4641. if protoimpl.UnsafeEnabled && x != nil {
  4642. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4643. if ms.LoadMessageInfo() == nil {
  4644. ms.StoreMessageInfo(mi)
  4645. }
  4646. return ms
  4647. }
  4648. return mi.MessageOf(x)
  4649. }
  4650. // Deprecated: Use ZSBuyOrderDestingNegPriceRsp.ProtoReflect.Descriptor instead.
  4651. func (*ZSBuyOrderDestingNegPriceRsp) Descriptor() ([]byte, []int) {
  4652. return file_mtp2_proto_rawDescGZIP(), []int{47}
  4653. }
  4654. func (x *ZSBuyOrderDestingNegPriceRsp) GetHeader() *MessageHead {
  4655. if x != nil {
  4656. return x.Header
  4657. }
  4658. return nil
  4659. }
  4660. func (x *ZSBuyOrderDestingNegPriceRsp) GetRetCode() int32 {
  4661. if x != nil && x.RetCode != nil {
  4662. return *x.RetCode
  4663. }
  4664. return 0
  4665. }
  4666. func (x *ZSBuyOrderDestingNegPriceRsp) GetRetDesc() string {
  4667. if x != nil && x.RetDesc != nil {
  4668. return *x.RetDesc
  4669. }
  4670. return ""
  4671. }
  4672. func (x *ZSBuyOrderDestingNegPriceRsp) GetUserID() uint32 {
  4673. if x != nil && x.UserID != nil {
  4674. return *x.UserID
  4675. }
  4676. return 0
  4677. }
  4678. func (x *ZSBuyOrderDestingNegPriceRsp) GetAccountID() uint64 {
  4679. if x != nil && x.AccountID != nil {
  4680. return *x.AccountID
  4681. }
  4682. return 0
  4683. }
  4684. func (x *ZSBuyOrderDestingNegPriceRsp) GetWRTradeOrderID() uint64 {
  4685. if x != nil && x.WRTradeOrderID != nil {
  4686. return *x.WRTradeOrderID
  4687. }
  4688. return 0
  4689. }
  4690. func (x *ZSBuyOrderDestingNegPriceRsp) GetWRBargainID() uint64 {
  4691. if x != nil && x.WRBargainID != nil {
  4692. return *x.WRBargainID
  4693. }
  4694. return 0
  4695. }
  4696. func (x *ZSBuyOrderDestingNegPriceRsp) GetOrderTime() string {
  4697. if x != nil && x.OrderTime != nil {
  4698. return *x.OrderTime
  4699. }
  4700. return ""
  4701. }
  4702. func (x *ZSBuyOrderDestingNegPriceRsp) GetClientSerialNo() string {
  4703. if x != nil && x.ClientSerialNo != nil {
  4704. return *x.ClientSerialNo
  4705. }
  4706. return ""
  4707. }
  4708. // 买摘牌询价操作接口请求
  4709. type ZSBuyOrderDestingNegPriceOperateReq struct {
  4710. state protoimpl.MessageState
  4711. sizeCache protoimpl.SizeCache
  4712. unknownFields protoimpl.UnknownFields
  4713. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  4714. UserID *uint32 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  4715. AccountID *uint64 `protobuf:"varint,3,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号,必填
  4716. WRBargainID *uint64 `protobuf:"varint,4,opt,name=WRBargainID" json:"WRBargainID,omitempty"` // 议价申请单ID,必填
  4717. AuditRemark *string `protobuf:"bytes,5,opt,name=AuditRemark" json:"AuditRemark,omitempty"` // 备注
  4718. OperateType *uint32 `protobuf:"varint,6,opt,name=OperateType" json:"OperateType,omitempty"` // 操作类型,1:撤销2:拒绝
  4719. MarketID *uint32 `protobuf:"varint,7,opt,name=MarketID" json:"MarketID,omitempty"` // 市场ID,必填
  4720. ClientType *uint32 `protobuf:"varint,8,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  4721. OrderSrc *uint32 `protobuf:"varint,9,opt,name=OrderSrc" json:"OrderSrc,omitempty"` // 委托来源
  4722. ClientSerialNo *string `protobuf:"bytes,10,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  4723. }
  4724. func (x *ZSBuyOrderDestingNegPriceOperateReq) Reset() {
  4725. *x = ZSBuyOrderDestingNegPriceOperateReq{}
  4726. if protoimpl.UnsafeEnabled {
  4727. mi := &file_mtp2_proto_msgTypes[48]
  4728. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4729. ms.StoreMessageInfo(mi)
  4730. }
  4731. }
  4732. func (x *ZSBuyOrderDestingNegPriceOperateReq) String() string {
  4733. return protoimpl.X.MessageStringOf(x)
  4734. }
  4735. func (*ZSBuyOrderDestingNegPriceOperateReq) ProtoMessage() {}
  4736. func (x *ZSBuyOrderDestingNegPriceOperateReq) ProtoReflect() protoreflect.Message {
  4737. mi := &file_mtp2_proto_msgTypes[48]
  4738. if protoimpl.UnsafeEnabled && x != nil {
  4739. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4740. if ms.LoadMessageInfo() == nil {
  4741. ms.StoreMessageInfo(mi)
  4742. }
  4743. return ms
  4744. }
  4745. return mi.MessageOf(x)
  4746. }
  4747. // Deprecated: Use ZSBuyOrderDestingNegPriceOperateReq.ProtoReflect.Descriptor instead.
  4748. func (*ZSBuyOrderDestingNegPriceOperateReq) Descriptor() ([]byte, []int) {
  4749. return file_mtp2_proto_rawDescGZIP(), []int{48}
  4750. }
  4751. func (x *ZSBuyOrderDestingNegPriceOperateReq) GetHeader() *MessageHead {
  4752. if x != nil {
  4753. return x.Header
  4754. }
  4755. return nil
  4756. }
  4757. func (x *ZSBuyOrderDestingNegPriceOperateReq) GetUserID() uint32 {
  4758. if x != nil && x.UserID != nil {
  4759. return *x.UserID
  4760. }
  4761. return 0
  4762. }
  4763. func (x *ZSBuyOrderDestingNegPriceOperateReq) GetAccountID() uint64 {
  4764. if x != nil && x.AccountID != nil {
  4765. return *x.AccountID
  4766. }
  4767. return 0
  4768. }
  4769. func (x *ZSBuyOrderDestingNegPriceOperateReq) GetWRBargainID() uint64 {
  4770. if x != nil && x.WRBargainID != nil {
  4771. return *x.WRBargainID
  4772. }
  4773. return 0
  4774. }
  4775. func (x *ZSBuyOrderDestingNegPriceOperateReq) GetAuditRemark() string {
  4776. if x != nil && x.AuditRemark != nil {
  4777. return *x.AuditRemark
  4778. }
  4779. return ""
  4780. }
  4781. func (x *ZSBuyOrderDestingNegPriceOperateReq) GetOperateType() uint32 {
  4782. if x != nil && x.OperateType != nil {
  4783. return *x.OperateType
  4784. }
  4785. return 0
  4786. }
  4787. func (x *ZSBuyOrderDestingNegPriceOperateReq) GetMarketID() uint32 {
  4788. if x != nil && x.MarketID != nil {
  4789. return *x.MarketID
  4790. }
  4791. return 0
  4792. }
  4793. func (x *ZSBuyOrderDestingNegPriceOperateReq) GetClientType() uint32 {
  4794. if x != nil && x.ClientType != nil {
  4795. return *x.ClientType
  4796. }
  4797. return 0
  4798. }
  4799. func (x *ZSBuyOrderDestingNegPriceOperateReq) GetOrderSrc() uint32 {
  4800. if x != nil && x.OrderSrc != nil {
  4801. return *x.OrderSrc
  4802. }
  4803. return 0
  4804. }
  4805. func (x *ZSBuyOrderDestingNegPriceOperateReq) GetClientSerialNo() string {
  4806. if x != nil && x.ClientSerialNo != nil {
  4807. return *x.ClientSerialNo
  4808. }
  4809. return ""
  4810. }
  4811. // 买摘牌询价操作接口应答
  4812. type ZSBuyOrderDestingNegPriceOperateRsp struct {
  4813. state protoimpl.MessageState
  4814. sizeCache protoimpl.SizeCache
  4815. unknownFields protoimpl.UnknownFields
  4816. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  4817. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  4818. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  4819. UserID *uint32 `protobuf:"varint,4,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  4820. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
  4821. WRBargainID *uint64 `protobuf:"varint,6,opt,name=WRBargainID" json:"WRBargainID,omitempty"` // 卖委托单号
  4822. ClientSerialNo *string `protobuf:"bytes,7,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  4823. }
  4824. func (x *ZSBuyOrderDestingNegPriceOperateRsp) Reset() {
  4825. *x = ZSBuyOrderDestingNegPriceOperateRsp{}
  4826. if protoimpl.UnsafeEnabled {
  4827. mi := &file_mtp2_proto_msgTypes[49]
  4828. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4829. ms.StoreMessageInfo(mi)
  4830. }
  4831. }
  4832. func (x *ZSBuyOrderDestingNegPriceOperateRsp) String() string {
  4833. return protoimpl.X.MessageStringOf(x)
  4834. }
  4835. func (*ZSBuyOrderDestingNegPriceOperateRsp) ProtoMessage() {}
  4836. func (x *ZSBuyOrderDestingNegPriceOperateRsp) ProtoReflect() protoreflect.Message {
  4837. mi := &file_mtp2_proto_msgTypes[49]
  4838. if protoimpl.UnsafeEnabled && x != nil {
  4839. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4840. if ms.LoadMessageInfo() == nil {
  4841. ms.StoreMessageInfo(mi)
  4842. }
  4843. return ms
  4844. }
  4845. return mi.MessageOf(x)
  4846. }
  4847. // Deprecated: Use ZSBuyOrderDestingNegPriceOperateRsp.ProtoReflect.Descriptor instead.
  4848. func (*ZSBuyOrderDestingNegPriceOperateRsp) Descriptor() ([]byte, []int) {
  4849. return file_mtp2_proto_rawDescGZIP(), []int{49}
  4850. }
  4851. func (x *ZSBuyOrderDestingNegPriceOperateRsp) GetHeader() *MessageHead {
  4852. if x != nil {
  4853. return x.Header
  4854. }
  4855. return nil
  4856. }
  4857. func (x *ZSBuyOrderDestingNegPriceOperateRsp) GetRetCode() int32 {
  4858. if x != nil && x.RetCode != nil {
  4859. return *x.RetCode
  4860. }
  4861. return 0
  4862. }
  4863. func (x *ZSBuyOrderDestingNegPriceOperateRsp) GetRetDesc() string {
  4864. if x != nil && x.RetDesc != nil {
  4865. return *x.RetDesc
  4866. }
  4867. return ""
  4868. }
  4869. func (x *ZSBuyOrderDestingNegPriceOperateRsp) GetUserID() uint32 {
  4870. if x != nil && x.UserID != nil {
  4871. return *x.UserID
  4872. }
  4873. return 0
  4874. }
  4875. func (x *ZSBuyOrderDestingNegPriceOperateRsp) GetAccountID() uint64 {
  4876. if x != nil && x.AccountID != nil {
  4877. return *x.AccountID
  4878. }
  4879. return 0
  4880. }
  4881. func (x *ZSBuyOrderDestingNegPriceOperateRsp) GetWRBargainID() uint64 {
  4882. if x != nil && x.WRBargainID != nil {
  4883. return *x.WRBargainID
  4884. }
  4885. return 0
  4886. }
  4887. func (x *ZSBuyOrderDestingNegPriceOperateRsp) GetClientSerialNo() string {
  4888. if x != nil && x.ClientSerialNo != nil {
  4889. return *x.ClientSerialNo
  4890. }
  4891. return ""
  4892. }
  4893. // 挂牌撤单请求
  4894. type WRListingCancelOrderReq struct {
  4895. state protoimpl.MessageState
  4896. sizeCache protoimpl.SizeCache
  4897. unknownFields protoimpl.UnknownFields
  4898. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  4899. UserID *uint32 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  4900. AccountID *uint64 `protobuf:"varint,3,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
  4901. OldWRTradeOrderID *uint64 `protobuf:"varint,4,opt,name=OldWRTradeOrderID" json:"OldWRTradeOrderID,omitempty"` // 目标仓单贸易委托单ID
  4902. OrderSrc *uint32 `protobuf:"varint,5,opt,name=OrderSrc" json:"OrderSrc,omitempty"` // 委托来源
  4903. ClientSerialNo *string `protobuf:"bytes,6,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  4904. ClientOrderTime *string `protobuf:"bytes,7,opt,name=ClientOrderTime" json:"ClientOrderTime,omitempty"` // 客户端委托时间
  4905. ClientType *uint32 `protobuf:"varint,8,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  4906. OperatorID *uint64 `protobuf:"varint,9,opt,name=OperatorID" json:"OperatorID,omitempty"` // 操作员账号ID
  4907. BuyOrSell *uint32 `protobuf:"varint,10,opt,name=BuyOrSell" json:"BuyOrSell,omitempty"` // 买卖方向
  4908. WRID *uint64 `protobuf:"varint,11,opt,name=WRID" json:"WRID,omitempty"` // 仓单ID,卖的时候填写
  4909. }
  4910. func (x *WRListingCancelOrderReq) Reset() {
  4911. *x = WRListingCancelOrderReq{}
  4912. if protoimpl.UnsafeEnabled {
  4913. mi := &file_mtp2_proto_msgTypes[50]
  4914. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4915. ms.StoreMessageInfo(mi)
  4916. }
  4917. }
  4918. func (x *WRListingCancelOrderReq) String() string {
  4919. return protoimpl.X.MessageStringOf(x)
  4920. }
  4921. func (*WRListingCancelOrderReq) ProtoMessage() {}
  4922. func (x *WRListingCancelOrderReq) ProtoReflect() protoreflect.Message {
  4923. mi := &file_mtp2_proto_msgTypes[50]
  4924. if protoimpl.UnsafeEnabled && x != nil {
  4925. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4926. if ms.LoadMessageInfo() == nil {
  4927. ms.StoreMessageInfo(mi)
  4928. }
  4929. return ms
  4930. }
  4931. return mi.MessageOf(x)
  4932. }
  4933. // Deprecated: Use WRListingCancelOrderReq.ProtoReflect.Descriptor instead.
  4934. func (*WRListingCancelOrderReq) Descriptor() ([]byte, []int) {
  4935. return file_mtp2_proto_rawDescGZIP(), []int{50}
  4936. }
  4937. func (x *WRListingCancelOrderReq) GetHeader() *MessageHead {
  4938. if x != nil {
  4939. return x.Header
  4940. }
  4941. return nil
  4942. }
  4943. func (x *WRListingCancelOrderReq) GetUserID() uint32 {
  4944. if x != nil && x.UserID != nil {
  4945. return *x.UserID
  4946. }
  4947. return 0
  4948. }
  4949. func (x *WRListingCancelOrderReq) GetAccountID() uint64 {
  4950. if x != nil && x.AccountID != nil {
  4951. return *x.AccountID
  4952. }
  4953. return 0
  4954. }
  4955. func (x *WRListingCancelOrderReq) GetOldWRTradeOrderID() uint64 {
  4956. if x != nil && x.OldWRTradeOrderID != nil {
  4957. return *x.OldWRTradeOrderID
  4958. }
  4959. return 0
  4960. }
  4961. func (x *WRListingCancelOrderReq) GetOrderSrc() uint32 {
  4962. if x != nil && x.OrderSrc != nil {
  4963. return *x.OrderSrc
  4964. }
  4965. return 0
  4966. }
  4967. func (x *WRListingCancelOrderReq) GetClientSerialNo() string {
  4968. if x != nil && x.ClientSerialNo != nil {
  4969. return *x.ClientSerialNo
  4970. }
  4971. return ""
  4972. }
  4973. func (x *WRListingCancelOrderReq) GetClientOrderTime() string {
  4974. if x != nil && x.ClientOrderTime != nil {
  4975. return *x.ClientOrderTime
  4976. }
  4977. return ""
  4978. }
  4979. func (x *WRListingCancelOrderReq) GetClientType() uint32 {
  4980. if x != nil && x.ClientType != nil {
  4981. return *x.ClientType
  4982. }
  4983. return 0
  4984. }
  4985. func (x *WRListingCancelOrderReq) GetOperatorID() uint64 {
  4986. if x != nil && x.OperatorID != nil {
  4987. return *x.OperatorID
  4988. }
  4989. return 0
  4990. }
  4991. func (x *WRListingCancelOrderReq) GetBuyOrSell() uint32 {
  4992. if x != nil && x.BuyOrSell != nil {
  4993. return *x.BuyOrSell
  4994. }
  4995. return 0
  4996. }
  4997. func (x *WRListingCancelOrderReq) GetWRID() uint64 {
  4998. if x != nil && x.WRID != nil {
  4999. return *x.WRID
  5000. }
  5001. return 0
  5002. }
  5003. // 挂牌撤单应答
  5004. type WRListingCancelOrderRsp struct {
  5005. state protoimpl.MessageState
  5006. sizeCache protoimpl.SizeCache
  5007. unknownFields protoimpl.UnknownFields
  5008. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  5009. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  5010. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  5011. WRTradeCancelID *uint64 `protobuf:"varint,4,opt,name=WRTradeCancelID" json:"WRTradeCancelID,omitempty"` // 仓单贸易撤单号
  5012. OldWRTradeOrderID *uint64 `protobuf:"varint,5,opt,name=OldWRTradeOrderID" json:"OldWRTradeOrderID,omitempty"` // 目标仓单贸易委托单ID
  5013. UserID *uint32 `protobuf:"varint,6,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  5014. AccountID *uint64 `protobuf:"varint,7,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
  5015. CancelQty *uint64 `protobuf:"varint,8,opt,name=CancelQty" json:"CancelQty,omitempty"` // 撤单数量
  5016. OrderTime *string `protobuf:"bytes,9,opt,name=OrderTime" json:"OrderTime,omitempty"` // 接受撤单的时间
  5017. ClientSerialNo *string `protobuf:"bytes,10,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  5018. }
  5019. func (x *WRListingCancelOrderRsp) Reset() {
  5020. *x = WRListingCancelOrderRsp{}
  5021. if protoimpl.UnsafeEnabled {
  5022. mi := &file_mtp2_proto_msgTypes[51]
  5023. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5024. ms.StoreMessageInfo(mi)
  5025. }
  5026. }
  5027. func (x *WRListingCancelOrderRsp) String() string {
  5028. return protoimpl.X.MessageStringOf(x)
  5029. }
  5030. func (*WRListingCancelOrderRsp) ProtoMessage() {}
  5031. func (x *WRListingCancelOrderRsp) ProtoReflect() protoreflect.Message {
  5032. mi := &file_mtp2_proto_msgTypes[51]
  5033. if protoimpl.UnsafeEnabled && x != nil {
  5034. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5035. if ms.LoadMessageInfo() == nil {
  5036. ms.StoreMessageInfo(mi)
  5037. }
  5038. return ms
  5039. }
  5040. return mi.MessageOf(x)
  5041. }
  5042. // Deprecated: Use WRListingCancelOrderRsp.ProtoReflect.Descriptor instead.
  5043. func (*WRListingCancelOrderRsp) Descriptor() ([]byte, []int) {
  5044. return file_mtp2_proto_rawDescGZIP(), []int{51}
  5045. }
  5046. func (x *WRListingCancelOrderRsp) GetHeader() *MessageHead {
  5047. if x != nil {
  5048. return x.Header
  5049. }
  5050. return nil
  5051. }
  5052. func (x *WRListingCancelOrderRsp) GetRetCode() int32 {
  5053. if x != nil && x.RetCode != nil {
  5054. return *x.RetCode
  5055. }
  5056. return 0
  5057. }
  5058. func (x *WRListingCancelOrderRsp) GetRetDesc() string {
  5059. if x != nil && x.RetDesc != nil {
  5060. return *x.RetDesc
  5061. }
  5062. return ""
  5063. }
  5064. func (x *WRListingCancelOrderRsp) GetWRTradeCancelID() uint64 {
  5065. if x != nil && x.WRTradeCancelID != nil {
  5066. return *x.WRTradeCancelID
  5067. }
  5068. return 0
  5069. }
  5070. func (x *WRListingCancelOrderRsp) GetOldWRTradeOrderID() uint64 {
  5071. if x != nil && x.OldWRTradeOrderID != nil {
  5072. return *x.OldWRTradeOrderID
  5073. }
  5074. return 0
  5075. }
  5076. func (x *WRListingCancelOrderRsp) GetUserID() uint32 {
  5077. if x != nil && x.UserID != nil {
  5078. return *x.UserID
  5079. }
  5080. return 0
  5081. }
  5082. func (x *WRListingCancelOrderRsp) GetAccountID() uint64 {
  5083. if x != nil && x.AccountID != nil {
  5084. return *x.AccountID
  5085. }
  5086. return 0
  5087. }
  5088. func (x *WRListingCancelOrderRsp) GetCancelQty() uint64 {
  5089. if x != nil && x.CancelQty != nil {
  5090. return *x.CancelQty
  5091. }
  5092. return 0
  5093. }
  5094. func (x *WRListingCancelOrderRsp) GetOrderTime() string {
  5095. if x != nil && x.OrderTime != nil {
  5096. return *x.OrderTime
  5097. }
  5098. return ""
  5099. }
  5100. func (x *WRListingCancelOrderRsp) GetClientSerialNo() string {
  5101. if x != nil && x.ClientSerialNo != nil {
  5102. return *x.ClientSerialNo
  5103. }
  5104. return ""
  5105. }
  5106. // 钻石出库申请接口请求
  5107. type ReceiptZSOutApplyReq struct {
  5108. state protoimpl.MessageState
  5109. sizeCache protoimpl.SizeCache
  5110. unknownFields protoimpl.UnknownFields
  5111. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  5112. Common *WRCommon `protobuf:"bytes,2,opt,name=Common" json:"Common,omitempty"` //
  5113. UserID *uint64 `protobuf:"varint,3,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  5114. AccountID *uint64 `protobuf:"varint,4,opt,name=AccountID" json:"AccountID,omitempty"` // 用户帐户ID
  5115. WRStandardID *uint64 `protobuf:"varint,5,opt,name=WRStandardID" json:"WRStandardID,omitempty"` // 现货品种ID
  5116. WarehouseID *uint32 `protobuf:"varint,6,opt,name=WarehouseID" json:"WarehouseID,omitempty"` // 仓库ID
  5117. Mobile *string `protobuf:"bytes,7,opt,name=Mobile" json:"Mobile,omitempty"` // 申请人手机号
  5118. AppointmentDate *string `protobuf:"bytes,8,opt,name=AppointmentDate" json:"AppointmentDate,omitempty"` // 预约日期
  5119. AppointmentModel *int32 `protobuf:"varint,9,opt,name=AppointmentModel" json:"AppointmentModel,omitempty"` // 预约方式:1-物流3-自提
  5120. CountryID *uint64 `protobuf:"varint,10,opt,name=CountryID" json:"CountryID,omitempty"` // 国家
  5121. ProvinceID *uint64 `protobuf:"varint,11,opt,name=ProvinceID" json:"ProvinceID,omitempty"` // 省
  5122. DistrictID *uint64 `protobuf:"varint,12,opt,name=DistrictID" json:"DistrictID,omitempty"` // 区
  5123. CityID *uint64 `protobuf:"varint,13,opt,name=CityID" json:"CityID,omitempty"` // 市
  5124. Address *string `protobuf:"bytes,14,opt,name=Address" json:"Address,omitempty"` // 详细地址
  5125. ContactName *string `protobuf:"bytes,15,opt,name=ContactName" json:"ContactName,omitempty"` // 收货人提货人
  5126. ContactNum *string `protobuf:"bytes,16,opt,name=ContactNum" json:"ContactNum,omitempty"` // 收货人提货人手机
  5127. AppointmentRemark *string `protobuf:"bytes,17,opt,name=AppointmentRemark" json:"AppointmentRemark,omitempty"` // 预约备注
  5128. LadingBillID *uint64 `protobuf:"varint,18,opt,name=LadingBillID" json:"LadingBillID,omitempty"` // 提单ID,必填
  5129. SubNum *uint32 `protobuf:"varint,19,opt,name=SubNum" json:"SubNum,omitempty"` // 提单子单号,必填
  5130. Qty *float64 `protobuf:"fixed64,20,opt,name=Qty" json:"Qty,omitempty"` // 出库数量,两位小数,必填
  5131. Remark *string `protobuf:"bytes,21,opt,name=Remark" json:"Remark,omitempty"` // 备注
  5132. ApplyType *uint32 `protobuf:"varint,22,opt,name=ApplyType" json:"ApplyType,omitempty"` // 申请类型1:会员申请2:平台申请
  5133. ClientType *uint32 `protobuf:"varint,23,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  5134. ClientTicket *string `protobuf:"bytes,24,opt,name=ClientTicket" json:"ClientTicket,omitempty"` // 客户端流水号
  5135. }
  5136. func (x *ReceiptZSOutApplyReq) Reset() {
  5137. *x = ReceiptZSOutApplyReq{}
  5138. if protoimpl.UnsafeEnabled {
  5139. mi := &file_mtp2_proto_msgTypes[52]
  5140. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5141. ms.StoreMessageInfo(mi)
  5142. }
  5143. }
  5144. func (x *ReceiptZSOutApplyReq) String() string {
  5145. return protoimpl.X.MessageStringOf(x)
  5146. }
  5147. func (*ReceiptZSOutApplyReq) ProtoMessage() {}
  5148. func (x *ReceiptZSOutApplyReq) ProtoReflect() protoreflect.Message {
  5149. mi := &file_mtp2_proto_msgTypes[52]
  5150. if protoimpl.UnsafeEnabled && x != nil {
  5151. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5152. if ms.LoadMessageInfo() == nil {
  5153. ms.StoreMessageInfo(mi)
  5154. }
  5155. return ms
  5156. }
  5157. return mi.MessageOf(x)
  5158. }
  5159. // Deprecated: Use ReceiptZSOutApplyReq.ProtoReflect.Descriptor instead.
  5160. func (*ReceiptZSOutApplyReq) Descriptor() ([]byte, []int) {
  5161. return file_mtp2_proto_rawDescGZIP(), []int{52}
  5162. }
  5163. func (x *ReceiptZSOutApplyReq) GetHeader() *MessageHead {
  5164. if x != nil {
  5165. return x.Header
  5166. }
  5167. return nil
  5168. }
  5169. func (x *ReceiptZSOutApplyReq) GetCommon() *WRCommon {
  5170. if x != nil {
  5171. return x.Common
  5172. }
  5173. return nil
  5174. }
  5175. func (x *ReceiptZSOutApplyReq) GetUserID() uint64 {
  5176. if x != nil && x.UserID != nil {
  5177. return *x.UserID
  5178. }
  5179. return 0
  5180. }
  5181. func (x *ReceiptZSOutApplyReq) GetAccountID() uint64 {
  5182. if x != nil && x.AccountID != nil {
  5183. return *x.AccountID
  5184. }
  5185. return 0
  5186. }
  5187. func (x *ReceiptZSOutApplyReq) GetWRStandardID() uint64 {
  5188. if x != nil && x.WRStandardID != nil {
  5189. return *x.WRStandardID
  5190. }
  5191. return 0
  5192. }
  5193. func (x *ReceiptZSOutApplyReq) GetWarehouseID() uint32 {
  5194. if x != nil && x.WarehouseID != nil {
  5195. return *x.WarehouseID
  5196. }
  5197. return 0
  5198. }
  5199. func (x *ReceiptZSOutApplyReq) GetMobile() string {
  5200. if x != nil && x.Mobile != nil {
  5201. return *x.Mobile
  5202. }
  5203. return ""
  5204. }
  5205. func (x *ReceiptZSOutApplyReq) GetAppointmentDate() string {
  5206. if x != nil && x.AppointmentDate != nil {
  5207. return *x.AppointmentDate
  5208. }
  5209. return ""
  5210. }
  5211. func (x *ReceiptZSOutApplyReq) GetAppointmentModel() int32 {
  5212. if x != nil && x.AppointmentModel != nil {
  5213. return *x.AppointmentModel
  5214. }
  5215. return 0
  5216. }
  5217. func (x *ReceiptZSOutApplyReq) GetCountryID() uint64 {
  5218. if x != nil && x.CountryID != nil {
  5219. return *x.CountryID
  5220. }
  5221. return 0
  5222. }
  5223. func (x *ReceiptZSOutApplyReq) GetProvinceID() uint64 {
  5224. if x != nil && x.ProvinceID != nil {
  5225. return *x.ProvinceID
  5226. }
  5227. return 0
  5228. }
  5229. func (x *ReceiptZSOutApplyReq) GetDistrictID() uint64 {
  5230. if x != nil && x.DistrictID != nil {
  5231. return *x.DistrictID
  5232. }
  5233. return 0
  5234. }
  5235. func (x *ReceiptZSOutApplyReq) GetCityID() uint64 {
  5236. if x != nil && x.CityID != nil {
  5237. return *x.CityID
  5238. }
  5239. return 0
  5240. }
  5241. func (x *ReceiptZSOutApplyReq) GetAddress() string {
  5242. if x != nil && x.Address != nil {
  5243. return *x.Address
  5244. }
  5245. return ""
  5246. }
  5247. func (x *ReceiptZSOutApplyReq) GetContactName() string {
  5248. if x != nil && x.ContactName != nil {
  5249. return *x.ContactName
  5250. }
  5251. return ""
  5252. }
  5253. func (x *ReceiptZSOutApplyReq) GetContactNum() string {
  5254. if x != nil && x.ContactNum != nil {
  5255. return *x.ContactNum
  5256. }
  5257. return ""
  5258. }
  5259. func (x *ReceiptZSOutApplyReq) GetAppointmentRemark() string {
  5260. if x != nil && x.AppointmentRemark != nil {
  5261. return *x.AppointmentRemark
  5262. }
  5263. return ""
  5264. }
  5265. func (x *ReceiptZSOutApplyReq) GetLadingBillID() uint64 {
  5266. if x != nil && x.LadingBillID != nil {
  5267. return *x.LadingBillID
  5268. }
  5269. return 0
  5270. }
  5271. func (x *ReceiptZSOutApplyReq) GetSubNum() uint32 {
  5272. if x != nil && x.SubNum != nil {
  5273. return *x.SubNum
  5274. }
  5275. return 0
  5276. }
  5277. func (x *ReceiptZSOutApplyReq) GetQty() float64 {
  5278. if x != nil && x.Qty != nil {
  5279. return *x.Qty
  5280. }
  5281. return 0
  5282. }
  5283. func (x *ReceiptZSOutApplyReq) GetRemark() string {
  5284. if x != nil && x.Remark != nil {
  5285. return *x.Remark
  5286. }
  5287. return ""
  5288. }
  5289. func (x *ReceiptZSOutApplyReq) GetApplyType() uint32 {
  5290. if x != nil && x.ApplyType != nil {
  5291. return *x.ApplyType
  5292. }
  5293. return 0
  5294. }
  5295. func (x *ReceiptZSOutApplyReq) GetClientType() uint32 {
  5296. if x != nil && x.ClientType != nil {
  5297. return *x.ClientType
  5298. }
  5299. return 0
  5300. }
  5301. func (x *ReceiptZSOutApplyReq) GetClientTicket() string {
  5302. if x != nil && x.ClientTicket != nil {
  5303. return *x.ClientTicket
  5304. }
  5305. return ""
  5306. }
  5307. // 钻石出库申请接口响应
  5308. type ReceiptZSOutApplyRsp struct {
  5309. state protoimpl.MessageState
  5310. sizeCache protoimpl.SizeCache
  5311. unknownFields protoimpl.UnknownFields
  5312. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  5313. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  5314. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  5315. Common *WRCommon `protobuf:"bytes,4,opt,name=Common" json:"Common,omitempty"` //
  5316. ApplyID *uint64 `protobuf:"varint,5,opt,name=ApplyID" json:"ApplyID,omitempty"` // 申请ID
  5317. ClientTicket *string `protobuf:"bytes,6,opt,name=ClientTicket" json:"ClientTicket,omitempty"` // 客户端流水号
  5318. }
  5319. func (x *ReceiptZSOutApplyRsp) Reset() {
  5320. *x = ReceiptZSOutApplyRsp{}
  5321. if protoimpl.UnsafeEnabled {
  5322. mi := &file_mtp2_proto_msgTypes[53]
  5323. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5324. ms.StoreMessageInfo(mi)
  5325. }
  5326. }
  5327. func (x *ReceiptZSOutApplyRsp) String() string {
  5328. return protoimpl.X.MessageStringOf(x)
  5329. }
  5330. func (*ReceiptZSOutApplyRsp) ProtoMessage() {}
  5331. func (x *ReceiptZSOutApplyRsp) ProtoReflect() protoreflect.Message {
  5332. mi := &file_mtp2_proto_msgTypes[53]
  5333. if protoimpl.UnsafeEnabled && x != nil {
  5334. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5335. if ms.LoadMessageInfo() == nil {
  5336. ms.StoreMessageInfo(mi)
  5337. }
  5338. return ms
  5339. }
  5340. return mi.MessageOf(x)
  5341. }
  5342. // Deprecated: Use ReceiptZSOutApplyRsp.ProtoReflect.Descriptor instead.
  5343. func (*ReceiptZSOutApplyRsp) Descriptor() ([]byte, []int) {
  5344. return file_mtp2_proto_rawDescGZIP(), []int{53}
  5345. }
  5346. func (x *ReceiptZSOutApplyRsp) GetHeader() *MessageHead {
  5347. if x != nil {
  5348. return x.Header
  5349. }
  5350. return nil
  5351. }
  5352. func (x *ReceiptZSOutApplyRsp) GetRetCode() int32 {
  5353. if x != nil && x.RetCode != nil {
  5354. return *x.RetCode
  5355. }
  5356. return 0
  5357. }
  5358. func (x *ReceiptZSOutApplyRsp) GetRetDesc() string {
  5359. if x != nil && x.RetDesc != nil {
  5360. return *x.RetDesc
  5361. }
  5362. return ""
  5363. }
  5364. func (x *ReceiptZSOutApplyRsp) GetCommon() *WRCommon {
  5365. if x != nil {
  5366. return x.Common
  5367. }
  5368. return nil
  5369. }
  5370. func (x *ReceiptZSOutApplyRsp) GetApplyID() uint64 {
  5371. if x != nil && x.ApplyID != nil {
  5372. return *x.ApplyID
  5373. }
  5374. return 0
  5375. }
  5376. func (x *ReceiptZSOutApplyRsp) GetClientTicket() string {
  5377. if x != nil && x.ClientTicket != nil {
  5378. return *x.ClientTicket
  5379. }
  5380. return ""
  5381. }
  5382. // 铁合金保证金配置信息
  5383. type DepositConfigInfo struct {
  5384. state protoimpl.MessageState
  5385. sizeCache protoimpl.SizeCache
  5386. unknownFields protoimpl.UnknownFields
  5387. DepositRate *float64 `protobuf:"fixed64,1,opt,name=DepositRate" json:"DepositRate,omitempty"` // 定金比例
  5388. DiscountAmount *float64 `protobuf:"fixed64,2,opt,name=DiscountAmount" json:"DiscountAmount,omitempty"` // 优惠金额
  5389. }
  5390. func (x *DepositConfigInfo) Reset() {
  5391. *x = DepositConfigInfo{}
  5392. if protoimpl.UnsafeEnabled {
  5393. mi := &file_mtp2_proto_msgTypes[54]
  5394. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5395. ms.StoreMessageInfo(mi)
  5396. }
  5397. }
  5398. func (x *DepositConfigInfo) String() string {
  5399. return protoimpl.X.MessageStringOf(x)
  5400. }
  5401. func (*DepositConfigInfo) ProtoMessage() {}
  5402. func (x *DepositConfigInfo) ProtoReflect() protoreflect.Message {
  5403. mi := &file_mtp2_proto_msgTypes[54]
  5404. if protoimpl.UnsafeEnabled && x != nil {
  5405. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5406. if ms.LoadMessageInfo() == nil {
  5407. ms.StoreMessageInfo(mi)
  5408. }
  5409. return ms
  5410. }
  5411. return mi.MessageOf(x)
  5412. }
  5413. // Deprecated: Use DepositConfigInfo.ProtoReflect.Descriptor instead.
  5414. func (*DepositConfigInfo) Descriptor() ([]byte, []int) {
  5415. return file_mtp2_proto_rawDescGZIP(), []int{54}
  5416. }
  5417. func (x *DepositConfigInfo) GetDepositRate() float64 {
  5418. if x != nil && x.DepositRate != nil {
  5419. return *x.DepositRate
  5420. }
  5421. return 0
  5422. }
  5423. func (x *DepositConfigInfo) GetDiscountAmount() float64 {
  5424. if x != nil && x.DiscountAmount != nil {
  5425. return *x.DiscountAmount
  5426. }
  5427. return 0
  5428. }
  5429. // 铁合金现货预售挂牌接口请求
  5430. type SpotPresaleListingOrderReq struct {
  5431. state protoimpl.MessageState
  5432. sizeCache protoimpl.SizeCache
  5433. unknownFields protoimpl.UnknownFields
  5434. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  5435. UserID *uint32 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  5436. AccountID *uint64 `protobuf:"varint,3,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号,必填
  5437. WRStandardID *uint32 `protobuf:"varint,4,opt,name=WRStandardID" json:"WRStandardID,omitempty"` // 现货商品ID,必填
  5438. WarehouseID *uint32 `protobuf:"varint,5,opt,name=WarehouseID" json:"WarehouseID,omitempty"` // 仓库ID,必填
  5439. Qty *uint64 `protobuf:"varint,6,opt,name=Qty" json:"Qty,omitempty"` // 预售数量,必填
  5440. EndDate *string `protobuf:"bytes,7,opt,name=EndDate" json:"EndDate,omitempty"` // 到期时间,必填
  5441. DepositConfigs []*DepositConfigInfo `protobuf:"bytes,8,rep,name=DepositConfigs" json:"DepositConfigs,omitempty"` // 保证金配置信息,至少一组
  5442. ClientType *uint32 `protobuf:"varint,9,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  5443. ClientSerialNo *string `protobuf:"bytes,10,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  5444. UnitPrice *float64 `protobuf:"fixed64,11,opt,name=UnitPrice" json:"UnitPrice,omitempty"` // 参考价,小数,前10,后2,必填
  5445. }
  5446. func (x *SpotPresaleListingOrderReq) Reset() {
  5447. *x = SpotPresaleListingOrderReq{}
  5448. if protoimpl.UnsafeEnabled {
  5449. mi := &file_mtp2_proto_msgTypes[55]
  5450. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5451. ms.StoreMessageInfo(mi)
  5452. }
  5453. }
  5454. func (x *SpotPresaleListingOrderReq) String() string {
  5455. return protoimpl.X.MessageStringOf(x)
  5456. }
  5457. func (*SpotPresaleListingOrderReq) ProtoMessage() {}
  5458. func (x *SpotPresaleListingOrderReq) ProtoReflect() protoreflect.Message {
  5459. mi := &file_mtp2_proto_msgTypes[55]
  5460. if protoimpl.UnsafeEnabled && x != nil {
  5461. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5462. if ms.LoadMessageInfo() == nil {
  5463. ms.StoreMessageInfo(mi)
  5464. }
  5465. return ms
  5466. }
  5467. return mi.MessageOf(x)
  5468. }
  5469. // Deprecated: Use SpotPresaleListingOrderReq.ProtoReflect.Descriptor instead.
  5470. func (*SpotPresaleListingOrderReq) Descriptor() ([]byte, []int) {
  5471. return file_mtp2_proto_rawDescGZIP(), []int{55}
  5472. }
  5473. func (x *SpotPresaleListingOrderReq) GetHeader() *MessageHead {
  5474. if x != nil {
  5475. return x.Header
  5476. }
  5477. return nil
  5478. }
  5479. func (x *SpotPresaleListingOrderReq) GetUserID() uint32 {
  5480. if x != nil && x.UserID != nil {
  5481. return *x.UserID
  5482. }
  5483. return 0
  5484. }
  5485. func (x *SpotPresaleListingOrderReq) GetAccountID() uint64 {
  5486. if x != nil && x.AccountID != nil {
  5487. return *x.AccountID
  5488. }
  5489. return 0
  5490. }
  5491. func (x *SpotPresaleListingOrderReq) GetWRStandardID() uint32 {
  5492. if x != nil && x.WRStandardID != nil {
  5493. return *x.WRStandardID
  5494. }
  5495. return 0
  5496. }
  5497. func (x *SpotPresaleListingOrderReq) GetWarehouseID() uint32 {
  5498. if x != nil && x.WarehouseID != nil {
  5499. return *x.WarehouseID
  5500. }
  5501. return 0
  5502. }
  5503. func (x *SpotPresaleListingOrderReq) GetQty() uint64 {
  5504. if x != nil && x.Qty != nil {
  5505. return *x.Qty
  5506. }
  5507. return 0
  5508. }
  5509. func (x *SpotPresaleListingOrderReq) GetEndDate() string {
  5510. if x != nil && x.EndDate != nil {
  5511. return *x.EndDate
  5512. }
  5513. return ""
  5514. }
  5515. func (x *SpotPresaleListingOrderReq) GetDepositConfigs() []*DepositConfigInfo {
  5516. if x != nil {
  5517. return x.DepositConfigs
  5518. }
  5519. return nil
  5520. }
  5521. func (x *SpotPresaleListingOrderReq) GetClientType() uint32 {
  5522. if x != nil && x.ClientType != nil {
  5523. return *x.ClientType
  5524. }
  5525. return 0
  5526. }
  5527. func (x *SpotPresaleListingOrderReq) GetClientSerialNo() string {
  5528. if x != nil && x.ClientSerialNo != nil {
  5529. return *x.ClientSerialNo
  5530. }
  5531. return ""
  5532. }
  5533. func (x *SpotPresaleListingOrderReq) GetUnitPrice() float64 {
  5534. if x != nil && x.UnitPrice != nil {
  5535. return *x.UnitPrice
  5536. }
  5537. return 0
  5538. }
  5539. // 铁合金现货预售挂牌接口应答
  5540. type SpotPresaleListingOrderRsp struct {
  5541. state protoimpl.MessageState
  5542. sizeCache protoimpl.SizeCache
  5543. unknownFields protoimpl.UnknownFields
  5544. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  5545. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  5546. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  5547. PresaleApplyID *uint64 `protobuf:"varint,4,opt,name=PresaleApplyID" json:"PresaleApplyID,omitempty"` // 预售申请ID
  5548. WRTradeOrderID *uint64 `protobuf:"varint,5,opt,name=WRTradeOrderID" json:"WRTradeOrderID,omitempty"` // 委托单ID
  5549. ClientSerialNo *string `protobuf:"bytes,6,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  5550. }
  5551. func (x *SpotPresaleListingOrderRsp) Reset() {
  5552. *x = SpotPresaleListingOrderRsp{}
  5553. if protoimpl.UnsafeEnabled {
  5554. mi := &file_mtp2_proto_msgTypes[56]
  5555. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5556. ms.StoreMessageInfo(mi)
  5557. }
  5558. }
  5559. func (x *SpotPresaleListingOrderRsp) String() string {
  5560. return protoimpl.X.MessageStringOf(x)
  5561. }
  5562. func (*SpotPresaleListingOrderRsp) ProtoMessage() {}
  5563. func (x *SpotPresaleListingOrderRsp) ProtoReflect() protoreflect.Message {
  5564. mi := &file_mtp2_proto_msgTypes[56]
  5565. if protoimpl.UnsafeEnabled && x != nil {
  5566. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5567. if ms.LoadMessageInfo() == nil {
  5568. ms.StoreMessageInfo(mi)
  5569. }
  5570. return ms
  5571. }
  5572. return mi.MessageOf(x)
  5573. }
  5574. // Deprecated: Use SpotPresaleListingOrderRsp.ProtoReflect.Descriptor instead.
  5575. func (*SpotPresaleListingOrderRsp) Descriptor() ([]byte, []int) {
  5576. return file_mtp2_proto_rawDescGZIP(), []int{56}
  5577. }
  5578. func (x *SpotPresaleListingOrderRsp) GetHeader() *MessageHead {
  5579. if x != nil {
  5580. return x.Header
  5581. }
  5582. return nil
  5583. }
  5584. func (x *SpotPresaleListingOrderRsp) GetRetCode() int32 {
  5585. if x != nil && x.RetCode != nil {
  5586. return *x.RetCode
  5587. }
  5588. return 0
  5589. }
  5590. func (x *SpotPresaleListingOrderRsp) GetRetDesc() string {
  5591. if x != nil && x.RetDesc != nil {
  5592. return *x.RetDesc
  5593. }
  5594. return ""
  5595. }
  5596. func (x *SpotPresaleListingOrderRsp) GetPresaleApplyID() uint64 {
  5597. if x != nil && x.PresaleApplyID != nil {
  5598. return *x.PresaleApplyID
  5599. }
  5600. return 0
  5601. }
  5602. func (x *SpotPresaleListingOrderRsp) GetWRTradeOrderID() uint64 {
  5603. if x != nil && x.WRTradeOrderID != nil {
  5604. return *x.WRTradeOrderID
  5605. }
  5606. return 0
  5607. }
  5608. func (x *SpotPresaleListingOrderRsp) GetClientSerialNo() string {
  5609. if x != nil && x.ClientSerialNo != nil {
  5610. return *x.ClientSerialNo
  5611. }
  5612. return ""
  5613. }
  5614. // 铁合金成交通知
  5615. type THJPurchaseTradeNtf struct {
  5616. state protoimpl.MessageState
  5617. sizeCache protoimpl.SizeCache
  5618. unknownFields protoimpl.UnknownFields
  5619. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  5620. WRTradeDetailID *uint64 `protobuf:"varint,2,opt,name=WRTradeDetailID" json:"WRTradeDetailID,omitempty"` // uint64 预售成交明细ID
  5621. }
  5622. func (x *THJPurchaseTradeNtf) Reset() {
  5623. *x = THJPurchaseTradeNtf{}
  5624. if protoimpl.UnsafeEnabled {
  5625. mi := &file_mtp2_proto_msgTypes[57]
  5626. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5627. ms.StoreMessageInfo(mi)
  5628. }
  5629. }
  5630. func (x *THJPurchaseTradeNtf) String() string {
  5631. return protoimpl.X.MessageStringOf(x)
  5632. }
  5633. func (*THJPurchaseTradeNtf) ProtoMessage() {}
  5634. func (x *THJPurchaseTradeNtf) ProtoReflect() protoreflect.Message {
  5635. mi := &file_mtp2_proto_msgTypes[57]
  5636. if protoimpl.UnsafeEnabled && x != nil {
  5637. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5638. if ms.LoadMessageInfo() == nil {
  5639. ms.StoreMessageInfo(mi)
  5640. }
  5641. return ms
  5642. }
  5643. return mi.MessageOf(x)
  5644. }
  5645. // Deprecated: Use THJPurchaseTradeNtf.ProtoReflect.Descriptor instead.
  5646. func (*THJPurchaseTradeNtf) Descriptor() ([]byte, []int) {
  5647. return file_mtp2_proto_rawDescGZIP(), []int{57}
  5648. }
  5649. func (x *THJPurchaseTradeNtf) GetHeader() *MessageHead {
  5650. if x != nil {
  5651. return x.Header
  5652. }
  5653. return nil
  5654. }
  5655. func (x *THJPurchaseTradeNtf) GetWRTradeDetailID() uint64 {
  5656. if x != nil && x.WRTradeDetailID != nil {
  5657. return *x.WRTradeDetailID
  5658. }
  5659. return 0
  5660. }
  5661. var File_mtp2_proto protoreflect.FileDescriptor
  5662. var file_mtp2_proto_rawDesc = []byte{
  5663. 0x0a, 0x0a, 0x6d, 0x74, 0x70, 0x32, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x02, 0x70, 0x62,
  5664. 0x22, 0xc7, 0x02, 0x0a, 0x0b, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64,
  5665. 0x12, 0x18, 0x0a, 0x07, 0x46, 0x75, 0x6e, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  5666. 0x0d, 0x52, 0x07, 0x46, 0x75, 0x6e, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x52, 0x65,
  5667. 0x71, 0x75, 0x65, 0x73, 0x74, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x52,
  5668. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f,
  5669. 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63,
  5670. 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73,
  5671. 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73,
  5672. 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x69, 0x6d, 0x65,
  5673. 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x69,
  5674. 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x49, 0x44, 0x18, 0x06, 0x20,
  5675. 0x01, 0x28, 0x0d, 0x52, 0x07, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x49, 0x44, 0x12, 0x12, 0x0a, 0x04,
  5676. 0x55, 0x55, 0x49, 0x44, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x55, 0x55, 0x49, 0x44,
  5677. 0x12, 0x1a, 0x0a, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x18, 0x08, 0x20, 0x01,
  5678. 0x28, 0x0d, 0x52, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06,
  5679. 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73,
  5680. 0x65, 0x72, 0x49, 0x44, 0x12, 0x24, 0x0a, 0x0d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  5681. 0x54, 0x6f, 0x70, 0x69, 0x63, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x52, 0x65, 0x73,
  5682. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x12, 0x1e, 0x0a, 0x0a, 0x41, 0x63,
  5683. 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x32, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a,
  5684. 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x32, 0x22, 0xaf, 0x01, 0x0a, 0x0c, 0x4d,
  5685. 0x6f, 0x64, 0x69, 0x66, 0x79, 0x50, 0x77, 0x64, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48,
  5686. 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62,
  5687. 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65,
  5688. 0x61, 0x64, 0x65, 0x72, 0x12, 0x24, 0x0a, 0x0d, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x50, 0x77,
  5689. 0x64, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0d, 0x4d, 0x6f, 0x64,
  5690. 0x69, 0x66, 0x79, 0x50, 0x77, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x4d, 0x6f,
  5691. 0x64, 0x69, 0x66, 0x79, 0x50, 0x77, 0x64, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52,
  5692. 0x0b, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x50, 0x77, 0x64, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06,
  5693. 0x4f, 0x6c, 0x64, 0x50, 0x77, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x4f, 0x6c,
  5694. 0x64, 0x50, 0x77, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x4e, 0x65, 0x77, 0x50, 0x77, 0x64, 0x18, 0x05,
  5695. 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x4e, 0x65, 0x77, 0x50, 0x77, 0x64, 0x22, 0x6b, 0x0a, 0x0c,
  5696. 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x50, 0x77, 0x64, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06,
  5697. 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70,
  5698. 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48,
  5699. 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65,
  5700. 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12,
  5701. 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  5702. 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x22, 0xcd, 0x03, 0x0a, 0x12, 0x55, 0x73,
  5703. 0x65, 0x72, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71,
  5704. 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
  5705. 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61,
  5706. 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69,
  5707. 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28,
  5708. 0x04, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x49,
  5709. 0x44, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28,
  5710. 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x22, 0x0a, 0x0c, 0x52, 0x65, 0x63,
  5711. 0x65, 0x69, 0x76, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
  5712. 0x0c, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a,
  5713. 0x0a, 0x43, 0x61, 0x72, 0x64, 0x54, 0x79, 0x70, 0x65, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28,
  5714. 0x0d, 0x52, 0x0a, 0x43, 0x61, 0x72, 0x64, 0x54, 0x79, 0x70, 0x65, 0x49, 0x44, 0x12, 0x18, 0x0a,
  5715. 0x07, 0x43, 0x61, 0x72, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  5716. 0x43, 0x61, 0x72, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x50, 0x68, 0x6f, 0x6e, 0x65,
  5717. 0x4e, 0x75, 0x6d, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x50, 0x68, 0x6f, 0x6e, 0x65,
  5718. 0x4e, 0x75, 0x6d, 0x12, 0x1c, 0x0a, 0x09, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x49, 0x44,
  5719. 0x18, 0x08, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x49,
  5720. 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x49, 0x44, 0x18,
  5721. 0x09, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x49,
  5722. 0x44, 0x12, 0x16, 0x0a, 0x06, 0x43, 0x69, 0x74, 0x79, 0x49, 0x44, 0x18, 0x0a, 0x20, 0x01, 0x28,
  5723. 0x0d, 0x52, 0x06, 0x43, 0x69, 0x74, 0x79, 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x44, 0x69, 0x73,
  5724. 0x74, 0x72, 0x69, 0x63, 0x74, 0x49, 0x44, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x44,
  5725. 0x69, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07, 0x41, 0x64, 0x64,
  5726. 0x72, 0x65, 0x73, 0x73, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x41, 0x64, 0x64, 0x72,
  5727. 0x65, 0x73, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x54, 0x61, 0x6b, 0x65, 0x52, 0x65, 0x6d, 0x61, 0x72,
  5728. 0x6b, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x54, 0x61, 0x6b, 0x65, 0x52, 0x65, 0x6d,
  5729. 0x61, 0x72, 0x6b, 0x12, 0x24, 0x0a, 0x0d, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x49, 0x6e,
  5730. 0x66, 0x6f, 0x49, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x52, 0x65, 0x63, 0x65,
  5731. 0x69, 0x76, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x22, 0x97, 0x01, 0x0a, 0x12, 0x55, 0x73,
  5732. 0x65, 0x72, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x73, 0x70,
  5733. 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
  5734. 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61,
  5735. 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74,
  5736. 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43,
  5737. 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03,
  5738. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x24, 0x0a,
  5739. 0x0d, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x18, 0x04,
  5740. 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x49, 0x6e, 0x66,
  5741. 0x6f, 0x49, 0x64, 0x22, 0x66, 0x0a, 0x15, 0x44, 0x65, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65,
  5742. 0x63, 0x65, 0x69, 0x76, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06,
  5743. 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70,
  5744. 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48,
  5745. 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x24, 0x0a, 0x0d, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65,
  5746. 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x52, 0x65,
  5747. 0x63, 0x65, 0x69, 0x76, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x22, 0x74, 0x0a, 0x15, 0x44,
  5748. 0x65, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x49, 0x6e, 0x66,
  5749. 0x6f, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01,
  5750. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  5751. 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a,
  5752. 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07,
  5753. 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65,
  5754. 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73,
  5755. 0x63, 0x22, 0x72, 0x0a, 0x17, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65,
  5756. 0x49, 0x73, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06,
  5757. 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70,
  5758. 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48,
  5759. 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x41, 0x75, 0x74, 0x6f, 0x49, 0x64, 0x18,
  5760. 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x41, 0x75, 0x74, 0x6f, 0x49, 0x64, 0x12, 0x16, 0x0a,
  5761. 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x55,
  5762. 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x8e, 0x01, 0x0a, 0x17, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65,
  5763. 0x63, 0x65, 0x69, 0x76, 0x65, 0x49, 0x73, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52, 0x73,
  5764. 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28,
  5765. 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65,
  5766. 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65,
  5767. 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74,
  5768. 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18,
  5769. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x16,
  5770. 0x0a, 0x06, 0x41, 0x75, 0x74, 0x6f, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06,
  5771. 0x41, 0x75, 0x74, 0x6f, 0x49, 0x64, 0x22, 0x9d, 0x03, 0x0a, 0x12, 0x55, 0x73, 0x65, 0x72, 0x52,
  5772. 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a,
  5773. 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e,
  5774. 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06,
  5775. 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
  5776. 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e,
  5777. 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x49, 0x44, 0x12, 0x16,
  5778. 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06,
  5779. 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61,
  5780. 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61,
  5781. 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x54, 0x79, 0x70,
  5782. 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74,
  5783. 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x54, 0x61, 0x78, 0x70, 0x61, 0x79, 0x65, 0x72,
  5784. 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x54, 0x61, 0x78, 0x70, 0x61, 0x79,
  5785. 0x65, 0x72, 0x49, 0x44, 0x12, 0x20, 0x0a, 0x0b, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x49,
  5786. 0x6e, 0x66, 0x6f, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x43, 0x6f, 0x6e, 0x74, 0x61,
  5787. 0x63, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x24, 0x0a, 0x0d, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70,
  5788. 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x52,
  5789. 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b,
  5790. 0x52, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x42, 0x61, 0x6e, 0x6b, 0x18, 0x09, 0x20, 0x01, 0x28,
  5791. 0x09, 0x52, 0x0b, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x42, 0x61, 0x6e, 0x6b, 0x12, 0x26,
  5792. 0x0a, 0x0e, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  5793. 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x41,
  5794. 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73,
  5795. 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73,
  5796. 0x12, 0x14, 0x0a, 0x05, 0x49, 0x44, 0x4e, 0x75, 0x6d, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52,
  5797. 0x05, 0x49, 0x44, 0x4e, 0x75, 0x6d, 0x22, 0x97, 0x01, 0x0a, 0x12, 0x55, 0x73, 0x65, 0x72, 0x52,
  5798. 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a,
  5799. 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e,
  5800. 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06,
  5801. 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64,
  5802. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65,
  5803. 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28,
  5804. 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x24, 0x0a, 0x0d, 0x52, 0x65,
  5805. 0x63, 0x65, 0x69, 0x70, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28,
  5806. 0x04, 0x52, 0x0d, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64,
  5807. 0x22, 0x66, 0x0a, 0x15, 0x44, 0x65, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x65, 0x69,
  5808. 0x70, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61,
  5809. 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d,
  5810. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64,
  5811. 0x65, 0x72, 0x12, 0x24, 0x0a, 0x0d, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x49, 0x6e, 0x66,
  5812. 0x6f, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x52, 0x65, 0x63, 0x65, 0x69,
  5813. 0x70, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x22, 0x74, 0x0a, 0x15, 0x44, 0x65, 0x6c, 0x55,
  5814. 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x73,
  5815. 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28,
  5816. 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65,
  5817. 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65,
  5818. 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74,
  5819. 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18,
  5820. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x22, 0xac,
  5821. 0x09, 0x0a, 0x0e, 0x74, 0x32, 0x62, 0x42, 0x61, 0x6e, 0x6b, 0x53, 0x69, 0x67, 0x6e, 0x52, 0x65,
  5822. 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28,
  5823. 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65,
  5824. 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x24, 0x0a, 0x0d, 0x45, 0x78,
  5825. 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x02, 0x28,
  5826. 0x04, 0x52, 0x0d, 0x45, 0x78, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44,
  5827. 0x12, 0x16, 0x0a, 0x06, 0x45, 0x78, 0x63, 0x68, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  5828. 0x52, 0x06, 0x45, 0x78, 0x63, 0x68, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x54, 0x72, 0x61, 0x64,
  5829. 0x65, 0x44, 0x61, 0x74, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x54, 0x72, 0x61,
  5830. 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x45, 0x78, 0x63, 0x68, 0x54, 0x69,
  5831. 0x63, 0x6b, 0x65, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x45, 0x78, 0x63, 0x68,
  5832. 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
  5833. 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x06, 0x20, 0x02, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x63, 0x63,
  5834. 0x6f, 0x75, 0x6e, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x41, 0x63, 0x63, 0x6f,
  5835. 0x75, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x02, 0x28, 0x09, 0x52, 0x0b, 0x41,
  5836. 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x43, 0x75,
  5837. 0x73, 0x42, 0x61, 0x6e, 0x6b, 0x49, 0x44, 0x18, 0x08, 0x20, 0x02, 0x28, 0x09, 0x52, 0x09, 0x43,
  5838. 0x75, 0x73, 0x42, 0x61, 0x6e, 0x6b, 0x49, 0x44, 0x12, 0x20, 0x0a, 0x0b, 0x4f, 0x70, 0x65, 0x72,
  5839. 0x61, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x09, 0x20, 0x02, 0x28, 0x05, 0x52, 0x0b, 0x4f,
  5840. 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x49, 0x73,
  5841. 0x46, 0x6f, 0x72, 0x63, 0x65, 0x18, 0x0a, 0x20, 0x02, 0x28, 0x05, 0x52, 0x07, 0x49, 0x73, 0x46,
  5842. 0x6f, 0x72, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79,
  5843. 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79,
  5844. 0x12, 0x20, 0x0a, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18,
  5845. 0x0c, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x79,
  5846. 0x70, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x4f, 0x70, 0x65, 0x6e, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63,
  5847. 0x63, 0x49, 0x64, 0x18, 0x0d, 0x20, 0x02, 0x28, 0x09, 0x52, 0x0d, 0x4f, 0x70, 0x65, 0x6e, 0x42,
  5848. 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x49, 0x64, 0x12, 0x36, 0x0a, 0x16, 0x46, 0x6f, 0x72, 0x63,
  5849. 0x65, 0x53, 0x69, 0x67, 0x6e, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  5850. 0x4e, 0x6f, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x16, 0x46, 0x6f, 0x72, 0x63, 0x65, 0x53,
  5851. 0x69, 0x67, 0x6e, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4e, 0x6f,
  5852. 0x12, 0x3a, 0x0a, 0x18, 0x46, 0x6f, 0x72, 0x63, 0x65, 0x53, 0x69, 0x67, 0x6e, 0x42, 0x61, 0x6e,
  5853. 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x0f, 0x20, 0x01,
  5854. 0x28, 0x09, 0x52, 0x18, 0x46, 0x6f, 0x72, 0x63, 0x65, 0x53, 0x69, 0x67, 0x6e, 0x42, 0x61, 0x6e,
  5855. 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0d,
  5856. 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4e, 0x6f, 0x18, 0x10, 0x20,
  5857. 0x02, 0x28, 0x09, 0x52, 0x0d, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  5858. 0x4e, 0x6f, 0x12, 0x28, 0x0a, 0x0f, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
  5859. 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x42, 0x61, 0x6e,
  5860. 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a,
  5861. 0x45, 0x78, 0x42, 0x61, 0x6e, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x12, 0x20, 0x02, 0x28, 0x09,
  5862. 0x52, 0x0a, 0x45, 0x78, 0x42, 0x61, 0x6e, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a,
  5863. 0x4f, 0x70, 0x65, 0x6e, 0x42, 0x61, 0x6e, 0x6b, 0x4e, 0x6f, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09,
  5864. 0x52, 0x0a, 0x4f, 0x70, 0x65, 0x6e, 0x42, 0x61, 0x6e, 0x6b, 0x4e, 0x6f, 0x12, 0x22, 0x0a, 0x0c,
  5865. 0x4f, 0x70, 0x65, 0x6e, 0x42, 0x61, 0x6e, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x14, 0x20, 0x01,
  5866. 0x28, 0x09, 0x52, 0x0c, 0x4f, 0x70, 0x65, 0x6e, 0x42, 0x61, 0x6e, 0x6b, 0x4e, 0x61, 0x6d, 0x65,
  5867. 0x12, 0x1a, 0x0a, 0x08, 0x43, 0x65, 0x72, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x15, 0x20, 0x02,
  5868. 0x28, 0x09, 0x52, 0x08, 0x43, 0x65, 0x72, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06,
  5869. 0x43, 0x65, 0x72, 0x74, 0x49, 0x44, 0x18, 0x16, 0x20, 0x02, 0x28, 0x09, 0x52, 0x06, 0x43, 0x65,
  5870. 0x72, 0x74, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x6f,
  5871. 0x75, 0x6e, 0x74, 0x50, 0x57, 0x44, 0x18, 0x17, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x42, 0x61,
  5872. 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x50, 0x57, 0x44, 0x12, 0x1c, 0x0a, 0x09,
  5873. 0x41, 0x67, 0x65, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x18, 0x20, 0x01, 0x28, 0x09, 0x52,
  5874. 0x09, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x41, 0x67,
  5875. 0x65, 0x6e, 0x74, 0x43, 0x65, 0x72, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x19, 0x20, 0x01, 0x28,
  5876. 0x05, 0x52, 0x0d, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x43, 0x65, 0x72, 0x74, 0x54, 0x79, 0x70, 0x65,
  5877. 0x12, 0x20, 0x0a, 0x0b, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x43, 0x65, 0x72, 0x74, 0x49, 0x44, 0x18,
  5878. 0x1a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x43, 0x65, 0x72, 0x74,
  5879. 0x49, 0x44, 0x12, 0x28, 0x0a, 0x0f, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
  5880. 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0f, 0x42, 0x61, 0x6e,
  5881. 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x0c,
  5882. 0x42, 0x61, 0x6e, 0x6b, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x1c, 0x20, 0x01,
  5883. 0x28, 0x09, 0x52, 0x0c, 0x42, 0x61, 0x6e, 0x6b, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65,
  5884. 0x12, 0x1a, 0x0a, 0x08, 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x69, 0x74, 0x79, 0x18, 0x1d, 0x20, 0x01,
  5885. 0x28, 0x09, 0x52, 0x08, 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x69, 0x74, 0x79, 0x12, 0x22, 0x0a, 0x0c,
  5886. 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x61, 0x72, 0x64, 0x54, 0x79, 0x70, 0x65, 0x18, 0x1e, 0x20, 0x01,
  5887. 0x28, 0x05, 0x52, 0x0c, 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x61, 0x72, 0x64, 0x54, 0x79, 0x70, 0x65,
  5888. 0x12, 0x20, 0x0a, 0x0b, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18,
  5889. 0x1f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x50, 0x68, 0x6f,
  5890. 0x6e, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x43, 0x6f,
  5891. 0x64, 0x65, 0x18, 0x20, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69,
  5892. 0x66, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18,
  5893. 0x21, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x1f, 0x0a, 0x0b,
  5894. 0x65, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x22, 0x20, 0x01, 0x28,
  5895. 0x09, 0x52, 0x0a, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0xd5, 0x04,
  5896. 0x0a, 0x0e, 0x74, 0x32, 0x62, 0x42, 0x61, 0x6e, 0x6b, 0x53, 0x69, 0x67, 0x6e, 0x52, 0x73, 0x70,
  5897. 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
  5898. 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61,
  5899. 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74,
  5900. 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43,
  5901. 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03,
  5902. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x24, 0x0a,
  5903. 0x0d, 0x45, 0x78, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x18, 0x04,
  5904. 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x45, 0x78, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f,
  5905. 0x72, 0x49, 0x44, 0x12, 0x20, 0x0a, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x43, 0x6f,
  5906. 0x64, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
  5907. 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x4e, 0x65, 0x74, 0x41, 0x64, 0x64, 0x72,
  5908. 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x4e, 0x65, 0x74, 0x41, 0x64, 0x64, 0x72, 0x12,
  5909. 0x16, 0x0a, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52,
  5910. 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x45, 0x78, 0x63, 0x68, 0x54,
  5911. 0x69, 0x63, 0x6b, 0x65, 0x74, 0x18, 0x08, 0x20, 0x02, 0x28, 0x09, 0x52, 0x0a, 0x45, 0x78, 0x63,
  5912. 0x68, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x45, 0x78, 0x63, 0x68, 0x49,
  5913. 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x45, 0x78, 0x63, 0x68, 0x49, 0x64, 0x12,
  5914. 0x1c, 0x0a, 0x09, 0x54, 0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x18, 0x0a, 0x20, 0x01,
  5915. 0x28, 0x09, 0x52, 0x09, 0x54, 0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x22, 0x0a,
  5916. 0x0c, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x18, 0x0b, 0x20,
  5917. 0x01, 0x28, 0x09, 0x52, 0x0c, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x54, 0x69, 0x63, 0x6b, 0x65,
  5918. 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x43, 0x6f,
  5919. 0x64, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72,
  5920. 0x45, 0x72, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x43, 0x65, 0x6e, 0x74, 0x65,
  5921. 0x72, 0x45, 0x72, 0x72, 0x4d, 0x73, 0x67, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x43,
  5922. 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x22, 0x0a, 0x0c, 0x62,
  5923. 0x61, 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x18, 0x0e, 0x20, 0x01, 0x28,
  5924. 0x09, 0x52, 0x0c, 0x62, 0x61, 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x12,
  5925. 0x2a, 0x0a, 0x10, 0x62, 0x61, 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x4e,
  5926. 0x61, 0x6d, 0x65, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x62, 0x61, 0x6e, 0x6b, 0x43,
  5927. 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x42,
  5928. 0x61, 0x6e, 0x6b, 0x49, 0x64, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x42, 0x61, 0x6e,
  5929. 0x6b, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x4e, 0x75,
  5930. 0x6d, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63,
  5931. 0x4e, 0x75, 0x6d, 0x12, 0x20, 0x0a, 0x0b, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x4e, 0x61,
  5932. 0x6d, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63,
  5933. 0x63, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x81, 0x03, 0x0a, 0x14, 0x74, 0x32, 0x62, 0x42, 0x61, 0x6e,
  5934. 0x6b, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x52, 0x65, 0x71, 0x12, 0x27,
  5935. 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f,
  5936. 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52,
  5937. 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x24, 0x0a, 0x0d, 0x45, 0x78, 0x74, 0x4f, 0x70,
  5938. 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x02, 0x28, 0x04, 0x52, 0x0d,
  5939. 0x45, 0x78, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x12, 0x16, 0x0a,
  5940. 0x06, 0x45, 0x78, 0x63, 0x68, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x45,
  5941. 0x78, 0x63, 0x68, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  5942. 0x43, 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x02, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x63, 0x63, 0x6f,
  5943. 0x75, 0x6e, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x43, 0x75, 0x73, 0x42, 0x61,
  5944. 0x6e, 0x6b, 0x49, 0x44, 0x18, 0x05, 0x20, 0x02, 0x28, 0x09, 0x52, 0x09, 0x43, 0x75, 0x73, 0x42,
  5945. 0x61, 0x6e, 0x6b, 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07, 0x49, 0x73, 0x46, 0x6f, 0x72, 0x63, 0x65,
  5946. 0x18, 0x06, 0x20, 0x02, 0x28, 0x05, 0x52, 0x07, 0x49, 0x73, 0x46, 0x6f, 0x72, 0x63, 0x65, 0x12,
  5947. 0x1a, 0x0a, 0x08, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x18, 0x07, 0x20, 0x01, 0x28,
  5948. 0x09, 0x52, 0x08, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x54,
  5949. 0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
  5950. 0x54, 0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x45, 0x78, 0x63,
  5951. 0x68, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x45,
  5952. 0x78, 0x63, 0x68, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x12, 0x22, 0x0a, 0x0c, 0x42, 0x61, 0x6e,
  5953. 0x6b, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52,
  5954. 0x0c, 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x12, 0x2a, 0x0a,
  5955. 0x10, 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x4e, 0x61, 0x6d,
  5956. 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x68, 0x69,
  5957. 0x6c, 0x64, 0x41, 0x63, 0x63, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0xb1, 0x03, 0x0a, 0x14, 0x74, 0x32,
  5958. 0x62, 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x52,
  5959. 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01,
  5960. 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48,
  5961. 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52,
  5962. 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65,
  5963. 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63,
  5964. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12,
  5965. 0x24, 0x0a, 0x0d, 0x45, 0x78, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44,
  5966. 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x45, 0x78, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61,
  5967. 0x74, 0x6f, 0x72, 0x49, 0x44, 0x12, 0x20, 0x0a, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  5968. 0x43, 0x6f, 0x64, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x63, 0x63, 0x6f,
  5969. 0x75, 0x6e, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x4e, 0x65, 0x74, 0x41, 0x64,
  5970. 0x64, 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x4e, 0x65, 0x74, 0x41, 0x64, 0x64,
  5971. 0x72, 0x12, 0x16, 0x0a, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28,
  5972. 0x05, 0x52, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x45, 0x78, 0x63,
  5973. 0x68, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x18, 0x08, 0x20, 0x02, 0x28, 0x09, 0x52, 0x0a, 0x45,
  5974. 0x78, 0x63, 0x68, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x45, 0x78, 0x63,
  5975. 0x68, 0x49, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x45, 0x78, 0x63, 0x68, 0x49,
  5976. 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x54, 0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x18, 0x0a,
  5977. 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x54, 0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12,
  5978. 0x22, 0x0a, 0x0c, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x18,
  5979. 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x54, 0x69, 0x63,
  5980. 0x6b, 0x65, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72,
  5981. 0x43, 0x6f, 0x64, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x43, 0x65, 0x6e, 0x74,
  5982. 0x65, 0x72, 0x45, 0x72, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x43, 0x65, 0x6e,
  5983. 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x4d, 0x73, 0x67, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52,
  5984. 0x0c, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x4d, 0x73, 0x67, 0x22, 0xde, 0x05,
  5985. 0x0a, 0x12, 0x74, 0x32, 0x62, 0x42, 0x61, 0x6e, 0x6b, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61,
  5986. 0x77, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01,
  5987. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  5988. 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x24, 0x0a,
  5989. 0x0d, 0x45, 0x78, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x18, 0x02,
  5990. 0x20, 0x02, 0x28, 0x04, 0x52, 0x0d, 0x45, 0x78, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f,
  5991. 0x72, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x45, 0x78, 0x63, 0x68, 0x49, 0x64, 0x18, 0x03, 0x20,
  5992. 0x01, 0x28, 0x09, 0x52, 0x06, 0x45, 0x78, 0x63, 0x68, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x41,
  5993. 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x02, 0x28, 0x09,
  5994. 0x52, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1c, 0x0a,
  5995. 0x09, 0x43, 0x75, 0x73, 0x42, 0x61, 0x6e, 0x6b, 0x49, 0x44, 0x18, 0x05, 0x20, 0x02, 0x28, 0x09,
  5996. 0x52, 0x09, 0x43, 0x75, 0x73, 0x42, 0x61, 0x6e, 0x6b, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x43,
  5997. 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x18, 0x06, 0x20, 0x02, 0x28, 0x09, 0x52, 0x08, 0x43,
  5998. 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x12, 0x20, 0x0a, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75,
  5999. 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x41, 0x63,
  6000. 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x2a, 0x0a, 0x10, 0x42, 0x61, 0x6e,
  6001. 0x6b, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x08, 0x20,
  6002. 0x01, 0x28, 0x09, 0x52, 0x10, 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63,
  6003. 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x32, 0x0a, 0x14, 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x68, 0x69,
  6004. 0x6c, 0x64, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x09, 0x20,
  6005. 0x01, 0x28, 0x09, 0x52, 0x14, 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63,
  6006. 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x4f, 0x70, 0x65,
  6007. 0x6e, 0x43, 0x61, 0x72, 0x64, 0x42, 0x61, 0x6e, 0x6b, 0x49, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28,
  6008. 0x09, 0x52, 0x0e, 0x4f, 0x70, 0x65, 0x6e, 0x43, 0x61, 0x72, 0x64, 0x42, 0x61, 0x6e, 0x6b, 0x49,
  6009. 0x64, 0x12, 0x24, 0x0a, 0x0d, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x74, 0x4e,
  6010. 0x75, 0x6d, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63,
  6011. 0x63, 0x6f, 0x75, 0x74, 0x4e, 0x75, 0x6d, 0x12, 0x26, 0x0a, 0x0e, 0x42, 0x61, 0x6e, 0x6b, 0x41,
  6012. 0x63, 0x63, 0x6f, 0x75, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52,
  6013. 0x0e, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12,
  6014. 0x16, 0x0a, 0x06, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x0d, 0x20, 0x02, 0x28, 0x01, 0x52,
  6015. 0x06, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x41, 0x70, 0x70, 0x44, 0x61,
  6016. 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x70,
  6017. 0x70, 0x44, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x4f, 0x6c, 0x64,
  6018. 0x54, 0x61, 0x50, 0x57, 0x44, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x4f, 0x6c, 0x64,
  6019. 0x54, 0x61, 0x50, 0x57, 0x44, 0x12, 0x12, 0x0a, 0x04, 0x44, 0x65, 0x73, 0x63, 0x18, 0x10, 0x20,
  6020. 0x01, 0x28, 0x09, 0x52, 0x04, 0x44, 0x65, 0x73, 0x63, 0x12, 0x22, 0x0a, 0x0c, 0x49, 0x64, 0x65,
  6021. 0x6e, 0x74, 0x69, 0x66, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x52,
  6022. 0x0c, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x26, 0x0a,
  6023. 0x0e, 0x42, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x42, 0x61, 0x6e, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x18,
  6024. 0x12, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x42, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x42, 0x61, 0x6e,
  6025. 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x5f,
  6026. 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x65, 0x78, 0x74, 0x65,
  6027. 0x6e, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x0a, 0x06, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b,
  6028. 0x18, 0x14, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x12, 0x1e,
  6029. 0x0a, 0x0a, 0x45, 0x78, 0x63, 0x68, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x18, 0x15, 0x20, 0x01,
  6030. 0x28, 0x09, 0x52, 0x0a, 0x45, 0x78, 0x63, 0x68, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x22, 0xb7,
  6031. 0x03, 0x0a, 0x12, 0x74, 0x32, 0x62, 0x42, 0x61, 0x6e, 0x6b, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72,
  6032. 0x61, 0x77, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18,
  6033. 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61,
  6034. 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18,
  6035. 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52,
  6036. 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44,
  6037. 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65,
  6038. 0x73, 0x63, 0x12, 0x24, 0x0a, 0x0d, 0x45, 0x78, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f,
  6039. 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x45, 0x78, 0x74, 0x4f, 0x70,
  6040. 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x53, 0x74, 0x61, 0x74,
  6041. 0x75, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  6042. 0x12, 0x1e, 0x0a, 0x0a, 0x45, 0x78, 0x63, 0x68, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x18, 0x06,
  6043. 0x20, 0x02, 0x28, 0x09, 0x52, 0x0a, 0x45, 0x78, 0x63, 0x68, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74,
  6044. 0x12, 0x16, 0x0a, 0x06, 0x45, 0x78, 0x63, 0x68, 0x49, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09,
  6045. 0x52, 0x06, 0x45, 0x78, 0x63, 0x68, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x54, 0x72, 0x61, 0x64,
  6046. 0x65, 0x44, 0x61, 0x74, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x54, 0x72, 0x61,
  6047. 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72,
  6048. 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x43, 0x65,
  6049. 0x6e, 0x74, 0x65, 0x72, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x43, 0x65,
  6050. 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28,
  6051. 0x09, 0x52, 0x0d, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x43, 0x6f, 0x64, 0x65,
  6052. 0x12, 0x22, 0x0a, 0x0c, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x4d, 0x73, 0x67,
  6053. 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72,
  6054. 0x72, 0x4d, 0x73, 0x67, 0x12, 0x28, 0x0a, 0x0f, 0x43, 0x65, 0x72, 0x74, 0x65, 0x72, 0x43, 0x68,
  6055. 0x65, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x43,
  6056. 0x65, 0x72, 0x74, 0x65, 0x72, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x65, 0x12, 0x18,
  6057. 0x0a, 0x07, 0x4e, 0x65, 0x74, 0x41, 0x64, 0x64, 0x72, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52,
  6058. 0x07, 0x4e, 0x65, 0x74, 0x41, 0x64, 0x64, 0x72, 0x22, 0xf7, 0x04, 0x0a, 0x11, 0x74, 0x32, 0x62,
  6059. 0x42, 0x61, 0x6e, 0x6b, 0x44, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x52, 0x65, 0x71, 0x12, 0x27,
  6060. 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f,
  6061. 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52,
  6062. 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x24, 0x0a, 0x0d, 0x45, 0x78, 0x74, 0x4f, 0x70,
  6063. 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x02, 0x28, 0x04, 0x52, 0x0d,
  6064. 0x45, 0x78, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a,
  6065. 0x09, 0x43, 0x75, 0x73, 0x42, 0x61, 0x6e, 0x6b, 0x49, 0x44, 0x18, 0x03, 0x20, 0x02, 0x28, 0x09,
  6066. 0x52, 0x09, 0x43, 0x75, 0x73, 0x42, 0x61, 0x6e, 0x6b, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x45,
  6067. 0x78, 0x63, 0x68, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x45, 0x78, 0x63,
  6068. 0x68, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x54, 0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65,
  6069. 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x54, 0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74,
  6070. 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x45, 0x78, 0x63, 0x68, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x18,
  6071. 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x45, 0x78, 0x63, 0x68, 0x54, 0x69, 0x63, 0x6b, 0x65,
  6072. 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x43, 0x6f, 0x64, 0x65,
  6073. 0x18, 0x07, 0x20, 0x02, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x43,
  6074. 0x6f, 0x64, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x4e,
  6075. 0x6f, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73,
  6076. 0x73, 0x4e, 0x6f, 0x12, 0x2a, 0x0a, 0x10, 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c, 0x64,
  6077. 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x42,
  6078. 0x61, 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12,
  6079. 0x32, 0x0a, 0x14, 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x6f,
  6080. 0x75, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x14, 0x42,
  6081. 0x61, 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4e,
  6082. 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x4f, 0x6c, 0x64, 0x54, 0x61, 0x50, 0x57, 0x44, 0x18,
  6083. 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x4f, 0x6c, 0x64, 0x54, 0x61, 0x50, 0x57, 0x44, 0x12,
  6084. 0x16, 0x0a, 0x06, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x0c, 0x20, 0x02, 0x28, 0x01, 0x52,
  6085. 0x06, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x43, 0x75, 0x72, 0x72, 0x65,
  6086. 0x6e, 0x63, 0x79, 0x18, 0x0d, 0x20, 0x02, 0x28, 0x09, 0x52, 0x08, 0x43, 0x75, 0x72, 0x72, 0x65,
  6087. 0x6e, 0x63, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x0e, 0x20,
  6088. 0x01, 0x28, 0x09, 0x52, 0x06, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x12, 0x26, 0x0a, 0x0e, 0x4f,
  6089. 0x70, 0x65, 0x6e, 0x43, 0x61, 0x72, 0x64, 0x42, 0x61, 0x6e, 0x6b, 0x49, 0x64, 0x18, 0x0f, 0x20,
  6090. 0x01, 0x28, 0x09, 0x52, 0x0e, 0x4f, 0x70, 0x65, 0x6e, 0x43, 0x61, 0x72, 0x64, 0x42, 0x61, 0x6e,
  6091. 0x6b, 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0d, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75,
  6092. 0x74, 0x4e, 0x75, 0x6d, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x42, 0x61, 0x6e, 0x6b,
  6093. 0x41, 0x63, 0x63, 0x6f, 0x75, 0x74, 0x4e, 0x75, 0x6d, 0x12, 0x26, 0x0a, 0x0e, 0x42, 0x61, 0x6e,
  6094. 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x11, 0x20, 0x01, 0x28,
  6095. 0x09, 0x52, 0x0e, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x74, 0x4e, 0x61, 0x6d,
  6096. 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x5f, 0x69, 0x6e, 0x66, 0x6f,
  6097. 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x49, 0x6e,
  6098. 0x66, 0x6f, 0x22, 0xb6, 0x03, 0x0a, 0x11, 0x74, 0x32, 0x62, 0x42, 0x61, 0x6e, 0x6b, 0x44, 0x65,
  6099. 0x70, 0x6f, 0x73, 0x69, 0x74, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64,
  6100. 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65,
  6101. 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65,
  6102. 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01,
  6103. 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52,
  6104. 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65,
  6105. 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x24, 0x0a, 0x0d, 0x45, 0x78, 0x74, 0x4f, 0x70, 0x65, 0x72,
  6106. 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x45, 0x78,
  6107. 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x53,
  6108. 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x53, 0x74, 0x61,
  6109. 0x74, 0x75, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x45, 0x78, 0x63, 0x68, 0x54, 0x69, 0x63, 0x6b, 0x65,
  6110. 0x74, 0x18, 0x06, 0x20, 0x02, 0x28, 0x09, 0x52, 0x0a, 0x45, 0x78, 0x63, 0x68, 0x54, 0x69, 0x63,
  6111. 0x6b, 0x65, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x45, 0x78, 0x63, 0x68, 0x49, 0x64, 0x18, 0x07, 0x20,
  6112. 0x01, 0x28, 0x09, 0x52, 0x06, 0x45, 0x78, 0x63, 0x68, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x54,
  6113. 0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
  6114. 0x54, 0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x43, 0x65, 0x6e,
  6115. 0x74, 0x65, 0x72, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52,
  6116. 0x0c, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x12, 0x24, 0x0a,
  6117. 0x0d, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x0a,
  6118. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x43,
  6119. 0x6f, 0x64, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72,
  6120. 0x4d, 0x73, 0x67, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x43, 0x65, 0x6e, 0x74, 0x65,
  6121. 0x72, 0x45, 0x72, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x28, 0x0a, 0x0f, 0x43, 0x65, 0x72, 0x74, 0x65,
  6122. 0x72, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09,
  6123. 0x52, 0x0f, 0x43, 0x65, 0x72, 0x74, 0x65, 0x72, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x44, 0x61, 0x74,
  6124. 0x65, 0x12, 0x18, 0x0a, 0x07, 0x4e, 0x65, 0x74, 0x41, 0x64, 0x64, 0x72, 0x18, 0x0d, 0x20, 0x01,
  6125. 0x28, 0x09, 0x52, 0x07, 0x4e, 0x65, 0x74, 0x41, 0x64, 0x64, 0x72, 0x22, 0xa2, 0x01, 0x0a, 0x08,
  6126. 0x57, 0x52, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72,
  6127. 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44,
  6128. 0x12, 0x26, 0x0a, 0x0e, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x4f, 0x72, 0x64, 0x65, 0x72,
  6129. 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x65,
  6130. 0x64, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x42, 0x75, 0x73, 0x69,
  6131. 0x6e, 0x65, 0x73, 0x73, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x42, 0x75,
  6132. 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07, 0x54, 0x72, 0x61, 0x64,
  6133. 0x65, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x54, 0x72, 0x61, 0x64, 0x65,
  6134. 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18,
  6135. 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44,
  6136. 0x22, 0xb0, 0x03, 0x0a, 0x11, 0x57, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x41, 0x70,
  6137. 0x70, 0x6c, 0x79, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72,
  6138. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73,
  6139. 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12,
  6140. 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52,
  6141. 0x06, 0x75, 0x73, 0x65, 0x72, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18,
  6142. 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x77,
  6143. 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04,
  6144. 0x52, 0x0b, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x69, 0x64, 0x12, 0x24, 0x0a,
  6145. 0x0d, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x05,
  6146. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x63,
  6147. 0x6f, 0x64, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65,
  6148. 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x77, 0x61, 0x72, 0x65,
  6149. 0x68, 0x6f, 0x75, 0x73, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x77, 0x61, 0x72,
  6150. 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x74, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05,
  6151. 0x52, 0x0d, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x74, 0x79, 0x70, 0x65, 0x12,
  6152. 0x1e, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x69, 0x64, 0x18, 0x08, 0x20,
  6153. 0x01, 0x28, 0x04, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x69, 0x64, 0x12,
  6154. 0x16, 0x0a, 0x06, 0x63, 0x69, 0x74, 0x79, 0x69, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x04, 0x52,
  6155. 0x06, 0x63, 0x69, 0x74, 0x79, 0x69, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x64, 0x69, 0x73, 0x74, 0x72,
  6156. 0x69, 0x63, 0x74, 0x69, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x64, 0x69, 0x73,
  6157. 0x74, 0x72, 0x69, 0x63, 0x74, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65,
  6158. 0x73, 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73,
  6159. 0x73, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x6e, 0x61, 0x6d, 0x65,
  6160. 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x6e,
  6161. 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x6e, 0x75,
  6162. 0x6d, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74,
  6163. 0x6e, 0x75, 0x6d, 0x22, 0x92, 0x01, 0x0a, 0x11, 0x57, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73,
  6164. 0x65, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61,
  6165. 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d,
  6166. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64,
  6167. 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20,
  6168. 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07,
  6169. 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52,
  6170. 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x20, 0x0a, 0x0b, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f,
  6171. 0x75, 0x73, 0x65, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x77, 0x61, 0x72,
  6172. 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x69, 0x64, 0x22, 0xf6, 0x01, 0x0a, 0x1d, 0x50, 0x65, 0x72,
  6173. 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74,
  6174. 0x65, 0x64, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65,
  6175. 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e,
  6176. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61,
  6177. 0x64, 0x65, 0x72, 0x12, 0x2c, 0x0a, 0x11, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e,
  6178. 0x63, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x11,
  6179. 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x49,
  6180. 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x42, 0x72, 0x65, 0x61, 0x63, 0x68, 0x54, 0x79, 0x70, 0x65, 0x18,
  6181. 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x42, 0x72, 0x65, 0x61, 0x63, 0x68, 0x54, 0x79, 0x70,
  6182. 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x6e, 0x74, 0x18, 0x04,
  6183. 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x6e, 0x74, 0x12,
  6184. 0x20, 0x0a, 0x0b, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x05,
  6185. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x6d, 0x61, 0x72,
  6186. 0x6b, 0x12, 0x1e, 0x0a, 0x0a, 0x41, 0x74, 0x74, 0x61, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x18,
  6187. 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x41, 0x74, 0x74, 0x61, 0x63, 0x68, 0x6d, 0x65, 0x6e,
  6188. 0x74, 0x22, 0xaa, 0x01, 0x0a, 0x1d, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63,
  6189. 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x65, 0x64, 0x41, 0x70, 0x70, 0x6c, 0x79,
  6190. 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20,
  6191. 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  6192. 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07,
  6193. 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52,
  6194. 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73,
  6195. 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63,
  6196. 0x12, 0x2c, 0x0a, 0x11, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50,
  6197. 0x6c, 0x61, 0x6e, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x11, 0x50, 0x65, 0x72,
  6198. 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x49, 0x44, 0x22, 0xd7,
  6199. 0x01, 0x0a, 0x18, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x44, 0x65,
  6200. 0x6c, 0x61, 0x79, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48,
  6201. 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62,
  6202. 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65,
  6203. 0x61, 0x64, 0x65, 0x72, 0x12, 0x34, 0x0a, 0x15, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61,
  6204. 0x6e, 0x63, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x53, 0x74, 0x65, 0x70, 0x49, 0x44, 0x18, 0x02, 0x20,
  6205. 0x01, 0x28, 0x04, 0x52, 0x15, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65,
  6206. 0x50, 0x6c, 0x61, 0x6e, 0x53, 0x74, 0x65, 0x70, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x64, 0x65,
  6207. 0x6c, 0x61, 0x79, 0x64, 0x61, 0x79, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x64,
  6208. 0x65, 0x6c, 0x61, 0x79, 0x64, 0x61, 0x79, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x70, 0x70, 0x6c,
  6209. 0x69, 0x63, 0x61, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x61, 0x70, 0x70,
  6210. 0x6c, 0x69, 0x63, 0x61, 0x6e, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x61, 0x70, 0x70, 0x6c, 0x79, 0x72,
  6211. 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x61, 0x70, 0x70,
  6212. 0x6c, 0x79, 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x22, 0xcb, 0x01, 0x0a, 0x18, 0x50, 0x65, 0x72,
  6213. 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x44, 0x65, 0x6c, 0x61, 0x79, 0x41, 0x70, 0x70,
  6214. 0x6c, 0x79, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18,
  6215. 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61,
  6216. 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18,
  6217. 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52,
  6218. 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44,
  6219. 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65,
  6220. 0x73, 0x63, 0x12, 0x34, 0x0a, 0x15, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63,
  6221. 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x53, 0x74, 0x65, 0x70, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28,
  6222. 0x04, 0x52, 0x15, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6c,
  6223. 0x61, 0x6e, 0x53, 0x74, 0x65, 0x70, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x70, 0x70, 0x6c,
  6224. 0x69, 0x63, 0x61, 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x61, 0x70, 0x70,
  6225. 0x6c, 0x69, 0x63, 0x61, 0x6e, 0x74, 0x22, 0xc2, 0x02, 0x0a, 0x1b, 0x50, 0x65, 0x72, 0x66, 0x6f,
  6226. 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x4d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x66,
  6227. 0x69, 0x72, 0x6d, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72,
  6228. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73,
  6229. 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12,
  6230. 0x34, 0x0a, 0x15, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6c,
  6231. 0x61, 0x6e, 0x53, 0x74, 0x65, 0x70, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x15,
  6232. 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x53,
  6233. 0x74, 0x65, 0x70, 0x49, 0x44, 0x12, 0x28, 0x0a, 0x0f, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x68, 0x6f,
  6234. 0x72, 0x74, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f,
  6235. 0x4f, 0x76, 0x65, 0x72, 0x53, 0x68, 0x6f, 0x72, 0x74, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12,
  6236. 0x36, 0x0a, 0x16, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x45, 0x78,
  6237. 0x65, 0x63, 0x75, 0x74, 0x65, 0x53, 0x69, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52,
  6238. 0x16, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x45, 0x78, 0x65, 0x63,
  6239. 0x75, 0x74, 0x65, 0x53, 0x69, 0x64, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x53, 0x74, 0x65, 0x70, 0x52,
  6240. 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x53, 0x74, 0x65,
  6241. 0x70, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x12, 0x22, 0x0a, 0x0c, 0x4f, 0x76, 0x65, 0x72, 0x53,
  6242. 0x68, 0x6f, 0x72, 0x74, 0x51, 0x74, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x4f,
  6243. 0x76, 0x65, 0x72, 0x53, 0x68, 0x6f, 0x72, 0x74, 0x51, 0x74, 0x79, 0x12, 0x1e, 0x0a, 0x0a, 0x45,
  6244. 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x46, 0x65, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x01, 0x52,
  6245. 0x0a, 0x45, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x46, 0x65, 0x65, 0x22, 0xb0, 0x01, 0x0a, 0x1b,
  6246. 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x4d, 0x61, 0x6e, 0x75, 0x61,
  6247. 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48,
  6248. 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62,
  6249. 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65,
  6250. 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18,
  6251. 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18,
  6252. 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  6253. 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x34, 0x0a, 0x15, 0x50, 0x65, 0x72, 0x66,
  6254. 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x53, 0x74, 0x65, 0x70, 0x49,
  6255. 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x15, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d,
  6256. 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x53, 0x74, 0x65, 0x70, 0x49, 0x44, 0x22, 0xb4,
  6257. 0x01, 0x0a, 0x1b, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x4d, 0x6f,
  6258. 0x64, 0x69, 0x66, 0x79, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x52, 0x65, 0x71, 0x12, 0x27,
  6259. 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f,
  6260. 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52,
  6261. 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x2c, 0x0a, 0x11, 0x50, 0x65, 0x72, 0x66, 0x6f,
  6262. 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01,
  6263. 0x28, 0x04, 0x52, 0x11, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50,
  6264. 0x6c, 0x61, 0x6e, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  6265. 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
  6266. 0x74, 0x49, 0x44, 0x12, 0x20, 0x0a, 0x0b, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x49, 0x6e,
  6267. 0x66, 0x6f, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63,
  6268. 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0xc6, 0x01, 0x0a, 0x1b, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72,
  6269. 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x43, 0x6f, 0x6e, 0x74, 0x61,
  6270. 0x63, 0x74, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18,
  6271. 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61,
  6272. 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18,
  6273. 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52,
  6274. 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44,
  6275. 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65,
  6276. 0x73, 0x63, 0x12, 0x2c, 0x0a, 0x11, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63,
  6277. 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x11, 0x50,
  6278. 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x49, 0x44,
  6279. 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x05, 0x20,
  6280. 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x22, 0xd2,
  6281. 0x02, 0x0a, 0x0d, 0x41, 0x64, 0x64, 0x5a, 0x53, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x52, 0x73, 0x70,
  6282. 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
  6283. 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61,
  6284. 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74,
  6285. 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43,
  6286. 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03,
  6287. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x16, 0x0a,
  6288. 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x55,
  6289. 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  6290. 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
  6291. 0x74, 0x49, 0x44, 0x12, 0x22, 0x0a, 0x0c, 0x57, 0x52, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  6292. 0x64, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x57, 0x52, 0x53, 0x74, 0x61,
  6293. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x57, 0x52, 0x46, 0x61, 0x63,
  6294. 0x74, 0x6f, 0x72, 0x54, 0x79, 0x70, 0x65, 0x49, 0x44, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52,
  6295. 0x0e, 0x57, 0x52, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x54, 0x79, 0x70, 0x65, 0x49, 0x44, 0x12,
  6296. 0x22, 0x0a, 0x0c, 0x4c, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x42, 0x69, 0x6c, 0x6c, 0x49, 0x44, 0x18,
  6297. 0x08, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x4c, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x42, 0x69, 0x6c,
  6298. 0x6c, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x53, 0x75, 0x62, 0x4e, 0x75, 0x6d, 0x18, 0x09, 0x20,
  6299. 0x01, 0x28, 0x0d, 0x52, 0x06, 0x53, 0x75, 0x62, 0x4e, 0x75, 0x6d, 0x12, 0x26, 0x0a, 0x0e, 0x43,
  6300. 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x0a, 0x20,
  6301. 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61,
  6302. 0x6c, 0x4e, 0x6f, 0x22, 0x88, 0x02, 0x0a, 0x17, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x46, 0x61, 0x76,
  6303. 0x6f, 0x72, 0x69, 0x74, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x12,
  6304. 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
  6305. 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64,
  6306. 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72,
  6307. 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44,
  6308. 0x12, 0x26, 0x0a, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72,
  6309. 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64,
  6310. 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x20, 0x0a, 0x0b, 0x4f, 0x70, 0x65, 0x72,
  6311. 0x61, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x4f,
  6312. 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x43, 0x6c,
  6313. 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a,
  6314. 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x4d, 0x61,
  6315. 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x4d, 0x61,
  6316. 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
  6317. 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e,
  6318. 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0xde,
  6319. 0x01, 0x0a, 0x17, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65,
  6320. 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65,
  6321. 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e,
  6322. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61,
  6323. 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02,
  6324. 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a,
  6325. 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  6326. 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49,
  6327. 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12,
  6328. 0x26, 0x0a, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49,
  6329. 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65,
  6330. 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e,
  6331. 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52,
  6332. 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22,
  6333. 0xc2, 0x05, 0x0a, 0x16, 0x47, 0x5a, 0x42, 0x75, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x44, 0x65,
  6334. 0x74, 0x61, 0x69, 0x6c, 0x45, 0x78, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73,
  6335. 0x65, 0x72, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72,
  6336. 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18,
  6337. 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44,
  6338. 0x12, 0x1e, 0x0a, 0x0a, 0x5a, 0x53, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x18, 0x03,
  6339. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x5a, 0x53, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79,
  6340. 0x12, 0x26, 0x0a, 0x0e, 0x5a, 0x53, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x54, 0x79,
  6341. 0x70, 0x65, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0e, 0x5a, 0x53, 0x43, 0x75, 0x72, 0x72,
  6342. 0x65, 0x6e, 0x63, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x5a, 0x53, 0x53, 0x68,
  6343. 0x61, 0x70, 0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0b, 0x5a,
  6344. 0x53, 0x53, 0x68, 0x61, 0x70, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x5a, 0x53,
  6345. 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0d, 0x52,
  6346. 0x0b, 0x5a, 0x53, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x54, 0x79, 0x70, 0x65, 0x12, 0x24, 0x0a, 0x0d,
  6347. 0x5a, 0x53, 0x43, 0x6c, 0x61, 0x72, 0x69, 0x74, 0x79, 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20,
  6348. 0x03, 0x28, 0x0d, 0x52, 0x0d, 0x5a, 0x53, 0x43, 0x6c, 0x61, 0x72, 0x69, 0x74, 0x79, 0x54, 0x79,
  6349. 0x70, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x5a, 0x53, 0x43, 0x75, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18,
  6350. 0x08, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x09, 0x5a, 0x53, 0x43, 0x75, 0x74, 0x54, 0x79, 0x70, 0x65,
  6351. 0x12, 0x26, 0x0a, 0x0e, 0x5a, 0x53, 0x53, 0x79, 0x6d, 0x6d, 0x65, 0x74, 0x72, 0x79, 0x54, 0x79,
  6352. 0x70, 0x65, 0x18, 0x09, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0e, 0x5a, 0x53, 0x53, 0x79, 0x6d, 0x6d,
  6353. 0x65, 0x74, 0x72, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x5a, 0x53, 0x50, 0x6f,
  6354. 0x6c, 0x69, 0x73, 0x68, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0a, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0c,
  6355. 0x5a, 0x53, 0x50, 0x6f, 0x6c, 0x69, 0x73, 0x68, 0x54, 0x79, 0x70, 0x65, 0x12, 0x2e, 0x0a, 0x12,
  6356. 0x5a, 0x53, 0x46, 0x6c, 0x75, 0x6f, 0x72, 0x65, 0x73, 0x63, 0x65, 0x6e, 0x63, 0x65, 0x54, 0x79,
  6357. 0x70, 0x65, 0x18, 0x0b, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x12, 0x5a, 0x53, 0x46, 0x6c, 0x75, 0x6f,
  6358. 0x72, 0x65, 0x73, 0x63, 0x65, 0x6e, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04,
  6359. 0x53, 0x69, 0x7a, 0x65, 0x18, 0x0c, 0x20, 0x03, 0x28, 0x01, 0x52, 0x04, 0x53, 0x69, 0x7a, 0x65,
  6360. 0x12, 0x24, 0x0a, 0x0d, 0x5a, 0x53, 0x43, 0x72, 0x79, 0x73, 0x74, 0x61, 0x6c, 0x54, 0x79, 0x70,
  6361. 0x65, 0x18, 0x0d, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0d, 0x5a, 0x53, 0x43, 0x72, 0x79, 0x73, 0x74,
  6362. 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x4f, 0x72, 0x69, 0x67, 0x69, 0x6e,
  6363. 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x4f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x12, 0x20,
  6364. 0x0a, 0x0b, 0x5a, 0x53, 0x53, 0x74, 0x79, 0x6c, 0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0f, 0x20,
  6365. 0x03, 0x28, 0x0d, 0x52, 0x0b, 0x5a, 0x53, 0x53, 0x74, 0x79, 0x6c, 0x65, 0x54, 0x79, 0x70, 0x65,
  6366. 0x12, 0x26, 0x0a, 0x0e, 0x5a, 0x53, 0x43, 0x5a, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x31, 0x54, 0x79,
  6367. 0x70, 0x65, 0x18, 0x10, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0e, 0x5a, 0x53, 0x43, 0x5a, 0x43, 0x6f,
  6368. 0x6c, 0x6f, 0x72, 0x31, 0x54, 0x79, 0x70, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x5a, 0x53, 0x43, 0x5a,
  6369. 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x32, 0x54, 0x79, 0x70, 0x65, 0x18, 0x11, 0x20, 0x03, 0x28, 0x0d,
  6370. 0x52, 0x0e, 0x5a, 0x53, 0x43, 0x5a, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x32, 0x54, 0x79, 0x70, 0x65,
  6371. 0x12, 0x26, 0x0a, 0x0e, 0x5a, 0x53, 0x43, 0x5a, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x33, 0x54, 0x79,
  6372. 0x70, 0x65, 0x18, 0x12, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0e, 0x5a, 0x53, 0x43, 0x5a, 0x43, 0x6f,
  6373. 0x6c, 0x6f, 0x72, 0x33, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x52, 0x65, 0x6d, 0x61,
  6374. 0x72, 0x6b, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b,
  6375. 0x12, 0x22, 0x0a, 0x0c, 0x57, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x49, 0x44, 0x73,
  6376. 0x18, 0x14, 0x20, 0x03, 0x28, 0x04, 0x52, 0x0c, 0x57, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73,
  6377. 0x65, 0x49, 0x44, 0x73, 0x22, 0xaa, 0x03, 0x0a, 0x14, 0x5a, 0x53, 0x42, 0x75, 0x79, 0x4f, 0x72,
  6378. 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a,
  6379. 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e,
  6380. 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06,
  6381. 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44,
  6382. 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c,
  6383. 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28,
  6384. 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x53, 0x0a, 0x17,
  6385. 0x47, 0x5a, 0x5f, 0x42, 0x75, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x44, 0x65, 0x74, 0x61, 0x69,
  6386. 0x6c, 0x45, 0x78, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e,
  6387. 0x70, 0x62, 0x2e, 0x47, 0x5a, 0x42, 0x75, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x44, 0x65, 0x74,
  6388. 0x61, 0x69, 0x6c, 0x45, 0x78, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x16, 0x47, 0x5a, 0x42, 0x75, 0x79,
  6389. 0x4f, 0x72, 0x64, 0x65, 0x72, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x45, 0x78, 0x49, 0x6e, 0x66,
  6390. 0x6f, 0x12, 0x34, 0x0a, 0x15, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65,
  6391. 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03,
  6392. 0x52, 0x15, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x54, 0x65, 0x6d,
  6393. 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65,
  6394. 0x74, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65,
  6395. 0x74, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x18,
  6396. 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x12,
  6397. 0x28, 0x0a, 0x0f, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69,
  6398. 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
  6399. 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x43, 0x6c, 0x69,
  6400. 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x43,
  6401. 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69,
  6402. 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x0a, 0x20, 0x01, 0x28,
  6403. 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e,
  6404. 0x6f, 0x22, 0x97, 0x02, 0x0a, 0x14, 0x5a, 0x53, 0x42, 0x75, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72,
  6405. 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65,
  6406. 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e,
  6407. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61,
  6408. 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02,
  6409. 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a,
  6410. 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  6411. 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49,
  6412. 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12,
  6413. 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01,
  6414. 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x26, 0x0a,
  6415. 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18,
  6416. 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72,
  6417. 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69,
  6418. 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54,
  6419. 0x69, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72,
  6420. 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69,
  6421. 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0xbe, 0x04, 0x0a, 0x15,
  6422. 0x5a, 0x53, 0x53, 0x65, 0x6c, 0x6c, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x69,
  6423. 0x6e, 0x67, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18,
  6424. 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61,
  6425. 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x16,
  6426. 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06,
  6427. 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
  6428. 0x74, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75,
  6429. 0x6e, 0x74, 0x49, 0x44, 0x12, 0x22, 0x0a, 0x0c, 0x57, 0x52, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  6430. 0x72, 0x64, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x57, 0x52, 0x53, 0x74,
  6431. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x57, 0x52, 0x46, 0x61,
  6432. 0x63, 0x74, 0x6f, 0x72, 0x54, 0x79, 0x70, 0x65, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04,
  6433. 0x52, 0x0e, 0x57, 0x52, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x54, 0x79, 0x70, 0x65, 0x49, 0x44,
  6434. 0x12, 0x1a, 0x0a, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x51, 0x74, 0x79, 0x18, 0x06, 0x20, 0x01,
  6435. 0x28, 0x01, 0x52, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x51, 0x74, 0x79, 0x12, 0x22, 0x0a, 0x0c,
  6436. 0x4c, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x42, 0x69, 0x6c, 0x6c, 0x49, 0x44, 0x18, 0x07, 0x20, 0x01,
  6437. 0x28, 0x04, 0x52, 0x0c, 0x4c, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x42, 0x69, 0x6c, 0x6c, 0x49, 0x44,
  6438. 0x12, 0x16, 0x0a, 0x06, 0x53, 0x75, 0x62, 0x4e, 0x75, 0x6d, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0d,
  6439. 0x52, 0x06, 0x53, 0x75, 0x62, 0x4e, 0x75, 0x6d, 0x12, 0x34, 0x0a, 0x15, 0x50, 0x65, 0x72, 0x66,
  6440. 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49,
  6441. 0x44, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x15, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d,
  6442. 0x61, 0x6e, 0x63, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x44, 0x12, 0x24,
  6443. 0x0a, 0x0d, 0x54, 0x69, 0x6d, 0x65, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x54, 0x79, 0x70, 0x65, 0x18,
  6444. 0x0a, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0d, 0x54, 0x69, 0x6d, 0x65, 0x76, 0x61, 0x6c, 0x69, 0x64,
  6445. 0x54, 0x79, 0x70, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x54, 0x69, 0x6d,
  6446. 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x54, 0x69,
  6447. 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x18, 0x0c,
  6448. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x12, 0x26,
  6449. 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f,
  6450. 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65,
  6451. 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x12, 0x28, 0x0a, 0x0f, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
  6452. 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52,
  6453. 0x0f, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65,
  6454. 0x12, 0x1e, 0x0a, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0f,
  6455. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65,
  6456. 0x12, 0x1a, 0x0a, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x18, 0x10, 0x20, 0x01,
  6457. 0x28, 0x04, 0x52, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x22, 0xb6, 0x02, 0x0a,
  6458. 0x15, 0x5a, 0x53, 0x53, 0x65, 0x6c, 0x6c, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74,
  6459. 0x69, 0x6e, 0x67, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72,
  6460. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73,
  6461. 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12,
  6462. 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05,
  6463. 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74,
  6464. 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44,
  6465. 0x65, 0x73, 0x63, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20,
  6466. 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41,
  6467. 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09,
  6468. 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x57, 0x52, 0x54,
  6469. 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28,
  6470. 0x04, 0x52, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49,
  6471. 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x46, 0x72, 0x65, 0x65, 0x7a, 0x65, 0x51, 0x74, 0x79, 0x18, 0x07,
  6472. 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x46, 0x72, 0x65, 0x65, 0x7a, 0x65, 0x51, 0x74, 0x79, 0x12,
  6473. 0x1c, 0x0a, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01,
  6474. 0x28, 0x09, 0x52, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x26, 0x0a,
  6475. 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18,
  6476. 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72,
  6477. 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0x91, 0x03, 0x0a, 0x14, 0x5a, 0x53, 0x42, 0x75, 0x79, 0x4f,
  6478. 0x72, 0x64, 0x65, 0x72, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x12, 0x27,
  6479. 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f,
  6480. 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52,
  6481. 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49,
  6482. 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12,
  6483. 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01,
  6484. 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x34, 0x0a,
  6485. 0x15, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f,
  6486. 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x15, 0x52, 0x65,
  6487. 0x6c, 0x61, 0x74, 0x65, 0x64, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65,
  6488. 0x72, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x51, 0x74, 0x79, 0x18,
  6489. 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x51, 0x74, 0x79, 0x12,
  6490. 0x1a, 0x0a, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x18, 0x06, 0x20, 0x01, 0x28,
  6491. 0x0d, 0x52, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x12, 0x26, 0x0a, 0x0e, 0x43,
  6492. 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x07, 0x20,
  6493. 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61,
  6494. 0x6c, 0x4e, 0x6f, 0x12, 0x28, 0x0a, 0x0f, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4f, 0x72, 0x64,
  6495. 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x43, 0x6c,
  6496. 0x69, 0x65, 0x6e, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a,
  6497. 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28,
  6498. 0x0d, 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a,
  6499. 0x0a, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x18, 0x0a, 0x20, 0x01, 0x28,
  6500. 0x04, 0x52, 0x0a, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x12, 0x1a, 0x0a,
  6501. 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x04, 0x52,
  6502. 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x22, 0xf1, 0x02, 0x0a, 0x14, 0x5a, 0x53,
  6503. 0x42, 0x75, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x52,
  6504. 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01,
  6505. 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48,
  6506. 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52,
  6507. 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65,
  6508. 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63,
  6509. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12,
  6510. 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52,
  6511. 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75,
  6512. 0x6e, 0x74, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f,
  6513. 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65,
  6514. 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x57,
  6515. 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x34, 0x0a,
  6516. 0x15, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f,
  6517. 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x15, 0x52, 0x65,
  6518. 0x6c, 0x61, 0x74, 0x65, 0x64, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65,
  6519. 0x72, 0x49, 0x44, 0x12, 0x22, 0x0a, 0x0c, 0x46, 0x72, 0x65, 0x65, 0x7a, 0x65, 0x41, 0x6d, 0x6f,
  6520. 0x75, 0x6e, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x46, 0x72, 0x65, 0x65, 0x7a,
  6521. 0x65, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72,
  6522. 0x54, 0x69, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x4f, 0x72, 0x64, 0x65,
  6523. 0x72, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53,
  6524. 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43,
  6525. 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0xf3, 0x03,
  6526. 0x0a, 0x1a, 0x5a, 0x53, 0x53, 0x65, 0x6c, 0x6c, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x44, 0x65, 0x73,
  6527. 0x74, 0x69, 0x6e, 0x67, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06,
  6528. 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70,
  6529. 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48,
  6530. 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18,
  6531. 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a,
  6532. 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04,
  6533. 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x2c, 0x0a, 0x11, 0x42,
  6534. 0x75, 0x79, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44,
  6535. 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x11, 0x42, 0x75, 0x79, 0x57, 0x52, 0x54, 0x72, 0x61,
  6536. 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x22, 0x0a, 0x0c, 0x57, 0x52, 0x53,
  6537. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52,
  6538. 0x0c, 0x57, 0x52, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x49, 0x44, 0x12, 0x26, 0x0a,
  6539. 0x0e, 0x57, 0x52, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x54, 0x79, 0x70, 0x65, 0x49, 0x44, 0x18,
  6540. 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x57, 0x52, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x54,
  6541. 0x79, 0x70, 0x65, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x51, 0x74,
  6542. 0x79, 0x18, 0x07, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x51, 0x74,
  6543. 0x79, 0x12, 0x1e, 0x0a, 0x0a, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x50, 0x72, 0x69, 0x63, 0x65, 0x18,
  6544. 0x08, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x50, 0x72, 0x69, 0x63,
  6545. 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x4c, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x42, 0x69, 0x6c, 0x6c, 0x49,
  6546. 0x44, 0x18, 0x09, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x4c, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x42,
  6547. 0x69, 0x6c, 0x6c, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x53, 0x75, 0x62, 0x4e, 0x75, 0x6d, 0x18,
  6548. 0x0a, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x53, 0x75, 0x62, 0x4e, 0x75, 0x6d, 0x12, 0x20, 0x0a,
  6549. 0x0b, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x0b, 0x20, 0x01,
  6550. 0x28, 0x09, 0x52, 0x0b, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x12,
  6551. 0x1e, 0x0a, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0c, 0x20,
  6552. 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12,
  6553. 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e,
  6554. 0x6f, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53,
  6555. 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x12, 0x1a, 0x0a, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65,
  6556. 0x74, 0x49, 0x44, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65,
  6557. 0x74, 0x49, 0x44, 0x22, 0xf1, 0x01, 0x0a, 0x1a, 0x5a, 0x53, 0x53, 0x65, 0x6c, 0x6c, 0x4f, 0x72,
  6558. 0x64, 0x65, 0x72, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52,
  6559. 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01,
  6560. 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48,
  6561. 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52,
  6562. 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65,
  6563. 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63,
  6564. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12,
  6565. 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52,
  6566. 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75,
  6567. 0x6e, 0x74, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f,
  6568. 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x49, 0x44,
  6569. 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x49, 0x44, 0x12,
  6570. 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e,
  6571. 0x6f, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53,
  6572. 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0xfa, 0x02, 0x0a, 0x21, 0x5a, 0x53, 0x53, 0x65,
  6573. 0x6c, 0x6c, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x70,
  6574. 0x70, 0x6c, 0x79, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a,
  6575. 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e,
  6576. 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06,
  6577. 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44,
  6578. 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c,
  6579. 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28,
  6580. 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x32, 0x0a, 0x14,
  6581. 0x53, 0x65, 0x6c, 0x6c, 0x44, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x70, 0x70,
  6582. 0x6c, 0x79, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x14, 0x53, 0x65, 0x6c, 0x6c,
  6583. 0x44, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x49, 0x44,
  6584. 0x12, 0x20, 0x0a, 0x0b, 0x41, 0x75, 0x64, 0x69, 0x74, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18,
  6585. 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x75, 0x64, 0x69, 0x74, 0x52, 0x65, 0x6d, 0x61,
  6586. 0x72, 0x6b, 0x12, 0x20, 0x0a, 0x0b, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x79, 0x70,
  6587. 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65,
  6588. 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44,
  6589. 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44,
  6590. 0x12, 0x1e, 0x0a, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x08,
  6591. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65,
  6592. 0x12, 0x1a, 0x0a, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x18, 0x09, 0x20, 0x01,
  6593. 0x28, 0x0d, 0x52, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x12, 0x26, 0x0a, 0x0e,
  6594. 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x0a,
  6595. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69,
  6596. 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0xfc, 0x02, 0x0a, 0x21, 0x5a, 0x53, 0x53, 0x65, 0x6c, 0x6c, 0x4f,
  6597. 0x72, 0x64, 0x65, 0x72, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x70, 0x70, 0x6c, 0x79,
  6598. 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65,
  6599. 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e,
  6600. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61,
  6601. 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02,
  6602. 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a,
  6603. 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  6604. 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49,
  6605. 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12,
  6606. 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01,
  6607. 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x32, 0x0a,
  6608. 0x14, 0x53, 0x65, 0x6c, 0x6c, 0x44, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x70,
  6609. 0x70, 0x6c, 0x79, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x14, 0x53, 0x65, 0x6c,
  6610. 0x6c, 0x44, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x49,
  6611. 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65,
  6612. 0x72, 0x49, 0x44, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61,
  6613. 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x22, 0x0a, 0x0c, 0x46, 0x72, 0x65,
  6614. 0x65, 0x7a, 0x65, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x01, 0x52,
  6615. 0x0c, 0x46, 0x72, 0x65, 0x65, 0x7a, 0x65, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1c, 0x0a,
  6616. 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09,
  6617. 0x52, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x43,
  6618. 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x0a, 0x20,
  6619. 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61,
  6620. 0x6c, 0x4e, 0x6f, 0x22, 0xcd, 0x03, 0x0a, 0x1c, 0x5a, 0x53, 0x42, 0x75, 0x79, 0x4f, 0x72, 0x64,
  6621. 0x65, 0x72, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x67, 0x50, 0x72, 0x69, 0x63,
  6622. 0x65, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01,
  6623. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  6624. 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a,
  6625. 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55,
  6626. 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  6627. 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
  6628. 0x74, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x4f, 0x72,
  6629. 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x52, 0x65, 0x6c,
  6630. 0x61, 0x74, 0x65, 0x64, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x4f,
  6631. 0x72, 0x64, 0x65, 0x72, 0x51, 0x74, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x4f,
  6632. 0x72, 0x64, 0x65, 0x72, 0x51, 0x74, 0x79, 0x12, 0x1e, 0x0a, 0x0a, 0x41, 0x70, 0x70, 0x6c, 0x79,
  6633. 0x50, 0x72, 0x69, 0x63, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x41, 0x70, 0x70,
  6634. 0x6c, 0x79, 0x50, 0x72, 0x69, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72,
  6635. 0x53, 0x72, 0x63, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72,
  6636. 0x53, 0x72, 0x63, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72,
  6637. 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69,
  6638. 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x12, 0x28, 0x0a, 0x0f, 0x43,
  6639. 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x09,
  6640. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4f, 0x72, 0x64, 0x65,
  6641. 0x72, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54,
  6642. 0x79, 0x70, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e,
  6643. 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f,
  6644. 0x72, 0x49, 0x44, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x4f, 0x70, 0x65, 0x72, 0x61,
  6645. 0x74, 0x6f, 0x72, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49,
  6646. 0x44, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49,
  6647. 0x44, 0x12, 0x20, 0x0a, 0x0b, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b,
  6648. 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x6d,
  6649. 0x61, 0x72, 0x6b, 0x22, 0xc1, 0x02, 0x0a, 0x1c, 0x5a, 0x53, 0x42, 0x75, 0x79, 0x4f, 0x72, 0x64,
  6650. 0x65, 0x72, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x67, 0x50, 0x72, 0x69, 0x63,
  6651. 0x65, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01,
  6652. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  6653. 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a,
  6654. 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07,
  6655. 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65,
  6656. 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73,
  6657. 0x63, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28,
  6658. 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63,
  6659. 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63,
  6660. 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61,
  6661. 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52,
  6662. 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12,
  6663. 0x20, 0x0a, 0x0b, 0x57, 0x52, 0x42, 0x61, 0x72, 0x67, 0x61, 0x69, 0x6e, 0x49, 0x44, 0x18, 0x07,
  6664. 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x57, 0x52, 0x42, 0x61, 0x72, 0x67, 0x61, 0x69, 0x6e, 0x49,
  6665. 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x08,
  6666. 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x12,
  6667. 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e,
  6668. 0x6f, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53,
  6669. 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0xea, 0x02, 0x0a, 0x23, 0x5a, 0x53, 0x42, 0x75,
  6670. 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x67,
  6671. 0x50, 0x72, 0x69, 0x63, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x12,
  6672. 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
  6673. 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64,
  6674. 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72,
  6675. 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44,
  6676. 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x03, 0x20,
  6677. 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x20,
  6678. 0x0a, 0x0b, 0x57, 0x52, 0x42, 0x61, 0x72, 0x67, 0x61, 0x69, 0x6e, 0x49, 0x44, 0x18, 0x04, 0x20,
  6679. 0x01, 0x28, 0x04, 0x52, 0x0b, 0x57, 0x52, 0x42, 0x61, 0x72, 0x67, 0x61, 0x69, 0x6e, 0x49, 0x44,
  6680. 0x12, 0x20, 0x0a, 0x0b, 0x41, 0x75, 0x64, 0x69, 0x74, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18,
  6681. 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x75, 0x64, 0x69, 0x74, 0x52, 0x65, 0x6d, 0x61,
  6682. 0x72, 0x6b, 0x12, 0x20, 0x0a, 0x0b, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x79, 0x70,
  6683. 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65,
  6684. 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44,
  6685. 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44,
  6686. 0x12, 0x1e, 0x0a, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x08,
  6687. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65,
  6688. 0x12, 0x1a, 0x0a, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x18, 0x09, 0x20, 0x01,
  6689. 0x28, 0x0d, 0x52, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x12, 0x26, 0x0a, 0x0e,
  6690. 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x0a,
  6691. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69,
  6692. 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0x82, 0x02, 0x0a, 0x23, 0x5a, 0x53, 0x42, 0x75, 0x79, 0x4f, 0x72,
  6693. 0x64, 0x65, 0x72, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x67, 0x50, 0x72, 0x69,
  6694. 0x63, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06,
  6695. 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70,
  6696. 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48,
  6697. 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65,
  6698. 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12,
  6699. 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  6700. 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65,
  6701. 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49,
  6702. 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x05,
  6703. 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12,
  6704. 0x20, 0x0a, 0x0b, 0x57, 0x52, 0x42, 0x61, 0x72, 0x67, 0x61, 0x69, 0x6e, 0x49, 0x44, 0x18, 0x06,
  6705. 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x57, 0x52, 0x42, 0x61, 0x72, 0x67, 0x61, 0x69, 0x6e, 0x49,
  6706. 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61,
  6707. 0x6c, 0x4e, 0x6f, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e,
  6708. 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0x86, 0x03, 0x0a, 0x17, 0x57, 0x52,
  6709. 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x4f, 0x72, 0x64,
  6710. 0x65, 0x72, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18,
  6711. 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61,
  6712. 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x16,
  6713. 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06,
  6714. 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
  6715. 0x74, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75,
  6716. 0x6e, 0x74, 0x49, 0x44, 0x12, 0x2c, 0x0a, 0x11, 0x4f, 0x6c, 0x64, 0x57, 0x52, 0x54, 0x72, 0x61,
  6717. 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52,
  6718. 0x11, 0x4f, 0x6c, 0x64, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72,
  6719. 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x18, 0x05,
  6720. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x12, 0x26,
  6721. 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f,
  6722. 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65,
  6723. 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x12, 0x28, 0x0a, 0x0f, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
  6724. 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52,
  6725. 0x0f, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65,
  6726. 0x12, 0x1e, 0x0a, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x08,
  6727. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65,
  6728. 0x12, 0x1e, 0x0a, 0x0a, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x18, 0x09,
  6729. 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44,
  6730. 0x12, 0x1c, 0x0a, 0x09, 0x42, 0x75, 0x79, 0x4f, 0x72, 0x53, 0x65, 0x6c, 0x6c, 0x18, 0x0a, 0x20,
  6731. 0x01, 0x28, 0x0d, 0x52, 0x09, 0x42, 0x75, 0x79, 0x4f, 0x72, 0x53, 0x65, 0x6c, 0x6c, 0x12, 0x12,
  6732. 0x0a, 0x04, 0x57, 0x52, 0x49, 0x44, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x57, 0x52,
  6733. 0x49, 0x44, 0x22, 0xe8, 0x02, 0x0a, 0x17, 0x57, 0x52, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67,
  6734. 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x73, 0x70, 0x12, 0x27,
  6735. 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f,
  6736. 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52,
  6737. 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f,
  6738. 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64,
  6739. 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01,
  6740. 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x28, 0x0a, 0x0f, 0x57,
  6741. 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x49, 0x44, 0x18, 0x04,
  6742. 0x20, 0x01, 0x28, 0x04, 0x52, 0x0f, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x43, 0x61, 0x6e,
  6743. 0x63, 0x65, 0x6c, 0x49, 0x44, 0x12, 0x2c, 0x0a, 0x11, 0x4f, 0x6c, 0x64, 0x57, 0x52, 0x54, 0x72,
  6744. 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04,
  6745. 0x52, 0x11, 0x4f, 0x6c, 0x64, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65,
  6746. 0x72, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x06, 0x20,
  6747. 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41,
  6748. 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09,
  6749. 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x43, 0x61, 0x6e,
  6750. 0x63, 0x65, 0x6c, 0x51, 0x74, 0x79, 0x18, 0x08, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x43, 0x61,
  6751. 0x6e, 0x63, 0x65, 0x6c, 0x51, 0x74, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72,
  6752. 0x54, 0x69, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x4f, 0x72, 0x64, 0x65,
  6753. 0x72, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53,
  6754. 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43,
  6755. 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0x97, 0x06,
  6756. 0x0a, 0x14, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x5a, 0x53, 0x4f, 0x75, 0x74, 0x41, 0x70,
  6757. 0x70, 0x6c, 0x79, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72,
  6758. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73,
  6759. 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12,
  6760. 0x24, 0x0a, 0x06, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
  6761. 0x0c, 0x2e, 0x70, 0x62, 0x2e, 0x57, 0x52, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x52, 0x06, 0x43,
  6762. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18,
  6763. 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a,
  6764. 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04,
  6765. 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x22, 0x0a, 0x0c, 0x57,
  6766. 0x52, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28,
  6767. 0x04, 0x52, 0x0c, 0x57, 0x52, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x49, 0x44, 0x12,
  6768. 0x20, 0x0a, 0x0b, 0x57, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x49, 0x44, 0x18, 0x06,
  6769. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x57, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x49,
  6770. 0x44, 0x12, 0x16, 0x0a, 0x06, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28,
  6771. 0x09, 0x52, 0x06, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x12, 0x28, 0x0a, 0x0f, 0x41, 0x70, 0x70,
  6772. 0x6f, 0x69, 0x6e, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x44, 0x61, 0x74, 0x65, 0x18, 0x08, 0x20, 0x01,
  6773. 0x28, 0x09, 0x52, 0x0f, 0x41, 0x70, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x44,
  6774. 0x61, 0x74, 0x65, 0x12, 0x2a, 0x0a, 0x10, 0x41, 0x70, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x6d, 0x65,
  6775. 0x6e, 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x18, 0x09, 0x20, 0x01, 0x28, 0x05, 0x52, 0x10, 0x41,
  6776. 0x70, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x12,
  6777. 0x1c, 0x0a, 0x09, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x49, 0x44, 0x18, 0x0a, 0x20, 0x01,
  6778. 0x28, 0x04, 0x52, 0x09, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x49, 0x44, 0x12, 0x1e, 0x0a,
  6779. 0x0a, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x49, 0x44, 0x18, 0x0b, 0x20, 0x01, 0x28,
  6780. 0x04, 0x52, 0x0a, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x49, 0x44, 0x12, 0x1e, 0x0a,
  6781. 0x0a, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x49, 0x44, 0x18, 0x0c, 0x20, 0x01, 0x28,
  6782. 0x04, 0x52, 0x0a, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x49, 0x44, 0x12, 0x16, 0x0a,
  6783. 0x06, 0x43, 0x69, 0x74, 0x79, 0x49, 0x44, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x43,
  6784. 0x69, 0x74, 0x79, 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73,
  6785. 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12,
  6786. 0x20, 0x0a, 0x0b, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x0f,
  6787. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x4e, 0x61, 0x6d,
  6788. 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x4e, 0x75, 0x6d, 0x18,
  6789. 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x4e, 0x75,
  6790. 0x6d, 0x12, 0x2c, 0x0a, 0x11, 0x41, 0x70, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x6d, 0x65, 0x6e, 0x74,
  6791. 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x41, 0x70,
  6792. 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x12,
  6793. 0x22, 0x0a, 0x0c, 0x4c, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x42, 0x69, 0x6c, 0x6c, 0x49, 0x44, 0x18,
  6794. 0x12, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x4c, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x42, 0x69, 0x6c,
  6795. 0x6c, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x53, 0x75, 0x62, 0x4e, 0x75, 0x6d, 0x18, 0x13, 0x20,
  6796. 0x01, 0x28, 0x0d, 0x52, 0x06, 0x53, 0x75, 0x62, 0x4e, 0x75, 0x6d, 0x12, 0x10, 0x0a, 0x03, 0x51,
  6797. 0x74, 0x79, 0x18, 0x14, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x51, 0x74, 0x79, 0x12, 0x16, 0x0a,
  6798. 0x06, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x52,
  6799. 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x54, 0x79,
  6800. 0x70, 0x65, 0x18, 0x16, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x54,
  6801. 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70,
  6802. 0x65, 0x18, 0x17, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54,
  6803. 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x69, 0x63,
  6804. 0x6b, 0x65, 0x74, 0x18, 0x18, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x43, 0x6c, 0x69, 0x65, 0x6e,
  6805. 0x74, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x22, 0xd7, 0x01, 0x0a, 0x14, 0x52, 0x65, 0x63, 0x65,
  6806. 0x69, 0x70, 0x74, 0x5a, 0x53, 0x4f, 0x75, 0x74, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x73, 0x70,
  6807. 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
  6808. 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61,
  6809. 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74,
  6810. 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43,
  6811. 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03,
  6812. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x24, 0x0a,
  6813. 0x06, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e,
  6814. 0x70, 0x62, 0x2e, 0x57, 0x52, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x52, 0x06, 0x43, 0x6f, 0x6d,
  6815. 0x6d, 0x6f, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x49, 0x44, 0x18, 0x05,
  6816. 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x49, 0x44, 0x12, 0x22, 0x0a,
  6817. 0x0c, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x18, 0x06, 0x20,
  6818. 0x01, 0x28, 0x09, 0x52, 0x0c, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x69, 0x63, 0x6b, 0x65,
  6819. 0x74, 0x22, 0x5d, 0x0a, 0x11, 0x44, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x43, 0x6f, 0x6e, 0x66,
  6820. 0x69, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x20, 0x0a, 0x0b, 0x44, 0x65, 0x70, 0x6f, 0x73, 0x69,
  6821. 0x74, 0x52, 0x61, 0x74, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x44, 0x65, 0x70,
  6822. 0x6f, 0x73, 0x69, 0x74, 0x52, 0x61, 0x74, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x44, 0x69, 0x73, 0x63,
  6823. 0x6f, 0x75, 0x6e, 0x74, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01,
  6824. 0x52, 0x0e, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74,
  6825. 0x22, 0x92, 0x03, 0x0a, 0x1a, 0x53, 0x70, 0x6f, 0x74, 0x50, 0x72, 0x65, 0x73, 0x61, 0x6c, 0x65,
  6826. 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x12,
  6827. 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
  6828. 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64,
  6829. 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72,
  6830. 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44,
  6831. 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x03, 0x20,
  6832. 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x22,
  6833. 0x0a, 0x0c, 0x57, 0x52, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x49, 0x44, 0x18, 0x04,
  6834. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0c, 0x57, 0x52, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  6835. 0x49, 0x44, 0x12, 0x20, 0x0a, 0x0b, 0x57, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x49,
  6836. 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x57, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75,
  6837. 0x73, 0x65, 0x49, 0x44, 0x12, 0x10, 0x0a, 0x03, 0x51, 0x74, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28,
  6838. 0x04, 0x52, 0x03, 0x51, 0x74, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x45, 0x6e, 0x64, 0x44, 0x61, 0x74,
  6839. 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x45, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x65,
  6840. 0x12, 0x3d, 0x0a, 0x0e, 0x44, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69,
  6841. 0x67, 0x73, 0x18, 0x08, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x65,
  6842. 0x70, 0x6f, 0x73, 0x69, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x52,
  6843. 0x0e, 0x44, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x12,
  6844. 0x1e, 0x0a, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x09, 0x20,
  6845. 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12,
  6846. 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e,
  6847. 0x6f, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53,
  6848. 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x12, 0x1c, 0x0a, 0x09, 0x55, 0x6e, 0x69, 0x74, 0x50,
  6849. 0x72, 0x69, 0x63, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x55, 0x6e, 0x69, 0x74,
  6850. 0x50, 0x72, 0x69, 0x63, 0x65, 0x22, 0xf1, 0x01, 0x0a, 0x1a, 0x53, 0x70, 0x6f, 0x74, 0x50, 0x72,
  6851. 0x65, 0x73, 0x61, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x4f, 0x72, 0x64, 0x65,
  6852. 0x72, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01,
  6853. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  6854. 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a,
  6855. 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07,
  6856. 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65,
  6857. 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73,
  6858. 0x63, 0x12, 0x26, 0x0a, 0x0e, 0x50, 0x72, 0x65, 0x73, 0x61, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x6c,
  6859. 0x79, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x50, 0x72, 0x65, 0x73, 0x61,
  6860. 0x6c, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x57, 0x52, 0x54,
  6861. 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28,
  6862. 0x04, 0x52, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49,
  6863. 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61,
  6864. 0x6c, 0x4e, 0x6f, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e,
  6865. 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0x68, 0x0a, 0x13, 0x54, 0x48, 0x4a,
  6866. 0x50, 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4e, 0x74, 0x66,
  6867. 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
  6868. 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61,
  6869. 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x28, 0x0a, 0x0f, 0x57, 0x52, 0x54,
  6870. 0x72, 0x61, 0x64, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01,
  6871. 0x28, 0x04, 0x52, 0x0f, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69,
  6872. 0x6c, 0x49, 0x44,
  6873. }
  6874. var (
  6875. file_mtp2_proto_rawDescOnce sync.Once
  6876. file_mtp2_proto_rawDescData = file_mtp2_proto_rawDesc
  6877. )
  6878. func file_mtp2_proto_rawDescGZIP() []byte {
  6879. file_mtp2_proto_rawDescOnce.Do(func() {
  6880. file_mtp2_proto_rawDescData = protoimpl.X.CompressGZIP(file_mtp2_proto_rawDescData)
  6881. })
  6882. return file_mtp2_proto_rawDescData
  6883. }
  6884. var file_mtp2_proto_msgTypes = make([]protoimpl.MessageInfo, 58)
  6885. var file_mtp2_proto_goTypes = []interface{}{
  6886. (*MessageHead)(nil), // 0: pb.MessageHead
  6887. (*ModifyPwdReq)(nil), // 1: pb.ModifyPwdReq
  6888. (*ModifyPwdRsp)(nil), // 2: pb.ModifyPwdRsp
  6889. (*UserReceiveInfoReq)(nil), // 3: pb.UserReceiveInfoReq
  6890. (*UserReceiveInfoRsp)(nil), // 4: pb.UserReceiveInfoRsp
  6891. (*DelUserReceiveInfoReq)(nil), // 5: pb.DelUserReceiveInfoReq
  6892. (*DelUserReceiveInfoRsp)(nil), // 6: pb.DelUserReceiveInfoRsp
  6893. (*UserReceiveIsDefaultReq)(nil), // 7: pb.UserReceiveIsDefaultReq
  6894. (*UserReceiveIsDefaultRsp)(nil), // 8: pb.UserReceiveIsDefaultRsp
  6895. (*UserReceiptInfoReq)(nil), // 9: pb.UserReceiptInfoReq
  6896. (*UserReceiptInfoRsp)(nil), // 10: pb.UserReceiptInfoRsp
  6897. (*DelUserReceiptInfoReq)(nil), // 11: pb.DelUserReceiptInfoReq
  6898. (*DelUserReceiptInfoRsp)(nil), // 12: pb.DelUserReceiptInfoRsp
  6899. (*T2BBankSignReq)(nil), // 13: pb.t2bBankSignReq
  6900. (*T2BBankSignRsp)(nil), // 14: pb.t2bBankSignRsp
  6901. (*T2BBankCancelSignReq)(nil), // 15: pb.t2bBankCancelSignReq
  6902. (*T2BBankCancelSignRsp)(nil), // 16: pb.t2bBankCancelSignRsp
  6903. (*T2BBankWithdrawReq)(nil), // 17: pb.t2bBankWithdrawReq
  6904. (*T2BBankWithdrawRsp)(nil), // 18: pb.t2bBankWithdrawRsp
  6905. (*T2BBankDepositReq)(nil), // 19: pb.t2bBankDepositReq
  6906. (*T2BBankDepositRsp)(nil), // 20: pb.t2bBankDepositRsp
  6907. (*WRCommon)(nil), // 21: pb.WRCommon
  6908. (*WarehouseApplyReq)(nil), // 22: pb.WarehouseApplyReq
  6909. (*WarehouseApplyRsp)(nil), // 23: pb.WarehouseApplyRsp
  6910. (*PerformanceContractedApplyReq)(nil), // 24: pb.PerformanceContractedApplyReq
  6911. (*PerformanceContractedApplyRsp)(nil), // 25: pb.PerformanceContractedApplyRsp
  6912. (*PerformanceDelayApplyReq)(nil), // 26: pb.PerformanceDelayApplyReq
  6913. (*PerformanceDelayApplyRsp)(nil), // 27: pb.PerformanceDelayApplyRsp
  6914. (*PerformanceManualConfirmReq)(nil), // 28: pb.PerformanceManualConfirmReq
  6915. (*PerformanceManualConfirmRsp)(nil), // 29: pb.PerformanceManualConfirmRsp
  6916. (*PerformanceModifyContactReq)(nil), // 30: pb.PerformanceModifyContactReq
  6917. (*PerformanceModifyContactRsp)(nil), // 31: pb.PerformanceModifyContactRsp
  6918. (*AddZSGoodsRsp)(nil), // 32: pb.AddZSGoodsRsp
  6919. (*GoodsFavoriteOperateReq)(nil), // 33: pb.GoodsFavoriteOperateReq
  6920. (*GoodsFavoriteOperateRsp)(nil), // 34: pb.GoodsFavoriteOperateRsp
  6921. (*GZBuyOrderDetailExInfo)(nil), // 35: pb.GZBuyOrderDetailExInfo
  6922. (*ZSBuyOrderListingReq)(nil), // 36: pb.ZSBuyOrderListingReq
  6923. (*ZSBuyOrderListingRsp)(nil), // 37: pb.ZSBuyOrderListingRsp
  6924. (*ZSSellOrderListingReq)(nil), // 38: pb.ZSSellOrderListingReq
  6925. (*ZSSellOrderListingRsp)(nil), // 39: pb.ZSSellOrderListingRsp
  6926. (*ZSBuyOrderDestingReq)(nil), // 40: pb.ZSBuyOrderDestingReq
  6927. (*ZSBuyOrderDestingRsp)(nil), // 41: pb.ZSBuyOrderDestingRsp
  6928. (*ZSSellOrderDestingApplyReq)(nil), // 42: pb.ZSSellOrderDestingApplyReq
  6929. (*ZSSellOrderDestingApplyRsp)(nil), // 43: pb.ZSSellOrderDestingApplyRsp
  6930. (*ZSSellOrderDestingApplyOperateReq)(nil), // 44: pb.ZSSellOrderDestingApplyOperateReq
  6931. (*ZSSellOrderDestingApplyOperateRsp)(nil), // 45: pb.ZSSellOrderDestingApplyOperateRsp
  6932. (*ZSBuyOrderDestingNegPriceReq)(nil), // 46: pb.ZSBuyOrderDestingNegPriceReq
  6933. (*ZSBuyOrderDestingNegPriceRsp)(nil), // 47: pb.ZSBuyOrderDestingNegPriceRsp
  6934. (*ZSBuyOrderDestingNegPriceOperateReq)(nil), // 48: pb.ZSBuyOrderDestingNegPriceOperateReq
  6935. (*ZSBuyOrderDestingNegPriceOperateRsp)(nil), // 49: pb.ZSBuyOrderDestingNegPriceOperateRsp
  6936. (*WRListingCancelOrderReq)(nil), // 50: pb.WRListingCancelOrderReq
  6937. (*WRListingCancelOrderRsp)(nil), // 51: pb.WRListingCancelOrderRsp
  6938. (*ReceiptZSOutApplyReq)(nil), // 52: pb.ReceiptZSOutApplyReq
  6939. (*ReceiptZSOutApplyRsp)(nil), // 53: pb.ReceiptZSOutApplyRsp
  6940. (*DepositConfigInfo)(nil), // 54: pb.DepositConfigInfo
  6941. (*SpotPresaleListingOrderReq)(nil), // 55: pb.SpotPresaleListingOrderReq
  6942. (*SpotPresaleListingOrderRsp)(nil), // 56: pb.SpotPresaleListingOrderRsp
  6943. (*THJPurchaseTradeNtf)(nil), // 57: pb.THJPurchaseTradeNtf
  6944. }
  6945. var file_mtp2_proto_depIdxs = []int32{
  6946. 0, // 0: pb.ModifyPwdReq.Header:type_name -> pb.MessageHead
  6947. 0, // 1: pb.ModifyPwdRsp.Header:type_name -> pb.MessageHead
  6948. 0, // 2: pb.UserReceiveInfoReq.Header:type_name -> pb.MessageHead
  6949. 0, // 3: pb.UserReceiveInfoRsp.Header:type_name -> pb.MessageHead
  6950. 0, // 4: pb.DelUserReceiveInfoReq.Header:type_name -> pb.MessageHead
  6951. 0, // 5: pb.DelUserReceiveInfoRsp.Header:type_name -> pb.MessageHead
  6952. 0, // 6: pb.UserReceiveIsDefaultReq.Header:type_name -> pb.MessageHead
  6953. 0, // 7: pb.UserReceiveIsDefaultRsp.Header:type_name -> pb.MessageHead
  6954. 0, // 8: pb.UserReceiptInfoReq.Header:type_name -> pb.MessageHead
  6955. 0, // 9: pb.UserReceiptInfoRsp.Header:type_name -> pb.MessageHead
  6956. 0, // 10: pb.DelUserReceiptInfoReq.Header:type_name -> pb.MessageHead
  6957. 0, // 11: pb.DelUserReceiptInfoRsp.Header:type_name -> pb.MessageHead
  6958. 0, // 12: pb.t2bBankSignReq.Header:type_name -> pb.MessageHead
  6959. 0, // 13: pb.t2bBankSignRsp.Header:type_name -> pb.MessageHead
  6960. 0, // 14: pb.t2bBankCancelSignReq.Header:type_name -> pb.MessageHead
  6961. 0, // 15: pb.t2bBankCancelSignRsp.Header:type_name -> pb.MessageHead
  6962. 0, // 16: pb.t2bBankWithdrawReq.Header:type_name -> pb.MessageHead
  6963. 0, // 17: pb.t2bBankWithdrawRsp.Header:type_name -> pb.MessageHead
  6964. 0, // 18: pb.t2bBankDepositReq.Header:type_name -> pb.MessageHead
  6965. 0, // 19: pb.t2bBankDepositRsp.Header:type_name -> pb.MessageHead
  6966. 0, // 20: pb.WarehouseApplyReq.Header:type_name -> pb.MessageHead
  6967. 0, // 21: pb.WarehouseApplyRsp.Header:type_name -> pb.MessageHead
  6968. 0, // 22: pb.PerformanceContractedApplyReq.Header:type_name -> pb.MessageHead
  6969. 0, // 23: pb.PerformanceContractedApplyRsp.Header:type_name -> pb.MessageHead
  6970. 0, // 24: pb.PerformanceDelayApplyReq.Header:type_name -> pb.MessageHead
  6971. 0, // 25: pb.PerformanceDelayApplyRsp.Header:type_name -> pb.MessageHead
  6972. 0, // 26: pb.PerformanceManualConfirmReq.Header:type_name -> pb.MessageHead
  6973. 0, // 27: pb.PerformanceManualConfirmRsp.Header:type_name -> pb.MessageHead
  6974. 0, // 28: pb.PerformanceModifyContactReq.Header:type_name -> pb.MessageHead
  6975. 0, // 29: pb.PerformanceModifyContactRsp.Header:type_name -> pb.MessageHead
  6976. 0, // 30: pb.AddZSGoodsRsp.Header:type_name -> pb.MessageHead
  6977. 0, // 31: pb.GoodsFavoriteOperateReq.Header:type_name -> pb.MessageHead
  6978. 0, // 32: pb.GoodsFavoriteOperateRsp.Header:type_name -> pb.MessageHead
  6979. 0, // 33: pb.ZSBuyOrderListingReq.Header:type_name -> pb.MessageHead
  6980. 35, // 34: pb.ZSBuyOrderListingReq.GZ_BuyOrderDetailExInfo:type_name -> pb.GZBuyOrderDetailExInfo
  6981. 0, // 35: pb.ZSBuyOrderListingRsp.Header:type_name -> pb.MessageHead
  6982. 0, // 36: pb.ZSSellOrderListingReq.Header:type_name -> pb.MessageHead
  6983. 0, // 37: pb.ZSSellOrderListingRsp.Header:type_name -> pb.MessageHead
  6984. 0, // 38: pb.ZSBuyOrderDestingReq.Header:type_name -> pb.MessageHead
  6985. 0, // 39: pb.ZSBuyOrderDestingRsp.Header:type_name -> pb.MessageHead
  6986. 0, // 40: pb.ZSSellOrderDestingApplyReq.Header:type_name -> pb.MessageHead
  6987. 0, // 41: pb.ZSSellOrderDestingApplyRsp.Header:type_name -> pb.MessageHead
  6988. 0, // 42: pb.ZSSellOrderDestingApplyOperateReq.Header:type_name -> pb.MessageHead
  6989. 0, // 43: pb.ZSSellOrderDestingApplyOperateRsp.Header:type_name -> pb.MessageHead
  6990. 0, // 44: pb.ZSBuyOrderDestingNegPriceReq.Header:type_name -> pb.MessageHead
  6991. 0, // 45: pb.ZSBuyOrderDestingNegPriceRsp.Header:type_name -> pb.MessageHead
  6992. 0, // 46: pb.ZSBuyOrderDestingNegPriceOperateReq.Header:type_name -> pb.MessageHead
  6993. 0, // 47: pb.ZSBuyOrderDestingNegPriceOperateRsp.Header:type_name -> pb.MessageHead
  6994. 0, // 48: pb.WRListingCancelOrderReq.Header:type_name -> pb.MessageHead
  6995. 0, // 49: pb.WRListingCancelOrderRsp.Header:type_name -> pb.MessageHead
  6996. 0, // 50: pb.ReceiptZSOutApplyReq.Header:type_name -> pb.MessageHead
  6997. 21, // 51: pb.ReceiptZSOutApplyReq.Common:type_name -> pb.WRCommon
  6998. 0, // 52: pb.ReceiptZSOutApplyRsp.Header:type_name -> pb.MessageHead
  6999. 21, // 53: pb.ReceiptZSOutApplyRsp.Common:type_name -> pb.WRCommon
  7000. 0, // 54: pb.SpotPresaleListingOrderReq.Header:type_name -> pb.MessageHead
  7001. 54, // 55: pb.SpotPresaleListingOrderReq.DepositConfigs:type_name -> pb.DepositConfigInfo
  7002. 0, // 56: pb.SpotPresaleListingOrderRsp.Header:type_name -> pb.MessageHead
  7003. 0, // 57: pb.THJPurchaseTradeNtf.Header:type_name -> pb.MessageHead
  7004. 58, // [58:58] is the sub-list for method output_type
  7005. 58, // [58:58] is the sub-list for method input_type
  7006. 58, // [58:58] is the sub-list for extension type_name
  7007. 58, // [58:58] is the sub-list for extension extendee
  7008. 0, // [0:58] is the sub-list for field type_name
  7009. }
  7010. func init() { file_mtp2_proto_init() }
  7011. func file_mtp2_proto_init() {
  7012. if File_mtp2_proto != nil {
  7013. return
  7014. }
  7015. if !protoimpl.UnsafeEnabled {
  7016. file_mtp2_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  7017. switch v := v.(*MessageHead); i {
  7018. case 0:
  7019. return &v.state
  7020. case 1:
  7021. return &v.sizeCache
  7022. case 2:
  7023. return &v.unknownFields
  7024. default:
  7025. return nil
  7026. }
  7027. }
  7028. file_mtp2_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  7029. switch v := v.(*ModifyPwdReq); i {
  7030. case 0:
  7031. return &v.state
  7032. case 1:
  7033. return &v.sizeCache
  7034. case 2:
  7035. return &v.unknownFields
  7036. default:
  7037. return nil
  7038. }
  7039. }
  7040. file_mtp2_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  7041. switch v := v.(*ModifyPwdRsp); i {
  7042. case 0:
  7043. return &v.state
  7044. case 1:
  7045. return &v.sizeCache
  7046. case 2:
  7047. return &v.unknownFields
  7048. default:
  7049. return nil
  7050. }
  7051. }
  7052. file_mtp2_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  7053. switch v := v.(*UserReceiveInfoReq); i {
  7054. case 0:
  7055. return &v.state
  7056. case 1:
  7057. return &v.sizeCache
  7058. case 2:
  7059. return &v.unknownFields
  7060. default:
  7061. return nil
  7062. }
  7063. }
  7064. file_mtp2_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  7065. switch v := v.(*UserReceiveInfoRsp); i {
  7066. case 0:
  7067. return &v.state
  7068. case 1:
  7069. return &v.sizeCache
  7070. case 2:
  7071. return &v.unknownFields
  7072. default:
  7073. return nil
  7074. }
  7075. }
  7076. file_mtp2_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  7077. switch v := v.(*DelUserReceiveInfoReq); i {
  7078. case 0:
  7079. return &v.state
  7080. case 1:
  7081. return &v.sizeCache
  7082. case 2:
  7083. return &v.unknownFields
  7084. default:
  7085. return nil
  7086. }
  7087. }
  7088. file_mtp2_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  7089. switch v := v.(*DelUserReceiveInfoRsp); i {
  7090. case 0:
  7091. return &v.state
  7092. case 1:
  7093. return &v.sizeCache
  7094. case 2:
  7095. return &v.unknownFields
  7096. default:
  7097. return nil
  7098. }
  7099. }
  7100. file_mtp2_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  7101. switch v := v.(*UserReceiveIsDefaultReq); i {
  7102. case 0:
  7103. return &v.state
  7104. case 1:
  7105. return &v.sizeCache
  7106. case 2:
  7107. return &v.unknownFields
  7108. default:
  7109. return nil
  7110. }
  7111. }
  7112. file_mtp2_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  7113. switch v := v.(*UserReceiveIsDefaultRsp); i {
  7114. case 0:
  7115. return &v.state
  7116. case 1:
  7117. return &v.sizeCache
  7118. case 2:
  7119. return &v.unknownFields
  7120. default:
  7121. return nil
  7122. }
  7123. }
  7124. file_mtp2_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  7125. switch v := v.(*UserReceiptInfoReq); i {
  7126. case 0:
  7127. return &v.state
  7128. case 1:
  7129. return &v.sizeCache
  7130. case 2:
  7131. return &v.unknownFields
  7132. default:
  7133. return nil
  7134. }
  7135. }
  7136. file_mtp2_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  7137. switch v := v.(*UserReceiptInfoRsp); i {
  7138. case 0:
  7139. return &v.state
  7140. case 1:
  7141. return &v.sizeCache
  7142. case 2:
  7143. return &v.unknownFields
  7144. default:
  7145. return nil
  7146. }
  7147. }
  7148. file_mtp2_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  7149. switch v := v.(*DelUserReceiptInfoReq); i {
  7150. case 0:
  7151. return &v.state
  7152. case 1:
  7153. return &v.sizeCache
  7154. case 2:
  7155. return &v.unknownFields
  7156. default:
  7157. return nil
  7158. }
  7159. }
  7160. file_mtp2_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  7161. switch v := v.(*DelUserReceiptInfoRsp); i {
  7162. case 0:
  7163. return &v.state
  7164. case 1:
  7165. return &v.sizeCache
  7166. case 2:
  7167. return &v.unknownFields
  7168. default:
  7169. return nil
  7170. }
  7171. }
  7172. file_mtp2_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  7173. switch v := v.(*T2BBankSignReq); i {
  7174. case 0:
  7175. return &v.state
  7176. case 1:
  7177. return &v.sizeCache
  7178. case 2:
  7179. return &v.unknownFields
  7180. default:
  7181. return nil
  7182. }
  7183. }
  7184. file_mtp2_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  7185. switch v := v.(*T2BBankSignRsp); i {
  7186. case 0:
  7187. return &v.state
  7188. case 1:
  7189. return &v.sizeCache
  7190. case 2:
  7191. return &v.unknownFields
  7192. default:
  7193. return nil
  7194. }
  7195. }
  7196. file_mtp2_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  7197. switch v := v.(*T2BBankCancelSignReq); i {
  7198. case 0:
  7199. return &v.state
  7200. case 1:
  7201. return &v.sizeCache
  7202. case 2:
  7203. return &v.unknownFields
  7204. default:
  7205. return nil
  7206. }
  7207. }
  7208. file_mtp2_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  7209. switch v := v.(*T2BBankCancelSignRsp); i {
  7210. case 0:
  7211. return &v.state
  7212. case 1:
  7213. return &v.sizeCache
  7214. case 2:
  7215. return &v.unknownFields
  7216. default:
  7217. return nil
  7218. }
  7219. }
  7220. file_mtp2_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  7221. switch v := v.(*T2BBankWithdrawReq); i {
  7222. case 0:
  7223. return &v.state
  7224. case 1:
  7225. return &v.sizeCache
  7226. case 2:
  7227. return &v.unknownFields
  7228. default:
  7229. return nil
  7230. }
  7231. }
  7232. file_mtp2_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  7233. switch v := v.(*T2BBankWithdrawRsp); i {
  7234. case 0:
  7235. return &v.state
  7236. case 1:
  7237. return &v.sizeCache
  7238. case 2:
  7239. return &v.unknownFields
  7240. default:
  7241. return nil
  7242. }
  7243. }
  7244. file_mtp2_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  7245. switch v := v.(*T2BBankDepositReq); i {
  7246. case 0:
  7247. return &v.state
  7248. case 1:
  7249. return &v.sizeCache
  7250. case 2:
  7251. return &v.unknownFields
  7252. default:
  7253. return nil
  7254. }
  7255. }
  7256. file_mtp2_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  7257. switch v := v.(*T2BBankDepositRsp); i {
  7258. case 0:
  7259. return &v.state
  7260. case 1:
  7261. return &v.sizeCache
  7262. case 2:
  7263. return &v.unknownFields
  7264. default:
  7265. return nil
  7266. }
  7267. }
  7268. file_mtp2_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  7269. switch v := v.(*WRCommon); i {
  7270. case 0:
  7271. return &v.state
  7272. case 1:
  7273. return &v.sizeCache
  7274. case 2:
  7275. return &v.unknownFields
  7276. default:
  7277. return nil
  7278. }
  7279. }
  7280. file_mtp2_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  7281. switch v := v.(*WarehouseApplyReq); i {
  7282. case 0:
  7283. return &v.state
  7284. case 1:
  7285. return &v.sizeCache
  7286. case 2:
  7287. return &v.unknownFields
  7288. default:
  7289. return nil
  7290. }
  7291. }
  7292. file_mtp2_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  7293. switch v := v.(*WarehouseApplyRsp); i {
  7294. case 0:
  7295. return &v.state
  7296. case 1:
  7297. return &v.sizeCache
  7298. case 2:
  7299. return &v.unknownFields
  7300. default:
  7301. return nil
  7302. }
  7303. }
  7304. file_mtp2_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  7305. switch v := v.(*PerformanceContractedApplyReq); i {
  7306. case 0:
  7307. return &v.state
  7308. case 1:
  7309. return &v.sizeCache
  7310. case 2:
  7311. return &v.unknownFields
  7312. default:
  7313. return nil
  7314. }
  7315. }
  7316. file_mtp2_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  7317. switch v := v.(*PerformanceContractedApplyRsp); i {
  7318. case 0:
  7319. return &v.state
  7320. case 1:
  7321. return &v.sizeCache
  7322. case 2:
  7323. return &v.unknownFields
  7324. default:
  7325. return nil
  7326. }
  7327. }
  7328. file_mtp2_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  7329. switch v := v.(*PerformanceDelayApplyReq); i {
  7330. case 0:
  7331. return &v.state
  7332. case 1:
  7333. return &v.sizeCache
  7334. case 2:
  7335. return &v.unknownFields
  7336. default:
  7337. return nil
  7338. }
  7339. }
  7340. file_mtp2_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  7341. switch v := v.(*PerformanceDelayApplyRsp); i {
  7342. case 0:
  7343. return &v.state
  7344. case 1:
  7345. return &v.sizeCache
  7346. case 2:
  7347. return &v.unknownFields
  7348. default:
  7349. return nil
  7350. }
  7351. }
  7352. file_mtp2_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  7353. switch v := v.(*PerformanceManualConfirmReq); i {
  7354. case 0:
  7355. return &v.state
  7356. case 1:
  7357. return &v.sizeCache
  7358. case 2:
  7359. return &v.unknownFields
  7360. default:
  7361. return nil
  7362. }
  7363. }
  7364. file_mtp2_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  7365. switch v := v.(*PerformanceManualConfirmRsp); i {
  7366. case 0:
  7367. return &v.state
  7368. case 1:
  7369. return &v.sizeCache
  7370. case 2:
  7371. return &v.unknownFields
  7372. default:
  7373. return nil
  7374. }
  7375. }
  7376. file_mtp2_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  7377. switch v := v.(*PerformanceModifyContactReq); i {
  7378. case 0:
  7379. return &v.state
  7380. case 1:
  7381. return &v.sizeCache
  7382. case 2:
  7383. return &v.unknownFields
  7384. default:
  7385. return nil
  7386. }
  7387. }
  7388. file_mtp2_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  7389. switch v := v.(*PerformanceModifyContactRsp); i {
  7390. case 0:
  7391. return &v.state
  7392. case 1:
  7393. return &v.sizeCache
  7394. case 2:
  7395. return &v.unknownFields
  7396. default:
  7397. return nil
  7398. }
  7399. }
  7400. file_mtp2_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  7401. switch v := v.(*AddZSGoodsRsp); i {
  7402. case 0:
  7403. return &v.state
  7404. case 1:
  7405. return &v.sizeCache
  7406. case 2:
  7407. return &v.unknownFields
  7408. default:
  7409. return nil
  7410. }
  7411. }
  7412. file_mtp2_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  7413. switch v := v.(*GoodsFavoriteOperateReq); i {
  7414. case 0:
  7415. return &v.state
  7416. case 1:
  7417. return &v.sizeCache
  7418. case 2:
  7419. return &v.unknownFields
  7420. default:
  7421. return nil
  7422. }
  7423. }
  7424. file_mtp2_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  7425. switch v := v.(*GoodsFavoriteOperateRsp); i {
  7426. case 0:
  7427. return &v.state
  7428. case 1:
  7429. return &v.sizeCache
  7430. case 2:
  7431. return &v.unknownFields
  7432. default:
  7433. return nil
  7434. }
  7435. }
  7436. file_mtp2_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
  7437. switch v := v.(*GZBuyOrderDetailExInfo); i {
  7438. case 0:
  7439. return &v.state
  7440. case 1:
  7441. return &v.sizeCache
  7442. case 2:
  7443. return &v.unknownFields
  7444. default:
  7445. return nil
  7446. }
  7447. }
  7448. file_mtp2_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
  7449. switch v := v.(*ZSBuyOrderListingReq); i {
  7450. case 0:
  7451. return &v.state
  7452. case 1:
  7453. return &v.sizeCache
  7454. case 2:
  7455. return &v.unknownFields
  7456. default:
  7457. return nil
  7458. }
  7459. }
  7460. file_mtp2_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
  7461. switch v := v.(*ZSBuyOrderListingRsp); i {
  7462. case 0:
  7463. return &v.state
  7464. case 1:
  7465. return &v.sizeCache
  7466. case 2:
  7467. return &v.unknownFields
  7468. default:
  7469. return nil
  7470. }
  7471. }
  7472. file_mtp2_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
  7473. switch v := v.(*ZSSellOrderListingReq); i {
  7474. case 0:
  7475. return &v.state
  7476. case 1:
  7477. return &v.sizeCache
  7478. case 2:
  7479. return &v.unknownFields
  7480. default:
  7481. return nil
  7482. }
  7483. }
  7484. file_mtp2_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
  7485. switch v := v.(*ZSSellOrderListingRsp); i {
  7486. case 0:
  7487. return &v.state
  7488. case 1:
  7489. return &v.sizeCache
  7490. case 2:
  7491. return &v.unknownFields
  7492. default:
  7493. return nil
  7494. }
  7495. }
  7496. file_mtp2_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
  7497. switch v := v.(*ZSBuyOrderDestingReq); i {
  7498. case 0:
  7499. return &v.state
  7500. case 1:
  7501. return &v.sizeCache
  7502. case 2:
  7503. return &v.unknownFields
  7504. default:
  7505. return nil
  7506. }
  7507. }
  7508. file_mtp2_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
  7509. switch v := v.(*ZSBuyOrderDestingRsp); i {
  7510. case 0:
  7511. return &v.state
  7512. case 1:
  7513. return &v.sizeCache
  7514. case 2:
  7515. return &v.unknownFields
  7516. default:
  7517. return nil
  7518. }
  7519. }
  7520. file_mtp2_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
  7521. switch v := v.(*ZSSellOrderDestingApplyReq); i {
  7522. case 0:
  7523. return &v.state
  7524. case 1:
  7525. return &v.sizeCache
  7526. case 2:
  7527. return &v.unknownFields
  7528. default:
  7529. return nil
  7530. }
  7531. }
  7532. file_mtp2_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
  7533. switch v := v.(*ZSSellOrderDestingApplyRsp); i {
  7534. case 0:
  7535. return &v.state
  7536. case 1:
  7537. return &v.sizeCache
  7538. case 2:
  7539. return &v.unknownFields
  7540. default:
  7541. return nil
  7542. }
  7543. }
  7544. file_mtp2_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
  7545. switch v := v.(*ZSSellOrderDestingApplyOperateReq); i {
  7546. case 0:
  7547. return &v.state
  7548. case 1:
  7549. return &v.sizeCache
  7550. case 2:
  7551. return &v.unknownFields
  7552. default:
  7553. return nil
  7554. }
  7555. }
  7556. file_mtp2_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {
  7557. switch v := v.(*ZSSellOrderDestingApplyOperateRsp); i {
  7558. case 0:
  7559. return &v.state
  7560. case 1:
  7561. return &v.sizeCache
  7562. case 2:
  7563. return &v.unknownFields
  7564. default:
  7565. return nil
  7566. }
  7567. }
  7568. file_mtp2_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {
  7569. switch v := v.(*ZSBuyOrderDestingNegPriceReq); i {
  7570. case 0:
  7571. return &v.state
  7572. case 1:
  7573. return &v.sizeCache
  7574. case 2:
  7575. return &v.unknownFields
  7576. default:
  7577. return nil
  7578. }
  7579. }
  7580. file_mtp2_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} {
  7581. switch v := v.(*ZSBuyOrderDestingNegPriceRsp); i {
  7582. case 0:
  7583. return &v.state
  7584. case 1:
  7585. return &v.sizeCache
  7586. case 2:
  7587. return &v.unknownFields
  7588. default:
  7589. return nil
  7590. }
  7591. }
  7592. file_mtp2_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} {
  7593. switch v := v.(*ZSBuyOrderDestingNegPriceOperateReq); i {
  7594. case 0:
  7595. return &v.state
  7596. case 1:
  7597. return &v.sizeCache
  7598. case 2:
  7599. return &v.unknownFields
  7600. default:
  7601. return nil
  7602. }
  7603. }
  7604. file_mtp2_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} {
  7605. switch v := v.(*ZSBuyOrderDestingNegPriceOperateRsp); i {
  7606. case 0:
  7607. return &v.state
  7608. case 1:
  7609. return &v.sizeCache
  7610. case 2:
  7611. return &v.unknownFields
  7612. default:
  7613. return nil
  7614. }
  7615. }
  7616. file_mtp2_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} {
  7617. switch v := v.(*WRListingCancelOrderReq); i {
  7618. case 0:
  7619. return &v.state
  7620. case 1:
  7621. return &v.sizeCache
  7622. case 2:
  7623. return &v.unknownFields
  7624. default:
  7625. return nil
  7626. }
  7627. }
  7628. file_mtp2_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} {
  7629. switch v := v.(*WRListingCancelOrderRsp); i {
  7630. case 0:
  7631. return &v.state
  7632. case 1:
  7633. return &v.sizeCache
  7634. case 2:
  7635. return &v.unknownFields
  7636. default:
  7637. return nil
  7638. }
  7639. }
  7640. file_mtp2_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} {
  7641. switch v := v.(*ReceiptZSOutApplyReq); i {
  7642. case 0:
  7643. return &v.state
  7644. case 1:
  7645. return &v.sizeCache
  7646. case 2:
  7647. return &v.unknownFields
  7648. default:
  7649. return nil
  7650. }
  7651. }
  7652. file_mtp2_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} {
  7653. switch v := v.(*ReceiptZSOutApplyRsp); i {
  7654. case 0:
  7655. return &v.state
  7656. case 1:
  7657. return &v.sizeCache
  7658. case 2:
  7659. return &v.unknownFields
  7660. default:
  7661. return nil
  7662. }
  7663. }
  7664. file_mtp2_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} {
  7665. switch v := v.(*DepositConfigInfo); i {
  7666. case 0:
  7667. return &v.state
  7668. case 1:
  7669. return &v.sizeCache
  7670. case 2:
  7671. return &v.unknownFields
  7672. default:
  7673. return nil
  7674. }
  7675. }
  7676. file_mtp2_proto_msgTypes[55].Exporter = func(v interface{}, i int) interface{} {
  7677. switch v := v.(*SpotPresaleListingOrderReq); i {
  7678. case 0:
  7679. return &v.state
  7680. case 1:
  7681. return &v.sizeCache
  7682. case 2:
  7683. return &v.unknownFields
  7684. default:
  7685. return nil
  7686. }
  7687. }
  7688. file_mtp2_proto_msgTypes[56].Exporter = func(v interface{}, i int) interface{} {
  7689. switch v := v.(*SpotPresaleListingOrderRsp); i {
  7690. case 0:
  7691. return &v.state
  7692. case 1:
  7693. return &v.sizeCache
  7694. case 2:
  7695. return &v.unknownFields
  7696. default:
  7697. return nil
  7698. }
  7699. }
  7700. file_mtp2_proto_msgTypes[57].Exporter = func(v interface{}, i int) interface{} {
  7701. switch v := v.(*THJPurchaseTradeNtf); i {
  7702. case 0:
  7703. return &v.state
  7704. case 1:
  7705. return &v.sizeCache
  7706. case 2:
  7707. return &v.unknownFields
  7708. default:
  7709. return nil
  7710. }
  7711. }
  7712. }
  7713. type x struct{}
  7714. out := protoimpl.TypeBuilder{
  7715. File: protoimpl.DescBuilder{
  7716. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  7717. RawDescriptor: file_mtp2_proto_rawDesc,
  7718. NumEnums: 0,
  7719. NumMessages: 58,
  7720. NumExtensions: 0,
  7721. NumServices: 0,
  7722. },
  7723. GoTypes: file_mtp2_proto_goTypes,
  7724. DependencyIndexes: file_mtp2_proto_depIdxs,
  7725. MessageInfos: file_mtp2_proto_msgTypes,
  7726. }.Build()
  7727. File_mtp2_proto = out.File
  7728. file_mtp2_proto_rawDesc = nil
  7729. file_mtp2_proto_goTypes = nil
  7730. file_mtp2_proto_depIdxs = nil
  7731. }