mtp2.pb.go 389 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985
  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 NotifyHead struct {
  135. state protoimpl.MessageState
  136. sizeCache protoimpl.SizeCache
  137. unknownFields protoimpl.UnknownFields
  138. NtfMode *int32 `protobuf:"varint,1,opt,name=NtfMode" json:"NtfMode,omitempty"` // 消息通知模式(单播、组播、广播)
  139. ExcludeAcctIDs []uint32 `protobuf:"varint,2,rep,name=ExcludeAcctIDs" json:"ExcludeAcctIDs,omitempty"` // 排除账号集合(首先过滤此集合帐号)
  140. ExchIDs []uint32 `protobuf:"varint,3,rep,name=ExchIDs" json:"ExchIDs,omitempty"` // 目标交易所集合(若匹配所属交易所,推送)
  141. MemberIDs []uint32 `protobuf:"varint,4,rep,name=MemberIDs" json:"MemberIDs,omitempty"` // 目标会员集合(若匹配所属会员,推送)
  142. AccountIDs []uint64 `protobuf:"varint,5,rep,name=AccountIDs" json:"AccountIDs,omitempty"` // 目标账号集合(以上均不匹配时,最后检查此集合)
  143. }
  144. func (x *NotifyHead) Reset() {
  145. *x = NotifyHead{}
  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 *NotifyHead) String() string {
  153. return protoimpl.X.MessageStringOf(x)
  154. }
  155. func (*NotifyHead) ProtoMessage() {}
  156. func (x *NotifyHead) 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 NotifyHead.ProtoReflect.Descriptor instead.
  168. func (*NotifyHead) Descriptor() ([]byte, []int) {
  169. return file_mtp2_proto_rawDescGZIP(), []int{1}
  170. }
  171. func (x *NotifyHead) GetNtfMode() int32 {
  172. if x != nil && x.NtfMode != nil {
  173. return *x.NtfMode
  174. }
  175. return 0
  176. }
  177. func (x *NotifyHead) GetExcludeAcctIDs() []uint32 {
  178. if x != nil {
  179. return x.ExcludeAcctIDs
  180. }
  181. return nil
  182. }
  183. func (x *NotifyHead) GetExchIDs() []uint32 {
  184. if x != nil {
  185. return x.ExchIDs
  186. }
  187. return nil
  188. }
  189. func (x *NotifyHead) GetMemberIDs() []uint32 {
  190. if x != nil {
  191. return x.MemberIDs
  192. }
  193. return nil
  194. }
  195. func (x *NotifyHead) GetAccountIDs() []uint64 {
  196. if x != nil {
  197. return x.AccountIDs
  198. }
  199. return nil
  200. }
  201. // 文件列表
  202. type FileDetail struct {
  203. state protoimpl.MessageState
  204. sizeCache protoimpl.SizeCache
  205. unknownFields protoimpl.UnknownFields
  206. FileName *string `protobuf:"bytes,1,opt,name=FileName" json:"FileName,omitempty"` // 文件名
  207. FilePath *string `protobuf:"bytes,2,opt,name=FilePath" json:"FilePath,omitempty"` // 文件地址
  208. }
  209. func (x *FileDetail) Reset() {
  210. *x = FileDetail{}
  211. if protoimpl.UnsafeEnabled {
  212. mi := &file_mtp2_proto_msgTypes[2]
  213. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  214. ms.StoreMessageInfo(mi)
  215. }
  216. }
  217. func (x *FileDetail) String() string {
  218. return protoimpl.X.MessageStringOf(x)
  219. }
  220. func (*FileDetail) ProtoMessage() {}
  221. func (x *FileDetail) ProtoReflect() protoreflect.Message {
  222. mi := &file_mtp2_proto_msgTypes[2]
  223. if protoimpl.UnsafeEnabled && x != nil {
  224. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  225. if ms.LoadMessageInfo() == nil {
  226. ms.StoreMessageInfo(mi)
  227. }
  228. return ms
  229. }
  230. return mi.MessageOf(x)
  231. }
  232. // Deprecated: Use FileDetail.ProtoReflect.Descriptor instead.
  233. func (*FileDetail) Descriptor() ([]byte, []int) {
  234. return file_mtp2_proto_rawDescGZIP(), []int{2}
  235. }
  236. func (x *FileDetail) GetFileName() string {
  237. if x != nil && x.FileName != nil {
  238. return *x.FileName
  239. }
  240. return ""
  241. }
  242. func (x *FileDetail) GetFilePath() string {
  243. if x != nil && x.FilePath != nil {
  244. return *x.FilePath
  245. }
  246. return ""
  247. }
  248. // 修改账户密码请求
  249. type ModifyPwdReq struct {
  250. state protoimpl.MessageState
  251. sizeCache protoimpl.SizeCache
  252. unknownFields protoimpl.UnknownFields
  253. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  254. ModifyPwdType *uint32 `protobuf:"varint,2,opt,name=ModifyPwdType" json:"ModifyPwdType,omitempty"` // 修改密码类型1:登陆密码2:资金账户密码
  255. ModifyPwdID *uint64 `protobuf:"varint,3,opt,name=ModifyPwdID" json:"ModifyPwdID,omitempty"` // 被修改的ID(ModifyType=1:LoginIDModifyType=2:AccountID)
  256. OldPwd *string `protobuf:"bytes,4,opt,name=OldPwd" json:"OldPwd,omitempty"` // 旧资金密码
  257. NewPwd *string `protobuf:"bytes,5,opt,name=NewPwd" json:"NewPwd,omitempty"` // 新资金密码
  258. }
  259. func (x *ModifyPwdReq) Reset() {
  260. *x = ModifyPwdReq{}
  261. if protoimpl.UnsafeEnabled {
  262. mi := &file_mtp2_proto_msgTypes[3]
  263. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  264. ms.StoreMessageInfo(mi)
  265. }
  266. }
  267. func (x *ModifyPwdReq) String() string {
  268. return protoimpl.X.MessageStringOf(x)
  269. }
  270. func (*ModifyPwdReq) ProtoMessage() {}
  271. func (x *ModifyPwdReq) ProtoReflect() protoreflect.Message {
  272. mi := &file_mtp2_proto_msgTypes[3]
  273. if protoimpl.UnsafeEnabled && x != nil {
  274. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  275. if ms.LoadMessageInfo() == nil {
  276. ms.StoreMessageInfo(mi)
  277. }
  278. return ms
  279. }
  280. return mi.MessageOf(x)
  281. }
  282. // Deprecated: Use ModifyPwdReq.ProtoReflect.Descriptor instead.
  283. func (*ModifyPwdReq) Descriptor() ([]byte, []int) {
  284. return file_mtp2_proto_rawDescGZIP(), []int{3}
  285. }
  286. func (x *ModifyPwdReq) GetHeader() *MessageHead {
  287. if x != nil {
  288. return x.Header
  289. }
  290. return nil
  291. }
  292. func (x *ModifyPwdReq) GetModifyPwdType() uint32 {
  293. if x != nil && x.ModifyPwdType != nil {
  294. return *x.ModifyPwdType
  295. }
  296. return 0
  297. }
  298. func (x *ModifyPwdReq) GetModifyPwdID() uint64 {
  299. if x != nil && x.ModifyPwdID != nil {
  300. return *x.ModifyPwdID
  301. }
  302. return 0
  303. }
  304. func (x *ModifyPwdReq) GetOldPwd() string {
  305. if x != nil && x.OldPwd != nil {
  306. return *x.OldPwd
  307. }
  308. return ""
  309. }
  310. func (x *ModifyPwdReq) GetNewPwd() string {
  311. if x != nil && x.NewPwd != nil {
  312. return *x.NewPwd
  313. }
  314. return ""
  315. }
  316. // 修改账户密码应答
  317. type ModifyPwdRsp struct {
  318. state protoimpl.MessageState
  319. sizeCache protoimpl.SizeCache
  320. unknownFields protoimpl.UnknownFields
  321. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  322. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  323. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  324. }
  325. func (x *ModifyPwdRsp) Reset() {
  326. *x = ModifyPwdRsp{}
  327. if protoimpl.UnsafeEnabled {
  328. mi := &file_mtp2_proto_msgTypes[4]
  329. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  330. ms.StoreMessageInfo(mi)
  331. }
  332. }
  333. func (x *ModifyPwdRsp) String() string {
  334. return protoimpl.X.MessageStringOf(x)
  335. }
  336. func (*ModifyPwdRsp) ProtoMessage() {}
  337. func (x *ModifyPwdRsp) ProtoReflect() protoreflect.Message {
  338. mi := &file_mtp2_proto_msgTypes[4]
  339. if protoimpl.UnsafeEnabled && x != nil {
  340. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  341. if ms.LoadMessageInfo() == nil {
  342. ms.StoreMessageInfo(mi)
  343. }
  344. return ms
  345. }
  346. return mi.MessageOf(x)
  347. }
  348. // Deprecated: Use ModifyPwdRsp.ProtoReflect.Descriptor instead.
  349. func (*ModifyPwdRsp) Descriptor() ([]byte, []int) {
  350. return file_mtp2_proto_rawDescGZIP(), []int{4}
  351. }
  352. func (x *ModifyPwdRsp) GetHeader() *MessageHead {
  353. if x != nil {
  354. return x.Header
  355. }
  356. return nil
  357. }
  358. func (x *ModifyPwdRsp) GetRetCode() int32 {
  359. if x != nil && x.RetCode != nil {
  360. return *x.RetCode
  361. }
  362. return 0
  363. }
  364. func (x *ModifyPwdRsp) GetRetDesc() string {
  365. if x != nil && x.RetDesc != nil {
  366. return *x.RetDesc
  367. }
  368. return ""
  369. }
  370. // 新增修改收货地址请求
  371. type UserReceiveInfoReq struct {
  372. state protoimpl.MessageState
  373. sizeCache protoimpl.SizeCache
  374. unknownFields protoimpl.UnknownFields
  375. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  376. ClientSerialID *uint64 `protobuf:"varint,2,opt,name=ClientSerialID" json:"ClientSerialID,omitempty"` // 客户端唯一ID
  377. UserID *uint32 `protobuf:"varint,3,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  378. ReceiverName *string `protobuf:"bytes,4,opt,name=ReceiverName" json:"ReceiverName,omitempty"` // 提货人姓名
  379. CardTypeID *uint32 `protobuf:"varint,5,opt,name=CardTypeID" json:"CardTypeID,omitempty"` // 证件类型
  380. CardNum *string `protobuf:"bytes,6,opt,name=CardNum" json:"CardNum,omitempty"` // 证件号码
  381. PhoneNum *string `protobuf:"bytes,7,opt,name=PhoneNum" json:"PhoneNum,omitempty"` // 提货人联系方式
  382. CountryID *uint32 `protobuf:"varint,8,opt,name=CountryID" json:"CountryID,omitempty"` // 国家
  383. ProvinceID *uint32 `protobuf:"varint,9,opt,name=ProvinceID" json:"ProvinceID,omitempty"` // 省
  384. CityID *uint32 `protobuf:"varint,10,opt,name=CityID" json:"CityID,omitempty"` // 市
  385. DistrictID *uint32 `protobuf:"varint,11,opt,name=DistrictID" json:"DistrictID,omitempty"` // 地区
  386. Address *string `protobuf:"bytes,12,opt,name=Address" json:"Address,omitempty"` // 提货人详细地址
  387. TakeRemark *string `protobuf:"bytes,13,opt,name=TakeRemark" json:"TakeRemark,omitempty"` // 提货备注
  388. ReceiveInfoId *uint64 `protobuf:"varint,14,opt,name=ReceiveInfoId" json:"ReceiveInfoId,omitempty"` // 修改时填收货地址id
  389. }
  390. func (x *UserReceiveInfoReq) Reset() {
  391. *x = UserReceiveInfoReq{}
  392. if protoimpl.UnsafeEnabled {
  393. mi := &file_mtp2_proto_msgTypes[5]
  394. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  395. ms.StoreMessageInfo(mi)
  396. }
  397. }
  398. func (x *UserReceiveInfoReq) String() string {
  399. return protoimpl.X.MessageStringOf(x)
  400. }
  401. func (*UserReceiveInfoReq) ProtoMessage() {}
  402. func (x *UserReceiveInfoReq) ProtoReflect() protoreflect.Message {
  403. mi := &file_mtp2_proto_msgTypes[5]
  404. if protoimpl.UnsafeEnabled && x != nil {
  405. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  406. if ms.LoadMessageInfo() == nil {
  407. ms.StoreMessageInfo(mi)
  408. }
  409. return ms
  410. }
  411. return mi.MessageOf(x)
  412. }
  413. // Deprecated: Use UserReceiveInfoReq.ProtoReflect.Descriptor instead.
  414. func (*UserReceiveInfoReq) Descriptor() ([]byte, []int) {
  415. return file_mtp2_proto_rawDescGZIP(), []int{5}
  416. }
  417. func (x *UserReceiveInfoReq) GetHeader() *MessageHead {
  418. if x != nil {
  419. return x.Header
  420. }
  421. return nil
  422. }
  423. func (x *UserReceiveInfoReq) GetClientSerialID() uint64 {
  424. if x != nil && x.ClientSerialID != nil {
  425. return *x.ClientSerialID
  426. }
  427. return 0
  428. }
  429. func (x *UserReceiveInfoReq) GetUserID() uint32 {
  430. if x != nil && x.UserID != nil {
  431. return *x.UserID
  432. }
  433. return 0
  434. }
  435. func (x *UserReceiveInfoReq) GetReceiverName() string {
  436. if x != nil && x.ReceiverName != nil {
  437. return *x.ReceiverName
  438. }
  439. return ""
  440. }
  441. func (x *UserReceiveInfoReq) GetCardTypeID() uint32 {
  442. if x != nil && x.CardTypeID != nil {
  443. return *x.CardTypeID
  444. }
  445. return 0
  446. }
  447. func (x *UserReceiveInfoReq) GetCardNum() string {
  448. if x != nil && x.CardNum != nil {
  449. return *x.CardNum
  450. }
  451. return ""
  452. }
  453. func (x *UserReceiveInfoReq) GetPhoneNum() string {
  454. if x != nil && x.PhoneNum != nil {
  455. return *x.PhoneNum
  456. }
  457. return ""
  458. }
  459. func (x *UserReceiveInfoReq) GetCountryID() uint32 {
  460. if x != nil && x.CountryID != nil {
  461. return *x.CountryID
  462. }
  463. return 0
  464. }
  465. func (x *UserReceiveInfoReq) GetProvinceID() uint32 {
  466. if x != nil && x.ProvinceID != nil {
  467. return *x.ProvinceID
  468. }
  469. return 0
  470. }
  471. func (x *UserReceiveInfoReq) GetCityID() uint32 {
  472. if x != nil && x.CityID != nil {
  473. return *x.CityID
  474. }
  475. return 0
  476. }
  477. func (x *UserReceiveInfoReq) GetDistrictID() uint32 {
  478. if x != nil && x.DistrictID != nil {
  479. return *x.DistrictID
  480. }
  481. return 0
  482. }
  483. func (x *UserReceiveInfoReq) GetAddress() string {
  484. if x != nil && x.Address != nil {
  485. return *x.Address
  486. }
  487. return ""
  488. }
  489. func (x *UserReceiveInfoReq) GetTakeRemark() string {
  490. if x != nil && x.TakeRemark != nil {
  491. return *x.TakeRemark
  492. }
  493. return ""
  494. }
  495. func (x *UserReceiveInfoReq) GetReceiveInfoId() uint64 {
  496. if x != nil && x.ReceiveInfoId != nil {
  497. return *x.ReceiveInfoId
  498. }
  499. return 0
  500. }
  501. // 新增修改收货地址请求响应
  502. type UserReceiveInfoRsp struct {
  503. state protoimpl.MessageState
  504. sizeCache protoimpl.SizeCache
  505. unknownFields protoimpl.UnknownFields
  506. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  507. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  508. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  509. ReceiveInfoId *uint64 `protobuf:"varint,4,opt,name=ReceiveInfoId" json:"ReceiveInfoId,omitempty"` // 响应返回autoid
  510. }
  511. func (x *UserReceiveInfoRsp) Reset() {
  512. *x = UserReceiveInfoRsp{}
  513. if protoimpl.UnsafeEnabled {
  514. mi := &file_mtp2_proto_msgTypes[6]
  515. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  516. ms.StoreMessageInfo(mi)
  517. }
  518. }
  519. func (x *UserReceiveInfoRsp) String() string {
  520. return protoimpl.X.MessageStringOf(x)
  521. }
  522. func (*UserReceiveInfoRsp) ProtoMessage() {}
  523. func (x *UserReceiveInfoRsp) ProtoReflect() protoreflect.Message {
  524. mi := &file_mtp2_proto_msgTypes[6]
  525. if protoimpl.UnsafeEnabled && x != nil {
  526. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  527. if ms.LoadMessageInfo() == nil {
  528. ms.StoreMessageInfo(mi)
  529. }
  530. return ms
  531. }
  532. return mi.MessageOf(x)
  533. }
  534. // Deprecated: Use UserReceiveInfoRsp.ProtoReflect.Descriptor instead.
  535. func (*UserReceiveInfoRsp) Descriptor() ([]byte, []int) {
  536. return file_mtp2_proto_rawDescGZIP(), []int{6}
  537. }
  538. func (x *UserReceiveInfoRsp) GetHeader() *MessageHead {
  539. if x != nil {
  540. return x.Header
  541. }
  542. return nil
  543. }
  544. func (x *UserReceiveInfoRsp) GetRetCode() int32 {
  545. if x != nil && x.RetCode != nil {
  546. return *x.RetCode
  547. }
  548. return 0
  549. }
  550. func (x *UserReceiveInfoRsp) GetRetDesc() string {
  551. if x != nil && x.RetDesc != nil {
  552. return *x.RetDesc
  553. }
  554. return ""
  555. }
  556. func (x *UserReceiveInfoRsp) GetReceiveInfoId() uint64 {
  557. if x != nil && x.ReceiveInfoId != nil {
  558. return *x.ReceiveInfoId
  559. }
  560. return 0
  561. }
  562. // 删除收货地址请求
  563. type DelUserReceiveInfoReq struct {
  564. state protoimpl.MessageState
  565. sizeCache protoimpl.SizeCache
  566. unknownFields protoimpl.UnknownFields
  567. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  568. ReceiveInfoId *uint64 `protobuf:"varint,2,opt,name=ReceiveInfoId" json:"ReceiveInfoId,omitempty"` // 收货地址id
  569. }
  570. func (x *DelUserReceiveInfoReq) Reset() {
  571. *x = DelUserReceiveInfoReq{}
  572. if protoimpl.UnsafeEnabled {
  573. mi := &file_mtp2_proto_msgTypes[7]
  574. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  575. ms.StoreMessageInfo(mi)
  576. }
  577. }
  578. func (x *DelUserReceiveInfoReq) String() string {
  579. return protoimpl.X.MessageStringOf(x)
  580. }
  581. func (*DelUserReceiveInfoReq) ProtoMessage() {}
  582. func (x *DelUserReceiveInfoReq) ProtoReflect() protoreflect.Message {
  583. mi := &file_mtp2_proto_msgTypes[7]
  584. if protoimpl.UnsafeEnabled && x != nil {
  585. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  586. if ms.LoadMessageInfo() == nil {
  587. ms.StoreMessageInfo(mi)
  588. }
  589. return ms
  590. }
  591. return mi.MessageOf(x)
  592. }
  593. // Deprecated: Use DelUserReceiveInfoReq.ProtoReflect.Descriptor instead.
  594. func (*DelUserReceiveInfoReq) Descriptor() ([]byte, []int) {
  595. return file_mtp2_proto_rawDescGZIP(), []int{7}
  596. }
  597. func (x *DelUserReceiveInfoReq) GetHeader() *MessageHead {
  598. if x != nil {
  599. return x.Header
  600. }
  601. return nil
  602. }
  603. func (x *DelUserReceiveInfoReq) GetReceiveInfoId() uint64 {
  604. if x != nil && x.ReceiveInfoId != nil {
  605. return *x.ReceiveInfoId
  606. }
  607. return 0
  608. }
  609. // 删除收货地址请求响应
  610. type DelUserReceiveInfoRsp struct {
  611. state protoimpl.MessageState
  612. sizeCache protoimpl.SizeCache
  613. unknownFields protoimpl.UnknownFields
  614. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  615. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  616. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  617. }
  618. func (x *DelUserReceiveInfoRsp) Reset() {
  619. *x = DelUserReceiveInfoRsp{}
  620. if protoimpl.UnsafeEnabled {
  621. mi := &file_mtp2_proto_msgTypes[8]
  622. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  623. ms.StoreMessageInfo(mi)
  624. }
  625. }
  626. func (x *DelUserReceiveInfoRsp) String() string {
  627. return protoimpl.X.MessageStringOf(x)
  628. }
  629. func (*DelUserReceiveInfoRsp) ProtoMessage() {}
  630. func (x *DelUserReceiveInfoRsp) ProtoReflect() protoreflect.Message {
  631. mi := &file_mtp2_proto_msgTypes[8]
  632. if protoimpl.UnsafeEnabled && x != nil {
  633. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  634. if ms.LoadMessageInfo() == nil {
  635. ms.StoreMessageInfo(mi)
  636. }
  637. return ms
  638. }
  639. return mi.MessageOf(x)
  640. }
  641. // Deprecated: Use DelUserReceiveInfoRsp.ProtoReflect.Descriptor instead.
  642. func (*DelUserReceiveInfoRsp) Descriptor() ([]byte, []int) {
  643. return file_mtp2_proto_rawDescGZIP(), []int{8}
  644. }
  645. func (x *DelUserReceiveInfoRsp) GetHeader() *MessageHead {
  646. if x != nil {
  647. return x.Header
  648. }
  649. return nil
  650. }
  651. func (x *DelUserReceiveInfoRsp) GetRetCode() int32 {
  652. if x != nil && x.RetCode != nil {
  653. return *x.RetCode
  654. }
  655. return 0
  656. }
  657. func (x *DelUserReceiveInfoRsp) GetRetDesc() string {
  658. if x != nil && x.RetDesc != nil {
  659. return *x.RetDesc
  660. }
  661. return ""
  662. }
  663. // 设置默认收货地址请求
  664. type UserReceiveIsDefaultReq 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. AutoId *uint64 `protobuf:"varint,2,opt,name=AutoId" json:"AutoId,omitempty"` // 提货地址ID
  670. UserId *uint64 `protobuf:"varint,3,opt,name=UserId" json:"UserId,omitempty"` // 用户ID
  671. }
  672. func (x *UserReceiveIsDefaultReq) Reset() {
  673. *x = UserReceiveIsDefaultReq{}
  674. if protoimpl.UnsafeEnabled {
  675. mi := &file_mtp2_proto_msgTypes[9]
  676. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  677. ms.StoreMessageInfo(mi)
  678. }
  679. }
  680. func (x *UserReceiveIsDefaultReq) String() string {
  681. return protoimpl.X.MessageStringOf(x)
  682. }
  683. func (*UserReceiveIsDefaultReq) ProtoMessage() {}
  684. func (x *UserReceiveIsDefaultReq) ProtoReflect() protoreflect.Message {
  685. mi := &file_mtp2_proto_msgTypes[9]
  686. if protoimpl.UnsafeEnabled && x != nil {
  687. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  688. if ms.LoadMessageInfo() == nil {
  689. ms.StoreMessageInfo(mi)
  690. }
  691. return ms
  692. }
  693. return mi.MessageOf(x)
  694. }
  695. // Deprecated: Use UserReceiveIsDefaultReq.ProtoReflect.Descriptor instead.
  696. func (*UserReceiveIsDefaultReq) Descriptor() ([]byte, []int) {
  697. return file_mtp2_proto_rawDescGZIP(), []int{9}
  698. }
  699. func (x *UserReceiveIsDefaultReq) GetHeader() *MessageHead {
  700. if x != nil {
  701. return x.Header
  702. }
  703. return nil
  704. }
  705. func (x *UserReceiveIsDefaultReq) GetAutoId() uint64 {
  706. if x != nil && x.AutoId != nil {
  707. return *x.AutoId
  708. }
  709. return 0
  710. }
  711. func (x *UserReceiveIsDefaultReq) GetUserId() uint64 {
  712. if x != nil && x.UserId != nil {
  713. return *x.UserId
  714. }
  715. return 0
  716. }
  717. // 设置默认收货地址应答
  718. type UserReceiveIsDefaultRsp struct {
  719. state protoimpl.MessageState
  720. sizeCache protoimpl.SizeCache
  721. unknownFields protoimpl.UnknownFields
  722. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  723. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  724. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  725. AutoId *uint64 `protobuf:"varint,4,opt,name=AutoId" json:"AutoId,omitempty"` // 提货地址ID
  726. }
  727. func (x *UserReceiveIsDefaultRsp) Reset() {
  728. *x = UserReceiveIsDefaultRsp{}
  729. if protoimpl.UnsafeEnabled {
  730. mi := &file_mtp2_proto_msgTypes[10]
  731. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  732. ms.StoreMessageInfo(mi)
  733. }
  734. }
  735. func (x *UserReceiveIsDefaultRsp) String() string {
  736. return protoimpl.X.MessageStringOf(x)
  737. }
  738. func (*UserReceiveIsDefaultRsp) ProtoMessage() {}
  739. func (x *UserReceiveIsDefaultRsp) ProtoReflect() protoreflect.Message {
  740. mi := &file_mtp2_proto_msgTypes[10]
  741. if protoimpl.UnsafeEnabled && x != nil {
  742. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  743. if ms.LoadMessageInfo() == nil {
  744. ms.StoreMessageInfo(mi)
  745. }
  746. return ms
  747. }
  748. return mi.MessageOf(x)
  749. }
  750. // Deprecated: Use UserReceiveIsDefaultRsp.ProtoReflect.Descriptor instead.
  751. func (*UserReceiveIsDefaultRsp) Descriptor() ([]byte, []int) {
  752. return file_mtp2_proto_rawDescGZIP(), []int{10}
  753. }
  754. func (x *UserReceiveIsDefaultRsp) GetHeader() *MessageHead {
  755. if x != nil {
  756. return x.Header
  757. }
  758. return nil
  759. }
  760. func (x *UserReceiveIsDefaultRsp) GetRetCode() int32 {
  761. if x != nil && x.RetCode != nil {
  762. return *x.RetCode
  763. }
  764. return 0
  765. }
  766. func (x *UserReceiveIsDefaultRsp) GetRetDesc() string {
  767. if x != nil && x.RetDesc != nil {
  768. return *x.RetDesc
  769. }
  770. return ""
  771. }
  772. func (x *UserReceiveIsDefaultRsp) GetAutoId() uint64 {
  773. if x != nil && x.AutoId != nil {
  774. return *x.AutoId
  775. }
  776. return 0
  777. }
  778. // 新增修改用户发票信息请求
  779. type UserReceiptInfoReq struct {
  780. state protoimpl.MessageState
  781. sizeCache protoimpl.SizeCache
  782. unknownFields protoimpl.UnknownFields
  783. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  784. ClientSerialID *uint64 `protobuf:"varint,2,opt,name=ClientSerialID" json:"ClientSerialID,omitempty"` // 客户端唯一ID
  785. UserID *uint32 `protobuf:"varint,3,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  786. UserName *string `protobuf:"bytes,4,opt,name=UserName" json:"UserName,omitempty"` // 发票抬头姓名
  787. ReceiptType *uint32 `protobuf:"varint,5,opt,name=ReceiptType" json:"ReceiptType,omitempty"` // 发票类型
  788. TaxpayerID *string `protobuf:"bytes,6,opt,name=TaxpayerID" json:"TaxpayerID,omitempty"` // 纳税人识别号
  789. ContactInfo *string `protobuf:"bytes,7,opt,name=ContactInfo" json:"ContactInfo,omitempty"` // 联系方式
  790. ReceiptInfoId *uint64 `protobuf:"varint,8,opt,name=ReceiptInfoId" json:"ReceiptInfoId,omitempty"` // 修改时填用户发票信息id
  791. ReceiptBank *string `protobuf:"bytes,9,opt,name=ReceiptBank" json:"ReceiptBank,omitempty"` // 发票开户行[发票类型:企业]
  792. ReceiptAccount *string `protobuf:"bytes,10,opt,name=ReceiptAccount" json:"ReceiptAccount,omitempty"` // 发票帐号[发票类型:企业]
  793. Address *string `protobuf:"bytes,11,opt,name=Address" json:"Address,omitempty"` // 地址[发票类型:企业]
  794. IDNum *string `protobuf:"bytes,12,opt,name=IDNum" json:"IDNum,omitempty"` // 身份证号码[发票类型:个人]
  795. }
  796. func (x *UserReceiptInfoReq) Reset() {
  797. *x = UserReceiptInfoReq{}
  798. if protoimpl.UnsafeEnabled {
  799. mi := &file_mtp2_proto_msgTypes[11]
  800. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  801. ms.StoreMessageInfo(mi)
  802. }
  803. }
  804. func (x *UserReceiptInfoReq) String() string {
  805. return protoimpl.X.MessageStringOf(x)
  806. }
  807. func (*UserReceiptInfoReq) ProtoMessage() {}
  808. func (x *UserReceiptInfoReq) ProtoReflect() protoreflect.Message {
  809. mi := &file_mtp2_proto_msgTypes[11]
  810. if protoimpl.UnsafeEnabled && x != nil {
  811. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  812. if ms.LoadMessageInfo() == nil {
  813. ms.StoreMessageInfo(mi)
  814. }
  815. return ms
  816. }
  817. return mi.MessageOf(x)
  818. }
  819. // Deprecated: Use UserReceiptInfoReq.ProtoReflect.Descriptor instead.
  820. func (*UserReceiptInfoReq) Descriptor() ([]byte, []int) {
  821. return file_mtp2_proto_rawDescGZIP(), []int{11}
  822. }
  823. func (x *UserReceiptInfoReq) GetHeader() *MessageHead {
  824. if x != nil {
  825. return x.Header
  826. }
  827. return nil
  828. }
  829. func (x *UserReceiptInfoReq) GetClientSerialID() uint64 {
  830. if x != nil && x.ClientSerialID != nil {
  831. return *x.ClientSerialID
  832. }
  833. return 0
  834. }
  835. func (x *UserReceiptInfoReq) GetUserID() uint32 {
  836. if x != nil && x.UserID != nil {
  837. return *x.UserID
  838. }
  839. return 0
  840. }
  841. func (x *UserReceiptInfoReq) GetUserName() string {
  842. if x != nil && x.UserName != nil {
  843. return *x.UserName
  844. }
  845. return ""
  846. }
  847. func (x *UserReceiptInfoReq) GetReceiptType() uint32 {
  848. if x != nil && x.ReceiptType != nil {
  849. return *x.ReceiptType
  850. }
  851. return 0
  852. }
  853. func (x *UserReceiptInfoReq) GetTaxpayerID() string {
  854. if x != nil && x.TaxpayerID != nil {
  855. return *x.TaxpayerID
  856. }
  857. return ""
  858. }
  859. func (x *UserReceiptInfoReq) GetContactInfo() string {
  860. if x != nil && x.ContactInfo != nil {
  861. return *x.ContactInfo
  862. }
  863. return ""
  864. }
  865. func (x *UserReceiptInfoReq) GetReceiptInfoId() uint64 {
  866. if x != nil && x.ReceiptInfoId != nil {
  867. return *x.ReceiptInfoId
  868. }
  869. return 0
  870. }
  871. func (x *UserReceiptInfoReq) GetReceiptBank() string {
  872. if x != nil && x.ReceiptBank != nil {
  873. return *x.ReceiptBank
  874. }
  875. return ""
  876. }
  877. func (x *UserReceiptInfoReq) GetReceiptAccount() string {
  878. if x != nil && x.ReceiptAccount != nil {
  879. return *x.ReceiptAccount
  880. }
  881. return ""
  882. }
  883. func (x *UserReceiptInfoReq) GetAddress() string {
  884. if x != nil && x.Address != nil {
  885. return *x.Address
  886. }
  887. return ""
  888. }
  889. func (x *UserReceiptInfoReq) GetIDNum() string {
  890. if x != nil && x.IDNum != nil {
  891. return *x.IDNum
  892. }
  893. return ""
  894. }
  895. // 新增修改用户发票信息请求响应
  896. type UserReceiptInfoRsp struct {
  897. state protoimpl.MessageState
  898. sizeCache protoimpl.SizeCache
  899. unknownFields protoimpl.UnknownFields
  900. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  901. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  902. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  903. ReceiptInfoId *uint64 `protobuf:"varint,4,opt,name=ReceiptInfoId" json:"ReceiptInfoId,omitempty"` // 响应返回发票信息id
  904. }
  905. func (x *UserReceiptInfoRsp) Reset() {
  906. *x = UserReceiptInfoRsp{}
  907. if protoimpl.UnsafeEnabled {
  908. mi := &file_mtp2_proto_msgTypes[12]
  909. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  910. ms.StoreMessageInfo(mi)
  911. }
  912. }
  913. func (x *UserReceiptInfoRsp) String() string {
  914. return protoimpl.X.MessageStringOf(x)
  915. }
  916. func (*UserReceiptInfoRsp) ProtoMessage() {}
  917. func (x *UserReceiptInfoRsp) ProtoReflect() protoreflect.Message {
  918. mi := &file_mtp2_proto_msgTypes[12]
  919. if protoimpl.UnsafeEnabled && x != nil {
  920. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  921. if ms.LoadMessageInfo() == nil {
  922. ms.StoreMessageInfo(mi)
  923. }
  924. return ms
  925. }
  926. return mi.MessageOf(x)
  927. }
  928. // Deprecated: Use UserReceiptInfoRsp.ProtoReflect.Descriptor instead.
  929. func (*UserReceiptInfoRsp) Descriptor() ([]byte, []int) {
  930. return file_mtp2_proto_rawDescGZIP(), []int{12}
  931. }
  932. func (x *UserReceiptInfoRsp) GetHeader() *MessageHead {
  933. if x != nil {
  934. return x.Header
  935. }
  936. return nil
  937. }
  938. func (x *UserReceiptInfoRsp) GetRetCode() int32 {
  939. if x != nil && x.RetCode != nil {
  940. return *x.RetCode
  941. }
  942. return 0
  943. }
  944. func (x *UserReceiptInfoRsp) GetRetDesc() string {
  945. if x != nil && x.RetDesc != nil {
  946. return *x.RetDesc
  947. }
  948. return ""
  949. }
  950. func (x *UserReceiptInfoRsp) GetReceiptInfoId() uint64 {
  951. if x != nil && x.ReceiptInfoId != nil {
  952. return *x.ReceiptInfoId
  953. }
  954. return 0
  955. }
  956. // 删除用户发票信息请求
  957. type DelUserReceiptInfoReq struct {
  958. state protoimpl.MessageState
  959. sizeCache protoimpl.SizeCache
  960. unknownFields protoimpl.UnknownFields
  961. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  962. ReceiptInfoId *uint64 `protobuf:"varint,2,opt,name=ReceiptInfoId" json:"ReceiptInfoId,omitempty"` // 删除发票信息id
  963. }
  964. func (x *DelUserReceiptInfoReq) Reset() {
  965. *x = DelUserReceiptInfoReq{}
  966. if protoimpl.UnsafeEnabled {
  967. mi := &file_mtp2_proto_msgTypes[13]
  968. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  969. ms.StoreMessageInfo(mi)
  970. }
  971. }
  972. func (x *DelUserReceiptInfoReq) String() string {
  973. return protoimpl.X.MessageStringOf(x)
  974. }
  975. func (*DelUserReceiptInfoReq) ProtoMessage() {}
  976. func (x *DelUserReceiptInfoReq) ProtoReflect() protoreflect.Message {
  977. mi := &file_mtp2_proto_msgTypes[13]
  978. if protoimpl.UnsafeEnabled && x != nil {
  979. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  980. if ms.LoadMessageInfo() == nil {
  981. ms.StoreMessageInfo(mi)
  982. }
  983. return ms
  984. }
  985. return mi.MessageOf(x)
  986. }
  987. // Deprecated: Use DelUserReceiptInfoReq.ProtoReflect.Descriptor instead.
  988. func (*DelUserReceiptInfoReq) Descriptor() ([]byte, []int) {
  989. return file_mtp2_proto_rawDescGZIP(), []int{13}
  990. }
  991. func (x *DelUserReceiptInfoReq) GetHeader() *MessageHead {
  992. if x != nil {
  993. return x.Header
  994. }
  995. return nil
  996. }
  997. func (x *DelUserReceiptInfoReq) GetReceiptInfoId() uint64 {
  998. if x != nil && x.ReceiptInfoId != nil {
  999. return *x.ReceiptInfoId
  1000. }
  1001. return 0
  1002. }
  1003. // 删除用户发票信息请求响应
  1004. type DelUserReceiptInfoRsp struct {
  1005. state protoimpl.MessageState
  1006. sizeCache protoimpl.SizeCache
  1007. unknownFields protoimpl.UnknownFields
  1008. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  1009. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  1010. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  1011. }
  1012. func (x *DelUserReceiptInfoRsp) Reset() {
  1013. *x = DelUserReceiptInfoRsp{}
  1014. if protoimpl.UnsafeEnabled {
  1015. mi := &file_mtp2_proto_msgTypes[14]
  1016. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1017. ms.StoreMessageInfo(mi)
  1018. }
  1019. }
  1020. func (x *DelUserReceiptInfoRsp) String() string {
  1021. return protoimpl.X.MessageStringOf(x)
  1022. }
  1023. func (*DelUserReceiptInfoRsp) ProtoMessage() {}
  1024. func (x *DelUserReceiptInfoRsp) ProtoReflect() protoreflect.Message {
  1025. mi := &file_mtp2_proto_msgTypes[14]
  1026. if protoimpl.UnsafeEnabled && x != nil {
  1027. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1028. if ms.LoadMessageInfo() == nil {
  1029. ms.StoreMessageInfo(mi)
  1030. }
  1031. return ms
  1032. }
  1033. return mi.MessageOf(x)
  1034. }
  1035. // Deprecated: Use DelUserReceiptInfoRsp.ProtoReflect.Descriptor instead.
  1036. func (*DelUserReceiptInfoRsp) Descriptor() ([]byte, []int) {
  1037. return file_mtp2_proto_rawDescGZIP(), []int{14}
  1038. }
  1039. func (x *DelUserReceiptInfoRsp) GetHeader() *MessageHead {
  1040. if x != nil {
  1041. return x.Header
  1042. }
  1043. return nil
  1044. }
  1045. func (x *DelUserReceiptInfoRsp) GetRetCode() int32 {
  1046. if x != nil && x.RetCode != nil {
  1047. return *x.RetCode
  1048. }
  1049. return 0
  1050. }
  1051. func (x *DelUserReceiptInfoRsp) GetRetDesc() string {
  1052. if x != nil && x.RetDesc != nil {
  1053. return *x.RetDesc
  1054. }
  1055. return ""
  1056. }
  1057. // 签约请求
  1058. type T2BBankSignReq struct {
  1059. state protoimpl.MessageState
  1060. sizeCache protoimpl.SizeCache
  1061. unknownFields protoimpl.UnknownFields
  1062. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  1063. ExtOperatorID *uint64 `protobuf:"varint,2,req,name=ExtOperatorID" json:"ExtOperatorID,omitempty"` // 外部操作流水号
  1064. ExchId *string `protobuf:"bytes,3,opt,name=ExchId" json:"ExchId,omitempty"` // 交易所编号
  1065. TradeDate *string `protobuf:"bytes,4,opt,name=TradeDate" json:"TradeDate,omitempty"` // 交易所业务日期
  1066. ExchTicket *string `protobuf:"bytes,5,opt,name=ExchTicket" json:"ExchTicket,omitempty"` // 交易所流水号
  1067. AccountCode *string `protobuf:"bytes,6,req,name=AccountCode" json:"AccountCode,omitempty"` // 账户
  1068. AccountName *string `protobuf:"bytes,7,req,name=AccountName" json:"AccountName,omitempty"` // 客户名称
  1069. CusBankID *string `protobuf:"bytes,8,req,name=CusBankID" json:"CusBankID,omitempty"` // 托管银行编号
  1070. OperateType *int32 `protobuf:"varint,9,req,name=OperateType" json:"OperateType,omitempty"` // 变更类型[1-增加;2-修改;4-绑卡;
  1071. IsForce *int32 `protobuf:"varint,10,req,name=IsForce" json:"IsForce,omitempty"` // 是否强制[0-否;1-是]强制,只更新中心签约信息,不发送银行。用于银行信息不一致的情况
  1072. Currency *string `protobuf:"bytes,11,opt,name=Currency" json:"Currency,omitempty"` // 币种
  1073. AccountType *int32 `protobuf:"varint,12,opt,name=AccountType" json:"AccountType,omitempty"` // 账户类型[1-对私;2-对公]
  1074. OpenBankAccId *string `protobuf:"bytes,13,req,name=OpenBankAccId" json:"OpenBankAccId,omitempty"` // 银行卡行号
  1075. ForceSignBankAccountNo *string `protobuf:"bytes,14,opt,name=ForceSignBankAccountNo" json:"ForceSignBankAccountNo,omitempty"` // 银行账户[强制签约时填写]
  1076. ForceSignBankAccountName *string `protobuf:"bytes,15,opt,name=ForceSignBankAccountName" json:"ForceSignBankAccountName,omitempty"` // 银行账户名称[强制签约时填写]
  1077. BankAccountNo *string `protobuf:"bytes,16,req,name=BankAccountNo" json:"BankAccountNo,omitempty"` // 银行账户
  1078. BankAccountName *string `protobuf:"bytes,17,opt,name=BankAccountName" json:"BankAccountName,omitempty"` // 银行账户名称
  1079. ExBankName *string `protobuf:"bytes,18,req,name=ExBankName" json:"ExBankName,omitempty"` // 开户行名称
  1080. OpenBankNo *string `protobuf:"bytes,19,opt,name=OpenBankNo" json:"OpenBankNo,omitempty"` // 开户支行编号
  1081. OpenBankName *string `protobuf:"bytes,20,opt,name=OpenBankName" json:"OpenBankName,omitempty"` // 开户支行名称
  1082. CertType *string `protobuf:"bytes,21,req,name=CertType" json:"CertType,omitempty"` // 证件类型
  1083. CertID *string `protobuf:"bytes,22,req,name=CertID" json:"CertID,omitempty"` // 证件号码
  1084. BankAccountPWD *string `protobuf:"bytes,23,opt,name=BankAccountPWD" json:"BankAccountPWD,omitempty"` // 银行账户密码
  1085. AgentName *string `protobuf:"bytes,24,opt,name=AgentName" json:"AgentName,omitempty"` // 授权代理人姓名
  1086. AgentCertType *int32 `protobuf:"varint,25,opt,name=AgentCertType" json:"AgentCertType,omitempty"` // 授权代理人证件类型
  1087. AgentCertID *string `protobuf:"bytes,26,opt,name=AgentCertID" json:"AgentCertID,omitempty"` // 授权代理人证件号
  1088. BankAccountType *int32 `protobuf:"varint,27,opt,name=BankAccountType" json:"BankAccountType,omitempty"` // 银行账户类型
  1089. BankProvince *string `protobuf:"bytes,28,opt,name=BankProvince" json:"BankProvince,omitempty"` // 开户银行所在省份
  1090. BankCity *string `protobuf:"bytes,29,opt,name=BankCity" json:"BankCity,omitempty"` // 开户银行所在市
  1091. BankCardType *int32 `protobuf:"varint,30,opt,name=BankCardType" json:"BankCardType,omitempty"` // 银行卡类型
  1092. MobilePhone *string `protobuf:"bytes,31,opt,name=MobilePhone" json:"MobilePhone,omitempty"` // 移动电话
  1093. IdentifyCode *string `protobuf:"bytes,32,opt,name=IdentifyCode" json:"IdentifyCode,omitempty"` // 验证码
  1094. Email *string `protobuf:"bytes,33,opt,name=email" json:"email,omitempty"` // 电子邮箱
  1095. ExtendInfo *string `protobuf:"bytes,34,opt,name=extend_info,json=extendInfo" json:"extend_info,omitempty"` // 扩展信息(JSON串,参考配置要求进行填充)
  1096. }
  1097. func (x *T2BBankSignReq) Reset() {
  1098. *x = T2BBankSignReq{}
  1099. if protoimpl.UnsafeEnabled {
  1100. mi := &file_mtp2_proto_msgTypes[15]
  1101. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1102. ms.StoreMessageInfo(mi)
  1103. }
  1104. }
  1105. func (x *T2BBankSignReq) String() string {
  1106. return protoimpl.X.MessageStringOf(x)
  1107. }
  1108. func (*T2BBankSignReq) ProtoMessage() {}
  1109. func (x *T2BBankSignReq) ProtoReflect() protoreflect.Message {
  1110. mi := &file_mtp2_proto_msgTypes[15]
  1111. if protoimpl.UnsafeEnabled && x != nil {
  1112. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1113. if ms.LoadMessageInfo() == nil {
  1114. ms.StoreMessageInfo(mi)
  1115. }
  1116. return ms
  1117. }
  1118. return mi.MessageOf(x)
  1119. }
  1120. // Deprecated: Use T2BBankSignReq.ProtoReflect.Descriptor instead.
  1121. func (*T2BBankSignReq) Descriptor() ([]byte, []int) {
  1122. return file_mtp2_proto_rawDescGZIP(), []int{15}
  1123. }
  1124. func (x *T2BBankSignReq) GetHeader() *MessageHead {
  1125. if x != nil {
  1126. return x.Header
  1127. }
  1128. return nil
  1129. }
  1130. func (x *T2BBankSignReq) GetExtOperatorID() uint64 {
  1131. if x != nil && x.ExtOperatorID != nil {
  1132. return *x.ExtOperatorID
  1133. }
  1134. return 0
  1135. }
  1136. func (x *T2BBankSignReq) GetExchId() string {
  1137. if x != nil && x.ExchId != nil {
  1138. return *x.ExchId
  1139. }
  1140. return ""
  1141. }
  1142. func (x *T2BBankSignReq) GetTradeDate() string {
  1143. if x != nil && x.TradeDate != nil {
  1144. return *x.TradeDate
  1145. }
  1146. return ""
  1147. }
  1148. func (x *T2BBankSignReq) GetExchTicket() string {
  1149. if x != nil && x.ExchTicket != nil {
  1150. return *x.ExchTicket
  1151. }
  1152. return ""
  1153. }
  1154. func (x *T2BBankSignReq) GetAccountCode() string {
  1155. if x != nil && x.AccountCode != nil {
  1156. return *x.AccountCode
  1157. }
  1158. return ""
  1159. }
  1160. func (x *T2BBankSignReq) GetAccountName() string {
  1161. if x != nil && x.AccountName != nil {
  1162. return *x.AccountName
  1163. }
  1164. return ""
  1165. }
  1166. func (x *T2BBankSignReq) GetCusBankID() string {
  1167. if x != nil && x.CusBankID != nil {
  1168. return *x.CusBankID
  1169. }
  1170. return ""
  1171. }
  1172. func (x *T2BBankSignReq) GetOperateType() int32 {
  1173. if x != nil && x.OperateType != nil {
  1174. return *x.OperateType
  1175. }
  1176. return 0
  1177. }
  1178. func (x *T2BBankSignReq) GetIsForce() int32 {
  1179. if x != nil && x.IsForce != nil {
  1180. return *x.IsForce
  1181. }
  1182. return 0
  1183. }
  1184. func (x *T2BBankSignReq) GetCurrency() string {
  1185. if x != nil && x.Currency != nil {
  1186. return *x.Currency
  1187. }
  1188. return ""
  1189. }
  1190. func (x *T2BBankSignReq) GetAccountType() int32 {
  1191. if x != nil && x.AccountType != nil {
  1192. return *x.AccountType
  1193. }
  1194. return 0
  1195. }
  1196. func (x *T2BBankSignReq) GetOpenBankAccId() string {
  1197. if x != nil && x.OpenBankAccId != nil {
  1198. return *x.OpenBankAccId
  1199. }
  1200. return ""
  1201. }
  1202. func (x *T2BBankSignReq) GetForceSignBankAccountNo() string {
  1203. if x != nil && x.ForceSignBankAccountNo != nil {
  1204. return *x.ForceSignBankAccountNo
  1205. }
  1206. return ""
  1207. }
  1208. func (x *T2BBankSignReq) GetForceSignBankAccountName() string {
  1209. if x != nil && x.ForceSignBankAccountName != nil {
  1210. return *x.ForceSignBankAccountName
  1211. }
  1212. return ""
  1213. }
  1214. func (x *T2BBankSignReq) GetBankAccountNo() string {
  1215. if x != nil && x.BankAccountNo != nil {
  1216. return *x.BankAccountNo
  1217. }
  1218. return ""
  1219. }
  1220. func (x *T2BBankSignReq) GetBankAccountName() string {
  1221. if x != nil && x.BankAccountName != nil {
  1222. return *x.BankAccountName
  1223. }
  1224. return ""
  1225. }
  1226. func (x *T2BBankSignReq) GetExBankName() string {
  1227. if x != nil && x.ExBankName != nil {
  1228. return *x.ExBankName
  1229. }
  1230. return ""
  1231. }
  1232. func (x *T2BBankSignReq) GetOpenBankNo() string {
  1233. if x != nil && x.OpenBankNo != nil {
  1234. return *x.OpenBankNo
  1235. }
  1236. return ""
  1237. }
  1238. func (x *T2BBankSignReq) GetOpenBankName() string {
  1239. if x != nil && x.OpenBankName != nil {
  1240. return *x.OpenBankName
  1241. }
  1242. return ""
  1243. }
  1244. func (x *T2BBankSignReq) GetCertType() string {
  1245. if x != nil && x.CertType != nil {
  1246. return *x.CertType
  1247. }
  1248. return ""
  1249. }
  1250. func (x *T2BBankSignReq) GetCertID() string {
  1251. if x != nil && x.CertID != nil {
  1252. return *x.CertID
  1253. }
  1254. return ""
  1255. }
  1256. func (x *T2BBankSignReq) GetBankAccountPWD() string {
  1257. if x != nil && x.BankAccountPWD != nil {
  1258. return *x.BankAccountPWD
  1259. }
  1260. return ""
  1261. }
  1262. func (x *T2BBankSignReq) GetAgentName() string {
  1263. if x != nil && x.AgentName != nil {
  1264. return *x.AgentName
  1265. }
  1266. return ""
  1267. }
  1268. func (x *T2BBankSignReq) GetAgentCertType() int32 {
  1269. if x != nil && x.AgentCertType != nil {
  1270. return *x.AgentCertType
  1271. }
  1272. return 0
  1273. }
  1274. func (x *T2BBankSignReq) GetAgentCertID() string {
  1275. if x != nil && x.AgentCertID != nil {
  1276. return *x.AgentCertID
  1277. }
  1278. return ""
  1279. }
  1280. func (x *T2BBankSignReq) GetBankAccountType() int32 {
  1281. if x != nil && x.BankAccountType != nil {
  1282. return *x.BankAccountType
  1283. }
  1284. return 0
  1285. }
  1286. func (x *T2BBankSignReq) GetBankProvince() string {
  1287. if x != nil && x.BankProvince != nil {
  1288. return *x.BankProvince
  1289. }
  1290. return ""
  1291. }
  1292. func (x *T2BBankSignReq) GetBankCity() string {
  1293. if x != nil && x.BankCity != nil {
  1294. return *x.BankCity
  1295. }
  1296. return ""
  1297. }
  1298. func (x *T2BBankSignReq) GetBankCardType() int32 {
  1299. if x != nil && x.BankCardType != nil {
  1300. return *x.BankCardType
  1301. }
  1302. return 0
  1303. }
  1304. func (x *T2BBankSignReq) GetMobilePhone() string {
  1305. if x != nil && x.MobilePhone != nil {
  1306. return *x.MobilePhone
  1307. }
  1308. return ""
  1309. }
  1310. func (x *T2BBankSignReq) GetIdentifyCode() string {
  1311. if x != nil && x.IdentifyCode != nil {
  1312. return *x.IdentifyCode
  1313. }
  1314. return ""
  1315. }
  1316. func (x *T2BBankSignReq) GetEmail() string {
  1317. if x != nil && x.Email != nil {
  1318. return *x.Email
  1319. }
  1320. return ""
  1321. }
  1322. func (x *T2BBankSignReq) GetExtendInfo() string {
  1323. if x != nil && x.ExtendInfo != nil {
  1324. return *x.ExtendInfo
  1325. }
  1326. return ""
  1327. }
  1328. // 签约应答
  1329. type T2BBankSignRsp struct {
  1330. state protoimpl.MessageState
  1331. sizeCache protoimpl.SizeCache
  1332. unknownFields protoimpl.UnknownFields
  1333. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  1334. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  1335. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  1336. ExtOperatorID *uint64 `protobuf:"varint,4,opt,name=ExtOperatorID" json:"ExtOperatorID,omitempty"` // 外部操作流水号
  1337. AccountCode *string `protobuf:"bytes,5,opt,name=AccountCode" json:"AccountCode,omitempty"` // 账户
  1338. NetAddr *string `protobuf:"bytes,6,opt,name=NetAddr" json:"NetAddr,omitempty"` // 网络地址(当这里有网址时,应自动跳转网页)
  1339. Status *int32 `protobuf:"varint,7,opt,name=Status" json:"Status,omitempty"` // 状态(0成功,其他数值参考银行服务的错误码)
  1340. ExchTicket *string `protobuf:"bytes,8,req,name=ExchTicket" json:"ExchTicket,omitempty"` // 交易所流水号
  1341. ExchId *string `protobuf:"bytes,9,opt,name=ExchId" json:"ExchId,omitempty"` // 交易所编号
  1342. TradeDate *string `protobuf:"bytes,10,opt,name=TradeDate" json:"TradeDate,omitempty"` // 交易所业务日期
  1343. CenterTicket *string `protobuf:"bytes,11,opt,name=CenterTicket" json:"CenterTicket,omitempty"` // 中心流水号
  1344. CenterErrCode *string `protobuf:"bytes,12,opt,name=CenterErrCode" json:"CenterErrCode,omitempty"` // 返回码
  1345. CenterErrMsg *string `protobuf:"bytes,13,opt,name=CenterErrMsg" json:"CenterErrMsg,omitempty"` // 返回结果说明
  1346. BankChildAcc *string `protobuf:"bytes,14,opt,name=bankChildAcc" json:"bankChildAcc,omitempty"` // 银行账号
  1347. BankChildAccName *string `protobuf:"bytes,15,opt,name=bankChildAccName" json:"bankChildAccName,omitempty"` // 银行账户名
  1348. BankId *string `protobuf:"bytes,16,opt,name=BankId" json:"BankId,omitempty"` // 银行卡行号
  1349. BankAccNum *string `protobuf:"bytes,17,opt,name=BankAccNum" json:"BankAccNum,omitempty"` // 银行卡号
  1350. BankAccName *string `protobuf:"bytes,18,opt,name=BankAccName" json:"BankAccName,omitempty"` // 银行卡户名
  1351. }
  1352. func (x *T2BBankSignRsp) Reset() {
  1353. *x = T2BBankSignRsp{}
  1354. if protoimpl.UnsafeEnabled {
  1355. mi := &file_mtp2_proto_msgTypes[16]
  1356. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1357. ms.StoreMessageInfo(mi)
  1358. }
  1359. }
  1360. func (x *T2BBankSignRsp) String() string {
  1361. return protoimpl.X.MessageStringOf(x)
  1362. }
  1363. func (*T2BBankSignRsp) ProtoMessage() {}
  1364. func (x *T2BBankSignRsp) ProtoReflect() protoreflect.Message {
  1365. mi := &file_mtp2_proto_msgTypes[16]
  1366. if protoimpl.UnsafeEnabled && x != nil {
  1367. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1368. if ms.LoadMessageInfo() == nil {
  1369. ms.StoreMessageInfo(mi)
  1370. }
  1371. return ms
  1372. }
  1373. return mi.MessageOf(x)
  1374. }
  1375. // Deprecated: Use T2BBankSignRsp.ProtoReflect.Descriptor instead.
  1376. func (*T2BBankSignRsp) Descriptor() ([]byte, []int) {
  1377. return file_mtp2_proto_rawDescGZIP(), []int{16}
  1378. }
  1379. func (x *T2BBankSignRsp) GetHeader() *MessageHead {
  1380. if x != nil {
  1381. return x.Header
  1382. }
  1383. return nil
  1384. }
  1385. func (x *T2BBankSignRsp) GetRetCode() int32 {
  1386. if x != nil && x.RetCode != nil {
  1387. return *x.RetCode
  1388. }
  1389. return 0
  1390. }
  1391. func (x *T2BBankSignRsp) GetRetDesc() string {
  1392. if x != nil && x.RetDesc != nil {
  1393. return *x.RetDesc
  1394. }
  1395. return ""
  1396. }
  1397. func (x *T2BBankSignRsp) GetExtOperatorID() uint64 {
  1398. if x != nil && x.ExtOperatorID != nil {
  1399. return *x.ExtOperatorID
  1400. }
  1401. return 0
  1402. }
  1403. func (x *T2BBankSignRsp) GetAccountCode() string {
  1404. if x != nil && x.AccountCode != nil {
  1405. return *x.AccountCode
  1406. }
  1407. return ""
  1408. }
  1409. func (x *T2BBankSignRsp) GetNetAddr() string {
  1410. if x != nil && x.NetAddr != nil {
  1411. return *x.NetAddr
  1412. }
  1413. return ""
  1414. }
  1415. func (x *T2BBankSignRsp) GetStatus() int32 {
  1416. if x != nil && x.Status != nil {
  1417. return *x.Status
  1418. }
  1419. return 0
  1420. }
  1421. func (x *T2BBankSignRsp) GetExchTicket() string {
  1422. if x != nil && x.ExchTicket != nil {
  1423. return *x.ExchTicket
  1424. }
  1425. return ""
  1426. }
  1427. func (x *T2BBankSignRsp) GetExchId() string {
  1428. if x != nil && x.ExchId != nil {
  1429. return *x.ExchId
  1430. }
  1431. return ""
  1432. }
  1433. func (x *T2BBankSignRsp) GetTradeDate() string {
  1434. if x != nil && x.TradeDate != nil {
  1435. return *x.TradeDate
  1436. }
  1437. return ""
  1438. }
  1439. func (x *T2BBankSignRsp) GetCenterTicket() string {
  1440. if x != nil && x.CenterTicket != nil {
  1441. return *x.CenterTicket
  1442. }
  1443. return ""
  1444. }
  1445. func (x *T2BBankSignRsp) GetCenterErrCode() string {
  1446. if x != nil && x.CenterErrCode != nil {
  1447. return *x.CenterErrCode
  1448. }
  1449. return ""
  1450. }
  1451. func (x *T2BBankSignRsp) GetCenterErrMsg() string {
  1452. if x != nil && x.CenterErrMsg != nil {
  1453. return *x.CenterErrMsg
  1454. }
  1455. return ""
  1456. }
  1457. func (x *T2BBankSignRsp) GetBankChildAcc() string {
  1458. if x != nil && x.BankChildAcc != nil {
  1459. return *x.BankChildAcc
  1460. }
  1461. return ""
  1462. }
  1463. func (x *T2BBankSignRsp) GetBankChildAccName() string {
  1464. if x != nil && x.BankChildAccName != nil {
  1465. return *x.BankChildAccName
  1466. }
  1467. return ""
  1468. }
  1469. func (x *T2BBankSignRsp) GetBankId() string {
  1470. if x != nil && x.BankId != nil {
  1471. return *x.BankId
  1472. }
  1473. return ""
  1474. }
  1475. func (x *T2BBankSignRsp) GetBankAccNum() string {
  1476. if x != nil && x.BankAccNum != nil {
  1477. return *x.BankAccNum
  1478. }
  1479. return ""
  1480. }
  1481. func (x *T2BBankSignRsp) GetBankAccName() string {
  1482. if x != nil && x.BankAccName != nil {
  1483. return *x.BankAccName
  1484. }
  1485. return ""
  1486. }
  1487. // 解约请求
  1488. type T2BBankCancelSignReq struct {
  1489. state protoimpl.MessageState
  1490. sizeCache protoimpl.SizeCache
  1491. unknownFields protoimpl.UnknownFields
  1492. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  1493. ExtOperatorID *uint64 `protobuf:"varint,2,req,name=ExtOperatorID" json:"ExtOperatorID,omitempty"` // 外部操作流水号
  1494. ExchId *string `protobuf:"bytes,3,opt,name=ExchId" json:"ExchId,omitempty"` // 交易所编号
  1495. AccountCode *string `protobuf:"bytes,4,req,name=AccountCode" json:"AccountCode,omitempty"` // 账户
  1496. CusBankID *string `protobuf:"bytes,5,req,name=CusBankID" json:"CusBankID,omitempty"` // 托管银行编号
  1497. IsForce *int32 `protobuf:"varint,6,req,name=IsForce" json:"IsForce,omitempty"` // 是否强制
  1498. Currency *string `protobuf:"bytes,7,opt,name=Currency" json:"Currency,omitempty"` // 币种
  1499. TradeDate *string `protobuf:"bytes,8,opt,name=TradeDate" json:"TradeDate,omitempty"` // 交易所业务日期
  1500. ExchTicket *string `protobuf:"bytes,9,opt,name=ExchTicket" json:"ExchTicket,omitempty"` // 交易所流水号
  1501. BankChildAcc *string `protobuf:"bytes,10,opt,name=BankChildAcc" json:"BankChildAcc,omitempty"` // 银行子账号
  1502. BankChildAccName *string `protobuf:"bytes,11,opt,name=BankChildAccName" json:"BankChildAccName,omitempty"` // 银行子账号名
  1503. }
  1504. func (x *T2BBankCancelSignReq) Reset() {
  1505. *x = T2BBankCancelSignReq{}
  1506. if protoimpl.UnsafeEnabled {
  1507. mi := &file_mtp2_proto_msgTypes[17]
  1508. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1509. ms.StoreMessageInfo(mi)
  1510. }
  1511. }
  1512. func (x *T2BBankCancelSignReq) String() string {
  1513. return protoimpl.X.MessageStringOf(x)
  1514. }
  1515. func (*T2BBankCancelSignReq) ProtoMessage() {}
  1516. func (x *T2BBankCancelSignReq) ProtoReflect() protoreflect.Message {
  1517. mi := &file_mtp2_proto_msgTypes[17]
  1518. if protoimpl.UnsafeEnabled && x != nil {
  1519. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1520. if ms.LoadMessageInfo() == nil {
  1521. ms.StoreMessageInfo(mi)
  1522. }
  1523. return ms
  1524. }
  1525. return mi.MessageOf(x)
  1526. }
  1527. // Deprecated: Use T2BBankCancelSignReq.ProtoReflect.Descriptor instead.
  1528. func (*T2BBankCancelSignReq) Descriptor() ([]byte, []int) {
  1529. return file_mtp2_proto_rawDescGZIP(), []int{17}
  1530. }
  1531. func (x *T2BBankCancelSignReq) GetHeader() *MessageHead {
  1532. if x != nil {
  1533. return x.Header
  1534. }
  1535. return nil
  1536. }
  1537. func (x *T2BBankCancelSignReq) GetExtOperatorID() uint64 {
  1538. if x != nil && x.ExtOperatorID != nil {
  1539. return *x.ExtOperatorID
  1540. }
  1541. return 0
  1542. }
  1543. func (x *T2BBankCancelSignReq) GetExchId() string {
  1544. if x != nil && x.ExchId != nil {
  1545. return *x.ExchId
  1546. }
  1547. return ""
  1548. }
  1549. func (x *T2BBankCancelSignReq) GetAccountCode() string {
  1550. if x != nil && x.AccountCode != nil {
  1551. return *x.AccountCode
  1552. }
  1553. return ""
  1554. }
  1555. func (x *T2BBankCancelSignReq) GetCusBankID() string {
  1556. if x != nil && x.CusBankID != nil {
  1557. return *x.CusBankID
  1558. }
  1559. return ""
  1560. }
  1561. func (x *T2BBankCancelSignReq) GetIsForce() int32 {
  1562. if x != nil && x.IsForce != nil {
  1563. return *x.IsForce
  1564. }
  1565. return 0
  1566. }
  1567. func (x *T2BBankCancelSignReq) GetCurrency() string {
  1568. if x != nil && x.Currency != nil {
  1569. return *x.Currency
  1570. }
  1571. return ""
  1572. }
  1573. func (x *T2BBankCancelSignReq) GetTradeDate() string {
  1574. if x != nil && x.TradeDate != nil {
  1575. return *x.TradeDate
  1576. }
  1577. return ""
  1578. }
  1579. func (x *T2BBankCancelSignReq) GetExchTicket() string {
  1580. if x != nil && x.ExchTicket != nil {
  1581. return *x.ExchTicket
  1582. }
  1583. return ""
  1584. }
  1585. func (x *T2BBankCancelSignReq) GetBankChildAcc() string {
  1586. if x != nil && x.BankChildAcc != nil {
  1587. return *x.BankChildAcc
  1588. }
  1589. return ""
  1590. }
  1591. func (x *T2BBankCancelSignReq) GetBankChildAccName() string {
  1592. if x != nil && x.BankChildAccName != nil {
  1593. return *x.BankChildAccName
  1594. }
  1595. return ""
  1596. }
  1597. // 解约应答
  1598. type T2BBankCancelSignRsp struct {
  1599. state protoimpl.MessageState
  1600. sizeCache protoimpl.SizeCache
  1601. unknownFields protoimpl.UnknownFields
  1602. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  1603. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  1604. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  1605. ExtOperatorID *uint64 `protobuf:"varint,4,opt,name=ExtOperatorID" json:"ExtOperatorID,omitempty"` // 外部操作流水号
  1606. AccountCode *string `protobuf:"bytes,5,opt,name=AccountCode" json:"AccountCode,omitempty"` // 账户
  1607. NetAddr *string `protobuf:"bytes,6,opt,name=NetAddr" json:"NetAddr,omitempty"` // 网络地址(当这里有网址时,应自动跳转网页)
  1608. Status *int32 `protobuf:"varint,7,opt,name=Status" json:"Status,omitempty"` // 状态(0成功,其他数值参考银行服务的错误码)
  1609. ExchTicket *string `protobuf:"bytes,8,req,name=ExchTicket" json:"ExchTicket,omitempty"` // 交易所流水号
  1610. ExchId *string `protobuf:"bytes,9,opt,name=ExchId" json:"ExchId,omitempty"` // 交易所编号
  1611. TradeDate *string `protobuf:"bytes,10,opt,name=TradeDate" json:"TradeDate,omitempty"` // 交易所业务日期
  1612. CenterTicket *string `protobuf:"bytes,11,opt,name=CenterTicket" json:"CenterTicket,omitempty"` // 中心流水号
  1613. CenterErrCode *string `protobuf:"bytes,12,opt,name=CenterErrCode" json:"CenterErrCode,omitempty"` // 返回码
  1614. CenterErrMsg *string `protobuf:"bytes,13,opt,name=CenterErrMsg" json:"CenterErrMsg,omitempty"` // 返回结果说明
  1615. }
  1616. func (x *T2BBankCancelSignRsp) Reset() {
  1617. *x = T2BBankCancelSignRsp{}
  1618. if protoimpl.UnsafeEnabled {
  1619. mi := &file_mtp2_proto_msgTypes[18]
  1620. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1621. ms.StoreMessageInfo(mi)
  1622. }
  1623. }
  1624. func (x *T2BBankCancelSignRsp) String() string {
  1625. return protoimpl.X.MessageStringOf(x)
  1626. }
  1627. func (*T2BBankCancelSignRsp) ProtoMessage() {}
  1628. func (x *T2BBankCancelSignRsp) ProtoReflect() protoreflect.Message {
  1629. mi := &file_mtp2_proto_msgTypes[18]
  1630. if protoimpl.UnsafeEnabled && x != nil {
  1631. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1632. if ms.LoadMessageInfo() == nil {
  1633. ms.StoreMessageInfo(mi)
  1634. }
  1635. return ms
  1636. }
  1637. return mi.MessageOf(x)
  1638. }
  1639. // Deprecated: Use T2BBankCancelSignRsp.ProtoReflect.Descriptor instead.
  1640. func (*T2BBankCancelSignRsp) Descriptor() ([]byte, []int) {
  1641. return file_mtp2_proto_rawDescGZIP(), []int{18}
  1642. }
  1643. func (x *T2BBankCancelSignRsp) GetHeader() *MessageHead {
  1644. if x != nil {
  1645. return x.Header
  1646. }
  1647. return nil
  1648. }
  1649. func (x *T2BBankCancelSignRsp) GetRetCode() int32 {
  1650. if x != nil && x.RetCode != nil {
  1651. return *x.RetCode
  1652. }
  1653. return 0
  1654. }
  1655. func (x *T2BBankCancelSignRsp) GetRetDesc() string {
  1656. if x != nil && x.RetDesc != nil {
  1657. return *x.RetDesc
  1658. }
  1659. return ""
  1660. }
  1661. func (x *T2BBankCancelSignRsp) GetExtOperatorID() uint64 {
  1662. if x != nil && x.ExtOperatorID != nil {
  1663. return *x.ExtOperatorID
  1664. }
  1665. return 0
  1666. }
  1667. func (x *T2BBankCancelSignRsp) GetAccountCode() string {
  1668. if x != nil && x.AccountCode != nil {
  1669. return *x.AccountCode
  1670. }
  1671. return ""
  1672. }
  1673. func (x *T2BBankCancelSignRsp) GetNetAddr() string {
  1674. if x != nil && x.NetAddr != nil {
  1675. return *x.NetAddr
  1676. }
  1677. return ""
  1678. }
  1679. func (x *T2BBankCancelSignRsp) GetStatus() int32 {
  1680. if x != nil && x.Status != nil {
  1681. return *x.Status
  1682. }
  1683. return 0
  1684. }
  1685. func (x *T2BBankCancelSignRsp) GetExchTicket() string {
  1686. if x != nil && x.ExchTicket != nil {
  1687. return *x.ExchTicket
  1688. }
  1689. return ""
  1690. }
  1691. func (x *T2BBankCancelSignRsp) GetExchId() string {
  1692. if x != nil && x.ExchId != nil {
  1693. return *x.ExchId
  1694. }
  1695. return ""
  1696. }
  1697. func (x *T2BBankCancelSignRsp) GetTradeDate() string {
  1698. if x != nil && x.TradeDate != nil {
  1699. return *x.TradeDate
  1700. }
  1701. return ""
  1702. }
  1703. func (x *T2BBankCancelSignRsp) GetCenterTicket() string {
  1704. if x != nil && x.CenterTicket != nil {
  1705. return *x.CenterTicket
  1706. }
  1707. return ""
  1708. }
  1709. func (x *T2BBankCancelSignRsp) GetCenterErrCode() string {
  1710. if x != nil && x.CenterErrCode != nil {
  1711. return *x.CenterErrCode
  1712. }
  1713. return ""
  1714. }
  1715. func (x *T2BBankCancelSignRsp) GetCenterErrMsg() string {
  1716. if x != nil && x.CenterErrMsg != nil {
  1717. return *x.CenterErrMsg
  1718. }
  1719. return ""
  1720. }
  1721. // 出金请求
  1722. type T2BBankWithdrawReq struct {
  1723. state protoimpl.MessageState
  1724. sizeCache protoimpl.SizeCache
  1725. unknownFields protoimpl.UnknownFields
  1726. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  1727. ExtOperatorID *uint64 `protobuf:"varint,2,req,name=ExtOperatorID" json:"ExtOperatorID,omitempty"` // 外部操作流水号
  1728. ExchId *string `protobuf:"bytes,3,opt,name=ExchId" json:"ExchId,omitempty"` // 交易所编号
  1729. AccountCode *string `protobuf:"bytes,4,req,name=AccountCode" json:"AccountCode,omitempty"` // 资金账户
  1730. CusBankID *string `protobuf:"bytes,5,req,name=CusBankID" json:"CusBankID,omitempty"` // 托管银行编号
  1731. Currency *string `protobuf:"bytes,6,req,name=Currency" json:"Currency,omitempty"` // 币种
  1732. AccountType *int32 `protobuf:"varint,7,opt,name=AccountType" json:"AccountType,omitempty"` // 账户类型
  1733. BankChildAccount *string `protobuf:"bytes,8,opt,name=BankChildAccount" json:"BankChildAccount,omitempty"` // 银行子账号
  1734. BankChildAccountName *string `protobuf:"bytes,9,opt,name=BankChildAccountName" json:"BankChildAccountName,omitempty"` // 银行子账号名
  1735. OpenCardBankId *string `protobuf:"bytes,10,opt,name=OpenCardBankId" json:"OpenCardBankId,omitempty"` // 银行卡行号
  1736. BankAccoutNum *string `protobuf:"bytes,11,opt,name=BankAccoutNum" json:"BankAccoutNum,omitempty"` // 银行卡号
  1737. BankAccoutName *string `protobuf:"bytes,12,opt,name=BankAccoutName" json:"BankAccoutName,omitempty"` // 银行卡户名
  1738. Amount *float64 `protobuf:"fixed64,13,req,name=Amount" json:"Amount,omitempty"` // 出金金额
  1739. AppDateTime *string `protobuf:"bytes,14,opt,name=AppDateTime" json:"AppDateTime,omitempty"` // 申请日期和时间
  1740. OldTaPWD *string `protobuf:"bytes,15,opt,name=OldTaPWD" json:"OldTaPWD,omitempty"` // 资金密码
  1741. Desc *string `protobuf:"bytes,16,opt,name=Desc" json:"Desc,omitempty"` // 备注
  1742. IdentifyCode *string `protobuf:"bytes,17,opt,name=IdentifyCode" json:"IdentifyCode,omitempty"` // 验证码
  1743. BranchBankName *string `protobuf:"bytes,18,opt,name=BranchBankName" json:"BranchBankName,omitempty"` // 收款支行名称
  1744. ExtendInfo *string `protobuf:"bytes,19,opt,name=extend_info,json=extendInfo" json:"extend_info,omitempty"` // 扩展信息(JSON串,参考配置要求进行填充)
  1745. Remark *string `protobuf:"bytes,20,opt,name=Remark" json:"Remark,omitempty"` // 备注
  1746. ExchTicket *string `protobuf:"bytes,21,opt,name=ExchTicket" json:"ExchTicket,omitempty"` // 交易所流水号
  1747. }
  1748. func (x *T2BBankWithdrawReq) Reset() {
  1749. *x = T2BBankWithdrawReq{}
  1750. if protoimpl.UnsafeEnabled {
  1751. mi := &file_mtp2_proto_msgTypes[19]
  1752. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1753. ms.StoreMessageInfo(mi)
  1754. }
  1755. }
  1756. func (x *T2BBankWithdrawReq) String() string {
  1757. return protoimpl.X.MessageStringOf(x)
  1758. }
  1759. func (*T2BBankWithdrawReq) ProtoMessage() {}
  1760. func (x *T2BBankWithdrawReq) ProtoReflect() protoreflect.Message {
  1761. mi := &file_mtp2_proto_msgTypes[19]
  1762. if protoimpl.UnsafeEnabled && x != nil {
  1763. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1764. if ms.LoadMessageInfo() == nil {
  1765. ms.StoreMessageInfo(mi)
  1766. }
  1767. return ms
  1768. }
  1769. return mi.MessageOf(x)
  1770. }
  1771. // Deprecated: Use T2BBankWithdrawReq.ProtoReflect.Descriptor instead.
  1772. func (*T2BBankWithdrawReq) Descriptor() ([]byte, []int) {
  1773. return file_mtp2_proto_rawDescGZIP(), []int{19}
  1774. }
  1775. func (x *T2BBankWithdrawReq) GetHeader() *MessageHead {
  1776. if x != nil {
  1777. return x.Header
  1778. }
  1779. return nil
  1780. }
  1781. func (x *T2BBankWithdrawReq) GetExtOperatorID() uint64 {
  1782. if x != nil && x.ExtOperatorID != nil {
  1783. return *x.ExtOperatorID
  1784. }
  1785. return 0
  1786. }
  1787. func (x *T2BBankWithdrawReq) GetExchId() string {
  1788. if x != nil && x.ExchId != nil {
  1789. return *x.ExchId
  1790. }
  1791. return ""
  1792. }
  1793. func (x *T2BBankWithdrawReq) GetAccountCode() string {
  1794. if x != nil && x.AccountCode != nil {
  1795. return *x.AccountCode
  1796. }
  1797. return ""
  1798. }
  1799. func (x *T2BBankWithdrawReq) GetCusBankID() string {
  1800. if x != nil && x.CusBankID != nil {
  1801. return *x.CusBankID
  1802. }
  1803. return ""
  1804. }
  1805. func (x *T2BBankWithdrawReq) GetCurrency() string {
  1806. if x != nil && x.Currency != nil {
  1807. return *x.Currency
  1808. }
  1809. return ""
  1810. }
  1811. func (x *T2BBankWithdrawReq) GetAccountType() int32 {
  1812. if x != nil && x.AccountType != nil {
  1813. return *x.AccountType
  1814. }
  1815. return 0
  1816. }
  1817. func (x *T2BBankWithdrawReq) GetBankChildAccount() string {
  1818. if x != nil && x.BankChildAccount != nil {
  1819. return *x.BankChildAccount
  1820. }
  1821. return ""
  1822. }
  1823. func (x *T2BBankWithdrawReq) GetBankChildAccountName() string {
  1824. if x != nil && x.BankChildAccountName != nil {
  1825. return *x.BankChildAccountName
  1826. }
  1827. return ""
  1828. }
  1829. func (x *T2BBankWithdrawReq) GetOpenCardBankId() string {
  1830. if x != nil && x.OpenCardBankId != nil {
  1831. return *x.OpenCardBankId
  1832. }
  1833. return ""
  1834. }
  1835. func (x *T2BBankWithdrawReq) GetBankAccoutNum() string {
  1836. if x != nil && x.BankAccoutNum != nil {
  1837. return *x.BankAccoutNum
  1838. }
  1839. return ""
  1840. }
  1841. func (x *T2BBankWithdrawReq) GetBankAccoutName() string {
  1842. if x != nil && x.BankAccoutName != nil {
  1843. return *x.BankAccoutName
  1844. }
  1845. return ""
  1846. }
  1847. func (x *T2BBankWithdrawReq) GetAmount() float64 {
  1848. if x != nil && x.Amount != nil {
  1849. return *x.Amount
  1850. }
  1851. return 0
  1852. }
  1853. func (x *T2BBankWithdrawReq) GetAppDateTime() string {
  1854. if x != nil && x.AppDateTime != nil {
  1855. return *x.AppDateTime
  1856. }
  1857. return ""
  1858. }
  1859. func (x *T2BBankWithdrawReq) GetOldTaPWD() string {
  1860. if x != nil && x.OldTaPWD != nil {
  1861. return *x.OldTaPWD
  1862. }
  1863. return ""
  1864. }
  1865. func (x *T2BBankWithdrawReq) GetDesc() string {
  1866. if x != nil && x.Desc != nil {
  1867. return *x.Desc
  1868. }
  1869. return ""
  1870. }
  1871. func (x *T2BBankWithdrawReq) GetIdentifyCode() string {
  1872. if x != nil && x.IdentifyCode != nil {
  1873. return *x.IdentifyCode
  1874. }
  1875. return ""
  1876. }
  1877. func (x *T2BBankWithdrawReq) GetBranchBankName() string {
  1878. if x != nil && x.BranchBankName != nil {
  1879. return *x.BranchBankName
  1880. }
  1881. return ""
  1882. }
  1883. func (x *T2BBankWithdrawReq) GetExtendInfo() string {
  1884. if x != nil && x.ExtendInfo != nil {
  1885. return *x.ExtendInfo
  1886. }
  1887. return ""
  1888. }
  1889. func (x *T2BBankWithdrawReq) GetRemark() string {
  1890. if x != nil && x.Remark != nil {
  1891. return *x.Remark
  1892. }
  1893. return ""
  1894. }
  1895. func (x *T2BBankWithdrawReq) GetExchTicket() string {
  1896. if x != nil && x.ExchTicket != nil {
  1897. return *x.ExchTicket
  1898. }
  1899. return ""
  1900. }
  1901. // 出金应答
  1902. type T2BBankWithdrawRsp struct {
  1903. state protoimpl.MessageState
  1904. sizeCache protoimpl.SizeCache
  1905. unknownFields protoimpl.UnknownFields
  1906. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  1907. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  1908. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  1909. ExtOperatorID *uint64 `protobuf:"varint,4,opt,name=ExtOperatorID" json:"ExtOperatorID,omitempty"` // 外部操作流水号
  1910. Status *int32 `protobuf:"varint,5,opt,name=Status" json:"Status,omitempty"` // 状态(0成功,其他数值参考银行服务的错误码)
  1911. ExchTicket *string `protobuf:"bytes,6,req,name=ExchTicket" json:"ExchTicket,omitempty"` // 交易所流水号
  1912. ExchId *string `protobuf:"bytes,7,opt,name=ExchId" json:"ExchId,omitempty"` // 交易所编号
  1913. TradeDate *string `protobuf:"bytes,8,opt,name=TradeDate" json:"TradeDate,omitempty"` // 交易日
  1914. CenterTicket *string `protobuf:"bytes,9,opt,name=CenterTicket" json:"CenterTicket,omitempty"` // 中心流水号
  1915. CenterErrCode *string `protobuf:"bytes,10,opt,name=CenterErrCode" json:"CenterErrCode,omitempty"` // 中心返回码
  1916. CenterErrMsg *string `protobuf:"bytes,11,opt,name=CenterErrMsg" json:"CenterErrMsg,omitempty"` // 中心返回结果说明
  1917. CerterCheckDate *string `protobuf:"bytes,12,opt,name=CerterCheckDate" json:"CerterCheckDate,omitempty"` // 中心对账日期
  1918. NetAddr *string `protobuf:"bytes,13,opt,name=NetAddr" json:"NetAddr,omitempty"` // 网络地址(当这里有网址时,应自动跳转网页)
  1919. }
  1920. func (x *T2BBankWithdrawRsp) Reset() {
  1921. *x = T2BBankWithdrawRsp{}
  1922. if protoimpl.UnsafeEnabled {
  1923. mi := &file_mtp2_proto_msgTypes[20]
  1924. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1925. ms.StoreMessageInfo(mi)
  1926. }
  1927. }
  1928. func (x *T2BBankWithdrawRsp) String() string {
  1929. return protoimpl.X.MessageStringOf(x)
  1930. }
  1931. func (*T2BBankWithdrawRsp) ProtoMessage() {}
  1932. func (x *T2BBankWithdrawRsp) ProtoReflect() protoreflect.Message {
  1933. mi := &file_mtp2_proto_msgTypes[20]
  1934. if protoimpl.UnsafeEnabled && x != nil {
  1935. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1936. if ms.LoadMessageInfo() == nil {
  1937. ms.StoreMessageInfo(mi)
  1938. }
  1939. return ms
  1940. }
  1941. return mi.MessageOf(x)
  1942. }
  1943. // Deprecated: Use T2BBankWithdrawRsp.ProtoReflect.Descriptor instead.
  1944. func (*T2BBankWithdrawRsp) Descriptor() ([]byte, []int) {
  1945. return file_mtp2_proto_rawDescGZIP(), []int{20}
  1946. }
  1947. func (x *T2BBankWithdrawRsp) GetHeader() *MessageHead {
  1948. if x != nil {
  1949. return x.Header
  1950. }
  1951. return nil
  1952. }
  1953. func (x *T2BBankWithdrawRsp) GetRetCode() int32 {
  1954. if x != nil && x.RetCode != nil {
  1955. return *x.RetCode
  1956. }
  1957. return 0
  1958. }
  1959. func (x *T2BBankWithdrawRsp) GetRetDesc() string {
  1960. if x != nil && x.RetDesc != nil {
  1961. return *x.RetDesc
  1962. }
  1963. return ""
  1964. }
  1965. func (x *T2BBankWithdrawRsp) GetExtOperatorID() uint64 {
  1966. if x != nil && x.ExtOperatorID != nil {
  1967. return *x.ExtOperatorID
  1968. }
  1969. return 0
  1970. }
  1971. func (x *T2BBankWithdrawRsp) GetStatus() int32 {
  1972. if x != nil && x.Status != nil {
  1973. return *x.Status
  1974. }
  1975. return 0
  1976. }
  1977. func (x *T2BBankWithdrawRsp) GetExchTicket() string {
  1978. if x != nil && x.ExchTicket != nil {
  1979. return *x.ExchTicket
  1980. }
  1981. return ""
  1982. }
  1983. func (x *T2BBankWithdrawRsp) GetExchId() string {
  1984. if x != nil && x.ExchId != nil {
  1985. return *x.ExchId
  1986. }
  1987. return ""
  1988. }
  1989. func (x *T2BBankWithdrawRsp) GetTradeDate() string {
  1990. if x != nil && x.TradeDate != nil {
  1991. return *x.TradeDate
  1992. }
  1993. return ""
  1994. }
  1995. func (x *T2BBankWithdrawRsp) GetCenterTicket() string {
  1996. if x != nil && x.CenterTicket != nil {
  1997. return *x.CenterTicket
  1998. }
  1999. return ""
  2000. }
  2001. func (x *T2BBankWithdrawRsp) GetCenterErrCode() string {
  2002. if x != nil && x.CenterErrCode != nil {
  2003. return *x.CenterErrCode
  2004. }
  2005. return ""
  2006. }
  2007. func (x *T2BBankWithdrawRsp) GetCenterErrMsg() string {
  2008. if x != nil && x.CenterErrMsg != nil {
  2009. return *x.CenterErrMsg
  2010. }
  2011. return ""
  2012. }
  2013. func (x *T2BBankWithdrawRsp) GetCerterCheckDate() string {
  2014. if x != nil && x.CerterCheckDate != nil {
  2015. return *x.CerterCheckDate
  2016. }
  2017. return ""
  2018. }
  2019. func (x *T2BBankWithdrawRsp) GetNetAddr() string {
  2020. if x != nil && x.NetAddr != nil {
  2021. return *x.NetAddr
  2022. }
  2023. return ""
  2024. }
  2025. // 入金请求
  2026. type T2BBankDepositReq struct {
  2027. state protoimpl.MessageState
  2028. sizeCache protoimpl.SizeCache
  2029. unknownFields protoimpl.UnknownFields
  2030. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  2031. ExtOperatorID *uint64 `protobuf:"varint,2,req,name=ExtOperatorID" json:"ExtOperatorID,omitempty"` // 外部操作流水号
  2032. CusBankID *string `protobuf:"bytes,3,req,name=CusBankID" json:"CusBankID,omitempty"` // 托管银行编号
  2033. ExchId *string `protobuf:"bytes,4,opt,name=ExchId" json:"ExchId,omitempty"` // 交易所编号
  2034. TradeDate *string `protobuf:"bytes,5,opt,name=TradeDate" json:"TradeDate,omitempty"` // 交易日
  2035. ExchTicket *string `protobuf:"bytes,6,opt,name=ExchTicket" json:"ExchTicket,omitempty"` // 交易所流水号
  2036. AccountCode *string `protobuf:"bytes,7,req,name=AccountCode" json:"AccountCode,omitempty"` // 资金账户
  2037. BusinessNo *string `protobuf:"bytes,8,opt,name=BusinessNo" json:"BusinessNo,omitempty"` // 银行业务编号
  2038. BankChildAccount *string `protobuf:"bytes,9,opt,name=BankChildAccount" json:"BankChildAccount,omitempty"` // 银行子账号
  2039. BankChildAccountName *string `protobuf:"bytes,10,opt,name=BankChildAccountName" json:"BankChildAccountName,omitempty"` // 银行子账号名
  2040. OldTaPWD *string `protobuf:"bytes,11,opt,name=OldTaPWD" json:"OldTaPWD,omitempty"` // 资金密码
  2041. Amount *float64 `protobuf:"fixed64,12,req,name=Amount" json:"Amount,omitempty"` // 金额
  2042. Currency *string `protobuf:"bytes,13,req,name=Currency" json:"Currency,omitempty"` // 币种
  2043. Remark *string `protobuf:"bytes,14,opt,name=Remark" json:"Remark,omitempty"` // 备注
  2044. OpenCardBankId *string `protobuf:"bytes,15,opt,name=OpenCardBankId" json:"OpenCardBankId,omitempty"` // 银行卡行号
  2045. BankAccoutNum *string `protobuf:"bytes,16,opt,name=BankAccoutNum" json:"BankAccoutNum,omitempty"` // 银行卡号
  2046. BankAccoutName *string `protobuf:"bytes,17,opt,name=BankAccoutName" json:"BankAccoutName,omitempty"` // 银行卡户名
  2047. ExtendInfo *string `protobuf:"bytes,18,opt,name=extend_info,json=extendInfo" json:"extend_info,omitempty"` // 扩展信息(JSON串,参考配置要求进行填充)
  2048. }
  2049. func (x *T2BBankDepositReq) Reset() {
  2050. *x = T2BBankDepositReq{}
  2051. if protoimpl.UnsafeEnabled {
  2052. mi := &file_mtp2_proto_msgTypes[21]
  2053. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2054. ms.StoreMessageInfo(mi)
  2055. }
  2056. }
  2057. func (x *T2BBankDepositReq) String() string {
  2058. return protoimpl.X.MessageStringOf(x)
  2059. }
  2060. func (*T2BBankDepositReq) ProtoMessage() {}
  2061. func (x *T2BBankDepositReq) ProtoReflect() protoreflect.Message {
  2062. mi := &file_mtp2_proto_msgTypes[21]
  2063. if protoimpl.UnsafeEnabled && x != nil {
  2064. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2065. if ms.LoadMessageInfo() == nil {
  2066. ms.StoreMessageInfo(mi)
  2067. }
  2068. return ms
  2069. }
  2070. return mi.MessageOf(x)
  2071. }
  2072. // Deprecated: Use T2BBankDepositReq.ProtoReflect.Descriptor instead.
  2073. func (*T2BBankDepositReq) Descriptor() ([]byte, []int) {
  2074. return file_mtp2_proto_rawDescGZIP(), []int{21}
  2075. }
  2076. func (x *T2BBankDepositReq) GetHeader() *MessageHead {
  2077. if x != nil {
  2078. return x.Header
  2079. }
  2080. return nil
  2081. }
  2082. func (x *T2BBankDepositReq) GetExtOperatorID() uint64 {
  2083. if x != nil && x.ExtOperatorID != nil {
  2084. return *x.ExtOperatorID
  2085. }
  2086. return 0
  2087. }
  2088. func (x *T2BBankDepositReq) GetCusBankID() string {
  2089. if x != nil && x.CusBankID != nil {
  2090. return *x.CusBankID
  2091. }
  2092. return ""
  2093. }
  2094. func (x *T2BBankDepositReq) GetExchId() string {
  2095. if x != nil && x.ExchId != nil {
  2096. return *x.ExchId
  2097. }
  2098. return ""
  2099. }
  2100. func (x *T2BBankDepositReq) GetTradeDate() string {
  2101. if x != nil && x.TradeDate != nil {
  2102. return *x.TradeDate
  2103. }
  2104. return ""
  2105. }
  2106. func (x *T2BBankDepositReq) GetExchTicket() string {
  2107. if x != nil && x.ExchTicket != nil {
  2108. return *x.ExchTicket
  2109. }
  2110. return ""
  2111. }
  2112. func (x *T2BBankDepositReq) GetAccountCode() string {
  2113. if x != nil && x.AccountCode != nil {
  2114. return *x.AccountCode
  2115. }
  2116. return ""
  2117. }
  2118. func (x *T2BBankDepositReq) GetBusinessNo() string {
  2119. if x != nil && x.BusinessNo != nil {
  2120. return *x.BusinessNo
  2121. }
  2122. return ""
  2123. }
  2124. func (x *T2BBankDepositReq) GetBankChildAccount() string {
  2125. if x != nil && x.BankChildAccount != nil {
  2126. return *x.BankChildAccount
  2127. }
  2128. return ""
  2129. }
  2130. func (x *T2BBankDepositReq) GetBankChildAccountName() string {
  2131. if x != nil && x.BankChildAccountName != nil {
  2132. return *x.BankChildAccountName
  2133. }
  2134. return ""
  2135. }
  2136. func (x *T2BBankDepositReq) GetOldTaPWD() string {
  2137. if x != nil && x.OldTaPWD != nil {
  2138. return *x.OldTaPWD
  2139. }
  2140. return ""
  2141. }
  2142. func (x *T2BBankDepositReq) GetAmount() float64 {
  2143. if x != nil && x.Amount != nil {
  2144. return *x.Amount
  2145. }
  2146. return 0
  2147. }
  2148. func (x *T2BBankDepositReq) GetCurrency() string {
  2149. if x != nil && x.Currency != nil {
  2150. return *x.Currency
  2151. }
  2152. return ""
  2153. }
  2154. func (x *T2BBankDepositReq) GetRemark() string {
  2155. if x != nil && x.Remark != nil {
  2156. return *x.Remark
  2157. }
  2158. return ""
  2159. }
  2160. func (x *T2BBankDepositReq) GetOpenCardBankId() string {
  2161. if x != nil && x.OpenCardBankId != nil {
  2162. return *x.OpenCardBankId
  2163. }
  2164. return ""
  2165. }
  2166. func (x *T2BBankDepositReq) GetBankAccoutNum() string {
  2167. if x != nil && x.BankAccoutNum != nil {
  2168. return *x.BankAccoutNum
  2169. }
  2170. return ""
  2171. }
  2172. func (x *T2BBankDepositReq) GetBankAccoutName() string {
  2173. if x != nil && x.BankAccoutName != nil {
  2174. return *x.BankAccoutName
  2175. }
  2176. return ""
  2177. }
  2178. func (x *T2BBankDepositReq) GetExtendInfo() string {
  2179. if x != nil && x.ExtendInfo != nil {
  2180. return *x.ExtendInfo
  2181. }
  2182. return ""
  2183. }
  2184. // 入金应答
  2185. type T2BBankDepositRsp struct {
  2186. state protoimpl.MessageState
  2187. sizeCache protoimpl.SizeCache
  2188. unknownFields protoimpl.UnknownFields
  2189. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  2190. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  2191. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  2192. ExtOperatorID *uint64 `protobuf:"varint,4,opt,name=ExtOperatorID" json:"ExtOperatorID,omitempty"` // 外部操作流水号
  2193. Status *int32 `protobuf:"varint,5,opt,name=Status" json:"Status,omitempty"` // 状态(0成功,其他数值参考银行服务的错误码)
  2194. ExchTicket *string `protobuf:"bytes,6,req,name=ExchTicket" json:"ExchTicket,omitempty"` // 交易所流水号
  2195. ExchId *string `protobuf:"bytes,7,opt,name=ExchId" json:"ExchId,omitempty"` // 交易所编号
  2196. TradeDate *string `protobuf:"bytes,8,opt,name=TradeDate" json:"TradeDate,omitempty"` // 交易日
  2197. CenterTicket *string `protobuf:"bytes,9,opt,name=CenterTicket" json:"CenterTicket,omitempty"` // 中心流水号
  2198. CenterErrCode *string `protobuf:"bytes,10,opt,name=CenterErrCode" json:"CenterErrCode,omitempty"` // 中心返回码
  2199. CenterErrMsg *string `protobuf:"bytes,11,opt,name=CenterErrMsg" json:"CenterErrMsg,omitempty"` // 中心返回结果说明
  2200. CerterCheckDate *string `protobuf:"bytes,12,opt,name=CerterCheckDate" json:"CerterCheckDate,omitempty"` // 中心对账日期
  2201. NetAddr *string `protobuf:"bytes,13,opt,name=NetAddr" json:"NetAddr,omitempty"` // 网络地址(当这里有网址时,应自动跳转网页)
  2202. }
  2203. func (x *T2BBankDepositRsp) Reset() {
  2204. *x = T2BBankDepositRsp{}
  2205. if protoimpl.UnsafeEnabled {
  2206. mi := &file_mtp2_proto_msgTypes[22]
  2207. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2208. ms.StoreMessageInfo(mi)
  2209. }
  2210. }
  2211. func (x *T2BBankDepositRsp) String() string {
  2212. return protoimpl.X.MessageStringOf(x)
  2213. }
  2214. func (*T2BBankDepositRsp) ProtoMessage() {}
  2215. func (x *T2BBankDepositRsp) ProtoReflect() protoreflect.Message {
  2216. mi := &file_mtp2_proto_msgTypes[22]
  2217. if protoimpl.UnsafeEnabled && x != nil {
  2218. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2219. if ms.LoadMessageInfo() == nil {
  2220. ms.StoreMessageInfo(mi)
  2221. }
  2222. return ms
  2223. }
  2224. return mi.MessageOf(x)
  2225. }
  2226. // Deprecated: Use T2BBankDepositRsp.ProtoReflect.Descriptor instead.
  2227. func (*T2BBankDepositRsp) Descriptor() ([]byte, []int) {
  2228. return file_mtp2_proto_rawDescGZIP(), []int{22}
  2229. }
  2230. func (x *T2BBankDepositRsp) GetHeader() *MessageHead {
  2231. if x != nil {
  2232. return x.Header
  2233. }
  2234. return nil
  2235. }
  2236. func (x *T2BBankDepositRsp) GetRetCode() int32 {
  2237. if x != nil && x.RetCode != nil {
  2238. return *x.RetCode
  2239. }
  2240. return 0
  2241. }
  2242. func (x *T2BBankDepositRsp) GetRetDesc() string {
  2243. if x != nil && x.RetDesc != nil {
  2244. return *x.RetDesc
  2245. }
  2246. return ""
  2247. }
  2248. func (x *T2BBankDepositRsp) GetExtOperatorID() uint64 {
  2249. if x != nil && x.ExtOperatorID != nil {
  2250. return *x.ExtOperatorID
  2251. }
  2252. return 0
  2253. }
  2254. func (x *T2BBankDepositRsp) GetStatus() int32 {
  2255. if x != nil && x.Status != nil {
  2256. return *x.Status
  2257. }
  2258. return 0
  2259. }
  2260. func (x *T2BBankDepositRsp) GetExchTicket() string {
  2261. if x != nil && x.ExchTicket != nil {
  2262. return *x.ExchTicket
  2263. }
  2264. return ""
  2265. }
  2266. func (x *T2BBankDepositRsp) GetExchId() string {
  2267. if x != nil && x.ExchId != nil {
  2268. return *x.ExchId
  2269. }
  2270. return ""
  2271. }
  2272. func (x *T2BBankDepositRsp) GetTradeDate() string {
  2273. if x != nil && x.TradeDate != nil {
  2274. return *x.TradeDate
  2275. }
  2276. return ""
  2277. }
  2278. func (x *T2BBankDepositRsp) GetCenterTicket() string {
  2279. if x != nil && x.CenterTicket != nil {
  2280. return *x.CenterTicket
  2281. }
  2282. return ""
  2283. }
  2284. func (x *T2BBankDepositRsp) GetCenterErrCode() string {
  2285. if x != nil && x.CenterErrCode != nil {
  2286. return *x.CenterErrCode
  2287. }
  2288. return ""
  2289. }
  2290. func (x *T2BBankDepositRsp) GetCenterErrMsg() string {
  2291. if x != nil && x.CenterErrMsg != nil {
  2292. return *x.CenterErrMsg
  2293. }
  2294. return ""
  2295. }
  2296. func (x *T2BBankDepositRsp) GetCerterCheckDate() string {
  2297. if x != nil && x.CerterCheckDate != nil {
  2298. return *x.CerterCheckDate
  2299. }
  2300. return ""
  2301. }
  2302. func (x *T2BBankDepositRsp) GetNetAddr() string {
  2303. if x != nil && x.NetAddr != nil {
  2304. return *x.NetAddr
  2305. }
  2306. return ""
  2307. }
  2308. // 仓单服务公共协议结构
  2309. type WRCommon struct {
  2310. state protoimpl.MessageState
  2311. sizeCache protoimpl.SizeCache
  2312. unknownFields protoimpl.UnknownFields
  2313. UserID *uint64 `protobuf:"varint,1,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  2314. RelatedOrderID *uint64 `protobuf:"varint,2,opt,name=RelatedOrderID" json:"RelatedOrderID,omitempty"` // 关联ID
  2315. BusinessID *uint64 `protobuf:"varint,3,opt,name=BusinessID" json:"BusinessID,omitempty"` // 业务ID
  2316. TradeID *uint64 `protobuf:"varint,4,opt,name=TradeID" json:"TradeID,omitempty"` // 成交ID
  2317. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // 账号ID
  2318. }
  2319. func (x *WRCommon) Reset() {
  2320. *x = WRCommon{}
  2321. if protoimpl.UnsafeEnabled {
  2322. mi := &file_mtp2_proto_msgTypes[23]
  2323. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2324. ms.StoreMessageInfo(mi)
  2325. }
  2326. }
  2327. func (x *WRCommon) String() string {
  2328. return protoimpl.X.MessageStringOf(x)
  2329. }
  2330. func (*WRCommon) ProtoMessage() {}
  2331. func (x *WRCommon) ProtoReflect() protoreflect.Message {
  2332. mi := &file_mtp2_proto_msgTypes[23]
  2333. if protoimpl.UnsafeEnabled && x != nil {
  2334. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2335. if ms.LoadMessageInfo() == nil {
  2336. ms.StoreMessageInfo(mi)
  2337. }
  2338. return ms
  2339. }
  2340. return mi.MessageOf(x)
  2341. }
  2342. // Deprecated: Use WRCommon.ProtoReflect.Descriptor instead.
  2343. func (*WRCommon) Descriptor() ([]byte, []int) {
  2344. return file_mtp2_proto_rawDescGZIP(), []int{23}
  2345. }
  2346. func (x *WRCommon) GetUserID() uint64 {
  2347. if x != nil && x.UserID != nil {
  2348. return *x.UserID
  2349. }
  2350. return 0
  2351. }
  2352. func (x *WRCommon) GetRelatedOrderID() uint64 {
  2353. if x != nil && x.RelatedOrderID != nil {
  2354. return *x.RelatedOrderID
  2355. }
  2356. return 0
  2357. }
  2358. func (x *WRCommon) GetBusinessID() uint64 {
  2359. if x != nil && x.BusinessID != nil {
  2360. return *x.BusinessID
  2361. }
  2362. return 0
  2363. }
  2364. func (x *WRCommon) GetTradeID() uint64 {
  2365. if x != nil && x.TradeID != nil {
  2366. return *x.TradeID
  2367. }
  2368. return 0
  2369. }
  2370. func (x *WRCommon) GetAccountID() uint64 {
  2371. if x != nil && x.AccountID != nil {
  2372. return *x.AccountID
  2373. }
  2374. return 0
  2375. }
  2376. // 仓库申请请求 0 29 141
  2377. type WarehouseApplyReq struct {
  2378. state protoimpl.MessageState
  2379. sizeCache protoimpl.SizeCache
  2380. unknownFields protoimpl.UnknownFields
  2381. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // MessageHead
  2382. Userid *uint64 `protobuf:"varint,2,opt,name=userid" json:"userid,omitempty"` // uint64 用户ID
  2383. Type *int32 `protobuf:"varint,3,opt,name=type" json:"type,omitempty"` // int32 类型 1 新增 2 修改
  2384. Warehouseid *uint64 `protobuf:"varint,4,opt,name=warehouseid" json:"warehouseid,omitempty"` // uint64 仓库ID
  2385. Warehousecode *string `protobuf:"bytes,5,opt,name=warehousecode" json:"warehousecode,omitempty"` // string 仓库代码
  2386. Warehousename *string `protobuf:"bytes,6,opt,name=warehousename" json:"warehousename,omitempty"` // string 仓库名称
  2387. Warehousetype *int32 `protobuf:"varint,7,opt,name=warehousetype" json:"warehousetype,omitempty"` // int32 仓库类型 - 1 厂库 2 自有库 3 合作库
  2388. Provinceid *uint64 `protobuf:"varint,8,opt,name=provinceid" json:"provinceid,omitempty"` // uint64 省
  2389. Cityid *uint64 `protobuf:"varint,9,opt,name=cityid" json:"cityid,omitempty"` // uint64 市
  2390. Districtid *int32 `protobuf:"varint,10,opt,name=districtid" json:"districtid,omitempty"` // int32 区
  2391. Address *string `protobuf:"bytes,11,opt,name=address" json:"address,omitempty"` // string 详细地址
  2392. Contactname *string `protobuf:"bytes,12,opt,name=contactname" json:"contactname,omitempty"` // string 联系人
  2393. Contactnum *string `protobuf:"bytes,13,opt,name=contactnum" json:"contactnum,omitempty"` // string 联系电话
  2394. }
  2395. func (x *WarehouseApplyReq) Reset() {
  2396. *x = WarehouseApplyReq{}
  2397. if protoimpl.UnsafeEnabled {
  2398. mi := &file_mtp2_proto_msgTypes[24]
  2399. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2400. ms.StoreMessageInfo(mi)
  2401. }
  2402. }
  2403. func (x *WarehouseApplyReq) String() string {
  2404. return protoimpl.X.MessageStringOf(x)
  2405. }
  2406. func (*WarehouseApplyReq) ProtoMessage() {}
  2407. func (x *WarehouseApplyReq) ProtoReflect() protoreflect.Message {
  2408. mi := &file_mtp2_proto_msgTypes[24]
  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 WarehouseApplyReq.ProtoReflect.Descriptor instead.
  2419. func (*WarehouseApplyReq) Descriptor() ([]byte, []int) {
  2420. return file_mtp2_proto_rawDescGZIP(), []int{24}
  2421. }
  2422. func (x *WarehouseApplyReq) GetHeader() *MessageHead {
  2423. if x != nil {
  2424. return x.Header
  2425. }
  2426. return nil
  2427. }
  2428. func (x *WarehouseApplyReq) GetUserid() uint64 {
  2429. if x != nil && x.Userid != nil {
  2430. return *x.Userid
  2431. }
  2432. return 0
  2433. }
  2434. func (x *WarehouseApplyReq) GetType() int32 {
  2435. if x != nil && x.Type != nil {
  2436. return *x.Type
  2437. }
  2438. return 0
  2439. }
  2440. func (x *WarehouseApplyReq) GetWarehouseid() uint64 {
  2441. if x != nil && x.Warehouseid != nil {
  2442. return *x.Warehouseid
  2443. }
  2444. return 0
  2445. }
  2446. func (x *WarehouseApplyReq) GetWarehousecode() string {
  2447. if x != nil && x.Warehousecode != nil {
  2448. return *x.Warehousecode
  2449. }
  2450. return ""
  2451. }
  2452. func (x *WarehouseApplyReq) GetWarehousename() string {
  2453. if x != nil && x.Warehousename != nil {
  2454. return *x.Warehousename
  2455. }
  2456. return ""
  2457. }
  2458. func (x *WarehouseApplyReq) GetWarehousetype() int32 {
  2459. if x != nil && x.Warehousetype != nil {
  2460. return *x.Warehousetype
  2461. }
  2462. return 0
  2463. }
  2464. func (x *WarehouseApplyReq) GetProvinceid() uint64 {
  2465. if x != nil && x.Provinceid != nil {
  2466. return *x.Provinceid
  2467. }
  2468. return 0
  2469. }
  2470. func (x *WarehouseApplyReq) GetCityid() uint64 {
  2471. if x != nil && x.Cityid != nil {
  2472. return *x.Cityid
  2473. }
  2474. return 0
  2475. }
  2476. func (x *WarehouseApplyReq) GetDistrictid() int32 {
  2477. if x != nil && x.Districtid != nil {
  2478. return *x.Districtid
  2479. }
  2480. return 0
  2481. }
  2482. func (x *WarehouseApplyReq) GetAddress() string {
  2483. if x != nil && x.Address != nil {
  2484. return *x.Address
  2485. }
  2486. return ""
  2487. }
  2488. func (x *WarehouseApplyReq) GetContactname() string {
  2489. if x != nil && x.Contactname != nil {
  2490. return *x.Contactname
  2491. }
  2492. return ""
  2493. }
  2494. func (x *WarehouseApplyReq) GetContactnum() string {
  2495. if x != nil && x.Contactnum != nil {
  2496. return *x.Contactnum
  2497. }
  2498. return ""
  2499. }
  2500. // 仓库申请请求 0 29 142
  2501. type WarehouseApplyRsp struct {
  2502. state protoimpl.MessageState
  2503. sizeCache protoimpl.SizeCache
  2504. unknownFields protoimpl.UnknownFields
  2505. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // MessageHead 消息头
  2506. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // int32 返回码
  2507. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // string 描述信息
  2508. Warehouseid *uint64 `protobuf:"varint,4,opt,name=warehouseid" json:"warehouseid,omitempty"` // uint64 仓库ID
  2509. }
  2510. func (x *WarehouseApplyRsp) Reset() {
  2511. *x = WarehouseApplyRsp{}
  2512. if protoimpl.UnsafeEnabled {
  2513. mi := &file_mtp2_proto_msgTypes[25]
  2514. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2515. ms.StoreMessageInfo(mi)
  2516. }
  2517. }
  2518. func (x *WarehouseApplyRsp) String() string {
  2519. return protoimpl.X.MessageStringOf(x)
  2520. }
  2521. func (*WarehouseApplyRsp) ProtoMessage() {}
  2522. func (x *WarehouseApplyRsp) ProtoReflect() protoreflect.Message {
  2523. mi := &file_mtp2_proto_msgTypes[25]
  2524. if protoimpl.UnsafeEnabled && x != nil {
  2525. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2526. if ms.LoadMessageInfo() == nil {
  2527. ms.StoreMessageInfo(mi)
  2528. }
  2529. return ms
  2530. }
  2531. return mi.MessageOf(x)
  2532. }
  2533. // Deprecated: Use WarehouseApplyRsp.ProtoReflect.Descriptor instead.
  2534. func (*WarehouseApplyRsp) Descriptor() ([]byte, []int) {
  2535. return file_mtp2_proto_rawDescGZIP(), []int{25}
  2536. }
  2537. func (x *WarehouseApplyRsp) GetHeader() *MessageHead {
  2538. if x != nil {
  2539. return x.Header
  2540. }
  2541. return nil
  2542. }
  2543. func (x *WarehouseApplyRsp) GetRetCode() int32 {
  2544. if x != nil && x.RetCode != nil {
  2545. return *x.RetCode
  2546. }
  2547. return 0
  2548. }
  2549. func (x *WarehouseApplyRsp) GetRetDesc() string {
  2550. if x != nil && x.RetDesc != nil {
  2551. return *x.RetDesc
  2552. }
  2553. return ""
  2554. }
  2555. func (x *WarehouseApplyRsp) GetWarehouseid() uint64 {
  2556. if x != nil && x.Warehouseid != nil {
  2557. return *x.Warehouseid
  2558. }
  2559. return 0
  2560. }
  2561. // 违约申请请求 0 20 9
  2562. type PerformanceContractedApplyReq struct {
  2563. state protoimpl.MessageState
  2564. sizeCache protoimpl.SizeCache
  2565. unknownFields protoimpl.UnknownFields
  2566. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // MessageHead
  2567. PerformancePlanID *uint64 `protobuf:"varint,2,opt,name=PerformancePlanID" json:"PerformancePlanID,omitempty"` // uint64 履约计划ID
  2568. BreachType *uint32 `protobuf:"varint,3,opt,name=BreachType" json:"BreachType,omitempty"` // uint32 违约方类型
  2569. Applicant *uint64 `protobuf:"varint,4,opt,name=Applicant" json:"Applicant,omitempty"` // uint64 违约申请人
  2570. ApplyRemark *string `protobuf:"bytes,5,opt,name=ApplyRemark" json:"ApplyRemark,omitempty"` // string 申请备注
  2571. Attachment *string `protobuf:"bytes,6,opt,name=Attachment" json:"Attachment,omitempty"` // string 附件
  2572. }
  2573. func (x *PerformanceContractedApplyReq) Reset() {
  2574. *x = PerformanceContractedApplyReq{}
  2575. if protoimpl.UnsafeEnabled {
  2576. mi := &file_mtp2_proto_msgTypes[26]
  2577. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2578. ms.StoreMessageInfo(mi)
  2579. }
  2580. }
  2581. func (x *PerformanceContractedApplyReq) String() string {
  2582. return protoimpl.X.MessageStringOf(x)
  2583. }
  2584. func (*PerformanceContractedApplyReq) ProtoMessage() {}
  2585. func (x *PerformanceContractedApplyReq) ProtoReflect() protoreflect.Message {
  2586. mi := &file_mtp2_proto_msgTypes[26]
  2587. if protoimpl.UnsafeEnabled && x != nil {
  2588. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2589. if ms.LoadMessageInfo() == nil {
  2590. ms.StoreMessageInfo(mi)
  2591. }
  2592. return ms
  2593. }
  2594. return mi.MessageOf(x)
  2595. }
  2596. // Deprecated: Use PerformanceContractedApplyReq.ProtoReflect.Descriptor instead.
  2597. func (*PerformanceContractedApplyReq) Descriptor() ([]byte, []int) {
  2598. return file_mtp2_proto_rawDescGZIP(), []int{26}
  2599. }
  2600. func (x *PerformanceContractedApplyReq) GetHeader() *MessageHead {
  2601. if x != nil {
  2602. return x.Header
  2603. }
  2604. return nil
  2605. }
  2606. func (x *PerformanceContractedApplyReq) GetPerformancePlanID() uint64 {
  2607. if x != nil && x.PerformancePlanID != nil {
  2608. return *x.PerformancePlanID
  2609. }
  2610. return 0
  2611. }
  2612. func (x *PerformanceContractedApplyReq) GetBreachType() uint32 {
  2613. if x != nil && x.BreachType != nil {
  2614. return *x.BreachType
  2615. }
  2616. return 0
  2617. }
  2618. func (x *PerformanceContractedApplyReq) GetApplicant() uint64 {
  2619. if x != nil && x.Applicant != nil {
  2620. return *x.Applicant
  2621. }
  2622. return 0
  2623. }
  2624. func (x *PerformanceContractedApplyReq) GetApplyRemark() string {
  2625. if x != nil && x.ApplyRemark != nil {
  2626. return *x.ApplyRemark
  2627. }
  2628. return ""
  2629. }
  2630. func (x *PerformanceContractedApplyReq) GetAttachment() string {
  2631. if x != nil && x.Attachment != nil {
  2632. return *x.Attachment
  2633. }
  2634. return ""
  2635. }
  2636. // 违约申请应答 0 20 10
  2637. type PerformanceContractedApplyRsp struct {
  2638. state protoimpl.MessageState
  2639. sizeCache protoimpl.SizeCache
  2640. unknownFields protoimpl.UnknownFields
  2641. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // MessageHead 消息头
  2642. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // int32 返回码
  2643. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // string 描述信息
  2644. PerformancePlanID *uint64 `protobuf:"varint,4,opt,name=PerformancePlanID" json:"PerformancePlanID,omitempty"` // uint64 履约计划ID
  2645. }
  2646. func (x *PerformanceContractedApplyRsp) Reset() {
  2647. *x = PerformanceContractedApplyRsp{}
  2648. if protoimpl.UnsafeEnabled {
  2649. mi := &file_mtp2_proto_msgTypes[27]
  2650. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2651. ms.StoreMessageInfo(mi)
  2652. }
  2653. }
  2654. func (x *PerformanceContractedApplyRsp) String() string {
  2655. return protoimpl.X.MessageStringOf(x)
  2656. }
  2657. func (*PerformanceContractedApplyRsp) ProtoMessage() {}
  2658. func (x *PerformanceContractedApplyRsp) ProtoReflect() protoreflect.Message {
  2659. mi := &file_mtp2_proto_msgTypes[27]
  2660. if protoimpl.UnsafeEnabled && x != nil {
  2661. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2662. if ms.LoadMessageInfo() == nil {
  2663. ms.StoreMessageInfo(mi)
  2664. }
  2665. return ms
  2666. }
  2667. return mi.MessageOf(x)
  2668. }
  2669. // Deprecated: Use PerformanceContractedApplyRsp.ProtoReflect.Descriptor instead.
  2670. func (*PerformanceContractedApplyRsp) Descriptor() ([]byte, []int) {
  2671. return file_mtp2_proto_rawDescGZIP(), []int{27}
  2672. }
  2673. func (x *PerformanceContractedApplyRsp) GetHeader() *MessageHead {
  2674. if x != nil {
  2675. return x.Header
  2676. }
  2677. return nil
  2678. }
  2679. func (x *PerformanceContractedApplyRsp) GetRetCode() int32 {
  2680. if x != nil && x.RetCode != nil {
  2681. return *x.RetCode
  2682. }
  2683. return 0
  2684. }
  2685. func (x *PerformanceContractedApplyRsp) GetRetDesc() string {
  2686. if x != nil && x.RetDesc != nil {
  2687. return *x.RetDesc
  2688. }
  2689. return ""
  2690. }
  2691. func (x *PerformanceContractedApplyRsp) GetPerformancePlanID() uint64 {
  2692. if x != nil && x.PerformancePlanID != nil {
  2693. return *x.PerformancePlanID
  2694. }
  2695. return 0
  2696. }
  2697. // 延期申请请求 0 20 5
  2698. type PerformanceDelayApplyReq struct {
  2699. state protoimpl.MessageState
  2700. sizeCache protoimpl.SizeCache
  2701. unknownFields protoimpl.UnknownFields
  2702. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // MessageHead
  2703. PerformancePlanStepID *uint64 `protobuf:"varint,2,opt,name=PerformancePlanStepID" json:"PerformancePlanStepID,omitempty"` // uint64 履约计划步骤ID
  2704. Delaydays *uint32 `protobuf:"varint,3,opt,name=delaydays" json:"delaydays,omitempty"` // uint32 申请延期天数
  2705. Applicant *uint64 `protobuf:"varint,4,opt,name=applicant" json:"applicant,omitempty"` // uint64 申请人
  2706. Applyremark *string `protobuf:"bytes,5,opt,name=applyremark" json:"applyremark,omitempty"` // string 申请备注
  2707. }
  2708. func (x *PerformanceDelayApplyReq) Reset() {
  2709. *x = PerformanceDelayApplyReq{}
  2710. if protoimpl.UnsafeEnabled {
  2711. mi := &file_mtp2_proto_msgTypes[28]
  2712. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2713. ms.StoreMessageInfo(mi)
  2714. }
  2715. }
  2716. func (x *PerformanceDelayApplyReq) String() string {
  2717. return protoimpl.X.MessageStringOf(x)
  2718. }
  2719. func (*PerformanceDelayApplyReq) ProtoMessage() {}
  2720. func (x *PerformanceDelayApplyReq) ProtoReflect() protoreflect.Message {
  2721. mi := &file_mtp2_proto_msgTypes[28]
  2722. if protoimpl.UnsafeEnabled && x != nil {
  2723. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2724. if ms.LoadMessageInfo() == nil {
  2725. ms.StoreMessageInfo(mi)
  2726. }
  2727. return ms
  2728. }
  2729. return mi.MessageOf(x)
  2730. }
  2731. // Deprecated: Use PerformanceDelayApplyReq.ProtoReflect.Descriptor instead.
  2732. func (*PerformanceDelayApplyReq) Descriptor() ([]byte, []int) {
  2733. return file_mtp2_proto_rawDescGZIP(), []int{28}
  2734. }
  2735. func (x *PerformanceDelayApplyReq) GetHeader() *MessageHead {
  2736. if x != nil {
  2737. return x.Header
  2738. }
  2739. return nil
  2740. }
  2741. func (x *PerformanceDelayApplyReq) GetPerformancePlanStepID() uint64 {
  2742. if x != nil && x.PerformancePlanStepID != nil {
  2743. return *x.PerformancePlanStepID
  2744. }
  2745. return 0
  2746. }
  2747. func (x *PerformanceDelayApplyReq) GetDelaydays() uint32 {
  2748. if x != nil && x.Delaydays != nil {
  2749. return *x.Delaydays
  2750. }
  2751. return 0
  2752. }
  2753. func (x *PerformanceDelayApplyReq) GetApplicant() uint64 {
  2754. if x != nil && x.Applicant != nil {
  2755. return *x.Applicant
  2756. }
  2757. return 0
  2758. }
  2759. func (x *PerformanceDelayApplyReq) GetApplyremark() string {
  2760. if x != nil && x.Applyremark != nil {
  2761. return *x.Applyremark
  2762. }
  2763. return ""
  2764. }
  2765. // 延期申请应答 0 20 6
  2766. type PerformanceDelayApplyRsp struct {
  2767. state protoimpl.MessageState
  2768. sizeCache protoimpl.SizeCache
  2769. unknownFields protoimpl.UnknownFields
  2770. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // MessageHead 消息头
  2771. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // int32 返回码
  2772. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // string 描述信息
  2773. PerformancePlanStepID *uint64 `protobuf:"varint,4,opt,name=PerformancePlanStepID" json:"PerformancePlanStepID,omitempty"` // uint64 履约计划步骤ID
  2774. Applicant *uint64 `protobuf:"varint,5,opt,name=applicant" json:"applicant,omitempty"` // uint64 申请人
  2775. }
  2776. func (x *PerformanceDelayApplyRsp) Reset() {
  2777. *x = PerformanceDelayApplyRsp{}
  2778. if protoimpl.UnsafeEnabled {
  2779. mi := &file_mtp2_proto_msgTypes[29]
  2780. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2781. ms.StoreMessageInfo(mi)
  2782. }
  2783. }
  2784. func (x *PerformanceDelayApplyRsp) String() string {
  2785. return protoimpl.X.MessageStringOf(x)
  2786. }
  2787. func (*PerformanceDelayApplyRsp) ProtoMessage() {}
  2788. func (x *PerformanceDelayApplyRsp) ProtoReflect() protoreflect.Message {
  2789. mi := &file_mtp2_proto_msgTypes[29]
  2790. if protoimpl.UnsafeEnabled && x != nil {
  2791. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2792. if ms.LoadMessageInfo() == nil {
  2793. ms.StoreMessageInfo(mi)
  2794. }
  2795. return ms
  2796. }
  2797. return mi.MessageOf(x)
  2798. }
  2799. // Deprecated: Use PerformanceDelayApplyRsp.ProtoReflect.Descriptor instead.
  2800. func (*PerformanceDelayApplyRsp) Descriptor() ([]byte, []int) {
  2801. return file_mtp2_proto_rawDescGZIP(), []int{29}
  2802. }
  2803. func (x *PerformanceDelayApplyRsp) GetHeader() *MessageHead {
  2804. if x != nil {
  2805. return x.Header
  2806. }
  2807. return nil
  2808. }
  2809. func (x *PerformanceDelayApplyRsp) GetRetCode() int32 {
  2810. if x != nil && x.RetCode != nil {
  2811. return *x.RetCode
  2812. }
  2813. return 0
  2814. }
  2815. func (x *PerformanceDelayApplyRsp) GetRetDesc() string {
  2816. if x != nil && x.RetDesc != nil {
  2817. return *x.RetDesc
  2818. }
  2819. return ""
  2820. }
  2821. func (x *PerformanceDelayApplyRsp) GetPerformancePlanStepID() uint64 {
  2822. if x != nil && x.PerformancePlanStepID != nil {
  2823. return *x.PerformancePlanStepID
  2824. }
  2825. return 0
  2826. }
  2827. func (x *PerformanceDelayApplyRsp) GetApplicant() uint64 {
  2828. if x != nil && x.Applicant != nil {
  2829. return *x.Applicant
  2830. }
  2831. return 0
  2832. }
  2833. // 履约手动确认请求 0 20 3
  2834. type PerformanceManualConfirmReq struct {
  2835. state protoimpl.MessageState
  2836. sizeCache protoimpl.SizeCache
  2837. unknownFields protoimpl.UnknownFields
  2838. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // MessageHead
  2839. PerformancePlanStepID *uint64 `protobuf:"varint,2,opt,name=PerformancePlanStepID" json:"PerformancePlanStepID,omitempty"` // uint64 履约计划步骤ID
  2840. OverShortAmount *float64 `protobuf:"fixed64,3,opt,name=OverShortAmount" json:"OverShortAmount,omitempty"` // double 溢短金额
  2841. PerformanceExecuteSide *uint32 `protobuf:"varint,4,opt,name=PerformanceExecuteSide" json:"PerformanceExecuteSide,omitempty"` // uint32 履约步骤执行方 1买方 2 卖方
  2842. StepRemark *string `protobuf:"bytes,5,opt,name=StepRemark" json:"StepRemark,omitempty"` // string 步骤备注
  2843. OverShortQty *float64 `protobuf:"fixed64,6,opt,name=OverShortQty" json:"OverShortQty,omitempty"` // double 溢短数量
  2844. ExpressFee *float64 `protobuf:"fixed64,7,opt,name=ExpressFee" json:"ExpressFee,omitempty"` // double 运费金额
  2845. }
  2846. func (x *PerformanceManualConfirmReq) Reset() {
  2847. *x = PerformanceManualConfirmReq{}
  2848. if protoimpl.UnsafeEnabled {
  2849. mi := &file_mtp2_proto_msgTypes[30]
  2850. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2851. ms.StoreMessageInfo(mi)
  2852. }
  2853. }
  2854. func (x *PerformanceManualConfirmReq) String() string {
  2855. return protoimpl.X.MessageStringOf(x)
  2856. }
  2857. func (*PerformanceManualConfirmReq) ProtoMessage() {}
  2858. func (x *PerformanceManualConfirmReq) ProtoReflect() protoreflect.Message {
  2859. mi := &file_mtp2_proto_msgTypes[30]
  2860. if protoimpl.UnsafeEnabled && x != nil {
  2861. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2862. if ms.LoadMessageInfo() == nil {
  2863. ms.StoreMessageInfo(mi)
  2864. }
  2865. return ms
  2866. }
  2867. return mi.MessageOf(x)
  2868. }
  2869. // Deprecated: Use PerformanceManualConfirmReq.ProtoReflect.Descriptor instead.
  2870. func (*PerformanceManualConfirmReq) Descriptor() ([]byte, []int) {
  2871. return file_mtp2_proto_rawDescGZIP(), []int{30}
  2872. }
  2873. func (x *PerformanceManualConfirmReq) GetHeader() *MessageHead {
  2874. if x != nil {
  2875. return x.Header
  2876. }
  2877. return nil
  2878. }
  2879. func (x *PerformanceManualConfirmReq) GetPerformancePlanStepID() uint64 {
  2880. if x != nil && x.PerformancePlanStepID != nil {
  2881. return *x.PerformancePlanStepID
  2882. }
  2883. return 0
  2884. }
  2885. func (x *PerformanceManualConfirmReq) GetOverShortAmount() float64 {
  2886. if x != nil && x.OverShortAmount != nil {
  2887. return *x.OverShortAmount
  2888. }
  2889. return 0
  2890. }
  2891. func (x *PerformanceManualConfirmReq) GetPerformanceExecuteSide() uint32 {
  2892. if x != nil && x.PerformanceExecuteSide != nil {
  2893. return *x.PerformanceExecuteSide
  2894. }
  2895. return 0
  2896. }
  2897. func (x *PerformanceManualConfirmReq) GetStepRemark() string {
  2898. if x != nil && x.StepRemark != nil {
  2899. return *x.StepRemark
  2900. }
  2901. return ""
  2902. }
  2903. func (x *PerformanceManualConfirmReq) GetOverShortQty() float64 {
  2904. if x != nil && x.OverShortQty != nil {
  2905. return *x.OverShortQty
  2906. }
  2907. return 0
  2908. }
  2909. func (x *PerformanceManualConfirmReq) GetExpressFee() float64 {
  2910. if x != nil && x.ExpressFee != nil {
  2911. return *x.ExpressFee
  2912. }
  2913. return 0
  2914. }
  2915. // 履约手动确认应答 0 20 4
  2916. type PerformanceManualConfirmRsp struct {
  2917. state protoimpl.MessageState
  2918. sizeCache protoimpl.SizeCache
  2919. unknownFields protoimpl.UnknownFields
  2920. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // MessageHead 消息头
  2921. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // int32 返回码
  2922. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // string 描述信息
  2923. PerformancePlanStepID *uint64 `protobuf:"varint,4,opt,name=PerformancePlanStepID" json:"PerformancePlanStepID,omitempty"` // uint64 履约计划步骤ID
  2924. }
  2925. func (x *PerformanceManualConfirmRsp) Reset() {
  2926. *x = PerformanceManualConfirmRsp{}
  2927. if protoimpl.UnsafeEnabled {
  2928. mi := &file_mtp2_proto_msgTypes[31]
  2929. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2930. ms.StoreMessageInfo(mi)
  2931. }
  2932. }
  2933. func (x *PerformanceManualConfirmRsp) String() string {
  2934. return protoimpl.X.MessageStringOf(x)
  2935. }
  2936. func (*PerformanceManualConfirmRsp) ProtoMessage() {}
  2937. func (x *PerformanceManualConfirmRsp) ProtoReflect() protoreflect.Message {
  2938. mi := &file_mtp2_proto_msgTypes[31]
  2939. if protoimpl.UnsafeEnabled && x != nil {
  2940. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2941. if ms.LoadMessageInfo() == nil {
  2942. ms.StoreMessageInfo(mi)
  2943. }
  2944. return ms
  2945. }
  2946. return mi.MessageOf(x)
  2947. }
  2948. // Deprecated: Use PerformanceManualConfirmRsp.ProtoReflect.Descriptor instead.
  2949. func (*PerformanceManualConfirmRsp) Descriptor() ([]byte, []int) {
  2950. return file_mtp2_proto_rawDescGZIP(), []int{31}
  2951. }
  2952. func (x *PerformanceManualConfirmRsp) GetHeader() *MessageHead {
  2953. if x != nil {
  2954. return x.Header
  2955. }
  2956. return nil
  2957. }
  2958. func (x *PerformanceManualConfirmRsp) GetRetCode() int32 {
  2959. if x != nil && x.RetCode != nil {
  2960. return *x.RetCode
  2961. }
  2962. return 0
  2963. }
  2964. func (x *PerformanceManualConfirmRsp) GetRetDesc() string {
  2965. if x != nil && x.RetDesc != nil {
  2966. return *x.RetDesc
  2967. }
  2968. return ""
  2969. }
  2970. func (x *PerformanceManualConfirmRsp) GetPerformancePlanStepID() uint64 {
  2971. if x != nil && x.PerformancePlanStepID != nil {
  2972. return *x.PerformancePlanStepID
  2973. }
  2974. return 0
  2975. }
  2976. // 履约修改联络信息请求 0 20 15
  2977. type PerformanceModifyContactReq struct {
  2978. state protoimpl.MessageState
  2979. sizeCache protoimpl.SizeCache
  2980. unknownFields protoimpl.UnknownFields
  2981. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // MessageHead
  2982. PerformancePlanID *uint64 `protobuf:"varint,2,opt,name=PerformancePlanID" json:"PerformancePlanID,omitempty"` // uint64 履约计划ID
  2983. AccountID *uint64 `protobuf:"varint,3,opt,name=AccountID" json:"AccountID,omitempty"` // uint64 账号
  2984. ContactInfo *string `protobuf:"bytes,4,opt,name=ContactInfo" json:"ContactInfo,omitempty"` // string 联络信息
  2985. }
  2986. func (x *PerformanceModifyContactReq) Reset() {
  2987. *x = PerformanceModifyContactReq{}
  2988. if protoimpl.UnsafeEnabled {
  2989. mi := &file_mtp2_proto_msgTypes[32]
  2990. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2991. ms.StoreMessageInfo(mi)
  2992. }
  2993. }
  2994. func (x *PerformanceModifyContactReq) String() string {
  2995. return protoimpl.X.MessageStringOf(x)
  2996. }
  2997. func (*PerformanceModifyContactReq) ProtoMessage() {}
  2998. func (x *PerformanceModifyContactReq) ProtoReflect() protoreflect.Message {
  2999. mi := &file_mtp2_proto_msgTypes[32]
  3000. if protoimpl.UnsafeEnabled && x != nil {
  3001. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3002. if ms.LoadMessageInfo() == nil {
  3003. ms.StoreMessageInfo(mi)
  3004. }
  3005. return ms
  3006. }
  3007. return mi.MessageOf(x)
  3008. }
  3009. // Deprecated: Use PerformanceModifyContactReq.ProtoReflect.Descriptor instead.
  3010. func (*PerformanceModifyContactReq) Descriptor() ([]byte, []int) {
  3011. return file_mtp2_proto_rawDescGZIP(), []int{32}
  3012. }
  3013. func (x *PerformanceModifyContactReq) GetHeader() *MessageHead {
  3014. if x != nil {
  3015. return x.Header
  3016. }
  3017. return nil
  3018. }
  3019. func (x *PerformanceModifyContactReq) GetPerformancePlanID() uint64 {
  3020. if x != nil && x.PerformancePlanID != nil {
  3021. return *x.PerformancePlanID
  3022. }
  3023. return 0
  3024. }
  3025. func (x *PerformanceModifyContactReq) GetAccountID() uint64 {
  3026. if x != nil && x.AccountID != nil {
  3027. return *x.AccountID
  3028. }
  3029. return 0
  3030. }
  3031. func (x *PerformanceModifyContactReq) GetContactInfo() string {
  3032. if x != nil && x.ContactInfo != nil {
  3033. return *x.ContactInfo
  3034. }
  3035. return ""
  3036. }
  3037. // 履约修改联络信息回应 0 20 16
  3038. type PerformanceModifyContactRsp struct {
  3039. state protoimpl.MessageState
  3040. sizeCache protoimpl.SizeCache
  3041. unknownFields protoimpl.UnknownFields
  3042. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // MessageHead 消息头
  3043. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // int32 返回码
  3044. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // string 描述信息
  3045. PerformancePlanID *uint64 `protobuf:"varint,4,opt,name=PerformancePlanID" json:"PerformancePlanID,omitempty"` // uint64 履约计划ID
  3046. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // uint64 账号
  3047. }
  3048. func (x *PerformanceModifyContactRsp) Reset() {
  3049. *x = PerformanceModifyContactRsp{}
  3050. if protoimpl.UnsafeEnabled {
  3051. mi := &file_mtp2_proto_msgTypes[33]
  3052. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3053. ms.StoreMessageInfo(mi)
  3054. }
  3055. }
  3056. func (x *PerformanceModifyContactRsp) String() string {
  3057. return protoimpl.X.MessageStringOf(x)
  3058. }
  3059. func (*PerformanceModifyContactRsp) ProtoMessage() {}
  3060. func (x *PerformanceModifyContactRsp) ProtoReflect() protoreflect.Message {
  3061. mi := &file_mtp2_proto_msgTypes[33]
  3062. if protoimpl.UnsafeEnabled && x != nil {
  3063. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3064. if ms.LoadMessageInfo() == nil {
  3065. ms.StoreMessageInfo(mi)
  3066. }
  3067. return ms
  3068. }
  3069. return mi.MessageOf(x)
  3070. }
  3071. // Deprecated: Use PerformanceModifyContactRsp.ProtoReflect.Descriptor instead.
  3072. func (*PerformanceModifyContactRsp) Descriptor() ([]byte, []int) {
  3073. return file_mtp2_proto_rawDescGZIP(), []int{33}
  3074. }
  3075. func (x *PerformanceModifyContactRsp) GetHeader() *MessageHead {
  3076. if x != nil {
  3077. return x.Header
  3078. }
  3079. return nil
  3080. }
  3081. func (x *PerformanceModifyContactRsp) GetRetCode() int32 {
  3082. if x != nil && x.RetCode != nil {
  3083. return *x.RetCode
  3084. }
  3085. return 0
  3086. }
  3087. func (x *PerformanceModifyContactRsp) GetRetDesc() string {
  3088. if x != nil && x.RetDesc != nil {
  3089. return *x.RetDesc
  3090. }
  3091. return ""
  3092. }
  3093. func (x *PerformanceModifyContactRsp) GetPerformancePlanID() uint64 {
  3094. if x != nil && x.PerformancePlanID != nil {
  3095. return *x.PerformancePlanID
  3096. }
  3097. return 0
  3098. }
  3099. func (x *PerformanceModifyContactRsp) GetAccountID() uint64 {
  3100. if x != nil && x.AccountID != nil {
  3101. return *x.AccountID
  3102. }
  3103. return 0
  3104. }
  3105. // 新增钻石商品接口响应
  3106. type AddZSGoodsRsp struct {
  3107. state protoimpl.MessageState
  3108. sizeCache protoimpl.SizeCache
  3109. unknownFields protoimpl.UnknownFields
  3110. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  3111. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  3112. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  3113. UserID *uint64 `protobuf:"varint,4,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  3114. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账户ID
  3115. WRStandardID *uint64 `protobuf:"varint,6,opt,name=WRStandardID" json:"WRStandardID,omitempty"` // 现货商品ID
  3116. WRFactorTypeID *uint64 `protobuf:"varint,7,opt,name=WRFactorTypeID" json:"WRFactorTypeID,omitempty"` // 仓单要素类型ID
  3117. LadingBillID *uint64 `protobuf:"varint,8,opt,name=LadingBillID" json:"LadingBillID,omitempty"` // 提单ID
  3118. SubNum *uint32 `protobuf:"varint,9,opt,name=SubNum" json:"SubNum,omitempty"` // 提单子单号
  3119. ClientSerialNo *string `protobuf:"bytes,10,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  3120. }
  3121. func (x *AddZSGoodsRsp) Reset() {
  3122. *x = AddZSGoodsRsp{}
  3123. if protoimpl.UnsafeEnabled {
  3124. mi := &file_mtp2_proto_msgTypes[34]
  3125. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3126. ms.StoreMessageInfo(mi)
  3127. }
  3128. }
  3129. func (x *AddZSGoodsRsp) String() string {
  3130. return protoimpl.X.MessageStringOf(x)
  3131. }
  3132. func (*AddZSGoodsRsp) ProtoMessage() {}
  3133. func (x *AddZSGoodsRsp) ProtoReflect() protoreflect.Message {
  3134. mi := &file_mtp2_proto_msgTypes[34]
  3135. if protoimpl.UnsafeEnabled && x != nil {
  3136. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3137. if ms.LoadMessageInfo() == nil {
  3138. ms.StoreMessageInfo(mi)
  3139. }
  3140. return ms
  3141. }
  3142. return mi.MessageOf(x)
  3143. }
  3144. // Deprecated: Use AddZSGoodsRsp.ProtoReflect.Descriptor instead.
  3145. func (*AddZSGoodsRsp) Descriptor() ([]byte, []int) {
  3146. return file_mtp2_proto_rawDescGZIP(), []int{34}
  3147. }
  3148. func (x *AddZSGoodsRsp) GetHeader() *MessageHead {
  3149. if x != nil {
  3150. return x.Header
  3151. }
  3152. return nil
  3153. }
  3154. func (x *AddZSGoodsRsp) GetRetCode() int32 {
  3155. if x != nil && x.RetCode != nil {
  3156. return *x.RetCode
  3157. }
  3158. return 0
  3159. }
  3160. func (x *AddZSGoodsRsp) GetRetDesc() string {
  3161. if x != nil && x.RetDesc != nil {
  3162. return *x.RetDesc
  3163. }
  3164. return ""
  3165. }
  3166. func (x *AddZSGoodsRsp) GetUserID() uint64 {
  3167. if x != nil && x.UserID != nil {
  3168. return *x.UserID
  3169. }
  3170. return 0
  3171. }
  3172. func (x *AddZSGoodsRsp) GetAccountID() uint64 {
  3173. if x != nil && x.AccountID != nil {
  3174. return *x.AccountID
  3175. }
  3176. return 0
  3177. }
  3178. func (x *AddZSGoodsRsp) GetWRStandardID() uint64 {
  3179. if x != nil && x.WRStandardID != nil {
  3180. return *x.WRStandardID
  3181. }
  3182. return 0
  3183. }
  3184. func (x *AddZSGoodsRsp) GetWRFactorTypeID() uint64 {
  3185. if x != nil && x.WRFactorTypeID != nil {
  3186. return *x.WRFactorTypeID
  3187. }
  3188. return 0
  3189. }
  3190. func (x *AddZSGoodsRsp) GetLadingBillID() uint64 {
  3191. if x != nil && x.LadingBillID != nil {
  3192. return *x.LadingBillID
  3193. }
  3194. return 0
  3195. }
  3196. func (x *AddZSGoodsRsp) GetSubNum() uint32 {
  3197. if x != nil && x.SubNum != nil {
  3198. return *x.SubNum
  3199. }
  3200. return 0
  3201. }
  3202. func (x *AddZSGoodsRsp) GetClientSerialNo() string {
  3203. if x != nil && x.ClientSerialNo != nil {
  3204. return *x.ClientSerialNo
  3205. }
  3206. return ""
  3207. }
  3208. // 商品收藏操作接口请求
  3209. type GoodsFavoriteOperateReq struct {
  3210. state protoimpl.MessageState
  3211. sizeCache protoimpl.SizeCache
  3212. unknownFields protoimpl.UnknownFields
  3213. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  3214. UserID *uint32 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  3215. WRTradeOrderID *uint64 `protobuf:"varint,3,opt,name=WRTradeOrderID" json:"WRTradeOrderID,omitempty"` // 委托单ID,必填
  3216. OperateType *uint32 `protobuf:"varint,4,opt,name=OperateType" json:"OperateType,omitempty"` // 操作类型,1:添加2:删除,必填
  3217. ClientType *uint32 `protobuf:"varint,5,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  3218. MarketID *uint32 `protobuf:"varint,6,opt,name=MarketID" json:"MarketID,omitempty"` // 市场ID,必填
  3219. ClientSerialNo *string `protobuf:"bytes,7,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  3220. }
  3221. func (x *GoodsFavoriteOperateReq) Reset() {
  3222. *x = GoodsFavoriteOperateReq{}
  3223. if protoimpl.UnsafeEnabled {
  3224. mi := &file_mtp2_proto_msgTypes[35]
  3225. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3226. ms.StoreMessageInfo(mi)
  3227. }
  3228. }
  3229. func (x *GoodsFavoriteOperateReq) String() string {
  3230. return protoimpl.X.MessageStringOf(x)
  3231. }
  3232. func (*GoodsFavoriteOperateReq) ProtoMessage() {}
  3233. func (x *GoodsFavoriteOperateReq) ProtoReflect() protoreflect.Message {
  3234. mi := &file_mtp2_proto_msgTypes[35]
  3235. if protoimpl.UnsafeEnabled && x != nil {
  3236. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3237. if ms.LoadMessageInfo() == nil {
  3238. ms.StoreMessageInfo(mi)
  3239. }
  3240. return ms
  3241. }
  3242. return mi.MessageOf(x)
  3243. }
  3244. // Deprecated: Use GoodsFavoriteOperateReq.ProtoReflect.Descriptor instead.
  3245. func (*GoodsFavoriteOperateReq) Descriptor() ([]byte, []int) {
  3246. return file_mtp2_proto_rawDescGZIP(), []int{35}
  3247. }
  3248. func (x *GoodsFavoriteOperateReq) GetHeader() *MessageHead {
  3249. if x != nil {
  3250. return x.Header
  3251. }
  3252. return nil
  3253. }
  3254. func (x *GoodsFavoriteOperateReq) GetUserID() uint32 {
  3255. if x != nil && x.UserID != nil {
  3256. return *x.UserID
  3257. }
  3258. return 0
  3259. }
  3260. func (x *GoodsFavoriteOperateReq) GetWRTradeOrderID() uint64 {
  3261. if x != nil && x.WRTradeOrderID != nil {
  3262. return *x.WRTradeOrderID
  3263. }
  3264. return 0
  3265. }
  3266. func (x *GoodsFavoriteOperateReq) GetOperateType() uint32 {
  3267. if x != nil && x.OperateType != nil {
  3268. return *x.OperateType
  3269. }
  3270. return 0
  3271. }
  3272. func (x *GoodsFavoriteOperateReq) GetClientType() uint32 {
  3273. if x != nil && x.ClientType != nil {
  3274. return *x.ClientType
  3275. }
  3276. return 0
  3277. }
  3278. func (x *GoodsFavoriteOperateReq) GetMarketID() uint32 {
  3279. if x != nil && x.MarketID != nil {
  3280. return *x.MarketID
  3281. }
  3282. return 0
  3283. }
  3284. func (x *GoodsFavoriteOperateReq) GetClientSerialNo() string {
  3285. if x != nil && x.ClientSerialNo != nil {
  3286. return *x.ClientSerialNo
  3287. }
  3288. return ""
  3289. }
  3290. // 商品收藏操作接口应答
  3291. type GoodsFavoriteOperateRsp struct {
  3292. state protoimpl.MessageState
  3293. sizeCache protoimpl.SizeCache
  3294. unknownFields protoimpl.UnknownFields
  3295. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  3296. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  3297. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  3298. UserID *uint32 `protobuf:"varint,4,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  3299. WRTradeOrderID *uint64 `protobuf:"varint,5,opt,name=WRTradeOrderID" json:"WRTradeOrderID,omitempty"` // 委托单ID
  3300. ClientSerialNo *string `protobuf:"bytes,6,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  3301. }
  3302. func (x *GoodsFavoriteOperateRsp) Reset() {
  3303. *x = GoodsFavoriteOperateRsp{}
  3304. if protoimpl.UnsafeEnabled {
  3305. mi := &file_mtp2_proto_msgTypes[36]
  3306. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3307. ms.StoreMessageInfo(mi)
  3308. }
  3309. }
  3310. func (x *GoodsFavoriteOperateRsp) String() string {
  3311. return protoimpl.X.MessageStringOf(x)
  3312. }
  3313. func (*GoodsFavoriteOperateRsp) ProtoMessage() {}
  3314. func (x *GoodsFavoriteOperateRsp) ProtoReflect() protoreflect.Message {
  3315. mi := &file_mtp2_proto_msgTypes[36]
  3316. if protoimpl.UnsafeEnabled && x != nil {
  3317. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3318. if ms.LoadMessageInfo() == nil {
  3319. ms.StoreMessageInfo(mi)
  3320. }
  3321. return ms
  3322. }
  3323. return mi.MessageOf(x)
  3324. }
  3325. // Deprecated: Use GoodsFavoriteOperateRsp.ProtoReflect.Descriptor instead.
  3326. func (*GoodsFavoriteOperateRsp) Descriptor() ([]byte, []int) {
  3327. return file_mtp2_proto_rawDescGZIP(), []int{36}
  3328. }
  3329. func (x *GoodsFavoriteOperateRsp) GetHeader() *MessageHead {
  3330. if x != nil {
  3331. return x.Header
  3332. }
  3333. return nil
  3334. }
  3335. func (x *GoodsFavoriteOperateRsp) GetRetCode() int32 {
  3336. if x != nil && x.RetCode != nil {
  3337. return *x.RetCode
  3338. }
  3339. return 0
  3340. }
  3341. func (x *GoodsFavoriteOperateRsp) GetRetDesc() string {
  3342. if x != nil && x.RetDesc != nil {
  3343. return *x.RetDesc
  3344. }
  3345. return ""
  3346. }
  3347. func (x *GoodsFavoriteOperateRsp) GetUserID() uint32 {
  3348. if x != nil && x.UserID != nil {
  3349. return *x.UserID
  3350. }
  3351. return 0
  3352. }
  3353. func (x *GoodsFavoriteOperateRsp) GetWRTradeOrderID() uint64 {
  3354. if x != nil && x.WRTradeOrderID != nil {
  3355. return *x.WRTradeOrderID
  3356. }
  3357. return 0
  3358. }
  3359. func (x *GoodsFavoriteOperateRsp) GetClientSerialNo() string {
  3360. if x != nil && x.ClientSerialNo != nil {
  3361. return *x.ClientSerialNo
  3362. }
  3363. return ""
  3364. }
  3365. // 钻石买挂牌属性
  3366. type GZBuyOrderDetailExInfo struct {
  3367. state protoimpl.MessageState
  3368. sizeCache protoimpl.SizeCache
  3369. unknownFields protoimpl.UnknownFields
  3370. UserID *uint64 `protobuf:"varint,1,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  3371. AccountID *uint64 `protobuf:"varint,2,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账户ID
  3372. ZSCategory *uint32 `protobuf:"varint,3,opt,name=ZSCategory" json:"ZSCategory,omitempty"` // 钻石分类
  3373. ZSCurrencyType []uint32 `protobuf:"varint,4,rep,name=ZSCurrencyType" json:"ZSCurrencyType,omitempty"` // 货币类型
  3374. ZSShapeType []uint32 `protobuf:"varint,5,rep,name=ZSShapeType" json:"ZSShapeType,omitempty"` // 形状
  3375. ZSColorType []uint32 `protobuf:"varint,6,rep,name=ZSColorType" json:"ZSColorType,omitempty"` // 颜色
  3376. ZSClarityType []uint32 `protobuf:"varint,7,rep,name=ZSClarityType" json:"ZSClarityType,omitempty"` // 净度
  3377. ZSCutType []uint32 `protobuf:"varint,8,rep,name=ZSCutType" json:"ZSCutType,omitempty"` // 切工
  3378. ZSSymmetryType []uint32 `protobuf:"varint,9,rep,name=ZSSymmetryType" json:"ZSSymmetryType,omitempty"` // 对称度
  3379. ZSPolishType []uint32 `protobuf:"varint,10,rep,name=ZSPolishType" json:"ZSPolishType,omitempty"` // 抛光度
  3380. ZSFluorescenceType []uint32 `protobuf:"varint,11,rep,name=ZSFluorescenceType" json:"ZSFluorescenceType,omitempty"` // 荧光
  3381. Size []float64 `protobuf:"fixed64,12,rep,name=Size" json:"Size,omitempty"` // 尺寸
  3382. ZSCrystalType []uint32 `protobuf:"varint,13,rep,name=ZSCrystalType" json:"ZSCrystalType,omitempty"` // 晶型
  3383. Origin *string `protobuf:"bytes,14,opt,name=Origin" json:"Origin,omitempty"` // 原产地
  3384. ZSStyleType []uint32 `protobuf:"varint,15,rep,name=ZSStyleType" json:"ZSStyleType,omitempty"` // 款式
  3385. ZSCZColor1Type []uint32 `protobuf:"varint,16,rep,name=ZSCZColor1Type" json:"ZSCZColor1Type,omitempty"` // 彩钻颜色1
  3386. ZSCZColor2Type []uint32 `protobuf:"varint,17,rep,name=ZSCZColor2Type" json:"ZSCZColor2Type,omitempty"` // 彩钻颜色2
  3387. ZSCZColor3Type []uint32 `protobuf:"varint,18,rep,name=ZSCZColor3Type" json:"ZSCZColor3Type,omitempty"` // 彩钻颜色3
  3388. Remark *string `protobuf:"bytes,19,opt,name=Remark" json:"Remark,omitempty"` // 备注
  3389. WarehouseIDs []uint64 `protobuf:"varint,20,rep,name=WarehouseIDs" json:"WarehouseIDs,omitempty"` // 仓库ID
  3390. }
  3391. func (x *GZBuyOrderDetailExInfo) Reset() {
  3392. *x = GZBuyOrderDetailExInfo{}
  3393. if protoimpl.UnsafeEnabled {
  3394. mi := &file_mtp2_proto_msgTypes[37]
  3395. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3396. ms.StoreMessageInfo(mi)
  3397. }
  3398. }
  3399. func (x *GZBuyOrderDetailExInfo) String() string {
  3400. return protoimpl.X.MessageStringOf(x)
  3401. }
  3402. func (*GZBuyOrderDetailExInfo) ProtoMessage() {}
  3403. func (x *GZBuyOrderDetailExInfo) ProtoReflect() protoreflect.Message {
  3404. mi := &file_mtp2_proto_msgTypes[37]
  3405. if protoimpl.UnsafeEnabled && x != nil {
  3406. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3407. if ms.LoadMessageInfo() == nil {
  3408. ms.StoreMessageInfo(mi)
  3409. }
  3410. return ms
  3411. }
  3412. return mi.MessageOf(x)
  3413. }
  3414. // Deprecated: Use GZBuyOrderDetailExInfo.ProtoReflect.Descriptor instead.
  3415. func (*GZBuyOrderDetailExInfo) Descriptor() ([]byte, []int) {
  3416. return file_mtp2_proto_rawDescGZIP(), []int{37}
  3417. }
  3418. func (x *GZBuyOrderDetailExInfo) GetUserID() uint64 {
  3419. if x != nil && x.UserID != nil {
  3420. return *x.UserID
  3421. }
  3422. return 0
  3423. }
  3424. func (x *GZBuyOrderDetailExInfo) GetAccountID() uint64 {
  3425. if x != nil && x.AccountID != nil {
  3426. return *x.AccountID
  3427. }
  3428. return 0
  3429. }
  3430. func (x *GZBuyOrderDetailExInfo) GetZSCategory() uint32 {
  3431. if x != nil && x.ZSCategory != nil {
  3432. return *x.ZSCategory
  3433. }
  3434. return 0
  3435. }
  3436. func (x *GZBuyOrderDetailExInfo) GetZSCurrencyType() []uint32 {
  3437. if x != nil {
  3438. return x.ZSCurrencyType
  3439. }
  3440. return nil
  3441. }
  3442. func (x *GZBuyOrderDetailExInfo) GetZSShapeType() []uint32 {
  3443. if x != nil {
  3444. return x.ZSShapeType
  3445. }
  3446. return nil
  3447. }
  3448. func (x *GZBuyOrderDetailExInfo) GetZSColorType() []uint32 {
  3449. if x != nil {
  3450. return x.ZSColorType
  3451. }
  3452. return nil
  3453. }
  3454. func (x *GZBuyOrderDetailExInfo) GetZSClarityType() []uint32 {
  3455. if x != nil {
  3456. return x.ZSClarityType
  3457. }
  3458. return nil
  3459. }
  3460. func (x *GZBuyOrderDetailExInfo) GetZSCutType() []uint32 {
  3461. if x != nil {
  3462. return x.ZSCutType
  3463. }
  3464. return nil
  3465. }
  3466. func (x *GZBuyOrderDetailExInfo) GetZSSymmetryType() []uint32 {
  3467. if x != nil {
  3468. return x.ZSSymmetryType
  3469. }
  3470. return nil
  3471. }
  3472. func (x *GZBuyOrderDetailExInfo) GetZSPolishType() []uint32 {
  3473. if x != nil {
  3474. return x.ZSPolishType
  3475. }
  3476. return nil
  3477. }
  3478. func (x *GZBuyOrderDetailExInfo) GetZSFluorescenceType() []uint32 {
  3479. if x != nil {
  3480. return x.ZSFluorescenceType
  3481. }
  3482. return nil
  3483. }
  3484. func (x *GZBuyOrderDetailExInfo) GetSize() []float64 {
  3485. if x != nil {
  3486. return x.Size
  3487. }
  3488. return nil
  3489. }
  3490. func (x *GZBuyOrderDetailExInfo) GetZSCrystalType() []uint32 {
  3491. if x != nil {
  3492. return x.ZSCrystalType
  3493. }
  3494. return nil
  3495. }
  3496. func (x *GZBuyOrderDetailExInfo) GetOrigin() string {
  3497. if x != nil && x.Origin != nil {
  3498. return *x.Origin
  3499. }
  3500. return ""
  3501. }
  3502. func (x *GZBuyOrderDetailExInfo) GetZSStyleType() []uint32 {
  3503. if x != nil {
  3504. return x.ZSStyleType
  3505. }
  3506. return nil
  3507. }
  3508. func (x *GZBuyOrderDetailExInfo) GetZSCZColor1Type() []uint32 {
  3509. if x != nil {
  3510. return x.ZSCZColor1Type
  3511. }
  3512. return nil
  3513. }
  3514. func (x *GZBuyOrderDetailExInfo) GetZSCZColor2Type() []uint32 {
  3515. if x != nil {
  3516. return x.ZSCZColor2Type
  3517. }
  3518. return nil
  3519. }
  3520. func (x *GZBuyOrderDetailExInfo) GetZSCZColor3Type() []uint32 {
  3521. if x != nil {
  3522. return x.ZSCZColor3Type
  3523. }
  3524. return nil
  3525. }
  3526. func (x *GZBuyOrderDetailExInfo) GetRemark() string {
  3527. if x != nil && x.Remark != nil {
  3528. return *x.Remark
  3529. }
  3530. return ""
  3531. }
  3532. func (x *GZBuyOrderDetailExInfo) GetWarehouseIDs() []uint64 {
  3533. if x != nil {
  3534. return x.WarehouseIDs
  3535. }
  3536. return nil
  3537. }
  3538. // 钻石买挂牌接口请求
  3539. type ZSBuyOrderListingReq struct {
  3540. state protoimpl.MessageState
  3541. sizeCache protoimpl.SizeCache
  3542. unknownFields protoimpl.UnknownFields
  3543. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  3544. UserID *uint32 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  3545. AccountID *uint64 `protobuf:"varint,3,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号,必填
  3546. GZ_BuyOrderDetailExInfo *GZBuyOrderDetailExInfo `protobuf:"bytes,4,opt,name=GZ_BuyOrderDetailExInfo,json=GZBuyOrderDetailExInfo" json:"GZ_BuyOrderDetailExInfo,omitempty"` // 钻石买挂牌属性
  3547. PerformanceTemplateID *int64 `protobuf:"varint,5,opt,name=PerformanceTemplateID" json:"PerformanceTemplateID,omitempty"` // 履约计划模板ID
  3548. MarketID *uint32 `protobuf:"varint,6,opt,name=MarketID" json:"MarketID,omitempty"` // 市场ID,必填
  3549. OrderSrc *uint32 `protobuf:"varint,7,opt,name=OrderSrc" json:"OrderSrc,omitempty"` // 委托来源
  3550. ClientOrderTime *string `protobuf:"bytes,8,opt,name=ClientOrderTime" json:"ClientOrderTime,omitempty"` // 客户端委托时间
  3551. ClientType *uint32 `protobuf:"varint,9,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  3552. ClientSerialNo *string `protobuf:"bytes,10,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  3553. }
  3554. func (x *ZSBuyOrderListingReq) Reset() {
  3555. *x = ZSBuyOrderListingReq{}
  3556. if protoimpl.UnsafeEnabled {
  3557. mi := &file_mtp2_proto_msgTypes[38]
  3558. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3559. ms.StoreMessageInfo(mi)
  3560. }
  3561. }
  3562. func (x *ZSBuyOrderListingReq) String() string {
  3563. return protoimpl.X.MessageStringOf(x)
  3564. }
  3565. func (*ZSBuyOrderListingReq) ProtoMessage() {}
  3566. func (x *ZSBuyOrderListingReq) ProtoReflect() protoreflect.Message {
  3567. mi := &file_mtp2_proto_msgTypes[38]
  3568. if protoimpl.UnsafeEnabled && x != nil {
  3569. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3570. if ms.LoadMessageInfo() == nil {
  3571. ms.StoreMessageInfo(mi)
  3572. }
  3573. return ms
  3574. }
  3575. return mi.MessageOf(x)
  3576. }
  3577. // Deprecated: Use ZSBuyOrderListingReq.ProtoReflect.Descriptor instead.
  3578. func (*ZSBuyOrderListingReq) Descriptor() ([]byte, []int) {
  3579. return file_mtp2_proto_rawDescGZIP(), []int{38}
  3580. }
  3581. func (x *ZSBuyOrderListingReq) GetHeader() *MessageHead {
  3582. if x != nil {
  3583. return x.Header
  3584. }
  3585. return nil
  3586. }
  3587. func (x *ZSBuyOrderListingReq) GetUserID() uint32 {
  3588. if x != nil && x.UserID != nil {
  3589. return *x.UserID
  3590. }
  3591. return 0
  3592. }
  3593. func (x *ZSBuyOrderListingReq) GetAccountID() uint64 {
  3594. if x != nil && x.AccountID != nil {
  3595. return *x.AccountID
  3596. }
  3597. return 0
  3598. }
  3599. func (x *ZSBuyOrderListingReq) GetGZ_BuyOrderDetailExInfo() *GZBuyOrderDetailExInfo {
  3600. if x != nil {
  3601. return x.GZ_BuyOrderDetailExInfo
  3602. }
  3603. return nil
  3604. }
  3605. func (x *ZSBuyOrderListingReq) GetPerformanceTemplateID() int64 {
  3606. if x != nil && x.PerformanceTemplateID != nil {
  3607. return *x.PerformanceTemplateID
  3608. }
  3609. return 0
  3610. }
  3611. func (x *ZSBuyOrderListingReq) GetMarketID() uint32 {
  3612. if x != nil && x.MarketID != nil {
  3613. return *x.MarketID
  3614. }
  3615. return 0
  3616. }
  3617. func (x *ZSBuyOrderListingReq) GetOrderSrc() uint32 {
  3618. if x != nil && x.OrderSrc != nil {
  3619. return *x.OrderSrc
  3620. }
  3621. return 0
  3622. }
  3623. func (x *ZSBuyOrderListingReq) GetClientOrderTime() string {
  3624. if x != nil && x.ClientOrderTime != nil {
  3625. return *x.ClientOrderTime
  3626. }
  3627. return ""
  3628. }
  3629. func (x *ZSBuyOrderListingReq) GetClientType() uint32 {
  3630. if x != nil && x.ClientType != nil {
  3631. return *x.ClientType
  3632. }
  3633. return 0
  3634. }
  3635. func (x *ZSBuyOrderListingReq) GetClientSerialNo() string {
  3636. if x != nil && x.ClientSerialNo != nil {
  3637. return *x.ClientSerialNo
  3638. }
  3639. return ""
  3640. }
  3641. // 钻石买挂牌接口应答
  3642. type ZSBuyOrderListingRsp struct {
  3643. state protoimpl.MessageState
  3644. sizeCache protoimpl.SizeCache
  3645. unknownFields protoimpl.UnknownFields
  3646. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  3647. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  3648. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  3649. UserID *uint32 `protobuf:"varint,4,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  3650. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
  3651. WRTradeOrderID *uint64 `protobuf:"varint,6,opt,name=WRTradeOrderID" json:"WRTradeOrderID,omitempty"` // 仓单贸易委托单ID
  3652. OrderTime *string `protobuf:"bytes,7,opt,name=OrderTime" json:"OrderTime,omitempty"` // 接收委托交易的时间
  3653. ClientSerialNo *string `protobuf:"bytes,8,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  3654. }
  3655. func (x *ZSBuyOrderListingRsp) Reset() {
  3656. *x = ZSBuyOrderListingRsp{}
  3657. if protoimpl.UnsafeEnabled {
  3658. mi := &file_mtp2_proto_msgTypes[39]
  3659. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3660. ms.StoreMessageInfo(mi)
  3661. }
  3662. }
  3663. func (x *ZSBuyOrderListingRsp) String() string {
  3664. return protoimpl.X.MessageStringOf(x)
  3665. }
  3666. func (*ZSBuyOrderListingRsp) ProtoMessage() {}
  3667. func (x *ZSBuyOrderListingRsp) ProtoReflect() protoreflect.Message {
  3668. mi := &file_mtp2_proto_msgTypes[39]
  3669. if protoimpl.UnsafeEnabled && x != nil {
  3670. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3671. if ms.LoadMessageInfo() == nil {
  3672. ms.StoreMessageInfo(mi)
  3673. }
  3674. return ms
  3675. }
  3676. return mi.MessageOf(x)
  3677. }
  3678. // Deprecated: Use ZSBuyOrderListingRsp.ProtoReflect.Descriptor instead.
  3679. func (*ZSBuyOrderListingRsp) Descriptor() ([]byte, []int) {
  3680. return file_mtp2_proto_rawDescGZIP(), []int{39}
  3681. }
  3682. func (x *ZSBuyOrderListingRsp) GetHeader() *MessageHead {
  3683. if x != nil {
  3684. return x.Header
  3685. }
  3686. return nil
  3687. }
  3688. func (x *ZSBuyOrderListingRsp) GetRetCode() int32 {
  3689. if x != nil && x.RetCode != nil {
  3690. return *x.RetCode
  3691. }
  3692. return 0
  3693. }
  3694. func (x *ZSBuyOrderListingRsp) GetRetDesc() string {
  3695. if x != nil && x.RetDesc != nil {
  3696. return *x.RetDesc
  3697. }
  3698. return ""
  3699. }
  3700. func (x *ZSBuyOrderListingRsp) GetUserID() uint32 {
  3701. if x != nil && x.UserID != nil {
  3702. return *x.UserID
  3703. }
  3704. return 0
  3705. }
  3706. func (x *ZSBuyOrderListingRsp) GetAccountID() uint64 {
  3707. if x != nil && x.AccountID != nil {
  3708. return *x.AccountID
  3709. }
  3710. return 0
  3711. }
  3712. func (x *ZSBuyOrderListingRsp) GetWRTradeOrderID() uint64 {
  3713. if x != nil && x.WRTradeOrderID != nil {
  3714. return *x.WRTradeOrderID
  3715. }
  3716. return 0
  3717. }
  3718. func (x *ZSBuyOrderListingRsp) GetOrderTime() string {
  3719. if x != nil && x.OrderTime != nil {
  3720. return *x.OrderTime
  3721. }
  3722. return ""
  3723. }
  3724. func (x *ZSBuyOrderListingRsp) GetClientSerialNo() string {
  3725. if x != nil && x.ClientSerialNo != nil {
  3726. return *x.ClientSerialNo
  3727. }
  3728. return ""
  3729. }
  3730. // 钻石卖挂牌接口请求
  3731. type ZSSellOrderListingReq struct {
  3732. state protoimpl.MessageState
  3733. sizeCache protoimpl.SizeCache
  3734. unknownFields protoimpl.UnknownFields
  3735. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  3736. UserID *uint64 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  3737. AccountID *uint64 `protobuf:"varint,3,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账户ID,必填
  3738. WRStandardID *uint64 `protobuf:"varint,4,opt,name=WRStandardID" json:"WRStandardID,omitempty"` // 现货商品ID,必填
  3739. WRFactorTypeID *uint64 `protobuf:"varint,5,opt,name=WRFactorTypeID" json:"WRFactorTypeID,omitempty"` // 仓单要素类型ID,必填
  3740. OrderQty *float64 `protobuf:"fixed64,6,opt,name=OrderQty" json:"OrderQty,omitempty"` // 挂牌数量,必填2位小数,为WeigthAvg的整数倍
  3741. LadingBillID *uint64 `protobuf:"varint,7,opt,name=LadingBillID" json:"LadingBillID,omitempty"` // 提单ID,必填
  3742. SubNum *uint32 `protobuf:"varint,8,opt,name=SubNum" json:"SubNum,omitempty"` // 提单子单号,必填
  3743. PerformanceTemplateID *int64 `protobuf:"varint,9,opt,name=PerformanceTemplateID" json:"PerformanceTemplateID,omitempty"` // 履约计划模板ID
  3744. TimevalidType *uint32 `protobuf:"varint,10,opt,name=TimevalidType" json:"TimevalidType,omitempty"` // 时间有效类型
  3745. ValidTime *string `protobuf:"bytes,11,opt,name=ValidTime" json:"ValidTime,omitempty"` // 有效期限
  3746. OrderSrc *uint32 `protobuf:"varint,12,opt,name=OrderSrc" json:"OrderSrc,omitempty"` // 委托来源
  3747. ClientSerialNo *string `protobuf:"bytes,13,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  3748. ClientOrderTime *string `protobuf:"bytes,14,opt,name=ClientOrderTime" json:"ClientOrderTime,omitempty"` // 客户端委托时间
  3749. ClientType *uint32 `protobuf:"varint,15,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  3750. MarketID *uint64 `protobuf:"varint,16,opt,name=MarketID" json:"MarketID,omitempty"` // 市场ID,必填
  3751. }
  3752. func (x *ZSSellOrderListingReq) Reset() {
  3753. *x = ZSSellOrderListingReq{}
  3754. if protoimpl.UnsafeEnabled {
  3755. mi := &file_mtp2_proto_msgTypes[40]
  3756. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3757. ms.StoreMessageInfo(mi)
  3758. }
  3759. }
  3760. func (x *ZSSellOrderListingReq) String() string {
  3761. return protoimpl.X.MessageStringOf(x)
  3762. }
  3763. func (*ZSSellOrderListingReq) ProtoMessage() {}
  3764. func (x *ZSSellOrderListingReq) ProtoReflect() protoreflect.Message {
  3765. mi := &file_mtp2_proto_msgTypes[40]
  3766. if protoimpl.UnsafeEnabled && x != nil {
  3767. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3768. if ms.LoadMessageInfo() == nil {
  3769. ms.StoreMessageInfo(mi)
  3770. }
  3771. return ms
  3772. }
  3773. return mi.MessageOf(x)
  3774. }
  3775. // Deprecated: Use ZSSellOrderListingReq.ProtoReflect.Descriptor instead.
  3776. func (*ZSSellOrderListingReq) Descriptor() ([]byte, []int) {
  3777. return file_mtp2_proto_rawDescGZIP(), []int{40}
  3778. }
  3779. func (x *ZSSellOrderListingReq) GetHeader() *MessageHead {
  3780. if x != nil {
  3781. return x.Header
  3782. }
  3783. return nil
  3784. }
  3785. func (x *ZSSellOrderListingReq) GetUserID() uint64 {
  3786. if x != nil && x.UserID != nil {
  3787. return *x.UserID
  3788. }
  3789. return 0
  3790. }
  3791. func (x *ZSSellOrderListingReq) GetAccountID() uint64 {
  3792. if x != nil && x.AccountID != nil {
  3793. return *x.AccountID
  3794. }
  3795. return 0
  3796. }
  3797. func (x *ZSSellOrderListingReq) GetWRStandardID() uint64 {
  3798. if x != nil && x.WRStandardID != nil {
  3799. return *x.WRStandardID
  3800. }
  3801. return 0
  3802. }
  3803. func (x *ZSSellOrderListingReq) GetWRFactorTypeID() uint64 {
  3804. if x != nil && x.WRFactorTypeID != nil {
  3805. return *x.WRFactorTypeID
  3806. }
  3807. return 0
  3808. }
  3809. func (x *ZSSellOrderListingReq) GetOrderQty() float64 {
  3810. if x != nil && x.OrderQty != nil {
  3811. return *x.OrderQty
  3812. }
  3813. return 0
  3814. }
  3815. func (x *ZSSellOrderListingReq) GetLadingBillID() uint64 {
  3816. if x != nil && x.LadingBillID != nil {
  3817. return *x.LadingBillID
  3818. }
  3819. return 0
  3820. }
  3821. func (x *ZSSellOrderListingReq) GetSubNum() uint32 {
  3822. if x != nil && x.SubNum != nil {
  3823. return *x.SubNum
  3824. }
  3825. return 0
  3826. }
  3827. func (x *ZSSellOrderListingReq) GetPerformanceTemplateID() int64 {
  3828. if x != nil && x.PerformanceTemplateID != nil {
  3829. return *x.PerformanceTemplateID
  3830. }
  3831. return 0
  3832. }
  3833. func (x *ZSSellOrderListingReq) GetTimevalidType() uint32 {
  3834. if x != nil && x.TimevalidType != nil {
  3835. return *x.TimevalidType
  3836. }
  3837. return 0
  3838. }
  3839. func (x *ZSSellOrderListingReq) GetValidTime() string {
  3840. if x != nil && x.ValidTime != nil {
  3841. return *x.ValidTime
  3842. }
  3843. return ""
  3844. }
  3845. func (x *ZSSellOrderListingReq) GetOrderSrc() uint32 {
  3846. if x != nil && x.OrderSrc != nil {
  3847. return *x.OrderSrc
  3848. }
  3849. return 0
  3850. }
  3851. func (x *ZSSellOrderListingReq) GetClientSerialNo() string {
  3852. if x != nil && x.ClientSerialNo != nil {
  3853. return *x.ClientSerialNo
  3854. }
  3855. return ""
  3856. }
  3857. func (x *ZSSellOrderListingReq) GetClientOrderTime() string {
  3858. if x != nil && x.ClientOrderTime != nil {
  3859. return *x.ClientOrderTime
  3860. }
  3861. return ""
  3862. }
  3863. func (x *ZSSellOrderListingReq) GetClientType() uint32 {
  3864. if x != nil && x.ClientType != nil {
  3865. return *x.ClientType
  3866. }
  3867. return 0
  3868. }
  3869. func (x *ZSSellOrderListingReq) GetMarketID() uint64 {
  3870. if x != nil && x.MarketID != nil {
  3871. return *x.MarketID
  3872. }
  3873. return 0
  3874. }
  3875. // 钻石卖挂牌接口响应
  3876. type ZSSellOrderListingRsp struct {
  3877. state protoimpl.MessageState
  3878. sizeCache protoimpl.SizeCache
  3879. unknownFields protoimpl.UnknownFields
  3880. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  3881. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  3882. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  3883. UserID *uint32 `protobuf:"varint,4,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  3884. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
  3885. WRTradeOrderID *uint64 `protobuf:"varint,6,opt,name=WRTradeOrderID" json:"WRTradeOrderID,omitempty"` // 仓单贸易委托单ID
  3886. FreezeQty *uint64 `protobuf:"varint,7,opt,name=FreezeQty" json:"FreezeQty,omitempty"` // 冻结数量
  3887. OrderTime *string `protobuf:"bytes,8,opt,name=OrderTime" json:"OrderTime,omitempty"` // 接收委托交易的时间
  3888. ClientSerialNo *string `protobuf:"bytes,9,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  3889. }
  3890. func (x *ZSSellOrderListingRsp) Reset() {
  3891. *x = ZSSellOrderListingRsp{}
  3892. if protoimpl.UnsafeEnabled {
  3893. mi := &file_mtp2_proto_msgTypes[41]
  3894. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3895. ms.StoreMessageInfo(mi)
  3896. }
  3897. }
  3898. func (x *ZSSellOrderListingRsp) String() string {
  3899. return protoimpl.X.MessageStringOf(x)
  3900. }
  3901. func (*ZSSellOrderListingRsp) ProtoMessage() {}
  3902. func (x *ZSSellOrderListingRsp) ProtoReflect() protoreflect.Message {
  3903. mi := &file_mtp2_proto_msgTypes[41]
  3904. if protoimpl.UnsafeEnabled && x != nil {
  3905. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3906. if ms.LoadMessageInfo() == nil {
  3907. ms.StoreMessageInfo(mi)
  3908. }
  3909. return ms
  3910. }
  3911. return mi.MessageOf(x)
  3912. }
  3913. // Deprecated: Use ZSSellOrderListingRsp.ProtoReflect.Descriptor instead.
  3914. func (*ZSSellOrderListingRsp) Descriptor() ([]byte, []int) {
  3915. return file_mtp2_proto_rawDescGZIP(), []int{41}
  3916. }
  3917. func (x *ZSSellOrderListingRsp) GetHeader() *MessageHead {
  3918. if x != nil {
  3919. return x.Header
  3920. }
  3921. return nil
  3922. }
  3923. func (x *ZSSellOrderListingRsp) GetRetCode() int32 {
  3924. if x != nil && x.RetCode != nil {
  3925. return *x.RetCode
  3926. }
  3927. return 0
  3928. }
  3929. func (x *ZSSellOrderListingRsp) GetRetDesc() string {
  3930. if x != nil && x.RetDesc != nil {
  3931. return *x.RetDesc
  3932. }
  3933. return ""
  3934. }
  3935. func (x *ZSSellOrderListingRsp) GetUserID() uint32 {
  3936. if x != nil && x.UserID != nil {
  3937. return *x.UserID
  3938. }
  3939. return 0
  3940. }
  3941. func (x *ZSSellOrderListingRsp) GetAccountID() uint64 {
  3942. if x != nil && x.AccountID != nil {
  3943. return *x.AccountID
  3944. }
  3945. return 0
  3946. }
  3947. func (x *ZSSellOrderListingRsp) GetWRTradeOrderID() uint64 {
  3948. if x != nil && x.WRTradeOrderID != nil {
  3949. return *x.WRTradeOrderID
  3950. }
  3951. return 0
  3952. }
  3953. func (x *ZSSellOrderListingRsp) GetFreezeQty() uint64 {
  3954. if x != nil && x.FreezeQty != nil {
  3955. return *x.FreezeQty
  3956. }
  3957. return 0
  3958. }
  3959. func (x *ZSSellOrderListingRsp) GetOrderTime() string {
  3960. if x != nil && x.OrderTime != nil {
  3961. return *x.OrderTime
  3962. }
  3963. return ""
  3964. }
  3965. func (x *ZSSellOrderListingRsp) GetClientSerialNo() string {
  3966. if x != nil && x.ClientSerialNo != nil {
  3967. return *x.ClientSerialNo
  3968. }
  3969. return ""
  3970. }
  3971. // 钻石买摘牌接口请求
  3972. type ZSBuyOrderDestingReq struct {
  3973. state protoimpl.MessageState
  3974. sizeCache protoimpl.SizeCache
  3975. unknownFields protoimpl.UnknownFields
  3976. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  3977. UserID *uint32 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  3978. AccountID *uint64 `protobuf:"varint,3,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号,必填
  3979. RelatedWRTradeOrderID *uint64 `protobuf:"varint,4,opt,name=RelatedWRTradeOrderID" json:"RelatedWRTradeOrderID,omitempty"` // 卖委托单号,必填
  3980. OrderQty *float64 `protobuf:"fixed64,5,opt,name=OrderQty" json:"OrderQty,omitempty"` // 委托数量,必填2位小数,为WeigthAvg的整数倍
  3981. OrderSrc *uint32 `protobuf:"varint,6,opt,name=OrderSrc" json:"OrderSrc,omitempty"` // 委托来源
  3982. ClientSerialNo *string `protobuf:"bytes,7,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  3983. ClientOrderTime *string `protobuf:"bytes,8,opt,name=ClientOrderTime" json:"ClientOrderTime,omitempty"` // 客户端委托时间
  3984. ClientType *uint32 `protobuf:"varint,9,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  3985. OperatorID *uint64 `protobuf:"varint,10,opt,name=OperatorID" json:"OperatorID,omitempty"` // 操作员账号ID
  3986. MarketID *uint64 `protobuf:"varint,11,opt,name=MarketID" json:"MarketID,omitempty"` // 市场ID,必填
  3987. }
  3988. func (x *ZSBuyOrderDestingReq) Reset() {
  3989. *x = ZSBuyOrderDestingReq{}
  3990. if protoimpl.UnsafeEnabled {
  3991. mi := &file_mtp2_proto_msgTypes[42]
  3992. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3993. ms.StoreMessageInfo(mi)
  3994. }
  3995. }
  3996. func (x *ZSBuyOrderDestingReq) String() string {
  3997. return protoimpl.X.MessageStringOf(x)
  3998. }
  3999. func (*ZSBuyOrderDestingReq) ProtoMessage() {}
  4000. func (x *ZSBuyOrderDestingReq) ProtoReflect() protoreflect.Message {
  4001. mi := &file_mtp2_proto_msgTypes[42]
  4002. if protoimpl.UnsafeEnabled && x != nil {
  4003. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4004. if ms.LoadMessageInfo() == nil {
  4005. ms.StoreMessageInfo(mi)
  4006. }
  4007. return ms
  4008. }
  4009. return mi.MessageOf(x)
  4010. }
  4011. // Deprecated: Use ZSBuyOrderDestingReq.ProtoReflect.Descriptor instead.
  4012. func (*ZSBuyOrderDestingReq) Descriptor() ([]byte, []int) {
  4013. return file_mtp2_proto_rawDescGZIP(), []int{42}
  4014. }
  4015. func (x *ZSBuyOrderDestingReq) GetHeader() *MessageHead {
  4016. if x != nil {
  4017. return x.Header
  4018. }
  4019. return nil
  4020. }
  4021. func (x *ZSBuyOrderDestingReq) GetUserID() uint32 {
  4022. if x != nil && x.UserID != nil {
  4023. return *x.UserID
  4024. }
  4025. return 0
  4026. }
  4027. func (x *ZSBuyOrderDestingReq) GetAccountID() uint64 {
  4028. if x != nil && x.AccountID != nil {
  4029. return *x.AccountID
  4030. }
  4031. return 0
  4032. }
  4033. func (x *ZSBuyOrderDestingReq) GetRelatedWRTradeOrderID() uint64 {
  4034. if x != nil && x.RelatedWRTradeOrderID != nil {
  4035. return *x.RelatedWRTradeOrderID
  4036. }
  4037. return 0
  4038. }
  4039. func (x *ZSBuyOrderDestingReq) GetOrderQty() float64 {
  4040. if x != nil && x.OrderQty != nil {
  4041. return *x.OrderQty
  4042. }
  4043. return 0
  4044. }
  4045. func (x *ZSBuyOrderDestingReq) GetOrderSrc() uint32 {
  4046. if x != nil && x.OrderSrc != nil {
  4047. return *x.OrderSrc
  4048. }
  4049. return 0
  4050. }
  4051. func (x *ZSBuyOrderDestingReq) GetClientSerialNo() string {
  4052. if x != nil && x.ClientSerialNo != nil {
  4053. return *x.ClientSerialNo
  4054. }
  4055. return ""
  4056. }
  4057. func (x *ZSBuyOrderDestingReq) GetClientOrderTime() string {
  4058. if x != nil && x.ClientOrderTime != nil {
  4059. return *x.ClientOrderTime
  4060. }
  4061. return ""
  4062. }
  4063. func (x *ZSBuyOrderDestingReq) GetClientType() uint32 {
  4064. if x != nil && x.ClientType != nil {
  4065. return *x.ClientType
  4066. }
  4067. return 0
  4068. }
  4069. func (x *ZSBuyOrderDestingReq) GetOperatorID() uint64 {
  4070. if x != nil && x.OperatorID != nil {
  4071. return *x.OperatorID
  4072. }
  4073. return 0
  4074. }
  4075. func (x *ZSBuyOrderDestingReq) GetMarketID() uint64 {
  4076. if x != nil && x.MarketID != nil {
  4077. return *x.MarketID
  4078. }
  4079. return 0
  4080. }
  4081. // 钻石买摘牌接口响应
  4082. type ZSBuyOrderDestingRsp struct {
  4083. state protoimpl.MessageState
  4084. sizeCache protoimpl.SizeCache
  4085. unknownFields protoimpl.UnknownFields
  4086. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  4087. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  4088. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  4089. UserID *uint32 `protobuf:"varint,4,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  4090. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
  4091. WRTradeOrderID *uint64 `protobuf:"varint,6,opt,name=WRTradeOrderID" json:"WRTradeOrderID,omitempty"` // 仓单贸易委托单ID
  4092. RelatedWRTradeOrderID *uint64 `protobuf:"varint,7,opt,name=RelatedWRTradeOrderID" json:"RelatedWRTradeOrderID,omitempty"` // 关联委托单号(摘牌委托关联挂牌委托单ID)
  4093. FreezeAmount *float64 `protobuf:"fixed64,8,opt,name=FreezeAmount" json:"FreezeAmount,omitempty"` // 冻结货款
  4094. OrderTime *string `protobuf:"bytes,9,opt,name=OrderTime" json:"OrderTime,omitempty"` // 接收委托交易的时间
  4095. ClientSerialNo *string `protobuf:"bytes,10,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  4096. }
  4097. func (x *ZSBuyOrderDestingRsp) Reset() {
  4098. *x = ZSBuyOrderDestingRsp{}
  4099. if protoimpl.UnsafeEnabled {
  4100. mi := &file_mtp2_proto_msgTypes[43]
  4101. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4102. ms.StoreMessageInfo(mi)
  4103. }
  4104. }
  4105. func (x *ZSBuyOrderDestingRsp) String() string {
  4106. return protoimpl.X.MessageStringOf(x)
  4107. }
  4108. func (*ZSBuyOrderDestingRsp) ProtoMessage() {}
  4109. func (x *ZSBuyOrderDestingRsp) ProtoReflect() protoreflect.Message {
  4110. mi := &file_mtp2_proto_msgTypes[43]
  4111. if protoimpl.UnsafeEnabled && x != nil {
  4112. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4113. if ms.LoadMessageInfo() == nil {
  4114. ms.StoreMessageInfo(mi)
  4115. }
  4116. return ms
  4117. }
  4118. return mi.MessageOf(x)
  4119. }
  4120. // Deprecated: Use ZSBuyOrderDestingRsp.ProtoReflect.Descriptor instead.
  4121. func (*ZSBuyOrderDestingRsp) Descriptor() ([]byte, []int) {
  4122. return file_mtp2_proto_rawDescGZIP(), []int{43}
  4123. }
  4124. func (x *ZSBuyOrderDestingRsp) GetHeader() *MessageHead {
  4125. if x != nil {
  4126. return x.Header
  4127. }
  4128. return nil
  4129. }
  4130. func (x *ZSBuyOrderDestingRsp) GetRetCode() int32 {
  4131. if x != nil && x.RetCode != nil {
  4132. return *x.RetCode
  4133. }
  4134. return 0
  4135. }
  4136. func (x *ZSBuyOrderDestingRsp) GetRetDesc() string {
  4137. if x != nil && x.RetDesc != nil {
  4138. return *x.RetDesc
  4139. }
  4140. return ""
  4141. }
  4142. func (x *ZSBuyOrderDestingRsp) GetUserID() uint32 {
  4143. if x != nil && x.UserID != nil {
  4144. return *x.UserID
  4145. }
  4146. return 0
  4147. }
  4148. func (x *ZSBuyOrderDestingRsp) GetAccountID() uint64 {
  4149. if x != nil && x.AccountID != nil {
  4150. return *x.AccountID
  4151. }
  4152. return 0
  4153. }
  4154. func (x *ZSBuyOrderDestingRsp) GetWRTradeOrderID() uint64 {
  4155. if x != nil && x.WRTradeOrderID != nil {
  4156. return *x.WRTradeOrderID
  4157. }
  4158. return 0
  4159. }
  4160. func (x *ZSBuyOrderDestingRsp) GetRelatedWRTradeOrderID() uint64 {
  4161. if x != nil && x.RelatedWRTradeOrderID != nil {
  4162. return *x.RelatedWRTradeOrderID
  4163. }
  4164. return 0
  4165. }
  4166. func (x *ZSBuyOrderDestingRsp) GetFreezeAmount() float64 {
  4167. if x != nil && x.FreezeAmount != nil {
  4168. return *x.FreezeAmount
  4169. }
  4170. return 0
  4171. }
  4172. func (x *ZSBuyOrderDestingRsp) GetOrderTime() string {
  4173. if x != nil && x.OrderTime != nil {
  4174. return *x.OrderTime
  4175. }
  4176. return ""
  4177. }
  4178. func (x *ZSBuyOrderDestingRsp) GetClientSerialNo() string {
  4179. if x != nil && x.ClientSerialNo != nil {
  4180. return *x.ClientSerialNo
  4181. }
  4182. return ""
  4183. }
  4184. // 钻石卖摘牌申请接口请求
  4185. type ZSSellOrderDestingApplyReq struct {
  4186. state protoimpl.MessageState
  4187. sizeCache protoimpl.SizeCache
  4188. unknownFields protoimpl.UnknownFields
  4189. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  4190. UserID *uint64 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  4191. AccountID *uint64 `protobuf:"varint,3,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账户ID,必填
  4192. BuyWRTradeOrderID *uint64 `protobuf:"varint,4,opt,name=BuyWRTradeOrderID" json:"BuyWRTradeOrderID,omitempty"` // 买挂牌委托单ID,必填
  4193. WRStandardID *uint64 `protobuf:"varint,5,opt,name=WRStandardID" json:"WRStandardID,omitempty"` // 现货商品ID,必填
  4194. WRFactorTypeID *uint64 `protobuf:"varint,6,opt,name=WRFactorTypeID" json:"WRFactorTypeID,omitempty"` // 仓单要素类型ID,必填
  4195. ApplyQty *float64 `protobuf:"fixed64,7,opt,name=ApplyQty" json:"ApplyQty,omitempty"` // 申请数量,必填,2位小数
  4196. ApplyPrice *float64 `protobuf:"fixed64,8,opt,name=ApplyPrice" json:"ApplyPrice,omitempty"` // 申请价格,必填,2位小数
  4197. LadingBillID *uint64 `protobuf:"varint,9,opt,name=LadingBillID" json:"LadingBillID,omitempty"` // 提单ID,必填
  4198. SubNum *uint32 `protobuf:"varint,10,opt,name=SubNum" json:"SubNum,omitempty"` // 提单子单号,必填
  4199. ApplyRemark *string `protobuf:"bytes,11,opt,name=ApplyRemark" json:"ApplyRemark,omitempty"` // 备注
  4200. ClientType *uint32 `protobuf:"varint,12,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  4201. ClientSerialNo *string `protobuf:"bytes,13,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  4202. MarketID *uint64 `protobuf:"varint,14,opt,name=MarketID" json:"MarketID,omitempty"` // 市场ID,必填
  4203. }
  4204. func (x *ZSSellOrderDestingApplyReq) Reset() {
  4205. *x = ZSSellOrderDestingApplyReq{}
  4206. if protoimpl.UnsafeEnabled {
  4207. mi := &file_mtp2_proto_msgTypes[44]
  4208. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4209. ms.StoreMessageInfo(mi)
  4210. }
  4211. }
  4212. func (x *ZSSellOrderDestingApplyReq) String() string {
  4213. return protoimpl.X.MessageStringOf(x)
  4214. }
  4215. func (*ZSSellOrderDestingApplyReq) ProtoMessage() {}
  4216. func (x *ZSSellOrderDestingApplyReq) ProtoReflect() protoreflect.Message {
  4217. mi := &file_mtp2_proto_msgTypes[44]
  4218. if protoimpl.UnsafeEnabled && x != nil {
  4219. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4220. if ms.LoadMessageInfo() == nil {
  4221. ms.StoreMessageInfo(mi)
  4222. }
  4223. return ms
  4224. }
  4225. return mi.MessageOf(x)
  4226. }
  4227. // Deprecated: Use ZSSellOrderDestingApplyReq.ProtoReflect.Descriptor instead.
  4228. func (*ZSSellOrderDestingApplyReq) Descriptor() ([]byte, []int) {
  4229. return file_mtp2_proto_rawDescGZIP(), []int{44}
  4230. }
  4231. func (x *ZSSellOrderDestingApplyReq) GetHeader() *MessageHead {
  4232. if x != nil {
  4233. return x.Header
  4234. }
  4235. return nil
  4236. }
  4237. func (x *ZSSellOrderDestingApplyReq) GetUserID() uint64 {
  4238. if x != nil && x.UserID != nil {
  4239. return *x.UserID
  4240. }
  4241. return 0
  4242. }
  4243. func (x *ZSSellOrderDestingApplyReq) GetAccountID() uint64 {
  4244. if x != nil && x.AccountID != nil {
  4245. return *x.AccountID
  4246. }
  4247. return 0
  4248. }
  4249. func (x *ZSSellOrderDestingApplyReq) GetBuyWRTradeOrderID() uint64 {
  4250. if x != nil && x.BuyWRTradeOrderID != nil {
  4251. return *x.BuyWRTradeOrderID
  4252. }
  4253. return 0
  4254. }
  4255. func (x *ZSSellOrderDestingApplyReq) GetWRStandardID() uint64 {
  4256. if x != nil && x.WRStandardID != nil {
  4257. return *x.WRStandardID
  4258. }
  4259. return 0
  4260. }
  4261. func (x *ZSSellOrderDestingApplyReq) GetWRFactorTypeID() uint64 {
  4262. if x != nil && x.WRFactorTypeID != nil {
  4263. return *x.WRFactorTypeID
  4264. }
  4265. return 0
  4266. }
  4267. func (x *ZSSellOrderDestingApplyReq) GetApplyQty() float64 {
  4268. if x != nil && x.ApplyQty != nil {
  4269. return *x.ApplyQty
  4270. }
  4271. return 0
  4272. }
  4273. func (x *ZSSellOrderDestingApplyReq) GetApplyPrice() float64 {
  4274. if x != nil && x.ApplyPrice != nil {
  4275. return *x.ApplyPrice
  4276. }
  4277. return 0
  4278. }
  4279. func (x *ZSSellOrderDestingApplyReq) GetLadingBillID() uint64 {
  4280. if x != nil && x.LadingBillID != nil {
  4281. return *x.LadingBillID
  4282. }
  4283. return 0
  4284. }
  4285. func (x *ZSSellOrderDestingApplyReq) GetSubNum() uint32 {
  4286. if x != nil && x.SubNum != nil {
  4287. return *x.SubNum
  4288. }
  4289. return 0
  4290. }
  4291. func (x *ZSSellOrderDestingApplyReq) GetApplyRemark() string {
  4292. if x != nil && x.ApplyRemark != nil {
  4293. return *x.ApplyRemark
  4294. }
  4295. return ""
  4296. }
  4297. func (x *ZSSellOrderDestingApplyReq) GetClientType() uint32 {
  4298. if x != nil && x.ClientType != nil {
  4299. return *x.ClientType
  4300. }
  4301. return 0
  4302. }
  4303. func (x *ZSSellOrderDestingApplyReq) GetClientSerialNo() string {
  4304. if x != nil && x.ClientSerialNo != nil {
  4305. return *x.ClientSerialNo
  4306. }
  4307. return ""
  4308. }
  4309. func (x *ZSSellOrderDestingApplyReq) GetMarketID() uint64 {
  4310. if x != nil && x.MarketID != nil {
  4311. return *x.MarketID
  4312. }
  4313. return 0
  4314. }
  4315. // 钻石卖摘牌申请接口响应
  4316. type ZSSellOrderDestingApplyRsp struct {
  4317. state protoimpl.MessageState
  4318. sizeCache protoimpl.SizeCache
  4319. unknownFields protoimpl.UnknownFields
  4320. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  4321. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  4322. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  4323. UserID *uint32 `protobuf:"varint,4,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  4324. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
  4325. ApplyID *uint64 `protobuf:"varint,6,opt,name=ApplyID" json:"ApplyID,omitempty"` // 仓单贸易委托单ID
  4326. ClientSerialNo *string `protobuf:"bytes,7,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  4327. }
  4328. func (x *ZSSellOrderDestingApplyRsp) Reset() {
  4329. *x = ZSSellOrderDestingApplyRsp{}
  4330. if protoimpl.UnsafeEnabled {
  4331. mi := &file_mtp2_proto_msgTypes[45]
  4332. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4333. ms.StoreMessageInfo(mi)
  4334. }
  4335. }
  4336. func (x *ZSSellOrderDestingApplyRsp) String() string {
  4337. return protoimpl.X.MessageStringOf(x)
  4338. }
  4339. func (*ZSSellOrderDestingApplyRsp) ProtoMessage() {}
  4340. func (x *ZSSellOrderDestingApplyRsp) ProtoReflect() protoreflect.Message {
  4341. mi := &file_mtp2_proto_msgTypes[45]
  4342. if protoimpl.UnsafeEnabled && x != nil {
  4343. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4344. if ms.LoadMessageInfo() == nil {
  4345. ms.StoreMessageInfo(mi)
  4346. }
  4347. return ms
  4348. }
  4349. return mi.MessageOf(x)
  4350. }
  4351. // Deprecated: Use ZSSellOrderDestingApplyRsp.ProtoReflect.Descriptor instead.
  4352. func (*ZSSellOrderDestingApplyRsp) Descriptor() ([]byte, []int) {
  4353. return file_mtp2_proto_rawDescGZIP(), []int{45}
  4354. }
  4355. func (x *ZSSellOrderDestingApplyRsp) GetHeader() *MessageHead {
  4356. if x != nil {
  4357. return x.Header
  4358. }
  4359. return nil
  4360. }
  4361. func (x *ZSSellOrderDestingApplyRsp) GetRetCode() int32 {
  4362. if x != nil && x.RetCode != nil {
  4363. return *x.RetCode
  4364. }
  4365. return 0
  4366. }
  4367. func (x *ZSSellOrderDestingApplyRsp) GetRetDesc() string {
  4368. if x != nil && x.RetDesc != nil {
  4369. return *x.RetDesc
  4370. }
  4371. return ""
  4372. }
  4373. func (x *ZSSellOrderDestingApplyRsp) GetUserID() uint32 {
  4374. if x != nil && x.UserID != nil {
  4375. return *x.UserID
  4376. }
  4377. return 0
  4378. }
  4379. func (x *ZSSellOrderDestingApplyRsp) GetAccountID() uint64 {
  4380. if x != nil && x.AccountID != nil {
  4381. return *x.AccountID
  4382. }
  4383. return 0
  4384. }
  4385. func (x *ZSSellOrderDestingApplyRsp) GetApplyID() uint64 {
  4386. if x != nil && x.ApplyID != nil {
  4387. return *x.ApplyID
  4388. }
  4389. return 0
  4390. }
  4391. func (x *ZSSellOrderDestingApplyRsp) GetClientSerialNo() string {
  4392. if x != nil && x.ClientSerialNo != nil {
  4393. return *x.ClientSerialNo
  4394. }
  4395. return ""
  4396. }
  4397. // 钻石卖摘牌申请操作接口请求
  4398. type ZSSellOrderDestingApplyOperateReq struct {
  4399. state protoimpl.MessageState
  4400. sizeCache protoimpl.SizeCache
  4401. unknownFields protoimpl.UnknownFields
  4402. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  4403. UserID *uint32 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  4404. AccountID *uint64 `protobuf:"varint,3,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
  4405. SellDelistingApplyID *uint64 `protobuf:"varint,4,opt,name=SellDelistingApplyID" json:"SellDelistingApplyID,omitempty"` // 卖摘牌申请ID,必填
  4406. AuditRemark *string `protobuf:"bytes,5,opt,name=AuditRemark" json:"AuditRemark,omitempty"` // 备注
  4407. OperateType *uint32 `protobuf:"varint,6,opt,name=OperateType" json:"OperateType,omitempty"` // 操作类型,1:撤销2:拒绝
  4408. MarketID *uint32 `protobuf:"varint,7,opt,name=MarketID" json:"MarketID,omitempty"` // 市场ID,必填
  4409. ClientType *uint32 `protobuf:"varint,8,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  4410. OrderSrc *uint32 `protobuf:"varint,9,opt,name=OrderSrc" json:"OrderSrc,omitempty"` // 委托来源
  4411. ClientSerialNo *string `protobuf:"bytes,10,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  4412. }
  4413. func (x *ZSSellOrderDestingApplyOperateReq) Reset() {
  4414. *x = ZSSellOrderDestingApplyOperateReq{}
  4415. if protoimpl.UnsafeEnabled {
  4416. mi := &file_mtp2_proto_msgTypes[46]
  4417. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4418. ms.StoreMessageInfo(mi)
  4419. }
  4420. }
  4421. func (x *ZSSellOrderDestingApplyOperateReq) String() string {
  4422. return protoimpl.X.MessageStringOf(x)
  4423. }
  4424. func (*ZSSellOrderDestingApplyOperateReq) ProtoMessage() {}
  4425. func (x *ZSSellOrderDestingApplyOperateReq) ProtoReflect() protoreflect.Message {
  4426. mi := &file_mtp2_proto_msgTypes[46]
  4427. if protoimpl.UnsafeEnabled && x != nil {
  4428. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4429. if ms.LoadMessageInfo() == nil {
  4430. ms.StoreMessageInfo(mi)
  4431. }
  4432. return ms
  4433. }
  4434. return mi.MessageOf(x)
  4435. }
  4436. // Deprecated: Use ZSSellOrderDestingApplyOperateReq.ProtoReflect.Descriptor instead.
  4437. func (*ZSSellOrderDestingApplyOperateReq) Descriptor() ([]byte, []int) {
  4438. return file_mtp2_proto_rawDescGZIP(), []int{46}
  4439. }
  4440. func (x *ZSSellOrderDestingApplyOperateReq) GetHeader() *MessageHead {
  4441. if x != nil {
  4442. return x.Header
  4443. }
  4444. return nil
  4445. }
  4446. func (x *ZSSellOrderDestingApplyOperateReq) GetUserID() uint32 {
  4447. if x != nil && x.UserID != nil {
  4448. return *x.UserID
  4449. }
  4450. return 0
  4451. }
  4452. func (x *ZSSellOrderDestingApplyOperateReq) GetAccountID() uint64 {
  4453. if x != nil && x.AccountID != nil {
  4454. return *x.AccountID
  4455. }
  4456. return 0
  4457. }
  4458. func (x *ZSSellOrderDestingApplyOperateReq) GetSellDelistingApplyID() uint64 {
  4459. if x != nil && x.SellDelistingApplyID != nil {
  4460. return *x.SellDelistingApplyID
  4461. }
  4462. return 0
  4463. }
  4464. func (x *ZSSellOrderDestingApplyOperateReq) GetAuditRemark() string {
  4465. if x != nil && x.AuditRemark != nil {
  4466. return *x.AuditRemark
  4467. }
  4468. return ""
  4469. }
  4470. func (x *ZSSellOrderDestingApplyOperateReq) GetOperateType() uint32 {
  4471. if x != nil && x.OperateType != nil {
  4472. return *x.OperateType
  4473. }
  4474. return 0
  4475. }
  4476. func (x *ZSSellOrderDestingApplyOperateReq) GetMarketID() uint32 {
  4477. if x != nil && x.MarketID != nil {
  4478. return *x.MarketID
  4479. }
  4480. return 0
  4481. }
  4482. func (x *ZSSellOrderDestingApplyOperateReq) GetClientType() uint32 {
  4483. if x != nil && x.ClientType != nil {
  4484. return *x.ClientType
  4485. }
  4486. return 0
  4487. }
  4488. func (x *ZSSellOrderDestingApplyOperateReq) GetOrderSrc() uint32 {
  4489. if x != nil && x.OrderSrc != nil {
  4490. return *x.OrderSrc
  4491. }
  4492. return 0
  4493. }
  4494. func (x *ZSSellOrderDestingApplyOperateReq) GetClientSerialNo() string {
  4495. if x != nil && x.ClientSerialNo != nil {
  4496. return *x.ClientSerialNo
  4497. }
  4498. return ""
  4499. }
  4500. // 钻石卖摘牌申请操作接口应答
  4501. type ZSSellOrderDestingApplyOperateRsp struct {
  4502. state protoimpl.MessageState
  4503. sizeCache protoimpl.SizeCache
  4504. unknownFields protoimpl.UnknownFields
  4505. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  4506. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  4507. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  4508. UserID *uint32 `protobuf:"varint,4,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  4509. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
  4510. SellDelistingApplyID *uint64 `protobuf:"varint,6,opt,name=SellDelistingApplyID" json:"SellDelistingApplyID,omitempty"` // 卖摘牌申请ID
  4511. WRTradeOrderID *uint64 `protobuf:"varint,7,opt,name=WRTradeOrderID" json:"WRTradeOrderID,omitempty"` // 仓单贸易委托单ID
  4512. FreezeAmount *float64 `protobuf:"fixed64,8,opt,name=FreezeAmount" json:"FreezeAmount,omitempty"` // 冻结货款
  4513. OrderTime *string `protobuf:"bytes,9,opt,name=OrderTime" json:"OrderTime,omitempty"` // 接收委托交易的时间
  4514. ClientSerialNo *string `protobuf:"bytes,10,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  4515. }
  4516. func (x *ZSSellOrderDestingApplyOperateRsp) Reset() {
  4517. *x = ZSSellOrderDestingApplyOperateRsp{}
  4518. if protoimpl.UnsafeEnabled {
  4519. mi := &file_mtp2_proto_msgTypes[47]
  4520. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4521. ms.StoreMessageInfo(mi)
  4522. }
  4523. }
  4524. func (x *ZSSellOrderDestingApplyOperateRsp) String() string {
  4525. return protoimpl.X.MessageStringOf(x)
  4526. }
  4527. func (*ZSSellOrderDestingApplyOperateRsp) ProtoMessage() {}
  4528. func (x *ZSSellOrderDestingApplyOperateRsp) ProtoReflect() protoreflect.Message {
  4529. mi := &file_mtp2_proto_msgTypes[47]
  4530. if protoimpl.UnsafeEnabled && x != nil {
  4531. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4532. if ms.LoadMessageInfo() == nil {
  4533. ms.StoreMessageInfo(mi)
  4534. }
  4535. return ms
  4536. }
  4537. return mi.MessageOf(x)
  4538. }
  4539. // Deprecated: Use ZSSellOrderDestingApplyOperateRsp.ProtoReflect.Descriptor instead.
  4540. func (*ZSSellOrderDestingApplyOperateRsp) Descriptor() ([]byte, []int) {
  4541. return file_mtp2_proto_rawDescGZIP(), []int{47}
  4542. }
  4543. func (x *ZSSellOrderDestingApplyOperateRsp) GetHeader() *MessageHead {
  4544. if x != nil {
  4545. return x.Header
  4546. }
  4547. return nil
  4548. }
  4549. func (x *ZSSellOrderDestingApplyOperateRsp) GetRetCode() int32 {
  4550. if x != nil && x.RetCode != nil {
  4551. return *x.RetCode
  4552. }
  4553. return 0
  4554. }
  4555. func (x *ZSSellOrderDestingApplyOperateRsp) GetRetDesc() string {
  4556. if x != nil && x.RetDesc != nil {
  4557. return *x.RetDesc
  4558. }
  4559. return ""
  4560. }
  4561. func (x *ZSSellOrderDestingApplyOperateRsp) GetUserID() uint32 {
  4562. if x != nil && x.UserID != nil {
  4563. return *x.UserID
  4564. }
  4565. return 0
  4566. }
  4567. func (x *ZSSellOrderDestingApplyOperateRsp) GetAccountID() uint64 {
  4568. if x != nil && x.AccountID != nil {
  4569. return *x.AccountID
  4570. }
  4571. return 0
  4572. }
  4573. func (x *ZSSellOrderDestingApplyOperateRsp) GetSellDelistingApplyID() uint64 {
  4574. if x != nil && x.SellDelistingApplyID != nil {
  4575. return *x.SellDelistingApplyID
  4576. }
  4577. return 0
  4578. }
  4579. func (x *ZSSellOrderDestingApplyOperateRsp) GetWRTradeOrderID() uint64 {
  4580. if x != nil && x.WRTradeOrderID != nil {
  4581. return *x.WRTradeOrderID
  4582. }
  4583. return 0
  4584. }
  4585. func (x *ZSSellOrderDestingApplyOperateRsp) GetFreezeAmount() float64 {
  4586. if x != nil && x.FreezeAmount != nil {
  4587. return *x.FreezeAmount
  4588. }
  4589. return 0
  4590. }
  4591. func (x *ZSSellOrderDestingApplyOperateRsp) GetOrderTime() string {
  4592. if x != nil && x.OrderTime != nil {
  4593. return *x.OrderTime
  4594. }
  4595. return ""
  4596. }
  4597. func (x *ZSSellOrderDestingApplyOperateRsp) GetClientSerialNo() string {
  4598. if x != nil && x.ClientSerialNo != nil {
  4599. return *x.ClientSerialNo
  4600. }
  4601. return ""
  4602. }
  4603. // 买摘牌询价接口请求
  4604. type ZSBuyOrderDestingNegPriceReq struct {
  4605. state protoimpl.MessageState
  4606. sizeCache protoimpl.SizeCache
  4607. unknownFields protoimpl.UnknownFields
  4608. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  4609. UserID *uint32 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  4610. AccountID *uint64 `protobuf:"varint,3,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号,必填
  4611. RelatedOrderID *uint64 `protobuf:"varint,4,opt,name=RelatedOrderID" json:"RelatedOrderID,omitempty"` // 卖委托单号,必填
  4612. OrderQty *float64 `protobuf:"fixed64,5,opt,name=OrderQty" json:"OrderQty,omitempty"` // 议价数量,2位小数,必填
  4613. ApplyPrice *float64 `protobuf:"fixed64,6,opt,name=ApplyPrice" json:"ApplyPrice,omitempty"` // 协议价格,2位小数,必填
  4614. OrderSrc *uint32 `protobuf:"varint,7,opt,name=OrderSrc" json:"OrderSrc,omitempty"` // 委托来源
  4615. ClientSerialNo *string `protobuf:"bytes,8,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  4616. ClientOrderTime *string `protobuf:"bytes,9,opt,name=ClientOrderTime" json:"ClientOrderTime,omitempty"` // 客户端委托时间
  4617. ClientType *uint32 `protobuf:"varint,10,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  4618. OperatorID *uint64 `protobuf:"varint,11,opt,name=OperatorID" json:"OperatorID,omitempty"` // 操作员账号ID
  4619. MarketID *uint32 `protobuf:"varint,12,opt,name=MarketID" json:"MarketID,omitempty"` // 市场ID,必填
  4620. ApplyRemark *string `protobuf:"bytes,13,opt,name=ApplyRemark" json:"ApplyRemark,omitempty"` // 申请备注
  4621. }
  4622. func (x *ZSBuyOrderDestingNegPriceReq) Reset() {
  4623. *x = ZSBuyOrderDestingNegPriceReq{}
  4624. if protoimpl.UnsafeEnabled {
  4625. mi := &file_mtp2_proto_msgTypes[48]
  4626. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4627. ms.StoreMessageInfo(mi)
  4628. }
  4629. }
  4630. func (x *ZSBuyOrderDestingNegPriceReq) String() string {
  4631. return protoimpl.X.MessageStringOf(x)
  4632. }
  4633. func (*ZSBuyOrderDestingNegPriceReq) ProtoMessage() {}
  4634. func (x *ZSBuyOrderDestingNegPriceReq) ProtoReflect() protoreflect.Message {
  4635. mi := &file_mtp2_proto_msgTypes[48]
  4636. if protoimpl.UnsafeEnabled && x != nil {
  4637. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4638. if ms.LoadMessageInfo() == nil {
  4639. ms.StoreMessageInfo(mi)
  4640. }
  4641. return ms
  4642. }
  4643. return mi.MessageOf(x)
  4644. }
  4645. // Deprecated: Use ZSBuyOrderDestingNegPriceReq.ProtoReflect.Descriptor instead.
  4646. func (*ZSBuyOrderDestingNegPriceReq) Descriptor() ([]byte, []int) {
  4647. return file_mtp2_proto_rawDescGZIP(), []int{48}
  4648. }
  4649. func (x *ZSBuyOrderDestingNegPriceReq) GetHeader() *MessageHead {
  4650. if x != nil {
  4651. return x.Header
  4652. }
  4653. return nil
  4654. }
  4655. func (x *ZSBuyOrderDestingNegPriceReq) GetUserID() uint32 {
  4656. if x != nil && x.UserID != nil {
  4657. return *x.UserID
  4658. }
  4659. return 0
  4660. }
  4661. func (x *ZSBuyOrderDestingNegPriceReq) GetAccountID() uint64 {
  4662. if x != nil && x.AccountID != nil {
  4663. return *x.AccountID
  4664. }
  4665. return 0
  4666. }
  4667. func (x *ZSBuyOrderDestingNegPriceReq) GetRelatedOrderID() uint64 {
  4668. if x != nil && x.RelatedOrderID != nil {
  4669. return *x.RelatedOrderID
  4670. }
  4671. return 0
  4672. }
  4673. func (x *ZSBuyOrderDestingNegPriceReq) GetOrderQty() float64 {
  4674. if x != nil && x.OrderQty != nil {
  4675. return *x.OrderQty
  4676. }
  4677. return 0
  4678. }
  4679. func (x *ZSBuyOrderDestingNegPriceReq) GetApplyPrice() float64 {
  4680. if x != nil && x.ApplyPrice != nil {
  4681. return *x.ApplyPrice
  4682. }
  4683. return 0
  4684. }
  4685. func (x *ZSBuyOrderDestingNegPriceReq) GetOrderSrc() uint32 {
  4686. if x != nil && x.OrderSrc != nil {
  4687. return *x.OrderSrc
  4688. }
  4689. return 0
  4690. }
  4691. func (x *ZSBuyOrderDestingNegPriceReq) GetClientSerialNo() string {
  4692. if x != nil && x.ClientSerialNo != nil {
  4693. return *x.ClientSerialNo
  4694. }
  4695. return ""
  4696. }
  4697. func (x *ZSBuyOrderDestingNegPriceReq) GetClientOrderTime() string {
  4698. if x != nil && x.ClientOrderTime != nil {
  4699. return *x.ClientOrderTime
  4700. }
  4701. return ""
  4702. }
  4703. func (x *ZSBuyOrderDestingNegPriceReq) GetClientType() uint32 {
  4704. if x != nil && x.ClientType != nil {
  4705. return *x.ClientType
  4706. }
  4707. return 0
  4708. }
  4709. func (x *ZSBuyOrderDestingNegPriceReq) GetOperatorID() uint64 {
  4710. if x != nil && x.OperatorID != nil {
  4711. return *x.OperatorID
  4712. }
  4713. return 0
  4714. }
  4715. func (x *ZSBuyOrderDestingNegPriceReq) GetMarketID() uint32 {
  4716. if x != nil && x.MarketID != nil {
  4717. return *x.MarketID
  4718. }
  4719. return 0
  4720. }
  4721. func (x *ZSBuyOrderDestingNegPriceReq) GetApplyRemark() string {
  4722. if x != nil && x.ApplyRemark != nil {
  4723. return *x.ApplyRemark
  4724. }
  4725. return ""
  4726. }
  4727. // 买摘牌询价接口应答
  4728. type ZSBuyOrderDestingNegPriceRsp struct {
  4729. state protoimpl.MessageState
  4730. sizeCache protoimpl.SizeCache
  4731. unknownFields protoimpl.UnknownFields
  4732. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  4733. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  4734. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  4735. UserID *uint32 `protobuf:"varint,4,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  4736. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
  4737. WRTradeOrderID *uint64 `protobuf:"varint,6,opt,name=WRTradeOrderID" json:"WRTradeOrderID,omitempty"` // 摘牌委托单ID
  4738. WRBargainID *uint64 `protobuf:"varint,7,opt,name=WRBargainID" json:"WRBargainID,omitempty"` // 议价申请单ID
  4739. OrderTime *string `protobuf:"bytes,8,opt,name=OrderTime" json:"OrderTime,omitempty"` // 接收委托交易的时间
  4740. ClientSerialNo *string `protobuf:"bytes,9,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  4741. }
  4742. func (x *ZSBuyOrderDestingNegPriceRsp) Reset() {
  4743. *x = ZSBuyOrderDestingNegPriceRsp{}
  4744. if protoimpl.UnsafeEnabled {
  4745. mi := &file_mtp2_proto_msgTypes[49]
  4746. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4747. ms.StoreMessageInfo(mi)
  4748. }
  4749. }
  4750. func (x *ZSBuyOrderDestingNegPriceRsp) String() string {
  4751. return protoimpl.X.MessageStringOf(x)
  4752. }
  4753. func (*ZSBuyOrderDestingNegPriceRsp) ProtoMessage() {}
  4754. func (x *ZSBuyOrderDestingNegPriceRsp) ProtoReflect() protoreflect.Message {
  4755. mi := &file_mtp2_proto_msgTypes[49]
  4756. if protoimpl.UnsafeEnabled && x != nil {
  4757. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4758. if ms.LoadMessageInfo() == nil {
  4759. ms.StoreMessageInfo(mi)
  4760. }
  4761. return ms
  4762. }
  4763. return mi.MessageOf(x)
  4764. }
  4765. // Deprecated: Use ZSBuyOrderDestingNegPriceRsp.ProtoReflect.Descriptor instead.
  4766. func (*ZSBuyOrderDestingNegPriceRsp) Descriptor() ([]byte, []int) {
  4767. return file_mtp2_proto_rawDescGZIP(), []int{49}
  4768. }
  4769. func (x *ZSBuyOrderDestingNegPriceRsp) GetHeader() *MessageHead {
  4770. if x != nil {
  4771. return x.Header
  4772. }
  4773. return nil
  4774. }
  4775. func (x *ZSBuyOrderDestingNegPriceRsp) GetRetCode() int32 {
  4776. if x != nil && x.RetCode != nil {
  4777. return *x.RetCode
  4778. }
  4779. return 0
  4780. }
  4781. func (x *ZSBuyOrderDestingNegPriceRsp) GetRetDesc() string {
  4782. if x != nil && x.RetDesc != nil {
  4783. return *x.RetDesc
  4784. }
  4785. return ""
  4786. }
  4787. func (x *ZSBuyOrderDestingNegPriceRsp) GetUserID() uint32 {
  4788. if x != nil && x.UserID != nil {
  4789. return *x.UserID
  4790. }
  4791. return 0
  4792. }
  4793. func (x *ZSBuyOrderDestingNegPriceRsp) GetAccountID() uint64 {
  4794. if x != nil && x.AccountID != nil {
  4795. return *x.AccountID
  4796. }
  4797. return 0
  4798. }
  4799. func (x *ZSBuyOrderDestingNegPriceRsp) GetWRTradeOrderID() uint64 {
  4800. if x != nil && x.WRTradeOrderID != nil {
  4801. return *x.WRTradeOrderID
  4802. }
  4803. return 0
  4804. }
  4805. func (x *ZSBuyOrderDestingNegPriceRsp) GetWRBargainID() uint64 {
  4806. if x != nil && x.WRBargainID != nil {
  4807. return *x.WRBargainID
  4808. }
  4809. return 0
  4810. }
  4811. func (x *ZSBuyOrderDestingNegPriceRsp) GetOrderTime() string {
  4812. if x != nil && x.OrderTime != nil {
  4813. return *x.OrderTime
  4814. }
  4815. return ""
  4816. }
  4817. func (x *ZSBuyOrderDestingNegPriceRsp) GetClientSerialNo() string {
  4818. if x != nil && x.ClientSerialNo != nil {
  4819. return *x.ClientSerialNo
  4820. }
  4821. return ""
  4822. }
  4823. // 买摘牌询价操作接口请求
  4824. type ZSBuyOrderDestingNegPriceOperateReq struct {
  4825. state protoimpl.MessageState
  4826. sizeCache protoimpl.SizeCache
  4827. unknownFields protoimpl.UnknownFields
  4828. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  4829. UserID *uint32 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  4830. AccountID *uint64 `protobuf:"varint,3,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号,必填
  4831. WRBargainID *uint64 `protobuf:"varint,4,opt,name=WRBargainID" json:"WRBargainID,omitempty"` // 议价申请单ID,必填
  4832. AuditRemark *string `protobuf:"bytes,5,opt,name=AuditRemark" json:"AuditRemark,omitempty"` // 备注
  4833. OperateType *uint32 `protobuf:"varint,6,opt,name=OperateType" json:"OperateType,omitempty"` // 操作类型,1:撤销2:拒绝
  4834. MarketID *uint32 `protobuf:"varint,7,opt,name=MarketID" json:"MarketID,omitempty"` // 市场ID,必填
  4835. ClientType *uint32 `protobuf:"varint,8,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  4836. OrderSrc *uint32 `protobuf:"varint,9,opt,name=OrderSrc" json:"OrderSrc,omitempty"` // 委托来源
  4837. ClientSerialNo *string `protobuf:"bytes,10,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  4838. }
  4839. func (x *ZSBuyOrderDestingNegPriceOperateReq) Reset() {
  4840. *x = ZSBuyOrderDestingNegPriceOperateReq{}
  4841. if protoimpl.UnsafeEnabled {
  4842. mi := &file_mtp2_proto_msgTypes[50]
  4843. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4844. ms.StoreMessageInfo(mi)
  4845. }
  4846. }
  4847. func (x *ZSBuyOrderDestingNegPriceOperateReq) String() string {
  4848. return protoimpl.X.MessageStringOf(x)
  4849. }
  4850. func (*ZSBuyOrderDestingNegPriceOperateReq) ProtoMessage() {}
  4851. func (x *ZSBuyOrderDestingNegPriceOperateReq) ProtoReflect() protoreflect.Message {
  4852. mi := &file_mtp2_proto_msgTypes[50]
  4853. if protoimpl.UnsafeEnabled && x != nil {
  4854. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4855. if ms.LoadMessageInfo() == nil {
  4856. ms.StoreMessageInfo(mi)
  4857. }
  4858. return ms
  4859. }
  4860. return mi.MessageOf(x)
  4861. }
  4862. // Deprecated: Use ZSBuyOrderDestingNegPriceOperateReq.ProtoReflect.Descriptor instead.
  4863. func (*ZSBuyOrderDestingNegPriceOperateReq) Descriptor() ([]byte, []int) {
  4864. return file_mtp2_proto_rawDescGZIP(), []int{50}
  4865. }
  4866. func (x *ZSBuyOrderDestingNegPriceOperateReq) GetHeader() *MessageHead {
  4867. if x != nil {
  4868. return x.Header
  4869. }
  4870. return nil
  4871. }
  4872. func (x *ZSBuyOrderDestingNegPriceOperateReq) GetUserID() uint32 {
  4873. if x != nil && x.UserID != nil {
  4874. return *x.UserID
  4875. }
  4876. return 0
  4877. }
  4878. func (x *ZSBuyOrderDestingNegPriceOperateReq) GetAccountID() uint64 {
  4879. if x != nil && x.AccountID != nil {
  4880. return *x.AccountID
  4881. }
  4882. return 0
  4883. }
  4884. func (x *ZSBuyOrderDestingNegPriceOperateReq) GetWRBargainID() uint64 {
  4885. if x != nil && x.WRBargainID != nil {
  4886. return *x.WRBargainID
  4887. }
  4888. return 0
  4889. }
  4890. func (x *ZSBuyOrderDestingNegPriceOperateReq) GetAuditRemark() string {
  4891. if x != nil && x.AuditRemark != nil {
  4892. return *x.AuditRemark
  4893. }
  4894. return ""
  4895. }
  4896. func (x *ZSBuyOrderDestingNegPriceOperateReq) GetOperateType() uint32 {
  4897. if x != nil && x.OperateType != nil {
  4898. return *x.OperateType
  4899. }
  4900. return 0
  4901. }
  4902. func (x *ZSBuyOrderDestingNegPriceOperateReq) GetMarketID() uint32 {
  4903. if x != nil && x.MarketID != nil {
  4904. return *x.MarketID
  4905. }
  4906. return 0
  4907. }
  4908. func (x *ZSBuyOrderDestingNegPriceOperateReq) GetClientType() uint32 {
  4909. if x != nil && x.ClientType != nil {
  4910. return *x.ClientType
  4911. }
  4912. return 0
  4913. }
  4914. func (x *ZSBuyOrderDestingNegPriceOperateReq) GetOrderSrc() uint32 {
  4915. if x != nil && x.OrderSrc != nil {
  4916. return *x.OrderSrc
  4917. }
  4918. return 0
  4919. }
  4920. func (x *ZSBuyOrderDestingNegPriceOperateReq) GetClientSerialNo() string {
  4921. if x != nil && x.ClientSerialNo != nil {
  4922. return *x.ClientSerialNo
  4923. }
  4924. return ""
  4925. }
  4926. // 买摘牌询价操作接口应答
  4927. type ZSBuyOrderDestingNegPriceOperateRsp struct {
  4928. state protoimpl.MessageState
  4929. sizeCache protoimpl.SizeCache
  4930. unknownFields protoimpl.UnknownFields
  4931. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  4932. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  4933. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  4934. UserID *uint32 `protobuf:"varint,4,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  4935. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
  4936. WRBargainID *uint64 `protobuf:"varint,6,opt,name=WRBargainID" json:"WRBargainID,omitempty"` // 卖委托单号
  4937. ClientSerialNo *string `protobuf:"bytes,7,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  4938. }
  4939. func (x *ZSBuyOrderDestingNegPriceOperateRsp) Reset() {
  4940. *x = ZSBuyOrderDestingNegPriceOperateRsp{}
  4941. if protoimpl.UnsafeEnabled {
  4942. mi := &file_mtp2_proto_msgTypes[51]
  4943. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4944. ms.StoreMessageInfo(mi)
  4945. }
  4946. }
  4947. func (x *ZSBuyOrderDestingNegPriceOperateRsp) String() string {
  4948. return protoimpl.X.MessageStringOf(x)
  4949. }
  4950. func (*ZSBuyOrderDestingNegPriceOperateRsp) ProtoMessage() {}
  4951. func (x *ZSBuyOrderDestingNegPriceOperateRsp) ProtoReflect() protoreflect.Message {
  4952. mi := &file_mtp2_proto_msgTypes[51]
  4953. if protoimpl.UnsafeEnabled && x != nil {
  4954. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4955. if ms.LoadMessageInfo() == nil {
  4956. ms.StoreMessageInfo(mi)
  4957. }
  4958. return ms
  4959. }
  4960. return mi.MessageOf(x)
  4961. }
  4962. // Deprecated: Use ZSBuyOrderDestingNegPriceOperateRsp.ProtoReflect.Descriptor instead.
  4963. func (*ZSBuyOrderDestingNegPriceOperateRsp) Descriptor() ([]byte, []int) {
  4964. return file_mtp2_proto_rawDescGZIP(), []int{51}
  4965. }
  4966. func (x *ZSBuyOrderDestingNegPriceOperateRsp) GetHeader() *MessageHead {
  4967. if x != nil {
  4968. return x.Header
  4969. }
  4970. return nil
  4971. }
  4972. func (x *ZSBuyOrderDestingNegPriceOperateRsp) GetRetCode() int32 {
  4973. if x != nil && x.RetCode != nil {
  4974. return *x.RetCode
  4975. }
  4976. return 0
  4977. }
  4978. func (x *ZSBuyOrderDestingNegPriceOperateRsp) GetRetDesc() string {
  4979. if x != nil && x.RetDesc != nil {
  4980. return *x.RetDesc
  4981. }
  4982. return ""
  4983. }
  4984. func (x *ZSBuyOrderDestingNegPriceOperateRsp) GetUserID() uint32 {
  4985. if x != nil && x.UserID != nil {
  4986. return *x.UserID
  4987. }
  4988. return 0
  4989. }
  4990. func (x *ZSBuyOrderDestingNegPriceOperateRsp) GetAccountID() uint64 {
  4991. if x != nil && x.AccountID != nil {
  4992. return *x.AccountID
  4993. }
  4994. return 0
  4995. }
  4996. func (x *ZSBuyOrderDestingNegPriceOperateRsp) GetWRBargainID() uint64 {
  4997. if x != nil && x.WRBargainID != nil {
  4998. return *x.WRBargainID
  4999. }
  5000. return 0
  5001. }
  5002. func (x *ZSBuyOrderDestingNegPriceOperateRsp) GetClientSerialNo() string {
  5003. if x != nil && x.ClientSerialNo != nil {
  5004. return *x.ClientSerialNo
  5005. }
  5006. return ""
  5007. }
  5008. // 挂牌撤单请求
  5009. type WRListingCancelOrderReq struct {
  5010. state protoimpl.MessageState
  5011. sizeCache protoimpl.SizeCache
  5012. unknownFields protoimpl.UnknownFields
  5013. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  5014. UserID *uint32 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  5015. AccountID *uint64 `protobuf:"varint,3,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
  5016. OldWRTradeOrderID *uint64 `protobuf:"varint,4,opt,name=OldWRTradeOrderID" json:"OldWRTradeOrderID,omitempty"` // 目标仓单贸易委托单ID
  5017. OrderSrc *uint32 `protobuf:"varint,5,opt,name=OrderSrc" json:"OrderSrc,omitempty"` // 委托来源
  5018. ClientSerialNo *string `protobuf:"bytes,6,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  5019. ClientOrderTime *string `protobuf:"bytes,7,opt,name=ClientOrderTime" json:"ClientOrderTime,omitempty"` // 客户端委托时间
  5020. ClientType *uint32 `protobuf:"varint,8,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  5021. OperatorID *uint64 `protobuf:"varint,9,opt,name=OperatorID" json:"OperatorID,omitempty"` // 操作员账号ID
  5022. BuyOrSell *uint32 `protobuf:"varint,10,opt,name=BuyOrSell" json:"BuyOrSell,omitempty"` // 买卖方向
  5023. WRID *uint64 `protobuf:"varint,11,opt,name=WRID" json:"WRID,omitempty"` // 仓单ID,卖的时候填写
  5024. }
  5025. func (x *WRListingCancelOrderReq) Reset() {
  5026. *x = WRListingCancelOrderReq{}
  5027. if protoimpl.UnsafeEnabled {
  5028. mi := &file_mtp2_proto_msgTypes[52]
  5029. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5030. ms.StoreMessageInfo(mi)
  5031. }
  5032. }
  5033. func (x *WRListingCancelOrderReq) String() string {
  5034. return protoimpl.X.MessageStringOf(x)
  5035. }
  5036. func (*WRListingCancelOrderReq) ProtoMessage() {}
  5037. func (x *WRListingCancelOrderReq) ProtoReflect() protoreflect.Message {
  5038. mi := &file_mtp2_proto_msgTypes[52]
  5039. if protoimpl.UnsafeEnabled && x != nil {
  5040. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5041. if ms.LoadMessageInfo() == nil {
  5042. ms.StoreMessageInfo(mi)
  5043. }
  5044. return ms
  5045. }
  5046. return mi.MessageOf(x)
  5047. }
  5048. // Deprecated: Use WRListingCancelOrderReq.ProtoReflect.Descriptor instead.
  5049. func (*WRListingCancelOrderReq) Descriptor() ([]byte, []int) {
  5050. return file_mtp2_proto_rawDescGZIP(), []int{52}
  5051. }
  5052. func (x *WRListingCancelOrderReq) GetHeader() *MessageHead {
  5053. if x != nil {
  5054. return x.Header
  5055. }
  5056. return nil
  5057. }
  5058. func (x *WRListingCancelOrderReq) GetUserID() uint32 {
  5059. if x != nil && x.UserID != nil {
  5060. return *x.UserID
  5061. }
  5062. return 0
  5063. }
  5064. func (x *WRListingCancelOrderReq) GetAccountID() uint64 {
  5065. if x != nil && x.AccountID != nil {
  5066. return *x.AccountID
  5067. }
  5068. return 0
  5069. }
  5070. func (x *WRListingCancelOrderReq) GetOldWRTradeOrderID() uint64 {
  5071. if x != nil && x.OldWRTradeOrderID != nil {
  5072. return *x.OldWRTradeOrderID
  5073. }
  5074. return 0
  5075. }
  5076. func (x *WRListingCancelOrderReq) GetOrderSrc() uint32 {
  5077. if x != nil && x.OrderSrc != nil {
  5078. return *x.OrderSrc
  5079. }
  5080. return 0
  5081. }
  5082. func (x *WRListingCancelOrderReq) GetClientSerialNo() string {
  5083. if x != nil && x.ClientSerialNo != nil {
  5084. return *x.ClientSerialNo
  5085. }
  5086. return ""
  5087. }
  5088. func (x *WRListingCancelOrderReq) GetClientOrderTime() string {
  5089. if x != nil && x.ClientOrderTime != nil {
  5090. return *x.ClientOrderTime
  5091. }
  5092. return ""
  5093. }
  5094. func (x *WRListingCancelOrderReq) GetClientType() uint32 {
  5095. if x != nil && x.ClientType != nil {
  5096. return *x.ClientType
  5097. }
  5098. return 0
  5099. }
  5100. func (x *WRListingCancelOrderReq) GetOperatorID() uint64 {
  5101. if x != nil && x.OperatorID != nil {
  5102. return *x.OperatorID
  5103. }
  5104. return 0
  5105. }
  5106. func (x *WRListingCancelOrderReq) GetBuyOrSell() uint32 {
  5107. if x != nil && x.BuyOrSell != nil {
  5108. return *x.BuyOrSell
  5109. }
  5110. return 0
  5111. }
  5112. func (x *WRListingCancelOrderReq) GetWRID() uint64 {
  5113. if x != nil && x.WRID != nil {
  5114. return *x.WRID
  5115. }
  5116. return 0
  5117. }
  5118. // 挂牌撤单应答
  5119. type WRListingCancelOrderRsp struct {
  5120. state protoimpl.MessageState
  5121. sizeCache protoimpl.SizeCache
  5122. unknownFields protoimpl.UnknownFields
  5123. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  5124. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  5125. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  5126. WRTradeCancelID *uint64 `protobuf:"varint,4,opt,name=WRTradeCancelID" json:"WRTradeCancelID,omitempty"` // 仓单贸易撤单号
  5127. OldWRTradeOrderID *uint64 `protobuf:"varint,5,opt,name=OldWRTradeOrderID" json:"OldWRTradeOrderID,omitempty"` // 目标仓单贸易委托单ID
  5128. UserID *uint32 `protobuf:"varint,6,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  5129. AccountID *uint64 `protobuf:"varint,7,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
  5130. CancelQty *uint64 `protobuf:"varint,8,opt,name=CancelQty" json:"CancelQty,omitempty"` // 撤单数量
  5131. OrderTime *string `protobuf:"bytes,9,opt,name=OrderTime" json:"OrderTime,omitempty"` // 接受撤单的时间
  5132. ClientSerialNo *string `protobuf:"bytes,10,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  5133. }
  5134. func (x *WRListingCancelOrderRsp) Reset() {
  5135. *x = WRListingCancelOrderRsp{}
  5136. if protoimpl.UnsafeEnabled {
  5137. mi := &file_mtp2_proto_msgTypes[53]
  5138. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5139. ms.StoreMessageInfo(mi)
  5140. }
  5141. }
  5142. func (x *WRListingCancelOrderRsp) String() string {
  5143. return protoimpl.X.MessageStringOf(x)
  5144. }
  5145. func (*WRListingCancelOrderRsp) ProtoMessage() {}
  5146. func (x *WRListingCancelOrderRsp) ProtoReflect() protoreflect.Message {
  5147. mi := &file_mtp2_proto_msgTypes[53]
  5148. if protoimpl.UnsafeEnabled && x != nil {
  5149. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5150. if ms.LoadMessageInfo() == nil {
  5151. ms.StoreMessageInfo(mi)
  5152. }
  5153. return ms
  5154. }
  5155. return mi.MessageOf(x)
  5156. }
  5157. // Deprecated: Use WRListingCancelOrderRsp.ProtoReflect.Descriptor instead.
  5158. func (*WRListingCancelOrderRsp) Descriptor() ([]byte, []int) {
  5159. return file_mtp2_proto_rawDescGZIP(), []int{53}
  5160. }
  5161. func (x *WRListingCancelOrderRsp) GetHeader() *MessageHead {
  5162. if x != nil {
  5163. return x.Header
  5164. }
  5165. return nil
  5166. }
  5167. func (x *WRListingCancelOrderRsp) GetRetCode() int32 {
  5168. if x != nil && x.RetCode != nil {
  5169. return *x.RetCode
  5170. }
  5171. return 0
  5172. }
  5173. func (x *WRListingCancelOrderRsp) GetRetDesc() string {
  5174. if x != nil && x.RetDesc != nil {
  5175. return *x.RetDesc
  5176. }
  5177. return ""
  5178. }
  5179. func (x *WRListingCancelOrderRsp) GetWRTradeCancelID() uint64 {
  5180. if x != nil && x.WRTradeCancelID != nil {
  5181. return *x.WRTradeCancelID
  5182. }
  5183. return 0
  5184. }
  5185. func (x *WRListingCancelOrderRsp) GetOldWRTradeOrderID() uint64 {
  5186. if x != nil && x.OldWRTradeOrderID != nil {
  5187. return *x.OldWRTradeOrderID
  5188. }
  5189. return 0
  5190. }
  5191. func (x *WRListingCancelOrderRsp) GetUserID() uint32 {
  5192. if x != nil && x.UserID != nil {
  5193. return *x.UserID
  5194. }
  5195. return 0
  5196. }
  5197. func (x *WRListingCancelOrderRsp) GetAccountID() uint64 {
  5198. if x != nil && x.AccountID != nil {
  5199. return *x.AccountID
  5200. }
  5201. return 0
  5202. }
  5203. func (x *WRListingCancelOrderRsp) GetCancelQty() uint64 {
  5204. if x != nil && x.CancelQty != nil {
  5205. return *x.CancelQty
  5206. }
  5207. return 0
  5208. }
  5209. func (x *WRListingCancelOrderRsp) GetOrderTime() string {
  5210. if x != nil && x.OrderTime != nil {
  5211. return *x.OrderTime
  5212. }
  5213. return ""
  5214. }
  5215. func (x *WRListingCancelOrderRsp) GetClientSerialNo() string {
  5216. if x != nil && x.ClientSerialNo != nil {
  5217. return *x.ClientSerialNo
  5218. }
  5219. return ""
  5220. }
  5221. // 钻石出库申请接口请求
  5222. type ReceiptZSOutApplyReq struct {
  5223. state protoimpl.MessageState
  5224. sizeCache protoimpl.SizeCache
  5225. unknownFields protoimpl.UnknownFields
  5226. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  5227. Common *WRCommon `protobuf:"bytes,2,opt,name=Common" json:"Common,omitempty"` //
  5228. UserID *uint64 `protobuf:"varint,3,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  5229. AccountID *uint64 `protobuf:"varint,4,opt,name=AccountID" json:"AccountID,omitempty"` // 用户帐户ID
  5230. WRStandardID *uint64 `protobuf:"varint,5,opt,name=WRStandardID" json:"WRStandardID,omitempty"` // 现货品种ID
  5231. WarehouseID *uint32 `protobuf:"varint,6,opt,name=WarehouseID" json:"WarehouseID,omitempty"` // 仓库ID
  5232. Mobile *string `protobuf:"bytes,7,opt,name=Mobile" json:"Mobile,omitempty"` // 申请人手机号
  5233. AppointmentDate *string `protobuf:"bytes,8,opt,name=AppointmentDate" json:"AppointmentDate,omitempty"` // 预约日期
  5234. AppointmentModel *int32 `protobuf:"varint,9,opt,name=AppointmentModel" json:"AppointmentModel,omitempty"` // 预约方式:1-物流3-自提
  5235. CountryID *uint64 `protobuf:"varint,10,opt,name=CountryID" json:"CountryID,omitempty"` // 国家
  5236. ProvinceID *uint64 `protobuf:"varint,11,opt,name=ProvinceID" json:"ProvinceID,omitempty"` // 省
  5237. DistrictID *uint64 `protobuf:"varint,12,opt,name=DistrictID" json:"DistrictID,omitempty"` // 区
  5238. CityID *uint64 `protobuf:"varint,13,opt,name=CityID" json:"CityID,omitempty"` // 市
  5239. Address *string `protobuf:"bytes,14,opt,name=Address" json:"Address,omitempty"` // 详细地址
  5240. ContactName *string `protobuf:"bytes,15,opt,name=ContactName" json:"ContactName,omitempty"` // 收货人提货人
  5241. ContactNum *string `protobuf:"bytes,16,opt,name=ContactNum" json:"ContactNum,omitempty"` // 收货人提货人手机
  5242. AppointmentRemark *string `protobuf:"bytes,17,opt,name=AppointmentRemark" json:"AppointmentRemark,omitempty"` // 预约备注
  5243. LadingBillID *uint64 `protobuf:"varint,18,opt,name=LadingBillID" json:"LadingBillID,omitempty"` // 提单ID,必填
  5244. SubNum *uint32 `protobuf:"varint,19,opt,name=SubNum" json:"SubNum,omitempty"` // 提单子单号,必填
  5245. Qty *float64 `protobuf:"fixed64,20,opt,name=Qty" json:"Qty,omitempty"` // 出库数量,两位小数,必填
  5246. Remark *string `protobuf:"bytes,21,opt,name=Remark" json:"Remark,omitempty"` // 备注
  5247. ApplyType *uint32 `protobuf:"varint,22,opt,name=ApplyType" json:"ApplyType,omitempty"` // 申请类型1:会员申请2:平台申请
  5248. ClientType *uint32 `protobuf:"varint,23,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  5249. ClientTicket *string `protobuf:"bytes,24,opt,name=ClientTicket" json:"ClientTicket,omitempty"` // 客户端流水号
  5250. }
  5251. func (x *ReceiptZSOutApplyReq) Reset() {
  5252. *x = ReceiptZSOutApplyReq{}
  5253. if protoimpl.UnsafeEnabled {
  5254. mi := &file_mtp2_proto_msgTypes[54]
  5255. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5256. ms.StoreMessageInfo(mi)
  5257. }
  5258. }
  5259. func (x *ReceiptZSOutApplyReq) String() string {
  5260. return protoimpl.X.MessageStringOf(x)
  5261. }
  5262. func (*ReceiptZSOutApplyReq) ProtoMessage() {}
  5263. func (x *ReceiptZSOutApplyReq) ProtoReflect() protoreflect.Message {
  5264. mi := &file_mtp2_proto_msgTypes[54]
  5265. if protoimpl.UnsafeEnabled && x != nil {
  5266. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5267. if ms.LoadMessageInfo() == nil {
  5268. ms.StoreMessageInfo(mi)
  5269. }
  5270. return ms
  5271. }
  5272. return mi.MessageOf(x)
  5273. }
  5274. // Deprecated: Use ReceiptZSOutApplyReq.ProtoReflect.Descriptor instead.
  5275. func (*ReceiptZSOutApplyReq) Descriptor() ([]byte, []int) {
  5276. return file_mtp2_proto_rawDescGZIP(), []int{54}
  5277. }
  5278. func (x *ReceiptZSOutApplyReq) GetHeader() *MessageHead {
  5279. if x != nil {
  5280. return x.Header
  5281. }
  5282. return nil
  5283. }
  5284. func (x *ReceiptZSOutApplyReq) GetCommon() *WRCommon {
  5285. if x != nil {
  5286. return x.Common
  5287. }
  5288. return nil
  5289. }
  5290. func (x *ReceiptZSOutApplyReq) GetUserID() uint64 {
  5291. if x != nil && x.UserID != nil {
  5292. return *x.UserID
  5293. }
  5294. return 0
  5295. }
  5296. func (x *ReceiptZSOutApplyReq) GetAccountID() uint64 {
  5297. if x != nil && x.AccountID != nil {
  5298. return *x.AccountID
  5299. }
  5300. return 0
  5301. }
  5302. func (x *ReceiptZSOutApplyReq) GetWRStandardID() uint64 {
  5303. if x != nil && x.WRStandardID != nil {
  5304. return *x.WRStandardID
  5305. }
  5306. return 0
  5307. }
  5308. func (x *ReceiptZSOutApplyReq) GetWarehouseID() uint32 {
  5309. if x != nil && x.WarehouseID != nil {
  5310. return *x.WarehouseID
  5311. }
  5312. return 0
  5313. }
  5314. func (x *ReceiptZSOutApplyReq) GetMobile() string {
  5315. if x != nil && x.Mobile != nil {
  5316. return *x.Mobile
  5317. }
  5318. return ""
  5319. }
  5320. func (x *ReceiptZSOutApplyReq) GetAppointmentDate() string {
  5321. if x != nil && x.AppointmentDate != nil {
  5322. return *x.AppointmentDate
  5323. }
  5324. return ""
  5325. }
  5326. func (x *ReceiptZSOutApplyReq) GetAppointmentModel() int32 {
  5327. if x != nil && x.AppointmentModel != nil {
  5328. return *x.AppointmentModel
  5329. }
  5330. return 0
  5331. }
  5332. func (x *ReceiptZSOutApplyReq) GetCountryID() uint64 {
  5333. if x != nil && x.CountryID != nil {
  5334. return *x.CountryID
  5335. }
  5336. return 0
  5337. }
  5338. func (x *ReceiptZSOutApplyReq) GetProvinceID() uint64 {
  5339. if x != nil && x.ProvinceID != nil {
  5340. return *x.ProvinceID
  5341. }
  5342. return 0
  5343. }
  5344. func (x *ReceiptZSOutApplyReq) GetDistrictID() uint64 {
  5345. if x != nil && x.DistrictID != nil {
  5346. return *x.DistrictID
  5347. }
  5348. return 0
  5349. }
  5350. func (x *ReceiptZSOutApplyReq) GetCityID() uint64 {
  5351. if x != nil && x.CityID != nil {
  5352. return *x.CityID
  5353. }
  5354. return 0
  5355. }
  5356. func (x *ReceiptZSOutApplyReq) GetAddress() string {
  5357. if x != nil && x.Address != nil {
  5358. return *x.Address
  5359. }
  5360. return ""
  5361. }
  5362. func (x *ReceiptZSOutApplyReq) GetContactName() string {
  5363. if x != nil && x.ContactName != nil {
  5364. return *x.ContactName
  5365. }
  5366. return ""
  5367. }
  5368. func (x *ReceiptZSOutApplyReq) GetContactNum() string {
  5369. if x != nil && x.ContactNum != nil {
  5370. return *x.ContactNum
  5371. }
  5372. return ""
  5373. }
  5374. func (x *ReceiptZSOutApplyReq) GetAppointmentRemark() string {
  5375. if x != nil && x.AppointmentRemark != nil {
  5376. return *x.AppointmentRemark
  5377. }
  5378. return ""
  5379. }
  5380. func (x *ReceiptZSOutApplyReq) GetLadingBillID() uint64 {
  5381. if x != nil && x.LadingBillID != nil {
  5382. return *x.LadingBillID
  5383. }
  5384. return 0
  5385. }
  5386. func (x *ReceiptZSOutApplyReq) GetSubNum() uint32 {
  5387. if x != nil && x.SubNum != nil {
  5388. return *x.SubNum
  5389. }
  5390. return 0
  5391. }
  5392. func (x *ReceiptZSOutApplyReq) GetQty() float64 {
  5393. if x != nil && x.Qty != nil {
  5394. return *x.Qty
  5395. }
  5396. return 0
  5397. }
  5398. func (x *ReceiptZSOutApplyReq) GetRemark() string {
  5399. if x != nil && x.Remark != nil {
  5400. return *x.Remark
  5401. }
  5402. return ""
  5403. }
  5404. func (x *ReceiptZSOutApplyReq) GetApplyType() uint32 {
  5405. if x != nil && x.ApplyType != nil {
  5406. return *x.ApplyType
  5407. }
  5408. return 0
  5409. }
  5410. func (x *ReceiptZSOutApplyReq) GetClientType() uint32 {
  5411. if x != nil && x.ClientType != nil {
  5412. return *x.ClientType
  5413. }
  5414. return 0
  5415. }
  5416. func (x *ReceiptZSOutApplyReq) GetClientTicket() string {
  5417. if x != nil && x.ClientTicket != nil {
  5418. return *x.ClientTicket
  5419. }
  5420. return ""
  5421. }
  5422. // 钻石出库申请接口响应
  5423. type ReceiptZSOutApplyRsp struct {
  5424. state protoimpl.MessageState
  5425. sizeCache protoimpl.SizeCache
  5426. unknownFields protoimpl.UnknownFields
  5427. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  5428. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  5429. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  5430. Common *WRCommon `protobuf:"bytes,4,opt,name=Common" json:"Common,omitempty"` //
  5431. ApplyID *uint64 `protobuf:"varint,5,opt,name=ApplyID" json:"ApplyID,omitempty"` // 申请ID
  5432. ClientTicket *string `protobuf:"bytes,6,opt,name=ClientTicket" json:"ClientTicket,omitempty"` // 客户端流水号
  5433. }
  5434. func (x *ReceiptZSOutApplyRsp) Reset() {
  5435. *x = ReceiptZSOutApplyRsp{}
  5436. if protoimpl.UnsafeEnabled {
  5437. mi := &file_mtp2_proto_msgTypes[55]
  5438. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5439. ms.StoreMessageInfo(mi)
  5440. }
  5441. }
  5442. func (x *ReceiptZSOutApplyRsp) String() string {
  5443. return protoimpl.X.MessageStringOf(x)
  5444. }
  5445. func (*ReceiptZSOutApplyRsp) ProtoMessage() {}
  5446. func (x *ReceiptZSOutApplyRsp) ProtoReflect() protoreflect.Message {
  5447. mi := &file_mtp2_proto_msgTypes[55]
  5448. if protoimpl.UnsafeEnabled && x != nil {
  5449. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5450. if ms.LoadMessageInfo() == nil {
  5451. ms.StoreMessageInfo(mi)
  5452. }
  5453. return ms
  5454. }
  5455. return mi.MessageOf(x)
  5456. }
  5457. // Deprecated: Use ReceiptZSOutApplyRsp.ProtoReflect.Descriptor instead.
  5458. func (*ReceiptZSOutApplyRsp) Descriptor() ([]byte, []int) {
  5459. return file_mtp2_proto_rawDescGZIP(), []int{55}
  5460. }
  5461. func (x *ReceiptZSOutApplyRsp) GetHeader() *MessageHead {
  5462. if x != nil {
  5463. return x.Header
  5464. }
  5465. return nil
  5466. }
  5467. func (x *ReceiptZSOutApplyRsp) GetRetCode() int32 {
  5468. if x != nil && x.RetCode != nil {
  5469. return *x.RetCode
  5470. }
  5471. return 0
  5472. }
  5473. func (x *ReceiptZSOutApplyRsp) GetRetDesc() string {
  5474. if x != nil && x.RetDesc != nil {
  5475. return *x.RetDesc
  5476. }
  5477. return ""
  5478. }
  5479. func (x *ReceiptZSOutApplyRsp) GetCommon() *WRCommon {
  5480. if x != nil {
  5481. return x.Common
  5482. }
  5483. return nil
  5484. }
  5485. func (x *ReceiptZSOutApplyRsp) GetApplyID() uint64 {
  5486. if x != nil && x.ApplyID != nil {
  5487. return *x.ApplyID
  5488. }
  5489. return 0
  5490. }
  5491. func (x *ReceiptZSOutApplyRsp) GetClientTicket() string {
  5492. if x != nil && x.ClientTicket != nil {
  5493. return *x.ClientTicket
  5494. }
  5495. return ""
  5496. }
  5497. // 铁合金保证金配置信息
  5498. type DepositConfigInfo struct {
  5499. state protoimpl.MessageState
  5500. sizeCache protoimpl.SizeCache
  5501. unknownFields protoimpl.UnknownFields
  5502. DepositRate *float64 `protobuf:"fixed64,1,opt,name=DepositRate" json:"DepositRate,omitempty"` // 定金比例
  5503. DiscountAmount *float64 `protobuf:"fixed64,2,opt,name=DiscountAmount" json:"DiscountAmount,omitempty"` // 优惠金额
  5504. }
  5505. func (x *DepositConfigInfo) Reset() {
  5506. *x = DepositConfigInfo{}
  5507. if protoimpl.UnsafeEnabled {
  5508. mi := &file_mtp2_proto_msgTypes[56]
  5509. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5510. ms.StoreMessageInfo(mi)
  5511. }
  5512. }
  5513. func (x *DepositConfigInfo) String() string {
  5514. return protoimpl.X.MessageStringOf(x)
  5515. }
  5516. func (*DepositConfigInfo) ProtoMessage() {}
  5517. func (x *DepositConfigInfo) ProtoReflect() protoreflect.Message {
  5518. mi := &file_mtp2_proto_msgTypes[56]
  5519. if protoimpl.UnsafeEnabled && x != nil {
  5520. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5521. if ms.LoadMessageInfo() == nil {
  5522. ms.StoreMessageInfo(mi)
  5523. }
  5524. return ms
  5525. }
  5526. return mi.MessageOf(x)
  5527. }
  5528. // Deprecated: Use DepositConfigInfo.ProtoReflect.Descriptor instead.
  5529. func (*DepositConfigInfo) Descriptor() ([]byte, []int) {
  5530. return file_mtp2_proto_rawDescGZIP(), []int{56}
  5531. }
  5532. func (x *DepositConfigInfo) GetDepositRate() float64 {
  5533. if x != nil && x.DepositRate != nil {
  5534. return *x.DepositRate
  5535. }
  5536. return 0
  5537. }
  5538. func (x *DepositConfigInfo) GetDiscountAmount() float64 {
  5539. if x != nil && x.DiscountAmount != nil {
  5540. return *x.DiscountAmount
  5541. }
  5542. return 0
  5543. }
  5544. // 铁合金现货预售挂牌接口请求
  5545. type SpotPresaleListingOrderReq struct {
  5546. state protoimpl.MessageState
  5547. sizeCache protoimpl.SizeCache
  5548. unknownFields protoimpl.UnknownFields
  5549. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  5550. UserID *uint32 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  5551. AccountID *uint64 `protobuf:"varint,3,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号,必填
  5552. WRStandardID *uint32 `protobuf:"varint,4,opt,name=WRStandardID" json:"WRStandardID,omitempty"` // 现货商品ID,必填
  5553. WarehouseID *uint32 `protobuf:"varint,5,opt,name=WarehouseID" json:"WarehouseID,omitempty"` // 仓库ID,必填
  5554. Qty *uint64 `protobuf:"varint,6,opt,name=Qty" json:"Qty,omitempty"` // 预售数量,必填
  5555. EndDate *string `protobuf:"bytes,7,opt,name=EndDate" json:"EndDate,omitempty"` // 到期时间,必填
  5556. DepositConfigs []*DepositConfigInfo `protobuf:"bytes,8,rep,name=DepositConfigs" json:"DepositConfigs,omitempty"` // 保证金配置信息,至少一组
  5557. ClientType *uint32 `protobuf:"varint,9,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  5558. ClientSerialNo *string `protobuf:"bytes,10,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  5559. UnitPrice *float64 `protobuf:"fixed64,11,opt,name=UnitPrice" json:"UnitPrice,omitempty"` // 参考价,小数,前10,后2,必填
  5560. }
  5561. func (x *SpotPresaleListingOrderReq) Reset() {
  5562. *x = SpotPresaleListingOrderReq{}
  5563. if protoimpl.UnsafeEnabled {
  5564. mi := &file_mtp2_proto_msgTypes[57]
  5565. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5566. ms.StoreMessageInfo(mi)
  5567. }
  5568. }
  5569. func (x *SpotPresaleListingOrderReq) String() string {
  5570. return protoimpl.X.MessageStringOf(x)
  5571. }
  5572. func (*SpotPresaleListingOrderReq) ProtoMessage() {}
  5573. func (x *SpotPresaleListingOrderReq) ProtoReflect() protoreflect.Message {
  5574. mi := &file_mtp2_proto_msgTypes[57]
  5575. if protoimpl.UnsafeEnabled && x != nil {
  5576. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5577. if ms.LoadMessageInfo() == nil {
  5578. ms.StoreMessageInfo(mi)
  5579. }
  5580. return ms
  5581. }
  5582. return mi.MessageOf(x)
  5583. }
  5584. // Deprecated: Use SpotPresaleListingOrderReq.ProtoReflect.Descriptor instead.
  5585. func (*SpotPresaleListingOrderReq) Descriptor() ([]byte, []int) {
  5586. return file_mtp2_proto_rawDescGZIP(), []int{57}
  5587. }
  5588. func (x *SpotPresaleListingOrderReq) GetHeader() *MessageHead {
  5589. if x != nil {
  5590. return x.Header
  5591. }
  5592. return nil
  5593. }
  5594. func (x *SpotPresaleListingOrderReq) GetUserID() uint32 {
  5595. if x != nil && x.UserID != nil {
  5596. return *x.UserID
  5597. }
  5598. return 0
  5599. }
  5600. func (x *SpotPresaleListingOrderReq) GetAccountID() uint64 {
  5601. if x != nil && x.AccountID != nil {
  5602. return *x.AccountID
  5603. }
  5604. return 0
  5605. }
  5606. func (x *SpotPresaleListingOrderReq) GetWRStandardID() uint32 {
  5607. if x != nil && x.WRStandardID != nil {
  5608. return *x.WRStandardID
  5609. }
  5610. return 0
  5611. }
  5612. func (x *SpotPresaleListingOrderReq) GetWarehouseID() uint32 {
  5613. if x != nil && x.WarehouseID != nil {
  5614. return *x.WarehouseID
  5615. }
  5616. return 0
  5617. }
  5618. func (x *SpotPresaleListingOrderReq) GetQty() uint64 {
  5619. if x != nil && x.Qty != nil {
  5620. return *x.Qty
  5621. }
  5622. return 0
  5623. }
  5624. func (x *SpotPresaleListingOrderReq) GetEndDate() string {
  5625. if x != nil && x.EndDate != nil {
  5626. return *x.EndDate
  5627. }
  5628. return ""
  5629. }
  5630. func (x *SpotPresaleListingOrderReq) GetDepositConfigs() []*DepositConfigInfo {
  5631. if x != nil {
  5632. return x.DepositConfigs
  5633. }
  5634. return nil
  5635. }
  5636. func (x *SpotPresaleListingOrderReq) GetClientType() uint32 {
  5637. if x != nil && x.ClientType != nil {
  5638. return *x.ClientType
  5639. }
  5640. return 0
  5641. }
  5642. func (x *SpotPresaleListingOrderReq) GetClientSerialNo() string {
  5643. if x != nil && x.ClientSerialNo != nil {
  5644. return *x.ClientSerialNo
  5645. }
  5646. return ""
  5647. }
  5648. func (x *SpotPresaleListingOrderReq) GetUnitPrice() float64 {
  5649. if x != nil && x.UnitPrice != nil {
  5650. return *x.UnitPrice
  5651. }
  5652. return 0
  5653. }
  5654. // 铁合金现货预售挂牌接口应答
  5655. type SpotPresaleListingOrderRsp struct {
  5656. state protoimpl.MessageState
  5657. sizeCache protoimpl.SizeCache
  5658. unknownFields protoimpl.UnknownFields
  5659. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  5660. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  5661. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  5662. PresaleApplyID *uint64 `protobuf:"varint,4,opt,name=PresaleApplyID" json:"PresaleApplyID,omitempty"` // 预售申请ID
  5663. WRTradeOrderID *uint64 `protobuf:"varint,5,opt,name=WRTradeOrderID" json:"WRTradeOrderID,omitempty"` // 委托单ID
  5664. ClientSerialNo *string `protobuf:"bytes,6,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  5665. }
  5666. func (x *SpotPresaleListingOrderRsp) Reset() {
  5667. *x = SpotPresaleListingOrderRsp{}
  5668. if protoimpl.UnsafeEnabled {
  5669. mi := &file_mtp2_proto_msgTypes[58]
  5670. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5671. ms.StoreMessageInfo(mi)
  5672. }
  5673. }
  5674. func (x *SpotPresaleListingOrderRsp) String() string {
  5675. return protoimpl.X.MessageStringOf(x)
  5676. }
  5677. func (*SpotPresaleListingOrderRsp) ProtoMessage() {}
  5678. func (x *SpotPresaleListingOrderRsp) ProtoReflect() protoreflect.Message {
  5679. mi := &file_mtp2_proto_msgTypes[58]
  5680. if protoimpl.UnsafeEnabled && x != nil {
  5681. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5682. if ms.LoadMessageInfo() == nil {
  5683. ms.StoreMessageInfo(mi)
  5684. }
  5685. return ms
  5686. }
  5687. return mi.MessageOf(x)
  5688. }
  5689. // Deprecated: Use SpotPresaleListingOrderRsp.ProtoReflect.Descriptor instead.
  5690. func (*SpotPresaleListingOrderRsp) Descriptor() ([]byte, []int) {
  5691. return file_mtp2_proto_rawDescGZIP(), []int{58}
  5692. }
  5693. func (x *SpotPresaleListingOrderRsp) GetHeader() *MessageHead {
  5694. if x != nil {
  5695. return x.Header
  5696. }
  5697. return nil
  5698. }
  5699. func (x *SpotPresaleListingOrderRsp) GetRetCode() int32 {
  5700. if x != nil && x.RetCode != nil {
  5701. return *x.RetCode
  5702. }
  5703. return 0
  5704. }
  5705. func (x *SpotPresaleListingOrderRsp) GetRetDesc() string {
  5706. if x != nil && x.RetDesc != nil {
  5707. return *x.RetDesc
  5708. }
  5709. return ""
  5710. }
  5711. func (x *SpotPresaleListingOrderRsp) GetPresaleApplyID() uint64 {
  5712. if x != nil && x.PresaleApplyID != nil {
  5713. return *x.PresaleApplyID
  5714. }
  5715. return 0
  5716. }
  5717. func (x *SpotPresaleListingOrderRsp) GetWRTradeOrderID() uint64 {
  5718. if x != nil && x.WRTradeOrderID != nil {
  5719. return *x.WRTradeOrderID
  5720. }
  5721. return 0
  5722. }
  5723. func (x *SpotPresaleListingOrderRsp) GetClientSerialNo() string {
  5724. if x != nil && x.ClientSerialNo != nil {
  5725. return *x.ClientSerialNo
  5726. }
  5727. return ""
  5728. }
  5729. // 铁合金成交通知
  5730. type THJPurchaseTradeNtf struct {
  5731. state protoimpl.MessageState
  5732. sizeCache protoimpl.SizeCache
  5733. unknownFields protoimpl.UnknownFields
  5734. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  5735. WRTradeDetailID *uint64 `protobuf:"varint,2,opt,name=WRTradeDetailID" json:"WRTradeDetailID,omitempty"` // uint64 预售成交明细ID
  5736. }
  5737. func (x *THJPurchaseTradeNtf) Reset() {
  5738. *x = THJPurchaseTradeNtf{}
  5739. if protoimpl.UnsafeEnabled {
  5740. mi := &file_mtp2_proto_msgTypes[59]
  5741. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5742. ms.StoreMessageInfo(mi)
  5743. }
  5744. }
  5745. func (x *THJPurchaseTradeNtf) String() string {
  5746. return protoimpl.X.MessageStringOf(x)
  5747. }
  5748. func (*THJPurchaseTradeNtf) ProtoMessage() {}
  5749. func (x *THJPurchaseTradeNtf) ProtoReflect() protoreflect.Message {
  5750. mi := &file_mtp2_proto_msgTypes[59]
  5751. if protoimpl.UnsafeEnabled && x != nil {
  5752. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5753. if ms.LoadMessageInfo() == nil {
  5754. ms.StoreMessageInfo(mi)
  5755. }
  5756. return ms
  5757. }
  5758. return mi.MessageOf(x)
  5759. }
  5760. // Deprecated: Use THJPurchaseTradeNtf.ProtoReflect.Descriptor instead.
  5761. func (*THJPurchaseTradeNtf) Descriptor() ([]byte, []int) {
  5762. return file_mtp2_proto_rawDescGZIP(), []int{59}
  5763. }
  5764. func (x *THJPurchaseTradeNtf) GetHeader() *MessageHead {
  5765. if x != nil {
  5766. return x.Header
  5767. }
  5768. return nil
  5769. }
  5770. func (x *THJPurchaseTradeNtf) GetWRTradeDetailID() uint64 {
  5771. if x != nil && x.WRTradeDetailID != nil {
  5772. return *x.WRTradeDetailID
  5773. }
  5774. return 0
  5775. }
  5776. // 铁合金协议转让通知
  5777. type PurchaseTransferNtf struct {
  5778. state protoimpl.MessageState
  5779. sizeCache protoimpl.SizeCache
  5780. unknownFields protoimpl.UnknownFields
  5781. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  5782. TransferID *uint64 `protobuf:"varint,2,opt,name=TransferID" json:"TransferID,omitempty"` // uint64 协议转让ID
  5783. }
  5784. func (x *PurchaseTransferNtf) Reset() {
  5785. *x = PurchaseTransferNtf{}
  5786. if protoimpl.UnsafeEnabled {
  5787. mi := &file_mtp2_proto_msgTypes[60]
  5788. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5789. ms.StoreMessageInfo(mi)
  5790. }
  5791. }
  5792. func (x *PurchaseTransferNtf) String() string {
  5793. return protoimpl.X.MessageStringOf(x)
  5794. }
  5795. func (*PurchaseTransferNtf) ProtoMessage() {}
  5796. func (x *PurchaseTransferNtf) ProtoReflect() protoreflect.Message {
  5797. mi := &file_mtp2_proto_msgTypes[60]
  5798. if protoimpl.UnsafeEnabled && x != nil {
  5799. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5800. if ms.LoadMessageInfo() == nil {
  5801. ms.StoreMessageInfo(mi)
  5802. }
  5803. return ms
  5804. }
  5805. return mi.MessageOf(x)
  5806. }
  5807. // Deprecated: Use PurchaseTransferNtf.ProtoReflect.Descriptor instead.
  5808. func (*PurchaseTransferNtf) Descriptor() ([]byte, []int) {
  5809. return file_mtp2_proto_rawDescGZIP(), []int{60}
  5810. }
  5811. func (x *PurchaseTransferNtf) GetHeader() *MessageHead {
  5812. if x != nil {
  5813. return x.Header
  5814. }
  5815. return nil
  5816. }
  5817. func (x *PurchaseTransferNtf) GetTransferID() uint64 {
  5818. if x != nil && x.TransferID != nil {
  5819. return *x.TransferID
  5820. }
  5821. return 0
  5822. }
  5823. // 仓单贸易成交通知
  5824. type WRTradeDealedNtf struct {
  5825. state protoimpl.MessageState
  5826. sizeCache protoimpl.SizeCache
  5827. unknownFields protoimpl.UnknownFields
  5828. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  5829. NtfHeader *NotifyHead `protobuf:"bytes,2,opt,name=NtfHeader" json:"NtfHeader,omitempty"` // NotifyHead 公共消息头
  5830. ListingOrderID *uint64 `protobuf:"varint,3,opt,name=ListingOrderID" json:"ListingOrderID,omitempty"` // uint64 挂牌委托单号
  5831. DelistingOrderID *uint64 `protobuf:"varint,4,opt,name=DelistingOrderID" json:"DelistingOrderID,omitempty"` // uint64 摘牌委托单号
  5832. TradeQty *uint64 `protobuf:"varint,5,opt,name=TradeQty" json:"TradeQty,omitempty"` // uint64 挂牌成交数量
  5833. ActiveQty *uint64 `protobuf:"varint,6,opt,name=ActiveQty" json:"ActiveQty,omitempty"` // uint64 挂牌剩余数量
  5834. RealTradeQty *uint64 `protobuf:"varint,7,opt,name=RealTradeQty" json:"RealTradeQty,omitempty"` // uint64 摘牌实际成交数量
  5835. TradeID *uint64 `protobuf:"varint,8,opt,name=TradeID" json:"TradeID,omitempty"` // uint64 成交单ID
  5836. BuyAccountID *uint64 `protobuf:"varint,9,opt,name=BuyAccountID" json:"BuyAccountID,omitempty"` // uint64 买资金账号
  5837. SellAccountID *uint64 `protobuf:"varint,10,opt,name=SellAccountID" json:"SellAccountID,omitempty"` // uint64 卖资金账号
  5838. TradePrice *float64 `protobuf:"fixed64,11,opt,name=TradePrice" json:"TradePrice,omitempty"` // double 成交价
  5839. TradeTime *string `protobuf:"bytes,12,opt,name=TradeTime" json:"TradeTime,omitempty"` // string 成交时间
  5840. WRFactorTypeID *uint64 `protobuf:"varint,13,opt,name=WRFactorTypeID" json:"WRFactorTypeID,omitempty"` // uint64 仓单要素ID
  5841. WRTransferUserID *uint32 `protobuf:"varint,14,opt,name=WRTransferUserID" json:"WRTransferUserID,omitempty"` // uint32 仓单受让账户
  5842. FreezeFirstAmount *float64 `protobuf:"fixed64,15,opt,name=FreezeFirstAmount" json:"FreezeFirstAmount,omitempty"` // double 冻结首付金额
  5843. UnFreezeFirstAmount *float64 `protobuf:"fixed64,16,opt,name=UnFreezeFirstAmount" json:"UnFreezeFirstAmount,omitempty"` // double 解冻首付金额
  5844. RealTradeAmount *float64 `protobuf:"fixed64,17,opt,name=RealTradeAmount" json:"RealTradeAmount,omitempty"` // double 实际成交金额
  5845. PerformanceAmount *float64 `protobuf:"fixed64,18,opt,name=PerformanceAmount" json:"PerformanceAmount,omitempty"` // double 履约金额
  5846. PerformancePlanID *uint64 `protobuf:"varint,19,opt,name=PerformancePlanID" json:"PerformancePlanID,omitempty"` // uint64 履约计划ID
  5847. PerformanceTemplateID *int64 `protobuf:"varint,20,opt,name=PerformanceTemplateID" json:"PerformanceTemplateID,omitempty"` // int64 履约计划模板ID
  5848. }
  5849. func (x *WRTradeDealedNtf) Reset() {
  5850. *x = WRTradeDealedNtf{}
  5851. if protoimpl.UnsafeEnabled {
  5852. mi := &file_mtp2_proto_msgTypes[61]
  5853. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5854. ms.StoreMessageInfo(mi)
  5855. }
  5856. }
  5857. func (x *WRTradeDealedNtf) String() string {
  5858. return protoimpl.X.MessageStringOf(x)
  5859. }
  5860. func (*WRTradeDealedNtf) ProtoMessage() {}
  5861. func (x *WRTradeDealedNtf) ProtoReflect() protoreflect.Message {
  5862. mi := &file_mtp2_proto_msgTypes[61]
  5863. if protoimpl.UnsafeEnabled && x != nil {
  5864. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5865. if ms.LoadMessageInfo() == nil {
  5866. ms.StoreMessageInfo(mi)
  5867. }
  5868. return ms
  5869. }
  5870. return mi.MessageOf(x)
  5871. }
  5872. // Deprecated: Use WRTradeDealedNtf.ProtoReflect.Descriptor instead.
  5873. func (*WRTradeDealedNtf) Descriptor() ([]byte, []int) {
  5874. return file_mtp2_proto_rawDescGZIP(), []int{61}
  5875. }
  5876. func (x *WRTradeDealedNtf) GetHeader() *MessageHead {
  5877. if x != nil {
  5878. return x.Header
  5879. }
  5880. return nil
  5881. }
  5882. func (x *WRTradeDealedNtf) GetNtfHeader() *NotifyHead {
  5883. if x != nil {
  5884. return x.NtfHeader
  5885. }
  5886. return nil
  5887. }
  5888. func (x *WRTradeDealedNtf) GetListingOrderID() uint64 {
  5889. if x != nil && x.ListingOrderID != nil {
  5890. return *x.ListingOrderID
  5891. }
  5892. return 0
  5893. }
  5894. func (x *WRTradeDealedNtf) GetDelistingOrderID() uint64 {
  5895. if x != nil && x.DelistingOrderID != nil {
  5896. return *x.DelistingOrderID
  5897. }
  5898. return 0
  5899. }
  5900. func (x *WRTradeDealedNtf) GetTradeQty() uint64 {
  5901. if x != nil && x.TradeQty != nil {
  5902. return *x.TradeQty
  5903. }
  5904. return 0
  5905. }
  5906. func (x *WRTradeDealedNtf) GetActiveQty() uint64 {
  5907. if x != nil && x.ActiveQty != nil {
  5908. return *x.ActiveQty
  5909. }
  5910. return 0
  5911. }
  5912. func (x *WRTradeDealedNtf) GetRealTradeQty() uint64 {
  5913. if x != nil && x.RealTradeQty != nil {
  5914. return *x.RealTradeQty
  5915. }
  5916. return 0
  5917. }
  5918. func (x *WRTradeDealedNtf) GetTradeID() uint64 {
  5919. if x != nil && x.TradeID != nil {
  5920. return *x.TradeID
  5921. }
  5922. return 0
  5923. }
  5924. func (x *WRTradeDealedNtf) GetBuyAccountID() uint64 {
  5925. if x != nil && x.BuyAccountID != nil {
  5926. return *x.BuyAccountID
  5927. }
  5928. return 0
  5929. }
  5930. func (x *WRTradeDealedNtf) GetSellAccountID() uint64 {
  5931. if x != nil && x.SellAccountID != nil {
  5932. return *x.SellAccountID
  5933. }
  5934. return 0
  5935. }
  5936. func (x *WRTradeDealedNtf) GetTradePrice() float64 {
  5937. if x != nil && x.TradePrice != nil {
  5938. return *x.TradePrice
  5939. }
  5940. return 0
  5941. }
  5942. func (x *WRTradeDealedNtf) GetTradeTime() string {
  5943. if x != nil && x.TradeTime != nil {
  5944. return *x.TradeTime
  5945. }
  5946. return ""
  5947. }
  5948. func (x *WRTradeDealedNtf) GetWRFactorTypeID() uint64 {
  5949. if x != nil && x.WRFactorTypeID != nil {
  5950. return *x.WRFactorTypeID
  5951. }
  5952. return 0
  5953. }
  5954. func (x *WRTradeDealedNtf) GetWRTransferUserID() uint32 {
  5955. if x != nil && x.WRTransferUserID != nil {
  5956. return *x.WRTransferUserID
  5957. }
  5958. return 0
  5959. }
  5960. func (x *WRTradeDealedNtf) GetFreezeFirstAmount() float64 {
  5961. if x != nil && x.FreezeFirstAmount != nil {
  5962. return *x.FreezeFirstAmount
  5963. }
  5964. return 0
  5965. }
  5966. func (x *WRTradeDealedNtf) GetUnFreezeFirstAmount() float64 {
  5967. if x != nil && x.UnFreezeFirstAmount != nil {
  5968. return *x.UnFreezeFirstAmount
  5969. }
  5970. return 0
  5971. }
  5972. func (x *WRTradeDealedNtf) GetRealTradeAmount() float64 {
  5973. if x != nil && x.RealTradeAmount != nil {
  5974. return *x.RealTradeAmount
  5975. }
  5976. return 0
  5977. }
  5978. func (x *WRTradeDealedNtf) GetPerformanceAmount() float64 {
  5979. if x != nil && x.PerformanceAmount != nil {
  5980. return *x.PerformanceAmount
  5981. }
  5982. return 0
  5983. }
  5984. func (x *WRTradeDealedNtf) GetPerformancePlanID() uint64 {
  5985. if x != nil && x.PerformancePlanID != nil {
  5986. return *x.PerformancePlanID
  5987. }
  5988. return 0
  5989. }
  5990. func (x *WRTradeDealedNtf) GetPerformanceTemplateID() int64 {
  5991. if x != nil && x.PerformanceTemplateID != nil {
  5992. return *x.PerformanceTemplateID
  5993. }
  5994. return 0
  5995. }
  5996. // 出境检测会员操作请求
  5997. type CJJCMemberOperateReq struct {
  5998. state protoimpl.MessageState
  5999. sizeCache protoimpl.SizeCache
  6000. unknownFields protoimpl.UnknownFields
  6001. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  6002. UserID *uint32 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  6003. OperateID *uint64 `protobuf:"varint,3,opt,name=OperateID" json:"OperateID,omitempty"` // 操作人ID,必填,LoginAccount的LoginID
  6004. OperateAccount *string `protobuf:"bytes,4,opt,name=OperateAccount" json:"OperateAccount,omitempty"` // 操作人账户,LoginAccount的LoginCode,LoginCode为空则填LoginID,必
  6005. OrderID *uint64 `protobuf:"varint,5,opt,name=OrderID" json:"OrderID,omitempty"` // 单据ID,必填
  6006. OperateType *uint32 `protobuf:"varint,6,opt,name=OperateType" json:"OperateType,omitempty"` // 操作类型,必填,1:撤回2:确认发货3:确认检测结果
  6007. Remark *string `protobuf:"bytes,7,opt,name=Remark" json:"Remark,omitempty"` // 备注
  6008. ClientType *uint32 `protobuf:"varint,8,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  6009. ClientSerialNo *string `protobuf:"bytes,9,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  6010. }
  6011. func (x *CJJCMemberOperateReq) Reset() {
  6012. *x = CJJCMemberOperateReq{}
  6013. if protoimpl.UnsafeEnabled {
  6014. mi := &file_mtp2_proto_msgTypes[62]
  6015. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  6016. ms.StoreMessageInfo(mi)
  6017. }
  6018. }
  6019. func (x *CJJCMemberOperateReq) String() string {
  6020. return protoimpl.X.MessageStringOf(x)
  6021. }
  6022. func (*CJJCMemberOperateReq) ProtoMessage() {}
  6023. func (x *CJJCMemberOperateReq) ProtoReflect() protoreflect.Message {
  6024. mi := &file_mtp2_proto_msgTypes[62]
  6025. if protoimpl.UnsafeEnabled && x != nil {
  6026. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  6027. if ms.LoadMessageInfo() == nil {
  6028. ms.StoreMessageInfo(mi)
  6029. }
  6030. return ms
  6031. }
  6032. return mi.MessageOf(x)
  6033. }
  6034. // Deprecated: Use CJJCMemberOperateReq.ProtoReflect.Descriptor instead.
  6035. func (*CJJCMemberOperateReq) Descriptor() ([]byte, []int) {
  6036. return file_mtp2_proto_rawDescGZIP(), []int{62}
  6037. }
  6038. func (x *CJJCMemberOperateReq) GetHeader() *MessageHead {
  6039. if x != nil {
  6040. return x.Header
  6041. }
  6042. return nil
  6043. }
  6044. func (x *CJJCMemberOperateReq) GetUserID() uint32 {
  6045. if x != nil && x.UserID != nil {
  6046. return *x.UserID
  6047. }
  6048. return 0
  6049. }
  6050. func (x *CJJCMemberOperateReq) GetOperateID() uint64 {
  6051. if x != nil && x.OperateID != nil {
  6052. return *x.OperateID
  6053. }
  6054. return 0
  6055. }
  6056. func (x *CJJCMemberOperateReq) GetOperateAccount() string {
  6057. if x != nil && x.OperateAccount != nil {
  6058. return *x.OperateAccount
  6059. }
  6060. return ""
  6061. }
  6062. func (x *CJJCMemberOperateReq) GetOrderID() uint64 {
  6063. if x != nil && x.OrderID != nil {
  6064. return *x.OrderID
  6065. }
  6066. return 0
  6067. }
  6068. func (x *CJJCMemberOperateReq) GetOperateType() uint32 {
  6069. if x != nil && x.OperateType != nil {
  6070. return *x.OperateType
  6071. }
  6072. return 0
  6073. }
  6074. func (x *CJJCMemberOperateReq) GetRemark() string {
  6075. if x != nil && x.Remark != nil {
  6076. return *x.Remark
  6077. }
  6078. return ""
  6079. }
  6080. func (x *CJJCMemberOperateReq) GetClientType() uint32 {
  6081. if x != nil && x.ClientType != nil {
  6082. return *x.ClientType
  6083. }
  6084. return 0
  6085. }
  6086. func (x *CJJCMemberOperateReq) GetClientSerialNo() string {
  6087. if x != nil && x.ClientSerialNo != nil {
  6088. return *x.ClientSerialNo
  6089. }
  6090. return ""
  6091. }
  6092. // 出境检测会员操作响应
  6093. type CJJCMemberOperateRsp struct {
  6094. state protoimpl.MessageState
  6095. sizeCache protoimpl.SizeCache
  6096. unknownFields protoimpl.UnknownFields
  6097. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  6098. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  6099. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  6100. UserID *uint32 `protobuf:"varint,4,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  6101. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
  6102. ClientSerialNo *string `protobuf:"bytes,6,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  6103. }
  6104. func (x *CJJCMemberOperateRsp) Reset() {
  6105. *x = CJJCMemberOperateRsp{}
  6106. if protoimpl.UnsafeEnabled {
  6107. mi := &file_mtp2_proto_msgTypes[63]
  6108. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  6109. ms.StoreMessageInfo(mi)
  6110. }
  6111. }
  6112. func (x *CJJCMemberOperateRsp) String() string {
  6113. return protoimpl.X.MessageStringOf(x)
  6114. }
  6115. func (*CJJCMemberOperateRsp) ProtoMessage() {}
  6116. func (x *CJJCMemberOperateRsp) ProtoReflect() protoreflect.Message {
  6117. mi := &file_mtp2_proto_msgTypes[63]
  6118. if protoimpl.UnsafeEnabled && x != nil {
  6119. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  6120. if ms.LoadMessageInfo() == nil {
  6121. ms.StoreMessageInfo(mi)
  6122. }
  6123. return ms
  6124. }
  6125. return mi.MessageOf(x)
  6126. }
  6127. // Deprecated: Use CJJCMemberOperateRsp.ProtoReflect.Descriptor instead.
  6128. func (*CJJCMemberOperateRsp) Descriptor() ([]byte, []int) {
  6129. return file_mtp2_proto_rawDescGZIP(), []int{63}
  6130. }
  6131. func (x *CJJCMemberOperateRsp) GetHeader() *MessageHead {
  6132. if x != nil {
  6133. return x.Header
  6134. }
  6135. return nil
  6136. }
  6137. func (x *CJJCMemberOperateRsp) GetRetCode() int32 {
  6138. if x != nil && x.RetCode != nil {
  6139. return *x.RetCode
  6140. }
  6141. return 0
  6142. }
  6143. func (x *CJJCMemberOperateRsp) GetRetDesc() string {
  6144. if x != nil && x.RetDesc != nil {
  6145. return *x.RetDesc
  6146. }
  6147. return ""
  6148. }
  6149. func (x *CJJCMemberOperateRsp) GetUserID() uint32 {
  6150. if x != nil && x.UserID != nil {
  6151. return *x.UserID
  6152. }
  6153. return 0
  6154. }
  6155. func (x *CJJCMemberOperateRsp) GetAccountID() uint64 {
  6156. if x != nil && x.AccountID != nil {
  6157. return *x.AccountID
  6158. }
  6159. return 0
  6160. }
  6161. func (x *CJJCMemberOperateRsp) GetClientSerialNo() string {
  6162. if x != nil && x.ClientSerialNo != nil {
  6163. return *x.ClientSerialNo
  6164. }
  6165. return ""
  6166. }
  6167. // 保税服务会员操作请求
  6168. type BSFWMemberOperateReq struct {
  6169. state protoimpl.MessageState
  6170. sizeCache protoimpl.SizeCache
  6171. unknownFields protoimpl.UnknownFields
  6172. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  6173. UserID *uint32 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  6174. OperateID *uint64 `protobuf:"varint,3,opt,name=OperateID" json:"OperateID,omitempty"` // 操作人ID,必填,LoginAccount的LoginID
  6175. OperateAccount *string `protobuf:"bytes,4,opt,name=OperateAccount" json:"OperateAccount,omitempty"` // 操作人账户,LoginAccount的LoginCode,LoginCode为空则填LoginID,必
  6176. OrderID *uint64 `protobuf:"varint,5,opt,name=OrderID" json:"OrderID,omitempty"` // 单据ID,必填
  6177. OperateType *uint32 `protobuf:"varint,6,opt,name=OperateType" json:"OperateType,omitempty"` // 操作类型,必填,1:上传发货单2:上传盖章单据3:确认预付款
  6178. FileDetails []*FileDetail `protobuf:"bytes,7,rep,name=FileDetails" json:"FileDetails,omitempty"` // 文件列表
  6179. Remark *string `protobuf:"bytes,8,opt,name=Remark" json:"Remark,omitempty"` // 备注
  6180. GZBSDeliveryType *uint32 `protobuf:"varint,9,opt,name=GZBSDeliveryType" json:"GZBSDeliveryType,omitempty"` // 收货方式,OperateType=1:上传发货单时必填,枚举“GZBSDeliveryType”
  6181. OtherLogistics *string `protobuf:"bytes,10,opt,name=OtherLogistics" json:"OtherLogistics,omitempty"` // 指定其它物流,OperateType=1:上传发货单时填写
  6182. ClientType *uint32 `protobuf:"varint,11,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  6183. ClientSerialNo *string `protobuf:"bytes,12,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  6184. }
  6185. func (x *BSFWMemberOperateReq) Reset() {
  6186. *x = BSFWMemberOperateReq{}
  6187. if protoimpl.UnsafeEnabled {
  6188. mi := &file_mtp2_proto_msgTypes[64]
  6189. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  6190. ms.StoreMessageInfo(mi)
  6191. }
  6192. }
  6193. func (x *BSFWMemberOperateReq) String() string {
  6194. return protoimpl.X.MessageStringOf(x)
  6195. }
  6196. func (*BSFWMemberOperateReq) ProtoMessage() {}
  6197. func (x *BSFWMemberOperateReq) ProtoReflect() protoreflect.Message {
  6198. mi := &file_mtp2_proto_msgTypes[64]
  6199. if protoimpl.UnsafeEnabled && x != nil {
  6200. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  6201. if ms.LoadMessageInfo() == nil {
  6202. ms.StoreMessageInfo(mi)
  6203. }
  6204. return ms
  6205. }
  6206. return mi.MessageOf(x)
  6207. }
  6208. // Deprecated: Use BSFWMemberOperateReq.ProtoReflect.Descriptor instead.
  6209. func (*BSFWMemberOperateReq) Descriptor() ([]byte, []int) {
  6210. return file_mtp2_proto_rawDescGZIP(), []int{64}
  6211. }
  6212. func (x *BSFWMemberOperateReq) GetHeader() *MessageHead {
  6213. if x != nil {
  6214. return x.Header
  6215. }
  6216. return nil
  6217. }
  6218. func (x *BSFWMemberOperateReq) GetUserID() uint32 {
  6219. if x != nil && x.UserID != nil {
  6220. return *x.UserID
  6221. }
  6222. return 0
  6223. }
  6224. func (x *BSFWMemberOperateReq) GetOperateID() uint64 {
  6225. if x != nil && x.OperateID != nil {
  6226. return *x.OperateID
  6227. }
  6228. return 0
  6229. }
  6230. func (x *BSFWMemberOperateReq) GetOperateAccount() string {
  6231. if x != nil && x.OperateAccount != nil {
  6232. return *x.OperateAccount
  6233. }
  6234. return ""
  6235. }
  6236. func (x *BSFWMemberOperateReq) GetOrderID() uint64 {
  6237. if x != nil && x.OrderID != nil {
  6238. return *x.OrderID
  6239. }
  6240. return 0
  6241. }
  6242. func (x *BSFWMemberOperateReq) GetOperateType() uint32 {
  6243. if x != nil && x.OperateType != nil {
  6244. return *x.OperateType
  6245. }
  6246. return 0
  6247. }
  6248. func (x *BSFWMemberOperateReq) GetFileDetails() []*FileDetail {
  6249. if x != nil {
  6250. return x.FileDetails
  6251. }
  6252. return nil
  6253. }
  6254. func (x *BSFWMemberOperateReq) GetRemark() string {
  6255. if x != nil && x.Remark != nil {
  6256. return *x.Remark
  6257. }
  6258. return ""
  6259. }
  6260. func (x *BSFWMemberOperateReq) GetGZBSDeliveryType() uint32 {
  6261. if x != nil && x.GZBSDeliveryType != nil {
  6262. return *x.GZBSDeliveryType
  6263. }
  6264. return 0
  6265. }
  6266. func (x *BSFWMemberOperateReq) GetOtherLogistics() string {
  6267. if x != nil && x.OtherLogistics != nil {
  6268. return *x.OtherLogistics
  6269. }
  6270. return ""
  6271. }
  6272. func (x *BSFWMemberOperateReq) GetClientType() uint32 {
  6273. if x != nil && x.ClientType != nil {
  6274. return *x.ClientType
  6275. }
  6276. return 0
  6277. }
  6278. func (x *BSFWMemberOperateReq) GetClientSerialNo() string {
  6279. if x != nil && x.ClientSerialNo != nil {
  6280. return *x.ClientSerialNo
  6281. }
  6282. return ""
  6283. }
  6284. // 保税服务会员操作响应
  6285. type BSFWMemberOperateRsp struct {
  6286. state protoimpl.MessageState
  6287. sizeCache protoimpl.SizeCache
  6288. unknownFields protoimpl.UnknownFields
  6289. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  6290. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  6291. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  6292. UserID *uint32 `protobuf:"varint,4,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  6293. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
  6294. ClientSerialNo *string `protobuf:"bytes,6,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  6295. }
  6296. func (x *BSFWMemberOperateRsp) Reset() {
  6297. *x = BSFWMemberOperateRsp{}
  6298. if protoimpl.UnsafeEnabled {
  6299. mi := &file_mtp2_proto_msgTypes[65]
  6300. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  6301. ms.StoreMessageInfo(mi)
  6302. }
  6303. }
  6304. func (x *BSFWMemberOperateRsp) String() string {
  6305. return protoimpl.X.MessageStringOf(x)
  6306. }
  6307. func (*BSFWMemberOperateRsp) ProtoMessage() {}
  6308. func (x *BSFWMemberOperateRsp) ProtoReflect() protoreflect.Message {
  6309. mi := &file_mtp2_proto_msgTypes[65]
  6310. if protoimpl.UnsafeEnabled && x != nil {
  6311. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  6312. if ms.LoadMessageInfo() == nil {
  6313. ms.StoreMessageInfo(mi)
  6314. }
  6315. return ms
  6316. }
  6317. return mi.MessageOf(x)
  6318. }
  6319. // Deprecated: Use BSFWMemberOperateRsp.ProtoReflect.Descriptor instead.
  6320. func (*BSFWMemberOperateRsp) Descriptor() ([]byte, []int) {
  6321. return file_mtp2_proto_rawDescGZIP(), []int{65}
  6322. }
  6323. func (x *BSFWMemberOperateRsp) GetHeader() *MessageHead {
  6324. if x != nil {
  6325. return x.Header
  6326. }
  6327. return nil
  6328. }
  6329. func (x *BSFWMemberOperateRsp) GetRetCode() int32 {
  6330. if x != nil && x.RetCode != nil {
  6331. return *x.RetCode
  6332. }
  6333. return 0
  6334. }
  6335. func (x *BSFWMemberOperateRsp) GetRetDesc() string {
  6336. if x != nil && x.RetDesc != nil {
  6337. return *x.RetDesc
  6338. }
  6339. return ""
  6340. }
  6341. func (x *BSFWMemberOperateRsp) GetUserID() uint32 {
  6342. if x != nil && x.UserID != nil {
  6343. return *x.UserID
  6344. }
  6345. return 0
  6346. }
  6347. func (x *BSFWMemberOperateRsp) GetAccountID() uint64 {
  6348. if x != nil && x.AccountID != nil {
  6349. return *x.AccountID
  6350. }
  6351. return 0
  6352. }
  6353. func (x *BSFWMemberOperateRsp) GetClientSerialNo() string {
  6354. if x != nil && x.ClientSerialNo != nil {
  6355. return *x.ClientSerialNo
  6356. }
  6357. return ""
  6358. }
  6359. // 账户资金信息请求
  6360. type AccountFundInfoReq struct {
  6361. state protoimpl.MessageState
  6362. sizeCache protoimpl.SizeCache
  6363. unknownFields protoimpl.UnknownFields
  6364. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  6365. OrderId *uint64 `protobuf:"varint,2,opt,name=OrderId" json:"OrderId,omitempty"` // 查询委托单号
  6366. AccountId *uint64 `protobuf:"varint,3,opt,name=AccountId" json:"AccountId,omitempty"` // 查询资金账号
  6367. QueryBitMask *uint32 `protobuf:"varint,4,opt,name=QueryBitMask" json:"QueryBitMask,omitempty"` // 查询位掩码
  6368. }
  6369. func (x *AccountFundInfoReq) Reset() {
  6370. *x = AccountFundInfoReq{}
  6371. if protoimpl.UnsafeEnabled {
  6372. mi := &file_mtp2_proto_msgTypes[66]
  6373. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  6374. ms.StoreMessageInfo(mi)
  6375. }
  6376. }
  6377. func (x *AccountFundInfoReq) String() string {
  6378. return protoimpl.X.MessageStringOf(x)
  6379. }
  6380. func (*AccountFundInfoReq) ProtoMessage() {}
  6381. func (x *AccountFundInfoReq) ProtoReflect() protoreflect.Message {
  6382. mi := &file_mtp2_proto_msgTypes[66]
  6383. if protoimpl.UnsafeEnabled && x != nil {
  6384. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  6385. if ms.LoadMessageInfo() == nil {
  6386. ms.StoreMessageInfo(mi)
  6387. }
  6388. return ms
  6389. }
  6390. return mi.MessageOf(x)
  6391. }
  6392. // Deprecated: Use AccountFundInfoReq.ProtoReflect.Descriptor instead.
  6393. func (*AccountFundInfoReq) Descriptor() ([]byte, []int) {
  6394. return file_mtp2_proto_rawDescGZIP(), []int{66}
  6395. }
  6396. func (x *AccountFundInfoReq) GetHeader() *MessageHead {
  6397. if x != nil {
  6398. return x.Header
  6399. }
  6400. return nil
  6401. }
  6402. func (x *AccountFundInfoReq) GetOrderId() uint64 {
  6403. if x != nil && x.OrderId != nil {
  6404. return *x.OrderId
  6405. }
  6406. return 0
  6407. }
  6408. func (x *AccountFundInfoReq) GetAccountId() uint64 {
  6409. if x != nil && x.AccountId != nil {
  6410. return *x.AccountId
  6411. }
  6412. return 0
  6413. }
  6414. func (x *AccountFundInfoReq) GetQueryBitMask() uint32 {
  6415. if x != nil && x.QueryBitMask != nil {
  6416. return *x.QueryBitMask
  6417. }
  6418. return 0
  6419. }
  6420. // 账户资金信息响应
  6421. type AccountFundInfoRsp struct {
  6422. state protoimpl.MessageState
  6423. sizeCache protoimpl.SizeCache
  6424. unknownFields protoimpl.UnknownFields
  6425. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  6426. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  6427. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  6428. OrderId *uint64 `protobuf:"varint,4,opt,name=OrderId" json:"OrderId,omitempty"` // 查询委托单号
  6429. AccountId *uint64 `protobuf:"varint,5,opt,name=AccountId" json:"AccountId,omitempty"` // 查询资金账号
  6430. AvailableMargin *float64 `protobuf:"fixed64,6,opt,name=AvailableMargin" json:"AvailableMargin,omitempty"` // 可用保证金,查询位掩码:1
  6431. AvailableOutMoney *float64 `protobuf:"fixed64,7,opt,name=AvailableOutMoney" json:"AvailableOutMoney,omitempty"` // 可出资金,查询位掩码:2
  6432. IsCleanAccount *int32 `protobuf:"varint,8,opt,name=IsCleanAccount" json:"IsCleanAccount,omitempty"` // 是否是干净账户,查询位掩码:4
  6433. }
  6434. func (x *AccountFundInfoRsp) Reset() {
  6435. *x = AccountFundInfoRsp{}
  6436. if protoimpl.UnsafeEnabled {
  6437. mi := &file_mtp2_proto_msgTypes[67]
  6438. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  6439. ms.StoreMessageInfo(mi)
  6440. }
  6441. }
  6442. func (x *AccountFundInfoRsp) String() string {
  6443. return protoimpl.X.MessageStringOf(x)
  6444. }
  6445. func (*AccountFundInfoRsp) ProtoMessage() {}
  6446. func (x *AccountFundInfoRsp) ProtoReflect() protoreflect.Message {
  6447. mi := &file_mtp2_proto_msgTypes[67]
  6448. if protoimpl.UnsafeEnabled && x != nil {
  6449. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  6450. if ms.LoadMessageInfo() == nil {
  6451. ms.StoreMessageInfo(mi)
  6452. }
  6453. return ms
  6454. }
  6455. return mi.MessageOf(x)
  6456. }
  6457. // Deprecated: Use AccountFundInfoRsp.ProtoReflect.Descriptor instead.
  6458. func (*AccountFundInfoRsp) Descriptor() ([]byte, []int) {
  6459. return file_mtp2_proto_rawDescGZIP(), []int{67}
  6460. }
  6461. func (x *AccountFundInfoRsp) GetHeader() *MessageHead {
  6462. if x != nil {
  6463. return x.Header
  6464. }
  6465. return nil
  6466. }
  6467. func (x *AccountFundInfoRsp) GetRetCode() int32 {
  6468. if x != nil && x.RetCode != nil {
  6469. return *x.RetCode
  6470. }
  6471. return 0
  6472. }
  6473. func (x *AccountFundInfoRsp) GetRetDesc() string {
  6474. if x != nil && x.RetDesc != nil {
  6475. return *x.RetDesc
  6476. }
  6477. return ""
  6478. }
  6479. func (x *AccountFundInfoRsp) GetOrderId() uint64 {
  6480. if x != nil && x.OrderId != nil {
  6481. return *x.OrderId
  6482. }
  6483. return 0
  6484. }
  6485. func (x *AccountFundInfoRsp) GetAccountId() uint64 {
  6486. if x != nil && x.AccountId != nil {
  6487. return *x.AccountId
  6488. }
  6489. return 0
  6490. }
  6491. func (x *AccountFundInfoRsp) GetAvailableMargin() float64 {
  6492. if x != nil && x.AvailableMargin != nil {
  6493. return *x.AvailableMargin
  6494. }
  6495. return 0
  6496. }
  6497. func (x *AccountFundInfoRsp) GetAvailableOutMoney() float64 {
  6498. if x != nil && x.AvailableOutMoney != nil {
  6499. return *x.AvailableOutMoney
  6500. }
  6501. return 0
  6502. }
  6503. func (x *AccountFundInfoRsp) GetIsCleanAccount() int32 {
  6504. if x != nil && x.IsCleanAccount != nil {
  6505. return *x.IsCleanAccount
  6506. }
  6507. return 0
  6508. }
  6509. var File_mtp2_proto protoreflect.FileDescriptor
  6510. var file_mtp2_proto_rawDesc = []byte{
  6511. 0x0a, 0x0a, 0x6d, 0x74, 0x70, 0x32, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x02, 0x70, 0x62,
  6512. 0x22, 0xc7, 0x02, 0x0a, 0x0b, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64,
  6513. 0x12, 0x18, 0x0a, 0x07, 0x46, 0x75, 0x6e, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  6514. 0x0d, 0x52, 0x07, 0x46, 0x75, 0x6e, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x52, 0x65,
  6515. 0x71, 0x75, 0x65, 0x73, 0x74, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x52,
  6516. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f,
  6517. 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63,
  6518. 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73,
  6519. 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73,
  6520. 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x69, 0x6d, 0x65,
  6521. 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x69,
  6522. 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x49, 0x44, 0x18, 0x06, 0x20,
  6523. 0x01, 0x28, 0x0d, 0x52, 0x07, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x49, 0x44, 0x12, 0x12, 0x0a, 0x04,
  6524. 0x55, 0x55, 0x49, 0x44, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x55, 0x55, 0x49, 0x44,
  6525. 0x12, 0x1a, 0x0a, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x18, 0x08, 0x20, 0x01,
  6526. 0x28, 0x0d, 0x52, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06,
  6527. 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73,
  6528. 0x65, 0x72, 0x49, 0x44, 0x12, 0x24, 0x0a, 0x0d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  6529. 0x54, 0x6f, 0x70, 0x69, 0x63, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x52, 0x65, 0x73,
  6530. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x12, 0x1e, 0x0a, 0x0a, 0x41, 0x63,
  6531. 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x32, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a,
  6532. 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x32, 0x22, 0xa6, 0x01, 0x0a, 0x0a, 0x4e,
  6533. 0x6f, 0x74, 0x69, 0x66, 0x79, 0x48, 0x65, 0x61, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x4e, 0x74, 0x66,
  6534. 0x4d, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x4e, 0x74, 0x66, 0x4d,
  6535. 0x6f, 0x64, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x45, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x41, 0x63,
  6536. 0x63, 0x74, 0x49, 0x44, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0e, 0x45, 0x78, 0x63,
  6537. 0x6c, 0x75, 0x64, 0x65, 0x41, 0x63, 0x63, 0x74, 0x49, 0x44, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x45,
  6538. 0x78, 0x63, 0x68, 0x49, 0x44, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x07, 0x45, 0x78,
  6539. 0x63, 0x68, 0x49, 0x44, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x49,
  6540. 0x44, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x09, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72,
  6541. 0x49, 0x44, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44,
  6542. 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x04, 0x52, 0x0a, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  6543. 0x49, 0x44, 0x73, 0x22, 0x44, 0x0a, 0x0a, 0x46, 0x69, 0x6c, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69,
  6544. 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x46, 0x69, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20,
  6545. 0x01, 0x28, 0x09, 0x52, 0x08, 0x46, 0x69, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a,
  6546. 0x08, 0x46, 0x69, 0x6c, 0x65, 0x50, 0x61, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  6547. 0x08, 0x46, 0x69, 0x6c, 0x65, 0x50, 0x61, 0x74, 0x68, 0x22, 0xaf, 0x01, 0x0a, 0x0c, 0x4d, 0x6f,
  6548. 0x64, 0x69, 0x66, 0x79, 0x50, 0x77, 0x64, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65,
  6549. 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e,
  6550. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61,
  6551. 0x64, 0x65, 0x72, 0x12, 0x24, 0x0a, 0x0d, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x50, 0x77, 0x64,
  6552. 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0d, 0x4d, 0x6f, 0x64, 0x69,
  6553. 0x66, 0x79, 0x50, 0x77, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x4d, 0x6f, 0x64,
  6554. 0x69, 0x66, 0x79, 0x50, 0x77, 0x64, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b,
  6555. 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x50, 0x77, 0x64, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x4f,
  6556. 0x6c, 0x64, 0x50, 0x77, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x4f, 0x6c, 0x64,
  6557. 0x50, 0x77, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x4e, 0x65, 0x77, 0x50, 0x77, 0x64, 0x18, 0x05, 0x20,
  6558. 0x01, 0x28, 0x09, 0x52, 0x06, 0x4e, 0x65, 0x77, 0x50, 0x77, 0x64, 0x22, 0x6b, 0x0a, 0x0c, 0x4d,
  6559. 0x6f, 0x64, 0x69, 0x66, 0x79, 0x50, 0x77, 0x64, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48,
  6560. 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62,
  6561. 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65,
  6562. 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18,
  6563. 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18,
  6564. 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  6565. 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x22, 0xcd, 0x03, 0x0a, 0x12, 0x55, 0x73, 0x65,
  6566. 0x72, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12,
  6567. 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
  6568. 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64,
  6569. 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65,
  6570. 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04,
  6571. 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x49, 0x44,
  6572. 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d,
  6573. 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x22, 0x0a, 0x0c, 0x52, 0x65, 0x63, 0x65,
  6574. 0x69, 0x76, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c,
  6575. 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a,
  6576. 0x43, 0x61, 0x72, 0x64, 0x54, 0x79, 0x70, 0x65, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d,
  6577. 0x52, 0x0a, 0x43, 0x61, 0x72, 0x64, 0x54, 0x79, 0x70, 0x65, 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07,
  6578. 0x43, 0x61, 0x72, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x43,
  6579. 0x61, 0x72, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x4e,
  6580. 0x75, 0x6d, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x4e,
  6581. 0x75, 0x6d, 0x12, 0x1c, 0x0a, 0x09, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x49, 0x44, 0x18,
  6582. 0x08, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x49, 0x44,
  6583. 0x12, 0x1e, 0x0a, 0x0a, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x49, 0x44, 0x18, 0x09,
  6584. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x49, 0x44,
  6585. 0x12, 0x16, 0x0a, 0x06, 0x43, 0x69, 0x74, 0x79, 0x49, 0x44, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0d,
  6586. 0x52, 0x06, 0x43, 0x69, 0x74, 0x79, 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x44, 0x69, 0x73, 0x74,
  6587. 0x72, 0x69, 0x63, 0x74, 0x49, 0x44, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x44, 0x69,
  6588. 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07, 0x41, 0x64, 0x64, 0x72,
  6589. 0x65, 0x73, 0x73, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x41, 0x64, 0x64, 0x72, 0x65,
  6590. 0x73, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x54, 0x61, 0x6b, 0x65, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b,
  6591. 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x54, 0x61, 0x6b, 0x65, 0x52, 0x65, 0x6d, 0x61,
  6592. 0x72, 0x6b, 0x12, 0x24, 0x0a, 0x0d, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x49, 0x6e, 0x66,
  6593. 0x6f, 0x49, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x52, 0x65, 0x63, 0x65, 0x69,
  6594. 0x76, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x22, 0x97, 0x01, 0x0a, 0x12, 0x55, 0x73, 0x65,
  6595. 0x72, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x73, 0x70, 0x12,
  6596. 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
  6597. 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64,
  6598. 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43,
  6599. 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f,
  6600. 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20,
  6601. 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x24, 0x0a, 0x0d,
  6602. 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x18, 0x04, 0x20,
  6603. 0x01, 0x28, 0x04, 0x52, 0x0d, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x49, 0x6e, 0x66, 0x6f,
  6604. 0x49, 0x64, 0x22, 0x66, 0x0a, 0x15, 0x44, 0x65, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63,
  6605. 0x65, 0x69, 0x76, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48,
  6606. 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62,
  6607. 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65,
  6608. 0x61, 0x64, 0x65, 0x72, 0x12, 0x24, 0x0a, 0x0d, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x49,
  6609. 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x52, 0x65, 0x63,
  6610. 0x65, 0x69, 0x76, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x22, 0x74, 0x0a, 0x15, 0x44, 0x65,
  6611. 0x6c, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x49, 0x6e, 0x66, 0x6f,
  6612. 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20,
  6613. 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  6614. 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07,
  6615. 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52,
  6616. 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73,
  6617. 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63,
  6618. 0x22, 0x72, 0x0a, 0x17, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x49,
  6619. 0x73, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48,
  6620. 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62,
  6621. 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65,
  6622. 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x41, 0x75, 0x74, 0x6f, 0x49, 0x64, 0x18, 0x02,
  6623. 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x41, 0x75, 0x74, 0x6f, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06,
  6624. 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x55, 0x73,
  6625. 0x65, 0x72, 0x49, 0x64, 0x22, 0x8e, 0x01, 0x0a, 0x17, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63,
  6626. 0x65, 0x69, 0x76, 0x65, 0x49, 0x73, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52, 0x73, 0x70,
  6627. 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
  6628. 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61,
  6629. 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74,
  6630. 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43,
  6631. 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03,
  6632. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x16, 0x0a,
  6633. 0x06, 0x41, 0x75, 0x74, 0x6f, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x41,
  6634. 0x75, 0x74, 0x6f, 0x49, 0x64, 0x22, 0x9d, 0x03, 0x0a, 0x12, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65,
  6635. 0x63, 0x65, 0x69, 0x70, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06,
  6636. 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70,
  6637. 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48,
  6638. 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53,
  6639. 0x65, 0x72, 0x69, 0x61, 0x6c, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x43,
  6640. 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x49, 0x44, 0x12, 0x16, 0x0a,
  6641. 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55,
  6642. 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d,
  6643. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d,
  6644. 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x54, 0x79, 0x70, 0x65,
  6645. 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x54,
  6646. 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x54, 0x61, 0x78, 0x70, 0x61, 0x79, 0x65, 0x72, 0x49,
  6647. 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x54, 0x61, 0x78, 0x70, 0x61, 0x79, 0x65,
  6648. 0x72, 0x49, 0x44, 0x12, 0x20, 0x0a, 0x0b, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x49, 0x6e,
  6649. 0x66, 0x6f, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63,
  6650. 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x24, 0x0a, 0x0d, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74,
  6651. 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x52, 0x65,
  6652. 0x63, 0x65, 0x69, 0x70, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x52,
  6653. 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x42, 0x61, 0x6e, 0x6b, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09,
  6654. 0x52, 0x0b, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x42, 0x61, 0x6e, 0x6b, 0x12, 0x26, 0x0a,
  6655. 0x0e, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18,
  6656. 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x41, 0x63,
  6657. 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73,
  6658. 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12,
  6659. 0x14, 0x0a, 0x05, 0x49, 0x44, 0x4e, 0x75, 0x6d, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  6660. 0x49, 0x44, 0x4e, 0x75, 0x6d, 0x22, 0x97, 0x01, 0x0a, 0x12, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65,
  6661. 0x63, 0x65, 0x69, 0x70, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06,
  6662. 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70,
  6663. 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48,
  6664. 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65,
  6665. 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12,
  6666. 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  6667. 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x24, 0x0a, 0x0d, 0x52, 0x65, 0x63,
  6668. 0x65, 0x69, 0x70, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04,
  6669. 0x52, 0x0d, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x22,
  6670. 0x66, 0x0a, 0x15, 0x44, 0x65, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70,
  6671. 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64,
  6672. 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65,
  6673. 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65,
  6674. 0x72, 0x12, 0x24, 0x0a, 0x0d, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x49, 0x6e, 0x66, 0x6f,
  6675. 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70,
  6676. 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x22, 0x74, 0x0a, 0x15, 0x44, 0x65, 0x6c, 0x55, 0x73,
  6677. 0x65, 0x72, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x73, 0x70,
  6678. 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
  6679. 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61,
  6680. 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74,
  6681. 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43,
  6682. 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03,
  6683. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x22, 0xac, 0x09,
  6684. 0x0a, 0x0e, 0x74, 0x32, 0x62, 0x42, 0x61, 0x6e, 0x6b, 0x53, 0x69, 0x67, 0x6e, 0x52, 0x65, 0x71,
  6685. 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
  6686. 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61,
  6687. 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x24, 0x0a, 0x0d, 0x45, 0x78, 0x74,
  6688. 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x02, 0x28, 0x04,
  6689. 0x52, 0x0d, 0x45, 0x78, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x12,
  6690. 0x16, 0x0a, 0x06, 0x45, 0x78, 0x63, 0x68, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  6691. 0x06, 0x45, 0x78, 0x63, 0x68, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x54, 0x72, 0x61, 0x64, 0x65,
  6692. 0x44, 0x61, 0x74, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x54, 0x72, 0x61, 0x64,
  6693. 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x45, 0x78, 0x63, 0x68, 0x54, 0x69, 0x63,
  6694. 0x6b, 0x65, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x45, 0x78, 0x63, 0x68, 0x54,
  6695. 0x69, 0x63, 0x6b, 0x65, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  6696. 0x43, 0x6f, 0x64, 0x65, 0x18, 0x06, 0x20, 0x02, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x63, 0x63, 0x6f,
  6697. 0x75, 0x6e, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75,
  6698. 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x02, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x63,
  6699. 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x43, 0x75, 0x73,
  6700. 0x42, 0x61, 0x6e, 0x6b, 0x49, 0x44, 0x18, 0x08, 0x20, 0x02, 0x28, 0x09, 0x52, 0x09, 0x43, 0x75,
  6701. 0x73, 0x42, 0x61, 0x6e, 0x6b, 0x49, 0x44, 0x12, 0x20, 0x0a, 0x0b, 0x4f, 0x70, 0x65, 0x72, 0x61,
  6702. 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x09, 0x20, 0x02, 0x28, 0x05, 0x52, 0x0b, 0x4f, 0x70,
  6703. 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x49, 0x73, 0x46,
  6704. 0x6f, 0x72, 0x63, 0x65, 0x18, 0x0a, 0x20, 0x02, 0x28, 0x05, 0x52, 0x07, 0x49, 0x73, 0x46, 0x6f,
  6705. 0x72, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x18,
  6706. 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x12,
  6707. 0x20, 0x0a, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0c,
  6708. 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x79, 0x70,
  6709. 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x4f, 0x70, 0x65, 0x6e, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63,
  6710. 0x49, 0x64, 0x18, 0x0d, 0x20, 0x02, 0x28, 0x09, 0x52, 0x0d, 0x4f, 0x70, 0x65, 0x6e, 0x42, 0x61,
  6711. 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x49, 0x64, 0x12, 0x36, 0x0a, 0x16, 0x46, 0x6f, 0x72, 0x63, 0x65,
  6712. 0x53, 0x69, 0x67, 0x6e, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4e,
  6713. 0x6f, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x16, 0x46, 0x6f, 0x72, 0x63, 0x65, 0x53, 0x69,
  6714. 0x67, 0x6e, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4e, 0x6f, 0x12,
  6715. 0x3a, 0x0a, 0x18, 0x46, 0x6f, 0x72, 0x63, 0x65, 0x53, 0x69, 0x67, 0x6e, 0x42, 0x61, 0x6e, 0x6b,
  6716. 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x0f, 0x20, 0x01, 0x28,
  6717. 0x09, 0x52, 0x18, 0x46, 0x6f, 0x72, 0x63, 0x65, 0x53, 0x69, 0x67, 0x6e, 0x42, 0x61, 0x6e, 0x6b,
  6718. 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x42,
  6719. 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4e, 0x6f, 0x18, 0x10, 0x20, 0x02,
  6720. 0x28, 0x09, 0x52, 0x0d, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4e,
  6721. 0x6f, 0x12, 0x28, 0x0a, 0x0f, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  6722. 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x42, 0x61, 0x6e, 0x6b,
  6723. 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x45,
  6724. 0x78, 0x42, 0x61, 0x6e, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x12, 0x20, 0x02, 0x28, 0x09, 0x52,
  6725. 0x0a, 0x45, 0x78, 0x42, 0x61, 0x6e, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x4f,
  6726. 0x70, 0x65, 0x6e, 0x42, 0x61, 0x6e, 0x6b, 0x4e, 0x6f, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09, 0x52,
  6727. 0x0a, 0x4f, 0x70, 0x65, 0x6e, 0x42, 0x61, 0x6e, 0x6b, 0x4e, 0x6f, 0x12, 0x22, 0x0a, 0x0c, 0x4f,
  6728. 0x70, 0x65, 0x6e, 0x42, 0x61, 0x6e, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x14, 0x20, 0x01, 0x28,
  6729. 0x09, 0x52, 0x0c, 0x4f, 0x70, 0x65, 0x6e, 0x42, 0x61, 0x6e, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x12,
  6730. 0x1a, 0x0a, 0x08, 0x43, 0x65, 0x72, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x15, 0x20, 0x02, 0x28,
  6731. 0x09, 0x52, 0x08, 0x43, 0x65, 0x72, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x43,
  6732. 0x65, 0x72, 0x74, 0x49, 0x44, 0x18, 0x16, 0x20, 0x02, 0x28, 0x09, 0x52, 0x06, 0x43, 0x65, 0x72,
  6733. 0x74, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75,
  6734. 0x6e, 0x74, 0x50, 0x57, 0x44, 0x18, 0x17, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x42, 0x61, 0x6e,
  6735. 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x50, 0x57, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41,
  6736. 0x67, 0x65, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x18, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
  6737. 0x41, 0x67, 0x65, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x41, 0x67, 0x65,
  6738. 0x6e, 0x74, 0x43, 0x65, 0x72, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x19, 0x20, 0x01, 0x28, 0x05,
  6739. 0x52, 0x0d, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x43, 0x65, 0x72, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12,
  6740. 0x20, 0x0a, 0x0b, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x43, 0x65, 0x72, 0x74, 0x49, 0x44, 0x18, 0x1a,
  6741. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x43, 0x65, 0x72, 0x74, 0x49,
  6742. 0x44, 0x12, 0x28, 0x0a, 0x0f, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  6743. 0x54, 0x79, 0x70, 0x65, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0f, 0x42, 0x61, 0x6e, 0x6b,
  6744. 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x42,
  6745. 0x61, 0x6e, 0x6b, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x1c, 0x20, 0x01, 0x28,
  6746. 0x09, 0x52, 0x0c, 0x42, 0x61, 0x6e, 0x6b, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12,
  6747. 0x1a, 0x0a, 0x08, 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x69, 0x74, 0x79, 0x18, 0x1d, 0x20, 0x01, 0x28,
  6748. 0x09, 0x52, 0x08, 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x69, 0x74, 0x79, 0x12, 0x22, 0x0a, 0x0c, 0x42,
  6749. 0x61, 0x6e, 0x6b, 0x43, 0x61, 0x72, 0x64, 0x54, 0x79, 0x70, 0x65, 0x18, 0x1e, 0x20, 0x01, 0x28,
  6750. 0x05, 0x52, 0x0c, 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x61, 0x72, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12,
  6751. 0x20, 0x0a, 0x0b, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x1f,
  6752. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x50, 0x68, 0x6f, 0x6e,
  6753. 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x43, 0x6f, 0x64,
  6754. 0x65, 0x18, 0x20, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66,
  6755. 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x21,
  6756. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x1f, 0x0a, 0x0b, 0x65,
  6757. 0x78, 0x74, 0x65, 0x6e, 0x64, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x22, 0x20, 0x01, 0x28, 0x09,
  6758. 0x52, 0x0a, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0xd5, 0x04, 0x0a,
  6759. 0x0e, 0x74, 0x32, 0x62, 0x42, 0x61, 0x6e, 0x6b, 0x53, 0x69, 0x67, 0x6e, 0x52, 0x73, 0x70, 0x12,
  6760. 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
  6761. 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64,
  6762. 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43,
  6763. 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f,
  6764. 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20,
  6765. 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x24, 0x0a, 0x0d,
  6766. 0x45, 0x78, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20,
  6767. 0x01, 0x28, 0x04, 0x52, 0x0d, 0x45, 0x78, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72,
  6768. 0x49, 0x44, 0x12, 0x20, 0x0a, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x43, 0x6f, 0x64,
  6769. 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  6770. 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x4e, 0x65, 0x74, 0x41, 0x64, 0x64, 0x72, 0x18,
  6771. 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x4e, 0x65, 0x74, 0x41, 0x64, 0x64, 0x72, 0x12, 0x16,
  6772. 0x0a, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06,
  6773. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x45, 0x78, 0x63, 0x68, 0x54, 0x69,
  6774. 0x63, 0x6b, 0x65, 0x74, 0x18, 0x08, 0x20, 0x02, 0x28, 0x09, 0x52, 0x0a, 0x45, 0x78, 0x63, 0x68,
  6775. 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x45, 0x78, 0x63, 0x68, 0x49, 0x64,
  6776. 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x45, 0x78, 0x63, 0x68, 0x49, 0x64, 0x12, 0x1c,
  6777. 0x0a, 0x09, 0x54, 0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28,
  6778. 0x09, 0x52, 0x09, 0x54, 0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x22, 0x0a, 0x0c,
  6779. 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x18, 0x0b, 0x20, 0x01,
  6780. 0x28, 0x09, 0x52, 0x0c, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74,
  6781. 0x12, 0x24, 0x0a, 0x0d, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x43, 0x6f, 0x64,
  6782. 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45,
  6783. 0x72, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72,
  6784. 0x45, 0x72, 0x72, 0x4d, 0x73, 0x67, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x43, 0x65,
  6785. 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x22, 0x0a, 0x0c, 0x62, 0x61,
  6786. 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09,
  6787. 0x52, 0x0c, 0x62, 0x61, 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x12, 0x2a,
  6788. 0x0a, 0x10, 0x62, 0x61, 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x4e, 0x61,
  6789. 0x6d, 0x65, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x62, 0x61, 0x6e, 0x6b, 0x43, 0x68,
  6790. 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x42, 0x61,
  6791. 0x6e, 0x6b, 0x49, 0x64, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x42, 0x61, 0x6e, 0x6b,
  6792. 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x4e, 0x75, 0x6d,
  6793. 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x4e,
  6794. 0x75, 0x6d, 0x12, 0x20, 0x0a, 0x0b, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x4e, 0x61, 0x6d,
  6795. 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63,
  6796. 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x81, 0x03, 0x0a, 0x14, 0x74, 0x32, 0x62, 0x42, 0x61, 0x6e, 0x6b,
  6797. 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a,
  6798. 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e,
  6799. 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06,
  6800. 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x24, 0x0a, 0x0d, 0x45, 0x78, 0x74, 0x4f, 0x70, 0x65,
  6801. 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x02, 0x28, 0x04, 0x52, 0x0d, 0x45,
  6802. 0x78, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06,
  6803. 0x45, 0x78, 0x63, 0x68, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x45, 0x78,
  6804. 0x63, 0x68, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x43,
  6805. 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x02, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75,
  6806. 0x6e, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x43, 0x75, 0x73, 0x42, 0x61, 0x6e,
  6807. 0x6b, 0x49, 0x44, 0x18, 0x05, 0x20, 0x02, 0x28, 0x09, 0x52, 0x09, 0x43, 0x75, 0x73, 0x42, 0x61,
  6808. 0x6e, 0x6b, 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07, 0x49, 0x73, 0x46, 0x6f, 0x72, 0x63, 0x65, 0x18,
  6809. 0x06, 0x20, 0x02, 0x28, 0x05, 0x52, 0x07, 0x49, 0x73, 0x46, 0x6f, 0x72, 0x63, 0x65, 0x12, 0x1a,
  6810. 0x0a, 0x08, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09,
  6811. 0x52, 0x08, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x54, 0x72,
  6812. 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x54,
  6813. 0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x45, 0x78, 0x63, 0x68,
  6814. 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x45, 0x78,
  6815. 0x63, 0x68, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x12, 0x22, 0x0a, 0x0c, 0x42, 0x61, 0x6e, 0x6b,
  6816. 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c,
  6817. 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x12, 0x2a, 0x0a, 0x10,
  6818. 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x4e, 0x61, 0x6d, 0x65,
  6819. 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c,
  6820. 0x64, 0x41, 0x63, 0x63, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0xb1, 0x03, 0x0a, 0x14, 0x74, 0x32, 0x62,
  6821. 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x52, 0x73,
  6822. 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28,
  6823. 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65,
  6824. 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65,
  6825. 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74,
  6826. 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18,
  6827. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x24,
  6828. 0x0a, 0x0d, 0x45, 0x78, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x18,
  6829. 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x45, 0x78, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74,
  6830. 0x6f, 0x72, 0x49, 0x44, 0x12, 0x20, 0x0a, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x43,
  6831. 0x6f, 0x64, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75,
  6832. 0x6e, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x4e, 0x65, 0x74, 0x41, 0x64, 0x64,
  6833. 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x4e, 0x65, 0x74, 0x41, 0x64, 0x64, 0x72,
  6834. 0x12, 0x16, 0x0a, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05,
  6835. 0x52, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x45, 0x78, 0x63, 0x68,
  6836. 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x18, 0x08, 0x20, 0x02, 0x28, 0x09, 0x52, 0x0a, 0x45, 0x78,
  6837. 0x63, 0x68, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x45, 0x78, 0x63, 0x68,
  6838. 0x49, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x45, 0x78, 0x63, 0x68, 0x49, 0x64,
  6839. 0x12, 0x1c, 0x0a, 0x09, 0x54, 0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x18, 0x0a, 0x20,
  6840. 0x01, 0x28, 0x09, 0x52, 0x09, 0x54, 0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x22,
  6841. 0x0a, 0x0c, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x18, 0x0b,
  6842. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x54, 0x69, 0x63, 0x6b,
  6843. 0x65, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x43,
  6844. 0x6f, 0x64, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x43, 0x65, 0x6e, 0x74, 0x65,
  6845. 0x72, 0x45, 0x72, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x43, 0x65, 0x6e, 0x74,
  6846. 0x65, 0x72, 0x45, 0x72, 0x72, 0x4d, 0x73, 0x67, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c,
  6847. 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x4d, 0x73, 0x67, 0x22, 0xde, 0x05, 0x0a,
  6848. 0x12, 0x74, 0x32, 0x62, 0x42, 0x61, 0x6e, 0x6b, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77,
  6849. 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20,
  6850. 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  6851. 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x24, 0x0a, 0x0d,
  6852. 0x45, 0x78, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20,
  6853. 0x02, 0x28, 0x04, 0x52, 0x0d, 0x45, 0x78, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72,
  6854. 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x45, 0x78, 0x63, 0x68, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01,
  6855. 0x28, 0x09, 0x52, 0x06, 0x45, 0x78, 0x63, 0x68, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x41, 0x63,
  6856. 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x02, 0x28, 0x09, 0x52,
  6857. 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1c, 0x0a, 0x09,
  6858. 0x43, 0x75, 0x73, 0x42, 0x61, 0x6e, 0x6b, 0x49, 0x44, 0x18, 0x05, 0x20, 0x02, 0x28, 0x09, 0x52,
  6859. 0x09, 0x43, 0x75, 0x73, 0x42, 0x61, 0x6e, 0x6b, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x43, 0x75,
  6860. 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x18, 0x06, 0x20, 0x02, 0x28, 0x09, 0x52, 0x08, 0x43, 0x75,
  6861. 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x12, 0x20, 0x0a, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
  6862. 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x41, 0x63, 0x63,
  6863. 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x2a, 0x0a, 0x10, 0x42, 0x61, 0x6e, 0x6b,
  6864. 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x08, 0x20, 0x01,
  6865. 0x28, 0x09, 0x52, 0x10, 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63,
  6866. 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x32, 0x0a, 0x14, 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c,
  6867. 0x64, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01,
  6868. 0x28, 0x09, 0x52, 0x14, 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63,
  6869. 0x6f, 0x75, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x4f, 0x70, 0x65, 0x6e,
  6870. 0x43, 0x61, 0x72, 0x64, 0x42, 0x61, 0x6e, 0x6b, 0x49, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09,
  6871. 0x52, 0x0e, 0x4f, 0x70, 0x65, 0x6e, 0x43, 0x61, 0x72, 0x64, 0x42, 0x61, 0x6e, 0x6b, 0x49, 0x64,
  6872. 0x12, 0x24, 0x0a, 0x0d, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x74, 0x4e, 0x75,
  6873. 0x6d, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63,
  6874. 0x6f, 0x75, 0x74, 0x4e, 0x75, 0x6d, 0x12, 0x26, 0x0a, 0x0e, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63,
  6875. 0x63, 0x6f, 0x75, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e,
  6876. 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x16,
  6877. 0x0a, 0x06, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x0d, 0x20, 0x02, 0x28, 0x01, 0x52, 0x06,
  6878. 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x41, 0x70, 0x70, 0x44, 0x61, 0x74,
  6879. 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x70, 0x70,
  6880. 0x44, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x4f, 0x6c, 0x64, 0x54,
  6881. 0x61, 0x50, 0x57, 0x44, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x4f, 0x6c, 0x64, 0x54,
  6882. 0x61, 0x50, 0x57, 0x44, 0x12, 0x12, 0x0a, 0x04, 0x44, 0x65, 0x73, 0x63, 0x18, 0x10, 0x20, 0x01,
  6883. 0x28, 0x09, 0x52, 0x04, 0x44, 0x65, 0x73, 0x63, 0x12, 0x22, 0x0a, 0x0c, 0x49, 0x64, 0x65, 0x6e,
  6884. 0x74, 0x69, 0x66, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c,
  6885. 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x26, 0x0a, 0x0e,
  6886. 0x42, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x42, 0x61, 0x6e, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x12,
  6887. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x42, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x42, 0x61, 0x6e, 0x6b,
  6888. 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x5f, 0x69,
  6889. 0x6e, 0x66, 0x6f, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x65, 0x78, 0x74, 0x65, 0x6e,
  6890. 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x0a, 0x06, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18,
  6891. 0x14, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x12, 0x1e, 0x0a,
  6892. 0x0a, 0x45, 0x78, 0x63, 0x68, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x18, 0x15, 0x20, 0x01, 0x28,
  6893. 0x09, 0x52, 0x0a, 0x45, 0x78, 0x63, 0x68, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x22, 0xb7, 0x03,
  6894. 0x0a, 0x12, 0x74, 0x32, 0x62, 0x42, 0x61, 0x6e, 0x6b, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61,
  6895. 0x77, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01,
  6896. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  6897. 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a,
  6898. 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07,
  6899. 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65,
  6900. 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73,
  6901. 0x63, 0x12, 0x24, 0x0a, 0x0d, 0x45, 0x78, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72,
  6902. 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x45, 0x78, 0x74, 0x4f, 0x70, 0x65,
  6903. 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75,
  6904. 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12,
  6905. 0x1e, 0x0a, 0x0a, 0x45, 0x78, 0x63, 0x68, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x18, 0x06, 0x20,
  6906. 0x02, 0x28, 0x09, 0x52, 0x0a, 0x45, 0x78, 0x63, 0x68, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x12,
  6907. 0x16, 0x0a, 0x06, 0x45, 0x78, 0x63, 0x68, 0x49, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52,
  6908. 0x06, 0x45, 0x78, 0x63, 0x68, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x54, 0x72, 0x61, 0x64, 0x65,
  6909. 0x44, 0x61, 0x74, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x54, 0x72, 0x61, 0x64,
  6910. 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x54,
  6911. 0x69, 0x63, 0x6b, 0x65, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x43, 0x65, 0x6e,
  6912. 0x74, 0x65, 0x72, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x43, 0x65, 0x6e,
  6913. 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09,
  6914. 0x52, 0x0d, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12,
  6915. 0x22, 0x0a, 0x0c, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x4d, 0x73, 0x67, 0x18,
  6916. 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72,
  6917. 0x4d, 0x73, 0x67, 0x12, 0x28, 0x0a, 0x0f, 0x43, 0x65, 0x72, 0x74, 0x65, 0x72, 0x43, 0x68, 0x65,
  6918. 0x63, 0x6b, 0x44, 0x61, 0x74, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x43, 0x65,
  6919. 0x72, 0x74, 0x65, 0x72, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x65, 0x12, 0x18, 0x0a,
  6920. 0x07, 0x4e, 0x65, 0x74, 0x41, 0x64, 0x64, 0x72, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  6921. 0x4e, 0x65, 0x74, 0x41, 0x64, 0x64, 0x72, 0x22, 0xf7, 0x04, 0x0a, 0x11, 0x74, 0x32, 0x62, 0x42,
  6922. 0x61, 0x6e, 0x6b, 0x44, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a,
  6923. 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e,
  6924. 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06,
  6925. 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x24, 0x0a, 0x0d, 0x45, 0x78, 0x74, 0x4f, 0x70, 0x65,
  6926. 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x02, 0x28, 0x04, 0x52, 0x0d, 0x45,
  6927. 0x78, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09,
  6928. 0x43, 0x75, 0x73, 0x42, 0x61, 0x6e, 0x6b, 0x49, 0x44, 0x18, 0x03, 0x20, 0x02, 0x28, 0x09, 0x52,
  6929. 0x09, 0x43, 0x75, 0x73, 0x42, 0x61, 0x6e, 0x6b, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x45, 0x78,
  6930. 0x63, 0x68, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x45, 0x78, 0x63, 0x68,
  6931. 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x54, 0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x18,
  6932. 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x54, 0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65,
  6933. 0x12, 0x1e, 0x0a, 0x0a, 0x45, 0x78, 0x63, 0x68, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x18, 0x06,
  6934. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x45, 0x78, 0x63, 0x68, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74,
  6935. 0x12, 0x20, 0x0a, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18,
  6936. 0x07, 0x20, 0x02, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x43, 0x6f,
  6937. 0x64, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x4e, 0x6f,
  6938. 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73,
  6939. 0x4e, 0x6f, 0x12, 0x2a, 0x0a, 0x10, 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41,
  6940. 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x42, 0x61,
  6941. 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x32,
  6942. 0x0a, 0x14, 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x6f, 0x75,
  6943. 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x14, 0x42, 0x61,
  6944. 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4e, 0x61,
  6945. 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x4f, 0x6c, 0x64, 0x54, 0x61, 0x50, 0x57, 0x44, 0x18, 0x0b,
  6946. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x4f, 0x6c, 0x64, 0x54, 0x61, 0x50, 0x57, 0x44, 0x12, 0x16,
  6947. 0x0a, 0x06, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x0c, 0x20, 0x02, 0x28, 0x01, 0x52, 0x06,
  6948. 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e,
  6949. 0x63, 0x79, 0x18, 0x0d, 0x20, 0x02, 0x28, 0x09, 0x52, 0x08, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e,
  6950. 0x63, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x0e, 0x20, 0x01,
  6951. 0x28, 0x09, 0x52, 0x06, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x12, 0x26, 0x0a, 0x0e, 0x4f, 0x70,
  6952. 0x65, 0x6e, 0x43, 0x61, 0x72, 0x64, 0x42, 0x61, 0x6e, 0x6b, 0x49, 0x64, 0x18, 0x0f, 0x20, 0x01,
  6953. 0x28, 0x09, 0x52, 0x0e, 0x4f, 0x70, 0x65, 0x6e, 0x43, 0x61, 0x72, 0x64, 0x42, 0x61, 0x6e, 0x6b,
  6954. 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0d, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x74,
  6955. 0x4e, 0x75, 0x6d, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x42, 0x61, 0x6e, 0x6b, 0x41,
  6956. 0x63, 0x63, 0x6f, 0x75, 0x74, 0x4e, 0x75, 0x6d, 0x12, 0x26, 0x0a, 0x0e, 0x42, 0x61, 0x6e, 0x6b,
  6957. 0x41, 0x63, 0x63, 0x6f, 0x75, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09,
  6958. 0x52, 0x0e, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x74, 0x4e, 0x61, 0x6d, 0x65,
  6959. 0x12, 0x1f, 0x0a, 0x0b, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18,
  6960. 0x12, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x66,
  6961. 0x6f, 0x22, 0xb6, 0x03, 0x0a, 0x11, 0x74, 0x32, 0x62, 0x42, 0x61, 0x6e, 0x6b, 0x44, 0x65, 0x70,
  6962. 0x6f, 0x73, 0x69, 0x74, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65,
  6963. 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73,
  6964. 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72,
  6965. 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  6966. 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65,
  6967. 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74,
  6968. 0x44, 0x65, 0x73, 0x63, 0x12, 0x24, 0x0a, 0x0d, 0x45, 0x78, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61,
  6969. 0x74, 0x6f, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x45, 0x78, 0x74,
  6970. 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x53, 0x74,
  6971. 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x53, 0x74, 0x61, 0x74,
  6972. 0x75, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x45, 0x78, 0x63, 0x68, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74,
  6973. 0x18, 0x06, 0x20, 0x02, 0x28, 0x09, 0x52, 0x0a, 0x45, 0x78, 0x63, 0x68, 0x54, 0x69, 0x63, 0x6b,
  6974. 0x65, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x45, 0x78, 0x63, 0x68, 0x49, 0x64, 0x18, 0x07, 0x20, 0x01,
  6975. 0x28, 0x09, 0x52, 0x06, 0x45, 0x78, 0x63, 0x68, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x54, 0x72,
  6976. 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x54,
  6977. 0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x43, 0x65, 0x6e, 0x74,
  6978. 0x65, 0x72, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c,
  6979. 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x12, 0x24, 0x0a, 0x0d,
  6980. 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x0a, 0x20,
  6981. 0x01, 0x28, 0x09, 0x52, 0x0d, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x43, 0x6f,
  6982. 0x64, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x4d,
  6983. 0x73, 0x67, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72,
  6984. 0x45, 0x72, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x28, 0x0a, 0x0f, 0x43, 0x65, 0x72, 0x74, 0x65, 0x72,
  6985. 0x43, 0x68, 0x65, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52,
  6986. 0x0f, 0x43, 0x65, 0x72, 0x74, 0x65, 0x72, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x65,
  6987. 0x12, 0x18, 0x0a, 0x07, 0x4e, 0x65, 0x74, 0x41, 0x64, 0x64, 0x72, 0x18, 0x0d, 0x20, 0x01, 0x28,
  6988. 0x09, 0x52, 0x07, 0x4e, 0x65, 0x74, 0x41, 0x64, 0x64, 0x72, 0x22, 0xa2, 0x01, 0x0a, 0x08, 0x57,
  6989. 0x52, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49,
  6990. 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12,
  6991. 0x26, 0x0a, 0x0e, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49,
  6992. 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64,
  6993. 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x42, 0x75, 0x73, 0x69, 0x6e,
  6994. 0x65, 0x73, 0x73, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x42, 0x75, 0x73,
  6995. 0x69, 0x6e, 0x65, 0x73, 0x73, 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07, 0x54, 0x72, 0x61, 0x64, 0x65,
  6996. 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x54, 0x72, 0x61, 0x64, 0x65, 0x49,
  6997. 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x05,
  6998. 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x22,
  6999. 0xb0, 0x03, 0x0a, 0x11, 0x57, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x41, 0x70, 0x70,
  7000. 0x6c, 0x79, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18,
  7001. 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61,
  7002. 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x16,
  7003. 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06,
  7004. 0x75, 0x73, 0x65, 0x72, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03,
  7005. 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x77, 0x61,
  7006. 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52,
  7007. 0x0b, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x69, 0x64, 0x12, 0x24, 0x0a, 0x0d,
  7008. 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x05, 0x20,
  7009. 0x01, 0x28, 0x09, 0x52, 0x0d, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x63, 0x6f,
  7010. 0x64, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x6e,
  7011. 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x77, 0x61, 0x72, 0x65, 0x68,
  7012. 0x6f, 0x75, 0x73, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x77, 0x61, 0x72, 0x65,
  7013. 0x68, 0x6f, 0x75, 0x73, 0x65, 0x74, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52,
  7014. 0x0d, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x74, 0x79, 0x70, 0x65, 0x12, 0x1e,
  7015. 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01,
  7016. 0x28, 0x04, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x69, 0x64, 0x12, 0x16,
  7017. 0x0a, 0x06, 0x63, 0x69, 0x74, 0x79, 0x69, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06,
  7018. 0x63, 0x69, 0x74, 0x79, 0x69, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x64, 0x69, 0x73, 0x74, 0x72, 0x69,
  7019. 0x63, 0x74, 0x69, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x64, 0x69, 0x73, 0x74,
  7020. 0x72, 0x69, 0x63, 0x74, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73,
  7021. 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73,
  7022. 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x6e, 0x61, 0x6d, 0x65, 0x18,
  7023. 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x6e, 0x61,
  7024. 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x6e, 0x75, 0x6d,
  7025. 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x6e,
  7026. 0x75, 0x6d, 0x22, 0x92, 0x01, 0x0a, 0x11, 0x57, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65,
  7027. 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64,
  7028. 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65,
  7029. 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65,
  7030. 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01,
  7031. 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52,
  7032. 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65,
  7033. 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x20, 0x0a, 0x0b, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75,
  7034. 0x73, 0x65, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x77, 0x61, 0x72, 0x65,
  7035. 0x68, 0x6f, 0x75, 0x73, 0x65, 0x69, 0x64, 0x22, 0xf6, 0x01, 0x0a, 0x1d, 0x50, 0x65, 0x72, 0x66,
  7036. 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x65,
  7037. 0x64, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61,
  7038. 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d,
  7039. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64,
  7040. 0x65, 0x72, 0x12, 0x2c, 0x0a, 0x11, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63,
  7041. 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x11, 0x50,
  7042. 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x49, 0x44,
  7043. 0x12, 0x1e, 0x0a, 0x0a, 0x42, 0x72, 0x65, 0x61, 0x63, 0x68, 0x54, 0x79, 0x70, 0x65, 0x18, 0x03,
  7044. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x42, 0x72, 0x65, 0x61, 0x63, 0x68, 0x54, 0x79, 0x70, 0x65,
  7045. 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x6e, 0x74, 0x18, 0x04, 0x20,
  7046. 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x6e, 0x74, 0x12, 0x20,
  7047. 0x0a, 0x0b, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x05, 0x20,
  7048. 0x01, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b,
  7049. 0x12, 0x1e, 0x0a, 0x0a, 0x41, 0x74, 0x74, 0x61, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x06,
  7050. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x41, 0x74, 0x74, 0x61, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74,
  7051. 0x22, 0xaa, 0x01, 0x0a, 0x1d, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65,
  7052. 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x65, 0x64, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52,
  7053. 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01,
  7054. 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48,
  7055. 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52,
  7056. 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65,
  7057. 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63,
  7058. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12,
  7059. 0x2c, 0x0a, 0x11, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6c,
  7060. 0x61, 0x6e, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x11, 0x50, 0x65, 0x72, 0x66,
  7061. 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x49, 0x44, 0x22, 0xd7, 0x01,
  7062. 0x0a, 0x18, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x44, 0x65, 0x6c,
  7063. 0x61, 0x79, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65,
  7064. 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e,
  7065. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61,
  7066. 0x64, 0x65, 0x72, 0x12, 0x34, 0x0a, 0x15, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e,
  7067. 0x63, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x53, 0x74, 0x65, 0x70, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01,
  7068. 0x28, 0x04, 0x52, 0x15, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50,
  7069. 0x6c, 0x61, 0x6e, 0x53, 0x74, 0x65, 0x70, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x64, 0x65, 0x6c,
  7070. 0x61, 0x79, 0x64, 0x61, 0x79, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x64, 0x65,
  7071. 0x6c, 0x61, 0x79, 0x64, 0x61, 0x79, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x70, 0x70, 0x6c, 0x69,
  7072. 0x63, 0x61, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x61, 0x70, 0x70, 0x6c,
  7073. 0x69, 0x63, 0x61, 0x6e, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x61, 0x70, 0x70, 0x6c, 0x79, 0x72, 0x65,
  7074. 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x61, 0x70, 0x70, 0x6c,
  7075. 0x79, 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x22, 0xcb, 0x01, 0x0a, 0x18, 0x50, 0x65, 0x72, 0x66,
  7076. 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x44, 0x65, 0x6c, 0x61, 0x79, 0x41, 0x70, 0x70, 0x6c,
  7077. 0x79, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01,
  7078. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  7079. 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a,
  7080. 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07,
  7081. 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65,
  7082. 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73,
  7083. 0x63, 0x12, 0x34, 0x0a, 0x15, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65,
  7084. 0x50, 0x6c, 0x61, 0x6e, 0x53, 0x74, 0x65, 0x70, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04,
  7085. 0x52, 0x15, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6c, 0x61,
  7086. 0x6e, 0x53, 0x74, 0x65, 0x70, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x70, 0x70, 0x6c, 0x69,
  7087. 0x63, 0x61, 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x61, 0x70, 0x70, 0x6c,
  7088. 0x69, 0x63, 0x61, 0x6e, 0x74, 0x22, 0xc2, 0x02, 0x0a, 0x1b, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72,
  7089. 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x4d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69,
  7090. 0x72, 0x6d, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18,
  7091. 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61,
  7092. 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x34,
  7093. 0x0a, 0x15, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6c, 0x61,
  7094. 0x6e, 0x53, 0x74, 0x65, 0x70, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x15, 0x50,
  7095. 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x53, 0x74,
  7096. 0x65, 0x70, 0x49, 0x44, 0x12, 0x28, 0x0a, 0x0f, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x68, 0x6f, 0x72,
  7097. 0x74, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x4f,
  7098. 0x76, 0x65, 0x72, 0x53, 0x68, 0x6f, 0x72, 0x74, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x36,
  7099. 0x0a, 0x16, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x45, 0x78, 0x65,
  7100. 0x63, 0x75, 0x74, 0x65, 0x53, 0x69, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x16,
  7101. 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x45, 0x78, 0x65, 0x63, 0x75,
  7102. 0x74, 0x65, 0x53, 0x69, 0x64, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x53, 0x74, 0x65, 0x70, 0x52, 0x65,
  7103. 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x53, 0x74, 0x65, 0x70,
  7104. 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x12, 0x22, 0x0a, 0x0c, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x68,
  7105. 0x6f, 0x72, 0x74, 0x51, 0x74, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x4f, 0x76,
  7106. 0x65, 0x72, 0x53, 0x68, 0x6f, 0x72, 0x74, 0x51, 0x74, 0x79, 0x12, 0x1e, 0x0a, 0x0a, 0x45, 0x78,
  7107. 0x70, 0x72, 0x65, 0x73, 0x73, 0x46, 0x65, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a,
  7108. 0x45, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x46, 0x65, 0x65, 0x22, 0xb0, 0x01, 0x0a, 0x1b, 0x50,
  7109. 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x4d, 0x61, 0x6e, 0x75, 0x61, 0x6c,
  7110. 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65,
  7111. 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e,
  7112. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61,
  7113. 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02,
  7114. 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a,
  7115. 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  7116. 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x34, 0x0a, 0x15, 0x50, 0x65, 0x72, 0x66, 0x6f,
  7117. 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x53, 0x74, 0x65, 0x70, 0x49, 0x44,
  7118. 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x15, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61,
  7119. 0x6e, 0x63, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x53, 0x74, 0x65, 0x70, 0x49, 0x44, 0x22, 0xb4, 0x01,
  7120. 0x0a, 0x1b, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x4d, 0x6f, 0x64,
  7121. 0x69, 0x66, 0x79, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a,
  7122. 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e,
  7123. 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06,
  7124. 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x2c, 0x0a, 0x11, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72,
  7125. 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28,
  7126. 0x04, 0x52, 0x11, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6c,
  7127. 0x61, 0x6e, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49,
  7128. 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  7129. 0x49, 0x44, 0x12, 0x20, 0x0a, 0x0b, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x49, 0x6e, 0x66,
  7130. 0x6f, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74,
  7131. 0x49, 0x6e, 0x66, 0x6f, 0x22, 0xc6, 0x01, 0x0a, 0x1b, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d,
  7132. 0x61, 0x6e, 0x63, 0x65, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63,
  7133. 0x74, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01,
  7134. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  7135. 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a,
  7136. 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07,
  7137. 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65,
  7138. 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73,
  7139. 0x63, 0x12, 0x2c, 0x0a, 0x11, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65,
  7140. 0x50, 0x6c, 0x61, 0x6e, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x11, 0x50, 0x65,
  7141. 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x49, 0x44, 0x12,
  7142. 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01,
  7143. 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x22, 0xd2, 0x02,
  7144. 0x0a, 0x0d, 0x41, 0x64, 0x64, 0x5a, 0x53, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x52, 0x73, 0x70, 0x12,
  7145. 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
  7146. 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64,
  7147. 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43,
  7148. 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f,
  7149. 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20,
  7150. 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x16, 0x0a, 0x06,
  7151. 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x55, 0x73,
  7152. 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49,
  7153. 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  7154. 0x49, 0x44, 0x12, 0x22, 0x0a, 0x0c, 0x57, 0x52, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  7155. 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x57, 0x52, 0x53, 0x74, 0x61, 0x6e,
  7156. 0x64, 0x61, 0x72, 0x64, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x57, 0x52, 0x46, 0x61, 0x63, 0x74,
  7157. 0x6f, 0x72, 0x54, 0x79, 0x70, 0x65, 0x49, 0x44, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e,
  7158. 0x57, 0x52, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x54, 0x79, 0x70, 0x65, 0x49, 0x44, 0x12, 0x22,
  7159. 0x0a, 0x0c, 0x4c, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x42, 0x69, 0x6c, 0x6c, 0x49, 0x44, 0x18, 0x08,
  7160. 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x4c, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x42, 0x69, 0x6c, 0x6c,
  7161. 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x53, 0x75, 0x62, 0x4e, 0x75, 0x6d, 0x18, 0x09, 0x20, 0x01,
  7162. 0x28, 0x0d, 0x52, 0x06, 0x53, 0x75, 0x62, 0x4e, 0x75, 0x6d, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c,
  7163. 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x0a, 0x20, 0x01,
  7164. 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c,
  7165. 0x4e, 0x6f, 0x22, 0x88, 0x02, 0x0a, 0x17, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x46, 0x61, 0x76, 0x6f,
  7166. 0x72, 0x69, 0x74, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x12, 0x27,
  7167. 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f,
  7168. 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52,
  7169. 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49,
  7170. 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12,
  7171. 0x26, 0x0a, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49,
  7172. 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65,
  7173. 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x20, 0x0a, 0x0b, 0x4f, 0x70, 0x65, 0x72, 0x61,
  7174. 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x4f, 0x70,
  7175. 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x43, 0x6c, 0x69,
  7176. 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x43,
  7177. 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x4d, 0x61, 0x72,
  7178. 0x6b, 0x65, 0x74, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x4d, 0x61, 0x72,
  7179. 0x6b, 0x65, 0x74, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53,
  7180. 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43,
  7181. 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0xde, 0x01,
  7182. 0x0a, 0x17, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x4f,
  7183. 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61,
  7184. 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d,
  7185. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64,
  7186. 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20,
  7187. 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07,
  7188. 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52,
  7189. 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44,
  7190. 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x26,
  7191. 0x0a, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44,
  7192. 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f,
  7193. 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
  7194. 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e,
  7195. 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0xc2,
  7196. 0x05, 0x0a, 0x16, 0x47, 0x5a, 0x42, 0x75, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x44, 0x65, 0x74,
  7197. 0x61, 0x69, 0x6c, 0x45, 0x78, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65,
  7198. 0x72, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49,
  7199. 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x02,
  7200. 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12,
  7201. 0x1e, 0x0a, 0x0a, 0x5a, 0x53, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x18, 0x03, 0x20,
  7202. 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x5a, 0x53, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x12,
  7203. 0x26, 0x0a, 0x0e, 0x5a, 0x53, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x54, 0x79, 0x70,
  7204. 0x65, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0e, 0x5a, 0x53, 0x43, 0x75, 0x72, 0x72, 0x65,
  7205. 0x6e, 0x63, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x5a, 0x53, 0x53, 0x68, 0x61,
  7206. 0x70, 0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0b, 0x5a, 0x53,
  7207. 0x53, 0x68, 0x61, 0x70, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x5a, 0x53, 0x43,
  7208. 0x6f, 0x6c, 0x6f, 0x72, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0b,
  7209. 0x5a, 0x53, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x54, 0x79, 0x70, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x5a,
  7210. 0x53, 0x43, 0x6c, 0x61, 0x72, 0x69, 0x74, 0x79, 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x03,
  7211. 0x28, 0x0d, 0x52, 0x0d, 0x5a, 0x53, 0x43, 0x6c, 0x61, 0x72, 0x69, 0x74, 0x79, 0x54, 0x79, 0x70,
  7212. 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x5a, 0x53, 0x43, 0x75, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x08,
  7213. 0x20, 0x03, 0x28, 0x0d, 0x52, 0x09, 0x5a, 0x53, 0x43, 0x75, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12,
  7214. 0x26, 0x0a, 0x0e, 0x5a, 0x53, 0x53, 0x79, 0x6d, 0x6d, 0x65, 0x74, 0x72, 0x79, 0x54, 0x79, 0x70,
  7215. 0x65, 0x18, 0x09, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0e, 0x5a, 0x53, 0x53, 0x79, 0x6d, 0x6d, 0x65,
  7216. 0x74, 0x72, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x5a, 0x53, 0x50, 0x6f, 0x6c,
  7217. 0x69, 0x73, 0x68, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0a, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0c, 0x5a,
  7218. 0x53, 0x50, 0x6f, 0x6c, 0x69, 0x73, 0x68, 0x54, 0x79, 0x70, 0x65, 0x12, 0x2e, 0x0a, 0x12, 0x5a,
  7219. 0x53, 0x46, 0x6c, 0x75, 0x6f, 0x72, 0x65, 0x73, 0x63, 0x65, 0x6e, 0x63, 0x65, 0x54, 0x79, 0x70,
  7220. 0x65, 0x18, 0x0b, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x12, 0x5a, 0x53, 0x46, 0x6c, 0x75, 0x6f, 0x72,
  7221. 0x65, 0x73, 0x63, 0x65, 0x6e, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x53,
  7222. 0x69, 0x7a, 0x65, 0x18, 0x0c, 0x20, 0x03, 0x28, 0x01, 0x52, 0x04, 0x53, 0x69, 0x7a, 0x65, 0x12,
  7223. 0x24, 0x0a, 0x0d, 0x5a, 0x53, 0x43, 0x72, 0x79, 0x73, 0x74, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65,
  7224. 0x18, 0x0d, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0d, 0x5a, 0x53, 0x43, 0x72, 0x79, 0x73, 0x74, 0x61,
  7225. 0x6c, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x4f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x18,
  7226. 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x4f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x12, 0x20, 0x0a,
  7227. 0x0b, 0x5a, 0x53, 0x53, 0x74, 0x79, 0x6c, 0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0f, 0x20, 0x03,
  7228. 0x28, 0x0d, 0x52, 0x0b, 0x5a, 0x53, 0x53, 0x74, 0x79, 0x6c, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12,
  7229. 0x26, 0x0a, 0x0e, 0x5a, 0x53, 0x43, 0x5a, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x31, 0x54, 0x79, 0x70,
  7230. 0x65, 0x18, 0x10, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0e, 0x5a, 0x53, 0x43, 0x5a, 0x43, 0x6f, 0x6c,
  7231. 0x6f, 0x72, 0x31, 0x54, 0x79, 0x70, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x5a, 0x53, 0x43, 0x5a, 0x43,
  7232. 0x6f, 0x6c, 0x6f, 0x72, 0x32, 0x54, 0x79, 0x70, 0x65, 0x18, 0x11, 0x20, 0x03, 0x28, 0x0d, 0x52,
  7233. 0x0e, 0x5a, 0x53, 0x43, 0x5a, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x32, 0x54, 0x79, 0x70, 0x65, 0x12,
  7234. 0x26, 0x0a, 0x0e, 0x5a, 0x53, 0x43, 0x5a, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x33, 0x54, 0x79, 0x70,
  7235. 0x65, 0x18, 0x12, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0e, 0x5a, 0x53, 0x43, 0x5a, 0x43, 0x6f, 0x6c,
  7236. 0x6f, 0x72, 0x33, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x52, 0x65, 0x6d, 0x61, 0x72,
  7237. 0x6b, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x12,
  7238. 0x22, 0x0a, 0x0c, 0x57, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x49, 0x44, 0x73, 0x18,
  7239. 0x14, 0x20, 0x03, 0x28, 0x04, 0x52, 0x0c, 0x57, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65,
  7240. 0x49, 0x44, 0x73, 0x22, 0xaa, 0x03, 0x0a, 0x14, 0x5a, 0x53, 0x42, 0x75, 0x79, 0x4f, 0x72, 0x64,
  7241. 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06,
  7242. 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70,
  7243. 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48,
  7244. 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18,
  7245. 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a,
  7246. 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04,
  7247. 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x53, 0x0a, 0x17, 0x47,
  7248. 0x5a, 0x5f, 0x42, 0x75, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c,
  7249. 0x45, 0x78, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x70,
  7250. 0x62, 0x2e, 0x47, 0x5a, 0x42, 0x75, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x44, 0x65, 0x74, 0x61,
  7251. 0x69, 0x6c, 0x45, 0x78, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x16, 0x47, 0x5a, 0x42, 0x75, 0x79, 0x4f,
  7252. 0x72, 0x64, 0x65, 0x72, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x45, 0x78, 0x49, 0x6e, 0x66, 0x6f,
  7253. 0x12, 0x34, 0x0a, 0x15, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x54,
  7254. 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52,
  7255. 0x15, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x54, 0x65, 0x6d, 0x70,
  7256. 0x6c, 0x61, 0x74, 0x65, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74,
  7257. 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74,
  7258. 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x18, 0x07,
  7259. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x12, 0x28,
  7260. 0x0a, 0x0f, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d,
  7261. 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4f,
  7262. 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x43, 0x6c, 0x69, 0x65,
  7263. 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x43, 0x6c,
  7264. 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65,
  7265. 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09,
  7266. 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f,
  7267. 0x22, 0x97, 0x02, 0x0a, 0x14, 0x5a, 0x53, 0x42, 0x75, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c,
  7268. 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61,
  7269. 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d,
  7270. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64,
  7271. 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20,
  7272. 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07,
  7273. 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52,
  7274. 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44,
  7275. 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c,
  7276. 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28,
  7277. 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e,
  7278. 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x06,
  7279. 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64,
  7280. 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d,
  7281. 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69,
  7282. 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69,
  7283. 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65,
  7284. 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0xbe, 0x04, 0x0a, 0x15, 0x5a,
  7285. 0x53, 0x53, 0x65, 0x6c, 0x6c, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e,
  7286. 0x67, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01,
  7287. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  7288. 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a,
  7289. 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x55,
  7290. 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  7291. 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
  7292. 0x74, 0x49, 0x44, 0x12, 0x22, 0x0a, 0x0c, 0x57, 0x52, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  7293. 0x64, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x57, 0x52, 0x53, 0x74, 0x61,
  7294. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x57, 0x52, 0x46, 0x61, 0x63,
  7295. 0x74, 0x6f, 0x72, 0x54, 0x79, 0x70, 0x65, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52,
  7296. 0x0e, 0x57, 0x52, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x54, 0x79, 0x70, 0x65, 0x49, 0x44, 0x12,
  7297. 0x1a, 0x0a, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x51, 0x74, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28,
  7298. 0x01, 0x52, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x51, 0x74, 0x79, 0x12, 0x22, 0x0a, 0x0c, 0x4c,
  7299. 0x61, 0x64, 0x69, 0x6e, 0x67, 0x42, 0x69, 0x6c, 0x6c, 0x49, 0x44, 0x18, 0x07, 0x20, 0x01, 0x28,
  7300. 0x04, 0x52, 0x0c, 0x4c, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x42, 0x69, 0x6c, 0x6c, 0x49, 0x44, 0x12,
  7301. 0x16, 0x0a, 0x06, 0x53, 0x75, 0x62, 0x4e, 0x75, 0x6d, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0d, 0x52,
  7302. 0x06, 0x53, 0x75, 0x62, 0x4e, 0x75, 0x6d, 0x12, 0x34, 0x0a, 0x15, 0x50, 0x65, 0x72, 0x66, 0x6f,
  7303. 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x44,
  7304. 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x15, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61,
  7305. 0x6e, 0x63, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x44, 0x12, 0x24, 0x0a,
  7306. 0x0d, 0x54, 0x69, 0x6d, 0x65, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0a,
  7307. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0d, 0x54, 0x69, 0x6d, 0x65, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x54,
  7308. 0x79, 0x70, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x54, 0x69, 0x6d, 0x65,
  7309. 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x54, 0x69, 0x6d,
  7310. 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x18, 0x0c, 0x20,
  7311. 0x01, 0x28, 0x0d, 0x52, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x12, 0x26, 0x0a,
  7312. 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18,
  7313. 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72,
  7314. 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x12, 0x28, 0x0a, 0x0f, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4f,
  7315. 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f,
  7316. 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x12,
  7317. 0x1e, 0x0a, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0f, 0x20,
  7318. 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12,
  7319. 0x1a, 0x0a, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x18, 0x10, 0x20, 0x01, 0x28,
  7320. 0x04, 0x52, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x22, 0xb6, 0x02, 0x0a, 0x15,
  7321. 0x5a, 0x53, 0x53, 0x65, 0x6c, 0x6c, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x69,
  7322. 0x6e, 0x67, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18,
  7323. 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61,
  7324. 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18,
  7325. 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52,
  7326. 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44,
  7327. 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65,
  7328. 0x73, 0x63, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01,
  7329. 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63,
  7330. 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41,
  7331. 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x57, 0x52, 0x54, 0x72,
  7332. 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04,
  7333. 0x52, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44,
  7334. 0x12, 0x1c, 0x0a, 0x09, 0x46, 0x72, 0x65, 0x65, 0x7a, 0x65, 0x51, 0x74, 0x79, 0x18, 0x07, 0x20,
  7335. 0x01, 0x28, 0x04, 0x52, 0x09, 0x46, 0x72, 0x65, 0x65, 0x7a, 0x65, 0x51, 0x74, 0x79, 0x12, 0x1c,
  7336. 0x0a, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28,
  7337. 0x09, 0x52, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0e,
  7338. 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x09,
  7339. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69,
  7340. 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0x91, 0x03, 0x0a, 0x14, 0x5a, 0x53, 0x42, 0x75, 0x79, 0x4f, 0x72,
  7341. 0x64, 0x65, 0x72, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a,
  7342. 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e,
  7343. 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06,
  7344. 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44,
  7345. 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c,
  7346. 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28,
  7347. 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x34, 0x0a, 0x15,
  7348. 0x52, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72,
  7349. 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x15, 0x52, 0x65, 0x6c,
  7350. 0x61, 0x74, 0x65, 0x64, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72,
  7351. 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x51, 0x74, 0x79, 0x18, 0x05,
  7352. 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x51, 0x74, 0x79, 0x12, 0x1a,
  7353. 0x0a, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d,
  7354. 0x52, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c,
  7355. 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x07, 0x20, 0x01,
  7356. 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c,
  7357. 0x4e, 0x6f, 0x12, 0x28, 0x0a, 0x0f, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4f, 0x72, 0x64, 0x65,
  7358. 0x72, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x43, 0x6c, 0x69,
  7359. 0x65, 0x6e, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a,
  7360. 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0d,
  7361. 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a,
  7362. 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x04,
  7363. 0x52, 0x0a, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08,
  7364. 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08,
  7365. 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x22, 0xf1, 0x02, 0x0a, 0x14, 0x5a, 0x53, 0x42,
  7366. 0x75, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x73,
  7367. 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28,
  7368. 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65,
  7369. 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65,
  7370. 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74,
  7371. 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18,
  7372. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x16,
  7373. 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06,
  7374. 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
  7375. 0x74, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75,
  7376. 0x6e, 0x74, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f,
  7377. 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x57, 0x52,
  7378. 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x34, 0x0a, 0x15,
  7379. 0x52, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72,
  7380. 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x15, 0x52, 0x65, 0x6c,
  7381. 0x61, 0x74, 0x65, 0x64, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72,
  7382. 0x49, 0x44, 0x12, 0x22, 0x0a, 0x0c, 0x46, 0x72, 0x65, 0x65, 0x7a, 0x65, 0x41, 0x6d, 0x6f, 0x75,
  7383. 0x6e, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x46, 0x72, 0x65, 0x65, 0x7a, 0x65,
  7384. 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54,
  7385. 0x69, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72,
  7386. 0x54, 0x69, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65,
  7387. 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c,
  7388. 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0xf3, 0x03, 0x0a,
  7389. 0x1a, 0x5a, 0x53, 0x53, 0x65, 0x6c, 0x6c, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x44, 0x65, 0x73, 0x74,
  7390. 0x69, 0x6e, 0x67, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48,
  7391. 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62,
  7392. 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65,
  7393. 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x02,
  7394. 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09,
  7395. 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52,
  7396. 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x2c, 0x0a, 0x11, 0x42, 0x75,
  7397. 0x79, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18,
  7398. 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x11, 0x42, 0x75, 0x79, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64,
  7399. 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x22, 0x0a, 0x0c, 0x57, 0x52, 0x53, 0x74,
  7400. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c,
  7401. 0x57, 0x52, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e,
  7402. 0x57, 0x52, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x54, 0x79, 0x70, 0x65, 0x49, 0x44, 0x18, 0x06,
  7403. 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x57, 0x52, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x54, 0x79,
  7404. 0x70, 0x65, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x51, 0x74, 0x79,
  7405. 0x18, 0x07, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x51, 0x74, 0x79,
  7406. 0x12, 0x1e, 0x0a, 0x0a, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x50, 0x72, 0x69, 0x63, 0x65, 0x18, 0x08,
  7407. 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x50, 0x72, 0x69, 0x63, 0x65,
  7408. 0x12, 0x22, 0x0a, 0x0c, 0x4c, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x42, 0x69, 0x6c, 0x6c, 0x49, 0x44,
  7409. 0x18, 0x09, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x4c, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x42, 0x69,
  7410. 0x6c, 0x6c, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x53, 0x75, 0x62, 0x4e, 0x75, 0x6d, 0x18, 0x0a,
  7411. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x53, 0x75, 0x62, 0x4e, 0x75, 0x6d, 0x12, 0x20, 0x0a, 0x0b,
  7412. 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x0b, 0x20, 0x01, 0x28,
  7413. 0x09, 0x52, 0x0b, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x12, 0x1e,
  7414. 0x0a, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0c, 0x20, 0x01,
  7415. 0x28, 0x0d, 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x26,
  7416. 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f,
  7417. 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65,
  7418. 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x12, 0x1a, 0x0a, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74,
  7419. 0x49, 0x44, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74,
  7420. 0x49, 0x44, 0x22, 0xf1, 0x01, 0x0a, 0x1a, 0x5a, 0x53, 0x53, 0x65, 0x6c, 0x6c, 0x4f, 0x72, 0x64,
  7421. 0x65, 0x72, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x73,
  7422. 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28,
  7423. 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65,
  7424. 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65,
  7425. 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74,
  7426. 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18,
  7427. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x16,
  7428. 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06,
  7429. 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
  7430. 0x74, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75,
  7431. 0x6e, 0x74, 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x49, 0x44, 0x18,
  7432. 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x49, 0x44, 0x12, 0x26,
  7433. 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f,
  7434. 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65,
  7435. 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0xfa, 0x02, 0x0a, 0x21, 0x5a, 0x53, 0x53, 0x65, 0x6c,
  7436. 0x6c, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x70, 0x70,
  7437. 0x6c, 0x79, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06,
  7438. 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70,
  7439. 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48,
  7440. 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18,
  7441. 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a,
  7442. 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04,
  7443. 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x32, 0x0a, 0x14, 0x53,
  7444. 0x65, 0x6c, 0x6c, 0x44, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x70, 0x70, 0x6c,
  7445. 0x79, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x14, 0x53, 0x65, 0x6c, 0x6c, 0x44,
  7446. 0x65, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x49, 0x44, 0x12,
  7447. 0x20, 0x0a, 0x0b, 0x41, 0x75, 0x64, 0x69, 0x74, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x05,
  7448. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x75, 0x64, 0x69, 0x74, 0x52, 0x65, 0x6d, 0x61, 0x72,
  7449. 0x6b, 0x12, 0x20, 0x0a, 0x0b, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65,
  7450. 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54,
  7451. 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x18,
  7452. 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x12,
  7453. 0x1e, 0x0a, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x08, 0x20,
  7454. 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12,
  7455. 0x1a, 0x0a, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x18, 0x09, 0x20, 0x01, 0x28,
  7456. 0x0d, 0x52, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x12, 0x26, 0x0a, 0x0e, 0x43,
  7457. 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x0a, 0x20,
  7458. 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61,
  7459. 0x6c, 0x4e, 0x6f, 0x22, 0xfc, 0x02, 0x0a, 0x21, 0x5a, 0x53, 0x53, 0x65, 0x6c, 0x6c, 0x4f, 0x72,
  7460. 0x64, 0x65, 0x72, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x4f,
  7461. 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61,
  7462. 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d,
  7463. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64,
  7464. 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20,
  7465. 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07,
  7466. 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52,
  7467. 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44,
  7468. 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c,
  7469. 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28,
  7470. 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x32, 0x0a, 0x14,
  7471. 0x53, 0x65, 0x6c, 0x6c, 0x44, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x70, 0x70,
  7472. 0x6c, 0x79, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x14, 0x53, 0x65, 0x6c, 0x6c,
  7473. 0x44, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x49, 0x44,
  7474. 0x12, 0x26, 0x0a, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72,
  7475. 0x49, 0x44, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64,
  7476. 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x22, 0x0a, 0x0c, 0x46, 0x72, 0x65, 0x65,
  7477. 0x7a, 0x65, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c,
  7478. 0x46, 0x72, 0x65, 0x65, 0x7a, 0x65, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1c, 0x0a, 0x09,
  7479. 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52,
  7480. 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c,
  7481. 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x0a, 0x20, 0x01,
  7482. 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c,
  7483. 0x4e, 0x6f, 0x22, 0xcd, 0x03, 0x0a, 0x1c, 0x5a, 0x53, 0x42, 0x75, 0x79, 0x4f, 0x72, 0x64, 0x65,
  7484. 0x72, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x67, 0x50, 0x72, 0x69, 0x63, 0x65,
  7485. 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20,
  7486. 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  7487. 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06,
  7488. 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73,
  7489. 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49,
  7490. 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  7491. 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x4f, 0x72, 0x64,
  7492. 0x65, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x52, 0x65, 0x6c, 0x61,
  7493. 0x74, 0x65, 0x64, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x4f, 0x72,
  7494. 0x64, 0x65, 0x72, 0x51, 0x74, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x4f, 0x72,
  7495. 0x64, 0x65, 0x72, 0x51, 0x74, 0x79, 0x12, 0x1e, 0x0a, 0x0a, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x50,
  7496. 0x72, 0x69, 0x63, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x41, 0x70, 0x70, 0x6c,
  7497. 0x79, 0x50, 0x72, 0x69, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53,
  7498. 0x72, 0x63, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53,
  7499. 0x72, 0x63, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69,
  7500. 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65,
  7501. 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x12, 0x28, 0x0a, 0x0f, 0x43, 0x6c,
  7502. 0x69, 0x65, 0x6e, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x09, 0x20,
  7503. 0x01, 0x28, 0x09, 0x52, 0x0f, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72,
  7504. 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79,
  7505. 0x70, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
  7506. 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72,
  7507. 0x49, 0x44, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74,
  7508. 0x6f, 0x72, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44,
  7509. 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44,
  7510. 0x12, 0x20, 0x0a, 0x0b, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18,
  7511. 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x6d, 0x61,
  7512. 0x72, 0x6b, 0x22, 0xc1, 0x02, 0x0a, 0x1c, 0x5a, 0x53, 0x42, 0x75, 0x79, 0x4f, 0x72, 0x64, 0x65,
  7513. 0x72, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x67, 0x50, 0x72, 0x69, 0x63, 0x65,
  7514. 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20,
  7515. 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  7516. 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07,
  7517. 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52,
  7518. 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73,
  7519. 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63,
  7520. 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d,
  7521. 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f,
  7522. 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63,
  7523. 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64,
  7524. 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e,
  7525. 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x20,
  7526. 0x0a, 0x0b, 0x57, 0x52, 0x42, 0x61, 0x72, 0x67, 0x61, 0x69, 0x6e, 0x49, 0x44, 0x18, 0x07, 0x20,
  7527. 0x01, 0x28, 0x04, 0x52, 0x0b, 0x57, 0x52, 0x42, 0x61, 0x72, 0x67, 0x61, 0x69, 0x6e, 0x49, 0x44,
  7528. 0x12, 0x1c, 0x0a, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x08, 0x20,
  7529. 0x01, 0x28, 0x09, 0x52, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x26,
  7530. 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f,
  7531. 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65,
  7532. 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0xea, 0x02, 0x0a, 0x23, 0x5a, 0x53, 0x42, 0x75, 0x79,
  7533. 0x4f, 0x72, 0x64, 0x65, 0x72, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x67, 0x50,
  7534. 0x72, 0x69, 0x63, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x12, 0x27,
  7535. 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f,
  7536. 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52,
  7537. 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49,
  7538. 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12,
  7539. 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01,
  7540. 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x20, 0x0a,
  7541. 0x0b, 0x57, 0x52, 0x42, 0x61, 0x72, 0x67, 0x61, 0x69, 0x6e, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01,
  7542. 0x28, 0x04, 0x52, 0x0b, 0x57, 0x52, 0x42, 0x61, 0x72, 0x67, 0x61, 0x69, 0x6e, 0x49, 0x44, 0x12,
  7543. 0x20, 0x0a, 0x0b, 0x41, 0x75, 0x64, 0x69, 0x74, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x05,
  7544. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x75, 0x64, 0x69, 0x74, 0x52, 0x65, 0x6d, 0x61, 0x72,
  7545. 0x6b, 0x12, 0x20, 0x0a, 0x0b, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65,
  7546. 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54,
  7547. 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x18,
  7548. 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x12,
  7549. 0x1e, 0x0a, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x08, 0x20,
  7550. 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12,
  7551. 0x1a, 0x0a, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x18, 0x09, 0x20, 0x01, 0x28,
  7552. 0x0d, 0x52, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x12, 0x26, 0x0a, 0x0e, 0x43,
  7553. 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x0a, 0x20,
  7554. 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61,
  7555. 0x6c, 0x4e, 0x6f, 0x22, 0x82, 0x02, 0x0a, 0x23, 0x5a, 0x53, 0x42, 0x75, 0x79, 0x4f, 0x72, 0x64,
  7556. 0x65, 0x72, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x67, 0x50, 0x72, 0x69, 0x63,
  7557. 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48,
  7558. 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62,
  7559. 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65,
  7560. 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18,
  7561. 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18,
  7562. 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  7563. 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72,
  7564. 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44,
  7565. 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x05, 0x20,
  7566. 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x20,
  7567. 0x0a, 0x0b, 0x57, 0x52, 0x42, 0x61, 0x72, 0x67, 0x61, 0x69, 0x6e, 0x49, 0x44, 0x18, 0x06, 0x20,
  7568. 0x01, 0x28, 0x04, 0x52, 0x0b, 0x57, 0x52, 0x42, 0x61, 0x72, 0x67, 0x61, 0x69, 0x6e, 0x49, 0x44,
  7569. 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c,
  7570. 0x4e, 0x6f, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
  7571. 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0x86, 0x03, 0x0a, 0x17, 0x57, 0x52, 0x4c,
  7572. 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x4f, 0x72, 0x64, 0x65,
  7573. 0x72, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01,
  7574. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  7575. 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a,
  7576. 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55,
  7577. 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  7578. 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
  7579. 0x74, 0x49, 0x44, 0x12, 0x2c, 0x0a, 0x11, 0x4f, 0x6c, 0x64, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64,
  7580. 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x11,
  7581. 0x4f, 0x6c, 0x64, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49,
  7582. 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x18, 0x05, 0x20,
  7583. 0x01, 0x28, 0x0d, 0x52, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x12, 0x26, 0x0a,
  7584. 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18,
  7585. 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72,
  7586. 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x12, 0x28, 0x0a, 0x0f, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4f,
  7587. 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f,
  7588. 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x12,
  7589. 0x1e, 0x0a, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x08, 0x20,
  7590. 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12,
  7591. 0x1e, 0x0a, 0x0a, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x18, 0x09, 0x20,
  7592. 0x01, 0x28, 0x04, 0x52, 0x0a, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x12,
  7593. 0x1c, 0x0a, 0x09, 0x42, 0x75, 0x79, 0x4f, 0x72, 0x53, 0x65, 0x6c, 0x6c, 0x18, 0x0a, 0x20, 0x01,
  7594. 0x28, 0x0d, 0x52, 0x09, 0x42, 0x75, 0x79, 0x4f, 0x72, 0x53, 0x65, 0x6c, 0x6c, 0x12, 0x12, 0x0a,
  7595. 0x04, 0x57, 0x52, 0x49, 0x44, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x57, 0x52, 0x49,
  7596. 0x44, 0x22, 0xe8, 0x02, 0x0a, 0x17, 0x57, 0x52, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x43,
  7597. 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a,
  7598. 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e,
  7599. 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06,
  7600. 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64,
  7601. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65,
  7602. 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28,
  7603. 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x28, 0x0a, 0x0f, 0x57, 0x52,
  7604. 0x54, 0x72, 0x61, 0x64, 0x65, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x49, 0x44, 0x18, 0x04, 0x20,
  7605. 0x01, 0x28, 0x04, 0x52, 0x0f, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x43, 0x61, 0x6e, 0x63,
  7606. 0x65, 0x6c, 0x49, 0x44, 0x12, 0x2c, 0x0a, 0x11, 0x4f, 0x6c, 0x64, 0x57, 0x52, 0x54, 0x72, 0x61,
  7607. 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52,
  7608. 0x11, 0x4f, 0x6c, 0x64, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72,
  7609. 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01,
  7610. 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63,
  7611. 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41,
  7612. 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x43, 0x61, 0x6e, 0x63,
  7613. 0x65, 0x6c, 0x51, 0x74, 0x79, 0x18, 0x08, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x43, 0x61, 0x6e,
  7614. 0x63, 0x65, 0x6c, 0x51, 0x74, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54,
  7615. 0x69, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72,
  7616. 0x54, 0x69, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65,
  7617. 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c,
  7618. 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0x97, 0x06, 0x0a,
  7619. 0x14, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x5a, 0x53, 0x4f, 0x75, 0x74, 0x41, 0x70, 0x70,
  7620. 0x6c, 0x79, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18,
  7621. 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61,
  7622. 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x24,
  7623. 0x0a, 0x06, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c,
  7624. 0x2e, 0x70, 0x62, 0x2e, 0x57, 0x52, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x52, 0x06, 0x43, 0x6f,
  7625. 0x6d, 0x6d, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x03,
  7626. 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09,
  7627. 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52,
  7628. 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x22, 0x0a, 0x0c, 0x57, 0x52,
  7629. 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04,
  7630. 0x52, 0x0c, 0x57, 0x52, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x49, 0x44, 0x12, 0x20,
  7631. 0x0a, 0x0b, 0x57, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x49, 0x44, 0x18, 0x06, 0x20,
  7632. 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x57, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x49, 0x44,
  7633. 0x12, 0x16, 0x0a, 0x06, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09,
  7634. 0x52, 0x06, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x12, 0x28, 0x0a, 0x0f, 0x41, 0x70, 0x70, 0x6f,
  7635. 0x69, 0x6e, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x44, 0x61, 0x74, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28,
  7636. 0x09, 0x52, 0x0f, 0x41, 0x70, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x44, 0x61,
  7637. 0x74, 0x65, 0x12, 0x2a, 0x0a, 0x10, 0x41, 0x70, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x6d, 0x65, 0x6e,
  7638. 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x18, 0x09, 0x20, 0x01, 0x28, 0x05, 0x52, 0x10, 0x41, 0x70,
  7639. 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x12, 0x1c,
  7640. 0x0a, 0x09, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x49, 0x44, 0x18, 0x0a, 0x20, 0x01, 0x28,
  7641. 0x04, 0x52, 0x09, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a,
  7642. 0x50, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x49, 0x44, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x04,
  7643. 0x52, 0x0a, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a,
  7644. 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x49, 0x44, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x04,
  7645. 0x52, 0x0a, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06,
  7646. 0x43, 0x69, 0x74, 0x79, 0x49, 0x44, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x43, 0x69,
  7647. 0x74, 0x79, 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18,
  7648. 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x20,
  7649. 0x0a, 0x0b, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x0f, 0x20,
  7650. 0x01, 0x28, 0x09, 0x52, 0x0b, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x4e, 0x61, 0x6d, 0x65,
  7651. 0x12, 0x1e, 0x0a, 0x0a, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x4e, 0x75, 0x6d, 0x18, 0x10,
  7652. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x4e, 0x75, 0x6d,
  7653. 0x12, 0x2c, 0x0a, 0x11, 0x41, 0x70, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x52,
  7654. 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x41, 0x70, 0x70,
  7655. 0x6f, 0x69, 0x6e, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x12, 0x22,
  7656. 0x0a, 0x0c, 0x4c, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x42, 0x69, 0x6c, 0x6c, 0x49, 0x44, 0x18, 0x12,
  7657. 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x4c, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x42, 0x69, 0x6c, 0x6c,
  7658. 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x53, 0x75, 0x62, 0x4e, 0x75, 0x6d, 0x18, 0x13, 0x20, 0x01,
  7659. 0x28, 0x0d, 0x52, 0x06, 0x53, 0x75, 0x62, 0x4e, 0x75, 0x6d, 0x12, 0x10, 0x0a, 0x03, 0x51, 0x74,
  7660. 0x79, 0x18, 0x14, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x51, 0x74, 0x79, 0x12, 0x16, 0x0a, 0x06,
  7661. 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x52, 0x65,
  7662. 0x6d, 0x61, 0x72, 0x6b, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x54, 0x79, 0x70,
  7663. 0x65, 0x18, 0x16, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x54, 0x79,
  7664. 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65,
  7665. 0x18, 0x17, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79,
  7666. 0x70, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x69, 0x63, 0x6b,
  7667. 0x65, 0x74, 0x18, 0x18, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
  7668. 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x22, 0xd7, 0x01, 0x0a, 0x14, 0x52, 0x65, 0x63, 0x65, 0x69,
  7669. 0x70, 0x74, 0x5a, 0x53, 0x4f, 0x75, 0x74, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x73, 0x70, 0x12,
  7670. 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
  7671. 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64,
  7672. 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43,
  7673. 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f,
  7674. 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20,
  7675. 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x24, 0x0a, 0x06,
  7676. 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x70,
  7677. 0x62, 0x2e, 0x57, 0x52, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x52, 0x06, 0x43, 0x6f, 0x6d, 0x6d,
  7678. 0x6f, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x49, 0x44, 0x18, 0x05, 0x20,
  7679. 0x01, 0x28, 0x04, 0x52, 0x07, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x49, 0x44, 0x12, 0x22, 0x0a, 0x0c,
  7680. 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x18, 0x06, 0x20, 0x01,
  7681. 0x28, 0x09, 0x52, 0x0c, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74,
  7682. 0x22, 0x5d, 0x0a, 0x11, 0x44, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69,
  7683. 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x20, 0x0a, 0x0b, 0x44, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74,
  7684. 0x52, 0x61, 0x74, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x44, 0x65, 0x70, 0x6f,
  7685. 0x73, 0x69, 0x74, 0x52, 0x61, 0x74, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x44, 0x69, 0x73, 0x63, 0x6f,
  7686. 0x75, 0x6e, 0x74, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x52,
  7687. 0x0e, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x22,
  7688. 0x92, 0x03, 0x0a, 0x1a, 0x53, 0x70, 0x6f, 0x74, 0x50, 0x72, 0x65, 0x73, 0x61, 0x6c, 0x65, 0x4c,
  7689. 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x12, 0x27,
  7690. 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f,
  7691. 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52,
  7692. 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49,
  7693. 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12,
  7694. 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01,
  7695. 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x22, 0x0a,
  7696. 0x0c, 0x57, 0x52, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x49, 0x44, 0x18, 0x04, 0x20,
  7697. 0x01, 0x28, 0x0d, 0x52, 0x0c, 0x57, 0x52, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x49,
  7698. 0x44, 0x12, 0x20, 0x0a, 0x0b, 0x57, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x49, 0x44,
  7699. 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x57, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73,
  7700. 0x65, 0x49, 0x44, 0x12, 0x10, 0x0a, 0x03, 0x51, 0x74, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04,
  7701. 0x52, 0x03, 0x51, 0x74, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x45, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x65,
  7702. 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x45, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x65, 0x12,
  7703. 0x3d, 0x0a, 0x0e, 0x44, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
  7704. 0x73, 0x18, 0x08, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x70,
  7705. 0x6f, 0x73, 0x69, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0e,
  7706. 0x44, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x12, 0x1e,
  7707. 0x0a, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x09, 0x20, 0x01,
  7708. 0x28, 0x0d, 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x26,
  7709. 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f,
  7710. 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65,
  7711. 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x12, 0x1c, 0x0a, 0x09, 0x55, 0x6e, 0x69, 0x74, 0x50, 0x72,
  7712. 0x69, 0x63, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x55, 0x6e, 0x69, 0x74, 0x50,
  7713. 0x72, 0x69, 0x63, 0x65, 0x22, 0xf1, 0x01, 0x0a, 0x1a, 0x53, 0x70, 0x6f, 0x74, 0x50, 0x72, 0x65,
  7714. 0x73, 0x61, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x4f, 0x72, 0x64, 0x65, 0x72,
  7715. 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20,
  7716. 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  7717. 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07,
  7718. 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52,
  7719. 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73,
  7720. 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63,
  7721. 0x12, 0x26, 0x0a, 0x0e, 0x50, 0x72, 0x65, 0x73, 0x61, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x79,
  7722. 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x50, 0x72, 0x65, 0x73, 0x61, 0x6c,
  7723. 0x65, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x57, 0x52, 0x54, 0x72,
  7724. 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04,
  7725. 0x52, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44,
  7726. 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c,
  7727. 0x4e, 0x6f, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
  7728. 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0x68, 0x0a, 0x13, 0x54, 0x48, 0x4a, 0x50,
  7729. 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4e, 0x74, 0x66, 0x12,
  7730. 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
  7731. 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64,
  7732. 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x28, 0x0a, 0x0f, 0x57, 0x52, 0x54, 0x72,
  7733. 0x61, 0x64, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28,
  7734. 0x04, 0x52, 0x0f, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c,
  7735. 0x49, 0x44, 0x22, 0x5e, 0x0a, 0x13, 0x50, 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65, 0x54, 0x72,
  7736. 0x61, 0x6e, 0x73, 0x66, 0x65, 0x72, 0x4e, 0x74, 0x66, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61,
  7737. 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d,
  7738. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64,
  7739. 0x65, 0x72, 0x12, 0x1e, 0x0a, 0x0a, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x65, 0x72, 0x49, 0x44,
  7740. 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x65, 0x72,
  7741. 0x49, 0x44, 0x22, 0xad, 0x06, 0x0a, 0x10, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x44, 0x65,
  7742. 0x61, 0x6c, 0x65, 0x64, 0x4e, 0x74, 0x66, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65,
  7743. 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73,
  7744. 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72,
  7745. 0x12, 0x2c, 0x0a, 0x09, 0x4e, 0x74, 0x66, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x02, 0x20,
  7746. 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x70, 0x62, 0x2e, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x48,
  7747. 0x65, 0x61, 0x64, 0x52, 0x09, 0x4e, 0x74, 0x66, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x26,
  7748. 0x0a, 0x0e, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44,
  7749. 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x4f,
  7750. 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x2a, 0x0a, 0x10, 0x44, 0x65, 0x6c, 0x69, 0x73, 0x74,
  7751. 0x69, 0x6e, 0x67, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04,
  7752. 0x52, 0x10, 0x44, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x4f, 0x72, 0x64, 0x65, 0x72,
  7753. 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x54, 0x72, 0x61, 0x64, 0x65, 0x51, 0x74, 0x79, 0x18, 0x05,
  7754. 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x54, 0x72, 0x61, 0x64, 0x65, 0x51, 0x74, 0x79, 0x12, 0x1c,
  7755. 0x0a, 0x09, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x51, 0x74, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28,
  7756. 0x04, 0x52, 0x09, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x51, 0x74, 0x79, 0x12, 0x22, 0x0a, 0x0c,
  7757. 0x52, 0x65, 0x61, 0x6c, 0x54, 0x72, 0x61, 0x64, 0x65, 0x51, 0x74, 0x79, 0x18, 0x07, 0x20, 0x01,
  7758. 0x28, 0x04, 0x52, 0x0c, 0x52, 0x65, 0x61, 0x6c, 0x54, 0x72, 0x61, 0x64, 0x65, 0x51, 0x74, 0x79,
  7759. 0x12, 0x18, 0x0a, 0x07, 0x54, 0x72, 0x61, 0x64, 0x65, 0x49, 0x44, 0x18, 0x08, 0x20, 0x01, 0x28,
  7760. 0x04, 0x52, 0x07, 0x54, 0x72, 0x61, 0x64, 0x65, 0x49, 0x44, 0x12, 0x22, 0x0a, 0x0c, 0x42, 0x75,
  7761. 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x09, 0x20, 0x01, 0x28, 0x04,
  7762. 0x52, 0x0c, 0x42, 0x75, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x24,
  7763. 0x0a, 0x0d, 0x53, 0x65, 0x6c, 0x6c, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18,
  7764. 0x0a, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x53, 0x65, 0x6c, 0x6c, 0x41, 0x63, 0x63, 0x6f, 0x75,
  7765. 0x6e, 0x74, 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x54, 0x72, 0x61, 0x64, 0x65, 0x50, 0x72, 0x69,
  7766. 0x63, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x54, 0x72, 0x61, 0x64, 0x65, 0x50,
  7767. 0x72, 0x69, 0x63, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x54, 0x72, 0x61, 0x64, 0x65, 0x54, 0x69, 0x6d,
  7768. 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x54, 0x72, 0x61, 0x64, 0x65, 0x54, 0x69,
  7769. 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x57, 0x52, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x54, 0x79,
  7770. 0x70, 0x65, 0x49, 0x44, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x57, 0x52, 0x46, 0x61,
  7771. 0x63, 0x74, 0x6f, 0x72, 0x54, 0x79, 0x70, 0x65, 0x49, 0x44, 0x12, 0x2a, 0x0a, 0x10, 0x57, 0x52,
  7772. 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x0e,
  7773. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x10, 0x57, 0x52, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x65, 0x72,
  7774. 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x2c, 0x0a, 0x11, 0x46, 0x72, 0x65, 0x65, 0x7a, 0x65,
  7775. 0x46, 0x69, 0x72, 0x73, 0x74, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x0f, 0x20, 0x01, 0x28,
  7776. 0x01, 0x52, 0x11, 0x46, 0x72, 0x65, 0x65, 0x7a, 0x65, 0x46, 0x69, 0x72, 0x73, 0x74, 0x41, 0x6d,
  7777. 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x30, 0x0a, 0x13, 0x55, 0x6e, 0x46, 0x72, 0x65, 0x65, 0x7a, 0x65,
  7778. 0x46, 0x69, 0x72, 0x73, 0x74, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x10, 0x20, 0x01, 0x28,
  7779. 0x01, 0x52, 0x13, 0x55, 0x6e, 0x46, 0x72, 0x65, 0x65, 0x7a, 0x65, 0x46, 0x69, 0x72, 0x73, 0x74,
  7780. 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x28, 0x0a, 0x0f, 0x52, 0x65, 0x61, 0x6c, 0x54, 0x72,
  7781. 0x61, 0x64, 0x65, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x11, 0x20, 0x01, 0x28, 0x01, 0x52,
  7782. 0x0f, 0x52, 0x65, 0x61, 0x6c, 0x54, 0x72, 0x61, 0x64, 0x65, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74,
  7783. 0x12, 0x2c, 0x0a, 0x11, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x41,
  7784. 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x12, 0x20, 0x01, 0x28, 0x01, 0x52, 0x11, 0x50, 0x65, 0x72,
  7785. 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2c,
  7786. 0x0a, 0x11, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6c, 0x61,
  7787. 0x6e, 0x49, 0x44, 0x18, 0x13, 0x20, 0x01, 0x28, 0x04, 0x52, 0x11, 0x50, 0x65, 0x72, 0x66, 0x6f,
  7788. 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x49, 0x44, 0x12, 0x34, 0x0a, 0x15,
  7789. 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c,
  7790. 0x61, 0x74, 0x65, 0x49, 0x44, 0x18, 0x14, 0x20, 0x01, 0x28, 0x03, 0x52, 0x15, 0x50, 0x65, 0x72,
  7791. 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65,
  7792. 0x49, 0x44, 0x22, 0xb9, 0x02, 0x0a, 0x14, 0x43, 0x4a, 0x4a, 0x43, 0x4d, 0x65, 0x6d, 0x62, 0x65,
  7793. 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48,
  7794. 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62,
  7795. 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65,
  7796. 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x02,
  7797. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09,
  7798. 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52,
  7799. 0x09, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x4f, 0x70,
  7800. 0x65, 0x72, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01,
  7801. 0x28, 0x09, 0x52, 0x0e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75,
  7802. 0x6e, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x05, 0x20,
  7803. 0x01, 0x28, 0x04, 0x52, 0x07, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x20, 0x0a, 0x0b,
  7804. 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28,
  7805. 0x0d, 0x52, 0x0b, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16,
  7806. 0x0a, 0x06, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
  7807. 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x12, 0x1e, 0x0a, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
  7808. 0x54, 0x79, 0x70, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65,
  7809. 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
  7810. 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e,
  7811. 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0xd1,
  7812. 0x01, 0x0a, 0x14, 0x43, 0x4a, 0x4a, 0x43, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x4f, 0x70, 0x65,
  7813. 0x72, 0x61, 0x74, 0x65, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65,
  7814. 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73,
  7815. 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72,
  7816. 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  7817. 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65,
  7818. 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74,
  7819. 0x44, 0x65, 0x73, 0x63, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x04,
  7820. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09,
  7821. 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52,
  7822. 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c,
  7823. 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x06, 0x20, 0x01,
  7824. 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c,
  7825. 0x4e, 0x6f, 0x22, 0xbf, 0x03, 0x0a, 0x14, 0x42, 0x53, 0x46, 0x57, 0x4d, 0x65, 0x6d, 0x62, 0x65,
  7826. 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48,
  7827. 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62,
  7828. 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65,
  7829. 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x02,
  7830. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09,
  7831. 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52,
  7832. 0x09, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x4f, 0x70,
  7833. 0x65, 0x72, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01,
  7834. 0x28, 0x09, 0x52, 0x0e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75,
  7835. 0x6e, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x05, 0x20,
  7836. 0x01, 0x28, 0x04, 0x52, 0x07, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x20, 0x0a, 0x0b,
  7837. 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28,
  7838. 0x0d, 0x52, 0x0b, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x30,
  7839. 0x0a, 0x0b, 0x46, 0x69, 0x6c, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x18, 0x07, 0x20,
  7840. 0x03, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x44, 0x65, 0x74,
  7841. 0x61, 0x69, 0x6c, 0x52, 0x0b, 0x46, 0x69, 0x6c, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73,
  7842. 0x12, 0x16, 0x0a, 0x06, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09,
  7843. 0x52, 0x06, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x12, 0x2a, 0x0a, 0x10, 0x47, 0x5a, 0x42, 0x53,
  7844. 0x44, 0x65, 0x6c, 0x69, 0x76, 0x65, 0x72, 0x79, 0x54, 0x79, 0x70, 0x65, 0x18, 0x09, 0x20, 0x01,
  7845. 0x28, 0x0d, 0x52, 0x10, 0x47, 0x5a, 0x42, 0x53, 0x44, 0x65, 0x6c, 0x69, 0x76, 0x65, 0x72, 0x79,
  7846. 0x54, 0x79, 0x70, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x4c, 0x6f, 0x67,
  7847. 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x4f, 0x74,
  7848. 0x68, 0x65, 0x72, 0x4c, 0x6f, 0x67, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x12, 0x1e, 0x0a, 0x0a,
  7849. 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0d,
  7850. 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x26, 0x0a, 0x0e,
  7851. 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x0c,
  7852. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69,
  7853. 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0xd1, 0x01, 0x0a, 0x14, 0x42, 0x53, 0x46, 0x57, 0x4d, 0x65, 0x6d,
  7854. 0x62, 0x65, 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a,
  7855. 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e,
  7856. 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06,
  7857. 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64,
  7858. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65,
  7859. 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28,
  7860. 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73,
  7861. 0x65, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72,
  7862. 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18,
  7863. 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44,
  7864. 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c,
  7865. 0x4e, 0x6f, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
  7866. 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0x99, 0x01, 0x0a, 0x12, 0x41, 0x63, 0x63,
  7867. 0x6f, 0x75, 0x6e, 0x74, 0x46, 0x75, 0x6e, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12,
  7868. 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
  7869. 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64,
  7870. 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x4f, 0x72, 0x64, 0x65,
  7871. 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x4f, 0x72, 0x64, 0x65, 0x72,
  7872. 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x18,
  7873. 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64,
  7874. 0x12, 0x22, 0x0a, 0x0c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x42, 0x69, 0x74, 0x4d, 0x61, 0x73, 0x6b,
  7875. 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x42, 0x69, 0x74,
  7876. 0x4d, 0x61, 0x73, 0x6b, 0x22, 0xa9, 0x02, 0x0a, 0x12, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  7877. 0x46, 0x75, 0x6e, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48,
  7878. 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62,
  7879. 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65,
  7880. 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18,
  7881. 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18,
  7882. 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  7883. 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x18, 0x0a, 0x07, 0x4f, 0x72, 0x64, 0x65,
  7884. 0x72, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x4f, 0x72, 0x64, 0x65, 0x72,
  7885. 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x18,
  7886. 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64,
  7887. 0x12, 0x28, 0x0a, 0x0f, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x4d, 0x61, 0x72,
  7888. 0x67, 0x69, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x41, 0x76, 0x61, 0x69, 0x6c,
  7889. 0x61, 0x62, 0x6c, 0x65, 0x4d, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x12, 0x2c, 0x0a, 0x11, 0x41, 0x76,
  7890. 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x4f, 0x75, 0x74, 0x4d, 0x6f, 0x6e, 0x65, 0x79, 0x18,
  7891. 0x07, 0x20, 0x01, 0x28, 0x01, 0x52, 0x11, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65,
  7892. 0x4f, 0x75, 0x74, 0x4d, 0x6f, 0x6e, 0x65, 0x79, 0x12, 0x26, 0x0a, 0x0e, 0x49, 0x73, 0x43, 0x6c,
  7893. 0x65, 0x61, 0x6e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x05,
  7894. 0x52, 0x0e, 0x49, 0x73, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  7895. }
  7896. var (
  7897. file_mtp2_proto_rawDescOnce sync.Once
  7898. file_mtp2_proto_rawDescData = file_mtp2_proto_rawDesc
  7899. )
  7900. func file_mtp2_proto_rawDescGZIP() []byte {
  7901. file_mtp2_proto_rawDescOnce.Do(func() {
  7902. file_mtp2_proto_rawDescData = protoimpl.X.CompressGZIP(file_mtp2_proto_rawDescData)
  7903. })
  7904. return file_mtp2_proto_rawDescData
  7905. }
  7906. var file_mtp2_proto_msgTypes = make([]protoimpl.MessageInfo, 68)
  7907. var file_mtp2_proto_goTypes = []interface{}{
  7908. (*MessageHead)(nil), // 0: pb.MessageHead
  7909. (*NotifyHead)(nil), // 1: pb.NotifyHead
  7910. (*FileDetail)(nil), // 2: pb.FileDetail
  7911. (*ModifyPwdReq)(nil), // 3: pb.ModifyPwdReq
  7912. (*ModifyPwdRsp)(nil), // 4: pb.ModifyPwdRsp
  7913. (*UserReceiveInfoReq)(nil), // 5: pb.UserReceiveInfoReq
  7914. (*UserReceiveInfoRsp)(nil), // 6: pb.UserReceiveInfoRsp
  7915. (*DelUserReceiveInfoReq)(nil), // 7: pb.DelUserReceiveInfoReq
  7916. (*DelUserReceiveInfoRsp)(nil), // 8: pb.DelUserReceiveInfoRsp
  7917. (*UserReceiveIsDefaultReq)(nil), // 9: pb.UserReceiveIsDefaultReq
  7918. (*UserReceiveIsDefaultRsp)(nil), // 10: pb.UserReceiveIsDefaultRsp
  7919. (*UserReceiptInfoReq)(nil), // 11: pb.UserReceiptInfoReq
  7920. (*UserReceiptInfoRsp)(nil), // 12: pb.UserReceiptInfoRsp
  7921. (*DelUserReceiptInfoReq)(nil), // 13: pb.DelUserReceiptInfoReq
  7922. (*DelUserReceiptInfoRsp)(nil), // 14: pb.DelUserReceiptInfoRsp
  7923. (*T2BBankSignReq)(nil), // 15: pb.t2bBankSignReq
  7924. (*T2BBankSignRsp)(nil), // 16: pb.t2bBankSignRsp
  7925. (*T2BBankCancelSignReq)(nil), // 17: pb.t2bBankCancelSignReq
  7926. (*T2BBankCancelSignRsp)(nil), // 18: pb.t2bBankCancelSignRsp
  7927. (*T2BBankWithdrawReq)(nil), // 19: pb.t2bBankWithdrawReq
  7928. (*T2BBankWithdrawRsp)(nil), // 20: pb.t2bBankWithdrawRsp
  7929. (*T2BBankDepositReq)(nil), // 21: pb.t2bBankDepositReq
  7930. (*T2BBankDepositRsp)(nil), // 22: pb.t2bBankDepositRsp
  7931. (*WRCommon)(nil), // 23: pb.WRCommon
  7932. (*WarehouseApplyReq)(nil), // 24: pb.WarehouseApplyReq
  7933. (*WarehouseApplyRsp)(nil), // 25: pb.WarehouseApplyRsp
  7934. (*PerformanceContractedApplyReq)(nil), // 26: pb.PerformanceContractedApplyReq
  7935. (*PerformanceContractedApplyRsp)(nil), // 27: pb.PerformanceContractedApplyRsp
  7936. (*PerformanceDelayApplyReq)(nil), // 28: pb.PerformanceDelayApplyReq
  7937. (*PerformanceDelayApplyRsp)(nil), // 29: pb.PerformanceDelayApplyRsp
  7938. (*PerformanceManualConfirmReq)(nil), // 30: pb.PerformanceManualConfirmReq
  7939. (*PerformanceManualConfirmRsp)(nil), // 31: pb.PerformanceManualConfirmRsp
  7940. (*PerformanceModifyContactReq)(nil), // 32: pb.PerformanceModifyContactReq
  7941. (*PerformanceModifyContactRsp)(nil), // 33: pb.PerformanceModifyContactRsp
  7942. (*AddZSGoodsRsp)(nil), // 34: pb.AddZSGoodsRsp
  7943. (*GoodsFavoriteOperateReq)(nil), // 35: pb.GoodsFavoriteOperateReq
  7944. (*GoodsFavoriteOperateRsp)(nil), // 36: pb.GoodsFavoriteOperateRsp
  7945. (*GZBuyOrderDetailExInfo)(nil), // 37: pb.GZBuyOrderDetailExInfo
  7946. (*ZSBuyOrderListingReq)(nil), // 38: pb.ZSBuyOrderListingReq
  7947. (*ZSBuyOrderListingRsp)(nil), // 39: pb.ZSBuyOrderListingRsp
  7948. (*ZSSellOrderListingReq)(nil), // 40: pb.ZSSellOrderListingReq
  7949. (*ZSSellOrderListingRsp)(nil), // 41: pb.ZSSellOrderListingRsp
  7950. (*ZSBuyOrderDestingReq)(nil), // 42: pb.ZSBuyOrderDestingReq
  7951. (*ZSBuyOrderDestingRsp)(nil), // 43: pb.ZSBuyOrderDestingRsp
  7952. (*ZSSellOrderDestingApplyReq)(nil), // 44: pb.ZSSellOrderDestingApplyReq
  7953. (*ZSSellOrderDestingApplyRsp)(nil), // 45: pb.ZSSellOrderDestingApplyRsp
  7954. (*ZSSellOrderDestingApplyOperateReq)(nil), // 46: pb.ZSSellOrderDestingApplyOperateReq
  7955. (*ZSSellOrderDestingApplyOperateRsp)(nil), // 47: pb.ZSSellOrderDestingApplyOperateRsp
  7956. (*ZSBuyOrderDestingNegPriceReq)(nil), // 48: pb.ZSBuyOrderDestingNegPriceReq
  7957. (*ZSBuyOrderDestingNegPriceRsp)(nil), // 49: pb.ZSBuyOrderDestingNegPriceRsp
  7958. (*ZSBuyOrderDestingNegPriceOperateReq)(nil), // 50: pb.ZSBuyOrderDestingNegPriceOperateReq
  7959. (*ZSBuyOrderDestingNegPriceOperateRsp)(nil), // 51: pb.ZSBuyOrderDestingNegPriceOperateRsp
  7960. (*WRListingCancelOrderReq)(nil), // 52: pb.WRListingCancelOrderReq
  7961. (*WRListingCancelOrderRsp)(nil), // 53: pb.WRListingCancelOrderRsp
  7962. (*ReceiptZSOutApplyReq)(nil), // 54: pb.ReceiptZSOutApplyReq
  7963. (*ReceiptZSOutApplyRsp)(nil), // 55: pb.ReceiptZSOutApplyRsp
  7964. (*DepositConfigInfo)(nil), // 56: pb.DepositConfigInfo
  7965. (*SpotPresaleListingOrderReq)(nil), // 57: pb.SpotPresaleListingOrderReq
  7966. (*SpotPresaleListingOrderRsp)(nil), // 58: pb.SpotPresaleListingOrderRsp
  7967. (*THJPurchaseTradeNtf)(nil), // 59: pb.THJPurchaseTradeNtf
  7968. (*PurchaseTransferNtf)(nil), // 60: pb.PurchaseTransferNtf
  7969. (*WRTradeDealedNtf)(nil), // 61: pb.WRTradeDealedNtf
  7970. (*CJJCMemberOperateReq)(nil), // 62: pb.CJJCMemberOperateReq
  7971. (*CJJCMemberOperateRsp)(nil), // 63: pb.CJJCMemberOperateRsp
  7972. (*BSFWMemberOperateReq)(nil), // 64: pb.BSFWMemberOperateReq
  7973. (*BSFWMemberOperateRsp)(nil), // 65: pb.BSFWMemberOperateRsp
  7974. (*AccountFundInfoReq)(nil), // 66: pb.AccountFundInfoReq
  7975. (*AccountFundInfoRsp)(nil), // 67: pb.AccountFundInfoRsp
  7976. }
  7977. var file_mtp2_proto_depIdxs = []int32{
  7978. 0, // 0: pb.ModifyPwdReq.Header:type_name -> pb.MessageHead
  7979. 0, // 1: pb.ModifyPwdRsp.Header:type_name -> pb.MessageHead
  7980. 0, // 2: pb.UserReceiveInfoReq.Header:type_name -> pb.MessageHead
  7981. 0, // 3: pb.UserReceiveInfoRsp.Header:type_name -> pb.MessageHead
  7982. 0, // 4: pb.DelUserReceiveInfoReq.Header:type_name -> pb.MessageHead
  7983. 0, // 5: pb.DelUserReceiveInfoRsp.Header:type_name -> pb.MessageHead
  7984. 0, // 6: pb.UserReceiveIsDefaultReq.Header:type_name -> pb.MessageHead
  7985. 0, // 7: pb.UserReceiveIsDefaultRsp.Header:type_name -> pb.MessageHead
  7986. 0, // 8: pb.UserReceiptInfoReq.Header:type_name -> pb.MessageHead
  7987. 0, // 9: pb.UserReceiptInfoRsp.Header:type_name -> pb.MessageHead
  7988. 0, // 10: pb.DelUserReceiptInfoReq.Header:type_name -> pb.MessageHead
  7989. 0, // 11: pb.DelUserReceiptInfoRsp.Header:type_name -> pb.MessageHead
  7990. 0, // 12: pb.t2bBankSignReq.Header:type_name -> pb.MessageHead
  7991. 0, // 13: pb.t2bBankSignRsp.Header:type_name -> pb.MessageHead
  7992. 0, // 14: pb.t2bBankCancelSignReq.Header:type_name -> pb.MessageHead
  7993. 0, // 15: pb.t2bBankCancelSignRsp.Header:type_name -> pb.MessageHead
  7994. 0, // 16: pb.t2bBankWithdrawReq.Header:type_name -> pb.MessageHead
  7995. 0, // 17: pb.t2bBankWithdrawRsp.Header:type_name -> pb.MessageHead
  7996. 0, // 18: pb.t2bBankDepositReq.Header:type_name -> pb.MessageHead
  7997. 0, // 19: pb.t2bBankDepositRsp.Header:type_name -> pb.MessageHead
  7998. 0, // 20: pb.WarehouseApplyReq.Header:type_name -> pb.MessageHead
  7999. 0, // 21: pb.WarehouseApplyRsp.Header:type_name -> pb.MessageHead
  8000. 0, // 22: pb.PerformanceContractedApplyReq.Header:type_name -> pb.MessageHead
  8001. 0, // 23: pb.PerformanceContractedApplyRsp.Header:type_name -> pb.MessageHead
  8002. 0, // 24: pb.PerformanceDelayApplyReq.Header:type_name -> pb.MessageHead
  8003. 0, // 25: pb.PerformanceDelayApplyRsp.Header:type_name -> pb.MessageHead
  8004. 0, // 26: pb.PerformanceManualConfirmReq.Header:type_name -> pb.MessageHead
  8005. 0, // 27: pb.PerformanceManualConfirmRsp.Header:type_name -> pb.MessageHead
  8006. 0, // 28: pb.PerformanceModifyContactReq.Header:type_name -> pb.MessageHead
  8007. 0, // 29: pb.PerformanceModifyContactRsp.Header:type_name -> pb.MessageHead
  8008. 0, // 30: pb.AddZSGoodsRsp.Header:type_name -> pb.MessageHead
  8009. 0, // 31: pb.GoodsFavoriteOperateReq.Header:type_name -> pb.MessageHead
  8010. 0, // 32: pb.GoodsFavoriteOperateRsp.Header:type_name -> pb.MessageHead
  8011. 0, // 33: pb.ZSBuyOrderListingReq.Header:type_name -> pb.MessageHead
  8012. 37, // 34: pb.ZSBuyOrderListingReq.GZ_BuyOrderDetailExInfo:type_name -> pb.GZBuyOrderDetailExInfo
  8013. 0, // 35: pb.ZSBuyOrderListingRsp.Header:type_name -> pb.MessageHead
  8014. 0, // 36: pb.ZSSellOrderListingReq.Header:type_name -> pb.MessageHead
  8015. 0, // 37: pb.ZSSellOrderListingRsp.Header:type_name -> pb.MessageHead
  8016. 0, // 38: pb.ZSBuyOrderDestingReq.Header:type_name -> pb.MessageHead
  8017. 0, // 39: pb.ZSBuyOrderDestingRsp.Header:type_name -> pb.MessageHead
  8018. 0, // 40: pb.ZSSellOrderDestingApplyReq.Header:type_name -> pb.MessageHead
  8019. 0, // 41: pb.ZSSellOrderDestingApplyRsp.Header:type_name -> pb.MessageHead
  8020. 0, // 42: pb.ZSSellOrderDestingApplyOperateReq.Header:type_name -> pb.MessageHead
  8021. 0, // 43: pb.ZSSellOrderDestingApplyOperateRsp.Header:type_name -> pb.MessageHead
  8022. 0, // 44: pb.ZSBuyOrderDestingNegPriceReq.Header:type_name -> pb.MessageHead
  8023. 0, // 45: pb.ZSBuyOrderDestingNegPriceRsp.Header:type_name -> pb.MessageHead
  8024. 0, // 46: pb.ZSBuyOrderDestingNegPriceOperateReq.Header:type_name -> pb.MessageHead
  8025. 0, // 47: pb.ZSBuyOrderDestingNegPriceOperateRsp.Header:type_name -> pb.MessageHead
  8026. 0, // 48: pb.WRListingCancelOrderReq.Header:type_name -> pb.MessageHead
  8027. 0, // 49: pb.WRListingCancelOrderRsp.Header:type_name -> pb.MessageHead
  8028. 0, // 50: pb.ReceiptZSOutApplyReq.Header:type_name -> pb.MessageHead
  8029. 23, // 51: pb.ReceiptZSOutApplyReq.Common:type_name -> pb.WRCommon
  8030. 0, // 52: pb.ReceiptZSOutApplyRsp.Header:type_name -> pb.MessageHead
  8031. 23, // 53: pb.ReceiptZSOutApplyRsp.Common:type_name -> pb.WRCommon
  8032. 0, // 54: pb.SpotPresaleListingOrderReq.Header:type_name -> pb.MessageHead
  8033. 56, // 55: pb.SpotPresaleListingOrderReq.DepositConfigs:type_name -> pb.DepositConfigInfo
  8034. 0, // 56: pb.SpotPresaleListingOrderRsp.Header:type_name -> pb.MessageHead
  8035. 0, // 57: pb.THJPurchaseTradeNtf.Header:type_name -> pb.MessageHead
  8036. 0, // 58: pb.PurchaseTransferNtf.Header:type_name -> pb.MessageHead
  8037. 0, // 59: pb.WRTradeDealedNtf.Header:type_name -> pb.MessageHead
  8038. 1, // 60: pb.WRTradeDealedNtf.NtfHeader:type_name -> pb.NotifyHead
  8039. 0, // 61: pb.CJJCMemberOperateReq.Header:type_name -> pb.MessageHead
  8040. 0, // 62: pb.CJJCMemberOperateRsp.Header:type_name -> pb.MessageHead
  8041. 0, // 63: pb.BSFWMemberOperateReq.Header:type_name -> pb.MessageHead
  8042. 2, // 64: pb.BSFWMemberOperateReq.FileDetails:type_name -> pb.FileDetail
  8043. 0, // 65: pb.BSFWMemberOperateRsp.Header:type_name -> pb.MessageHead
  8044. 0, // 66: pb.AccountFundInfoReq.Header:type_name -> pb.MessageHead
  8045. 0, // 67: pb.AccountFundInfoRsp.Header:type_name -> pb.MessageHead
  8046. 68, // [68:68] is the sub-list for method output_type
  8047. 68, // [68:68] is the sub-list for method input_type
  8048. 68, // [68:68] is the sub-list for extension type_name
  8049. 68, // [68:68] is the sub-list for extension extendee
  8050. 0, // [0:68] is the sub-list for field type_name
  8051. }
  8052. func init() { file_mtp2_proto_init() }
  8053. func file_mtp2_proto_init() {
  8054. if File_mtp2_proto != nil {
  8055. return
  8056. }
  8057. if !protoimpl.UnsafeEnabled {
  8058. file_mtp2_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  8059. switch v := v.(*MessageHead); i {
  8060. case 0:
  8061. return &v.state
  8062. case 1:
  8063. return &v.sizeCache
  8064. case 2:
  8065. return &v.unknownFields
  8066. default:
  8067. return nil
  8068. }
  8069. }
  8070. file_mtp2_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  8071. switch v := v.(*NotifyHead); i {
  8072. case 0:
  8073. return &v.state
  8074. case 1:
  8075. return &v.sizeCache
  8076. case 2:
  8077. return &v.unknownFields
  8078. default:
  8079. return nil
  8080. }
  8081. }
  8082. file_mtp2_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  8083. switch v := v.(*FileDetail); i {
  8084. case 0:
  8085. return &v.state
  8086. case 1:
  8087. return &v.sizeCache
  8088. case 2:
  8089. return &v.unknownFields
  8090. default:
  8091. return nil
  8092. }
  8093. }
  8094. file_mtp2_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  8095. switch v := v.(*ModifyPwdReq); i {
  8096. case 0:
  8097. return &v.state
  8098. case 1:
  8099. return &v.sizeCache
  8100. case 2:
  8101. return &v.unknownFields
  8102. default:
  8103. return nil
  8104. }
  8105. }
  8106. file_mtp2_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  8107. switch v := v.(*ModifyPwdRsp); i {
  8108. case 0:
  8109. return &v.state
  8110. case 1:
  8111. return &v.sizeCache
  8112. case 2:
  8113. return &v.unknownFields
  8114. default:
  8115. return nil
  8116. }
  8117. }
  8118. file_mtp2_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  8119. switch v := v.(*UserReceiveInfoReq); i {
  8120. case 0:
  8121. return &v.state
  8122. case 1:
  8123. return &v.sizeCache
  8124. case 2:
  8125. return &v.unknownFields
  8126. default:
  8127. return nil
  8128. }
  8129. }
  8130. file_mtp2_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  8131. switch v := v.(*UserReceiveInfoRsp); i {
  8132. case 0:
  8133. return &v.state
  8134. case 1:
  8135. return &v.sizeCache
  8136. case 2:
  8137. return &v.unknownFields
  8138. default:
  8139. return nil
  8140. }
  8141. }
  8142. file_mtp2_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  8143. switch v := v.(*DelUserReceiveInfoReq); i {
  8144. case 0:
  8145. return &v.state
  8146. case 1:
  8147. return &v.sizeCache
  8148. case 2:
  8149. return &v.unknownFields
  8150. default:
  8151. return nil
  8152. }
  8153. }
  8154. file_mtp2_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  8155. switch v := v.(*DelUserReceiveInfoRsp); i {
  8156. case 0:
  8157. return &v.state
  8158. case 1:
  8159. return &v.sizeCache
  8160. case 2:
  8161. return &v.unknownFields
  8162. default:
  8163. return nil
  8164. }
  8165. }
  8166. file_mtp2_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  8167. switch v := v.(*UserReceiveIsDefaultReq); i {
  8168. case 0:
  8169. return &v.state
  8170. case 1:
  8171. return &v.sizeCache
  8172. case 2:
  8173. return &v.unknownFields
  8174. default:
  8175. return nil
  8176. }
  8177. }
  8178. file_mtp2_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  8179. switch v := v.(*UserReceiveIsDefaultRsp); i {
  8180. case 0:
  8181. return &v.state
  8182. case 1:
  8183. return &v.sizeCache
  8184. case 2:
  8185. return &v.unknownFields
  8186. default:
  8187. return nil
  8188. }
  8189. }
  8190. file_mtp2_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  8191. switch v := v.(*UserReceiptInfoReq); i {
  8192. case 0:
  8193. return &v.state
  8194. case 1:
  8195. return &v.sizeCache
  8196. case 2:
  8197. return &v.unknownFields
  8198. default:
  8199. return nil
  8200. }
  8201. }
  8202. file_mtp2_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  8203. switch v := v.(*UserReceiptInfoRsp); i {
  8204. case 0:
  8205. return &v.state
  8206. case 1:
  8207. return &v.sizeCache
  8208. case 2:
  8209. return &v.unknownFields
  8210. default:
  8211. return nil
  8212. }
  8213. }
  8214. file_mtp2_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  8215. switch v := v.(*DelUserReceiptInfoReq); i {
  8216. case 0:
  8217. return &v.state
  8218. case 1:
  8219. return &v.sizeCache
  8220. case 2:
  8221. return &v.unknownFields
  8222. default:
  8223. return nil
  8224. }
  8225. }
  8226. file_mtp2_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  8227. switch v := v.(*DelUserReceiptInfoRsp); i {
  8228. case 0:
  8229. return &v.state
  8230. case 1:
  8231. return &v.sizeCache
  8232. case 2:
  8233. return &v.unknownFields
  8234. default:
  8235. return nil
  8236. }
  8237. }
  8238. file_mtp2_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  8239. switch v := v.(*T2BBankSignReq); i {
  8240. case 0:
  8241. return &v.state
  8242. case 1:
  8243. return &v.sizeCache
  8244. case 2:
  8245. return &v.unknownFields
  8246. default:
  8247. return nil
  8248. }
  8249. }
  8250. file_mtp2_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  8251. switch v := v.(*T2BBankSignRsp); i {
  8252. case 0:
  8253. return &v.state
  8254. case 1:
  8255. return &v.sizeCache
  8256. case 2:
  8257. return &v.unknownFields
  8258. default:
  8259. return nil
  8260. }
  8261. }
  8262. file_mtp2_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  8263. switch v := v.(*T2BBankCancelSignReq); i {
  8264. case 0:
  8265. return &v.state
  8266. case 1:
  8267. return &v.sizeCache
  8268. case 2:
  8269. return &v.unknownFields
  8270. default:
  8271. return nil
  8272. }
  8273. }
  8274. file_mtp2_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  8275. switch v := v.(*T2BBankCancelSignRsp); i {
  8276. case 0:
  8277. return &v.state
  8278. case 1:
  8279. return &v.sizeCache
  8280. case 2:
  8281. return &v.unknownFields
  8282. default:
  8283. return nil
  8284. }
  8285. }
  8286. file_mtp2_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  8287. switch v := v.(*T2BBankWithdrawReq); i {
  8288. case 0:
  8289. return &v.state
  8290. case 1:
  8291. return &v.sizeCache
  8292. case 2:
  8293. return &v.unknownFields
  8294. default:
  8295. return nil
  8296. }
  8297. }
  8298. file_mtp2_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  8299. switch v := v.(*T2BBankWithdrawRsp); i {
  8300. case 0:
  8301. return &v.state
  8302. case 1:
  8303. return &v.sizeCache
  8304. case 2:
  8305. return &v.unknownFields
  8306. default:
  8307. return nil
  8308. }
  8309. }
  8310. file_mtp2_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  8311. switch v := v.(*T2BBankDepositReq); i {
  8312. case 0:
  8313. return &v.state
  8314. case 1:
  8315. return &v.sizeCache
  8316. case 2:
  8317. return &v.unknownFields
  8318. default:
  8319. return nil
  8320. }
  8321. }
  8322. file_mtp2_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  8323. switch v := v.(*T2BBankDepositRsp); i {
  8324. case 0:
  8325. return &v.state
  8326. case 1:
  8327. return &v.sizeCache
  8328. case 2:
  8329. return &v.unknownFields
  8330. default:
  8331. return nil
  8332. }
  8333. }
  8334. file_mtp2_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  8335. switch v := v.(*WRCommon); i {
  8336. case 0:
  8337. return &v.state
  8338. case 1:
  8339. return &v.sizeCache
  8340. case 2:
  8341. return &v.unknownFields
  8342. default:
  8343. return nil
  8344. }
  8345. }
  8346. file_mtp2_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  8347. switch v := v.(*WarehouseApplyReq); i {
  8348. case 0:
  8349. return &v.state
  8350. case 1:
  8351. return &v.sizeCache
  8352. case 2:
  8353. return &v.unknownFields
  8354. default:
  8355. return nil
  8356. }
  8357. }
  8358. file_mtp2_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  8359. switch v := v.(*WarehouseApplyRsp); i {
  8360. case 0:
  8361. return &v.state
  8362. case 1:
  8363. return &v.sizeCache
  8364. case 2:
  8365. return &v.unknownFields
  8366. default:
  8367. return nil
  8368. }
  8369. }
  8370. file_mtp2_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  8371. switch v := v.(*PerformanceContractedApplyReq); i {
  8372. case 0:
  8373. return &v.state
  8374. case 1:
  8375. return &v.sizeCache
  8376. case 2:
  8377. return &v.unknownFields
  8378. default:
  8379. return nil
  8380. }
  8381. }
  8382. file_mtp2_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  8383. switch v := v.(*PerformanceContractedApplyRsp); i {
  8384. case 0:
  8385. return &v.state
  8386. case 1:
  8387. return &v.sizeCache
  8388. case 2:
  8389. return &v.unknownFields
  8390. default:
  8391. return nil
  8392. }
  8393. }
  8394. file_mtp2_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  8395. switch v := v.(*PerformanceDelayApplyReq); i {
  8396. case 0:
  8397. return &v.state
  8398. case 1:
  8399. return &v.sizeCache
  8400. case 2:
  8401. return &v.unknownFields
  8402. default:
  8403. return nil
  8404. }
  8405. }
  8406. file_mtp2_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  8407. switch v := v.(*PerformanceDelayApplyRsp); i {
  8408. case 0:
  8409. return &v.state
  8410. case 1:
  8411. return &v.sizeCache
  8412. case 2:
  8413. return &v.unknownFields
  8414. default:
  8415. return nil
  8416. }
  8417. }
  8418. file_mtp2_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  8419. switch v := v.(*PerformanceManualConfirmReq); i {
  8420. case 0:
  8421. return &v.state
  8422. case 1:
  8423. return &v.sizeCache
  8424. case 2:
  8425. return &v.unknownFields
  8426. default:
  8427. return nil
  8428. }
  8429. }
  8430. file_mtp2_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  8431. switch v := v.(*PerformanceManualConfirmRsp); i {
  8432. case 0:
  8433. return &v.state
  8434. case 1:
  8435. return &v.sizeCache
  8436. case 2:
  8437. return &v.unknownFields
  8438. default:
  8439. return nil
  8440. }
  8441. }
  8442. file_mtp2_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  8443. switch v := v.(*PerformanceModifyContactReq); i {
  8444. case 0:
  8445. return &v.state
  8446. case 1:
  8447. return &v.sizeCache
  8448. case 2:
  8449. return &v.unknownFields
  8450. default:
  8451. return nil
  8452. }
  8453. }
  8454. file_mtp2_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  8455. switch v := v.(*PerformanceModifyContactRsp); i {
  8456. case 0:
  8457. return &v.state
  8458. case 1:
  8459. return &v.sizeCache
  8460. case 2:
  8461. return &v.unknownFields
  8462. default:
  8463. return nil
  8464. }
  8465. }
  8466. file_mtp2_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  8467. switch v := v.(*AddZSGoodsRsp); i {
  8468. case 0:
  8469. return &v.state
  8470. case 1:
  8471. return &v.sizeCache
  8472. case 2:
  8473. return &v.unknownFields
  8474. default:
  8475. return nil
  8476. }
  8477. }
  8478. file_mtp2_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
  8479. switch v := v.(*GoodsFavoriteOperateReq); i {
  8480. case 0:
  8481. return &v.state
  8482. case 1:
  8483. return &v.sizeCache
  8484. case 2:
  8485. return &v.unknownFields
  8486. default:
  8487. return nil
  8488. }
  8489. }
  8490. file_mtp2_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
  8491. switch v := v.(*GoodsFavoriteOperateRsp); i {
  8492. case 0:
  8493. return &v.state
  8494. case 1:
  8495. return &v.sizeCache
  8496. case 2:
  8497. return &v.unknownFields
  8498. default:
  8499. return nil
  8500. }
  8501. }
  8502. file_mtp2_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
  8503. switch v := v.(*GZBuyOrderDetailExInfo); i {
  8504. case 0:
  8505. return &v.state
  8506. case 1:
  8507. return &v.sizeCache
  8508. case 2:
  8509. return &v.unknownFields
  8510. default:
  8511. return nil
  8512. }
  8513. }
  8514. file_mtp2_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
  8515. switch v := v.(*ZSBuyOrderListingReq); i {
  8516. case 0:
  8517. return &v.state
  8518. case 1:
  8519. return &v.sizeCache
  8520. case 2:
  8521. return &v.unknownFields
  8522. default:
  8523. return nil
  8524. }
  8525. }
  8526. file_mtp2_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
  8527. switch v := v.(*ZSBuyOrderListingRsp); i {
  8528. case 0:
  8529. return &v.state
  8530. case 1:
  8531. return &v.sizeCache
  8532. case 2:
  8533. return &v.unknownFields
  8534. default:
  8535. return nil
  8536. }
  8537. }
  8538. file_mtp2_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
  8539. switch v := v.(*ZSSellOrderListingReq); i {
  8540. case 0:
  8541. return &v.state
  8542. case 1:
  8543. return &v.sizeCache
  8544. case 2:
  8545. return &v.unknownFields
  8546. default:
  8547. return nil
  8548. }
  8549. }
  8550. file_mtp2_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
  8551. switch v := v.(*ZSSellOrderListingRsp); i {
  8552. case 0:
  8553. return &v.state
  8554. case 1:
  8555. return &v.sizeCache
  8556. case 2:
  8557. return &v.unknownFields
  8558. default:
  8559. return nil
  8560. }
  8561. }
  8562. file_mtp2_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
  8563. switch v := v.(*ZSBuyOrderDestingReq); i {
  8564. case 0:
  8565. return &v.state
  8566. case 1:
  8567. return &v.sizeCache
  8568. case 2:
  8569. return &v.unknownFields
  8570. default:
  8571. return nil
  8572. }
  8573. }
  8574. file_mtp2_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
  8575. switch v := v.(*ZSBuyOrderDestingRsp); i {
  8576. case 0:
  8577. return &v.state
  8578. case 1:
  8579. return &v.sizeCache
  8580. case 2:
  8581. return &v.unknownFields
  8582. default:
  8583. return nil
  8584. }
  8585. }
  8586. file_mtp2_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
  8587. switch v := v.(*ZSSellOrderDestingApplyReq); i {
  8588. case 0:
  8589. return &v.state
  8590. case 1:
  8591. return &v.sizeCache
  8592. case 2:
  8593. return &v.unknownFields
  8594. default:
  8595. return nil
  8596. }
  8597. }
  8598. file_mtp2_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {
  8599. switch v := v.(*ZSSellOrderDestingApplyRsp); i {
  8600. case 0:
  8601. return &v.state
  8602. case 1:
  8603. return &v.sizeCache
  8604. case 2:
  8605. return &v.unknownFields
  8606. default:
  8607. return nil
  8608. }
  8609. }
  8610. file_mtp2_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {
  8611. switch v := v.(*ZSSellOrderDestingApplyOperateReq); i {
  8612. case 0:
  8613. return &v.state
  8614. case 1:
  8615. return &v.sizeCache
  8616. case 2:
  8617. return &v.unknownFields
  8618. default:
  8619. return nil
  8620. }
  8621. }
  8622. file_mtp2_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} {
  8623. switch v := v.(*ZSSellOrderDestingApplyOperateRsp); i {
  8624. case 0:
  8625. return &v.state
  8626. case 1:
  8627. return &v.sizeCache
  8628. case 2:
  8629. return &v.unknownFields
  8630. default:
  8631. return nil
  8632. }
  8633. }
  8634. file_mtp2_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} {
  8635. switch v := v.(*ZSBuyOrderDestingNegPriceReq); i {
  8636. case 0:
  8637. return &v.state
  8638. case 1:
  8639. return &v.sizeCache
  8640. case 2:
  8641. return &v.unknownFields
  8642. default:
  8643. return nil
  8644. }
  8645. }
  8646. file_mtp2_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} {
  8647. switch v := v.(*ZSBuyOrderDestingNegPriceRsp); i {
  8648. case 0:
  8649. return &v.state
  8650. case 1:
  8651. return &v.sizeCache
  8652. case 2:
  8653. return &v.unknownFields
  8654. default:
  8655. return nil
  8656. }
  8657. }
  8658. file_mtp2_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} {
  8659. switch v := v.(*ZSBuyOrderDestingNegPriceOperateReq); i {
  8660. case 0:
  8661. return &v.state
  8662. case 1:
  8663. return &v.sizeCache
  8664. case 2:
  8665. return &v.unknownFields
  8666. default:
  8667. return nil
  8668. }
  8669. }
  8670. file_mtp2_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} {
  8671. switch v := v.(*ZSBuyOrderDestingNegPriceOperateRsp); i {
  8672. case 0:
  8673. return &v.state
  8674. case 1:
  8675. return &v.sizeCache
  8676. case 2:
  8677. return &v.unknownFields
  8678. default:
  8679. return nil
  8680. }
  8681. }
  8682. file_mtp2_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} {
  8683. switch v := v.(*WRListingCancelOrderReq); i {
  8684. case 0:
  8685. return &v.state
  8686. case 1:
  8687. return &v.sizeCache
  8688. case 2:
  8689. return &v.unknownFields
  8690. default:
  8691. return nil
  8692. }
  8693. }
  8694. file_mtp2_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} {
  8695. switch v := v.(*WRListingCancelOrderRsp); i {
  8696. case 0:
  8697. return &v.state
  8698. case 1:
  8699. return &v.sizeCache
  8700. case 2:
  8701. return &v.unknownFields
  8702. default:
  8703. return nil
  8704. }
  8705. }
  8706. file_mtp2_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} {
  8707. switch v := v.(*ReceiptZSOutApplyReq); i {
  8708. case 0:
  8709. return &v.state
  8710. case 1:
  8711. return &v.sizeCache
  8712. case 2:
  8713. return &v.unknownFields
  8714. default:
  8715. return nil
  8716. }
  8717. }
  8718. file_mtp2_proto_msgTypes[55].Exporter = func(v interface{}, i int) interface{} {
  8719. switch v := v.(*ReceiptZSOutApplyRsp); i {
  8720. case 0:
  8721. return &v.state
  8722. case 1:
  8723. return &v.sizeCache
  8724. case 2:
  8725. return &v.unknownFields
  8726. default:
  8727. return nil
  8728. }
  8729. }
  8730. file_mtp2_proto_msgTypes[56].Exporter = func(v interface{}, i int) interface{} {
  8731. switch v := v.(*DepositConfigInfo); i {
  8732. case 0:
  8733. return &v.state
  8734. case 1:
  8735. return &v.sizeCache
  8736. case 2:
  8737. return &v.unknownFields
  8738. default:
  8739. return nil
  8740. }
  8741. }
  8742. file_mtp2_proto_msgTypes[57].Exporter = func(v interface{}, i int) interface{} {
  8743. switch v := v.(*SpotPresaleListingOrderReq); i {
  8744. case 0:
  8745. return &v.state
  8746. case 1:
  8747. return &v.sizeCache
  8748. case 2:
  8749. return &v.unknownFields
  8750. default:
  8751. return nil
  8752. }
  8753. }
  8754. file_mtp2_proto_msgTypes[58].Exporter = func(v interface{}, i int) interface{} {
  8755. switch v := v.(*SpotPresaleListingOrderRsp); i {
  8756. case 0:
  8757. return &v.state
  8758. case 1:
  8759. return &v.sizeCache
  8760. case 2:
  8761. return &v.unknownFields
  8762. default:
  8763. return nil
  8764. }
  8765. }
  8766. file_mtp2_proto_msgTypes[59].Exporter = func(v interface{}, i int) interface{} {
  8767. switch v := v.(*THJPurchaseTradeNtf); i {
  8768. case 0:
  8769. return &v.state
  8770. case 1:
  8771. return &v.sizeCache
  8772. case 2:
  8773. return &v.unknownFields
  8774. default:
  8775. return nil
  8776. }
  8777. }
  8778. file_mtp2_proto_msgTypes[60].Exporter = func(v interface{}, i int) interface{} {
  8779. switch v := v.(*PurchaseTransferNtf); i {
  8780. case 0:
  8781. return &v.state
  8782. case 1:
  8783. return &v.sizeCache
  8784. case 2:
  8785. return &v.unknownFields
  8786. default:
  8787. return nil
  8788. }
  8789. }
  8790. file_mtp2_proto_msgTypes[61].Exporter = func(v interface{}, i int) interface{} {
  8791. switch v := v.(*WRTradeDealedNtf); i {
  8792. case 0:
  8793. return &v.state
  8794. case 1:
  8795. return &v.sizeCache
  8796. case 2:
  8797. return &v.unknownFields
  8798. default:
  8799. return nil
  8800. }
  8801. }
  8802. file_mtp2_proto_msgTypes[62].Exporter = func(v interface{}, i int) interface{} {
  8803. switch v := v.(*CJJCMemberOperateReq); i {
  8804. case 0:
  8805. return &v.state
  8806. case 1:
  8807. return &v.sizeCache
  8808. case 2:
  8809. return &v.unknownFields
  8810. default:
  8811. return nil
  8812. }
  8813. }
  8814. file_mtp2_proto_msgTypes[63].Exporter = func(v interface{}, i int) interface{} {
  8815. switch v := v.(*CJJCMemberOperateRsp); i {
  8816. case 0:
  8817. return &v.state
  8818. case 1:
  8819. return &v.sizeCache
  8820. case 2:
  8821. return &v.unknownFields
  8822. default:
  8823. return nil
  8824. }
  8825. }
  8826. file_mtp2_proto_msgTypes[64].Exporter = func(v interface{}, i int) interface{} {
  8827. switch v := v.(*BSFWMemberOperateReq); i {
  8828. case 0:
  8829. return &v.state
  8830. case 1:
  8831. return &v.sizeCache
  8832. case 2:
  8833. return &v.unknownFields
  8834. default:
  8835. return nil
  8836. }
  8837. }
  8838. file_mtp2_proto_msgTypes[65].Exporter = func(v interface{}, i int) interface{} {
  8839. switch v := v.(*BSFWMemberOperateRsp); i {
  8840. case 0:
  8841. return &v.state
  8842. case 1:
  8843. return &v.sizeCache
  8844. case 2:
  8845. return &v.unknownFields
  8846. default:
  8847. return nil
  8848. }
  8849. }
  8850. file_mtp2_proto_msgTypes[66].Exporter = func(v interface{}, i int) interface{} {
  8851. switch v := v.(*AccountFundInfoReq); i {
  8852. case 0:
  8853. return &v.state
  8854. case 1:
  8855. return &v.sizeCache
  8856. case 2:
  8857. return &v.unknownFields
  8858. default:
  8859. return nil
  8860. }
  8861. }
  8862. file_mtp2_proto_msgTypes[67].Exporter = func(v interface{}, i int) interface{} {
  8863. switch v := v.(*AccountFundInfoRsp); i {
  8864. case 0:
  8865. return &v.state
  8866. case 1:
  8867. return &v.sizeCache
  8868. case 2:
  8869. return &v.unknownFields
  8870. default:
  8871. return nil
  8872. }
  8873. }
  8874. }
  8875. type x struct{}
  8876. out := protoimpl.TypeBuilder{
  8877. File: protoimpl.DescBuilder{
  8878. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  8879. RawDescriptor: file_mtp2_proto_rawDesc,
  8880. NumEnums: 0,
  8881. NumMessages: 68,
  8882. NumExtensions: 0,
  8883. NumServices: 0,
  8884. },
  8885. GoTypes: file_mtp2_proto_goTypes,
  8886. DependencyIndexes: file_mtp2_proto_depIdxs,
  8887. MessageInfos: file_mtp2_proto_msgTypes,
  8888. }.Build()
  8889. File_mtp2_proto = out.File
  8890. file_mtp2_proto_rawDesc = nil
  8891. file_mtp2_proto_goTypes = nil
  8892. file_mtp2_proto_depIdxs = nil
  8893. }