OpenAPIv2.pb.go 175 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: openapiv2/OpenAPIv2.proto
  3. package openapi_v2
  4. import (
  5. fmt "fmt"
  6. proto "github.com/golang/protobuf/proto"
  7. any "github.com/golang/protobuf/ptypes/any"
  8. math "math"
  9. )
  10. // Reference imports to suppress errors if they are not otherwise used.
  11. var _ = proto.Marshal
  12. var _ = fmt.Errorf
  13. var _ = math.Inf
  14. // This is a compile-time assertion to ensure that this generated file
  15. // is compatible with the proto package it is being compiled against.
  16. // A compilation error at this line likely means your copy of the
  17. // proto package needs to be updated.
  18. const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
  19. type AdditionalPropertiesItem struct {
  20. // Types that are valid to be assigned to Oneof:
  21. // *AdditionalPropertiesItem_Schema
  22. // *AdditionalPropertiesItem_Boolean
  23. Oneof isAdditionalPropertiesItem_Oneof `protobuf_oneof:"oneof"`
  24. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  25. XXX_unrecognized []byte `json:"-"`
  26. XXX_sizecache int32 `json:"-"`
  27. }
  28. func (m *AdditionalPropertiesItem) Reset() { *m = AdditionalPropertiesItem{} }
  29. func (m *AdditionalPropertiesItem) String() string { return proto.CompactTextString(m) }
  30. func (*AdditionalPropertiesItem) ProtoMessage() {}
  31. func (*AdditionalPropertiesItem) Descriptor() ([]byte, []int) {
  32. return fileDescriptor_a43d10d209cd31c2, []int{0}
  33. }
  34. func (m *AdditionalPropertiesItem) XXX_Unmarshal(b []byte) error {
  35. return xxx_messageInfo_AdditionalPropertiesItem.Unmarshal(m, b)
  36. }
  37. func (m *AdditionalPropertiesItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  38. return xxx_messageInfo_AdditionalPropertiesItem.Marshal(b, m, deterministic)
  39. }
  40. func (m *AdditionalPropertiesItem) XXX_Merge(src proto.Message) {
  41. xxx_messageInfo_AdditionalPropertiesItem.Merge(m, src)
  42. }
  43. func (m *AdditionalPropertiesItem) XXX_Size() int {
  44. return xxx_messageInfo_AdditionalPropertiesItem.Size(m)
  45. }
  46. func (m *AdditionalPropertiesItem) XXX_DiscardUnknown() {
  47. xxx_messageInfo_AdditionalPropertiesItem.DiscardUnknown(m)
  48. }
  49. var xxx_messageInfo_AdditionalPropertiesItem proto.InternalMessageInfo
  50. type isAdditionalPropertiesItem_Oneof interface {
  51. isAdditionalPropertiesItem_Oneof()
  52. }
  53. type AdditionalPropertiesItem_Schema struct {
  54. Schema *Schema `protobuf:"bytes,1,opt,name=schema,proto3,oneof"`
  55. }
  56. type AdditionalPropertiesItem_Boolean struct {
  57. Boolean bool `protobuf:"varint,2,opt,name=boolean,proto3,oneof"`
  58. }
  59. func (*AdditionalPropertiesItem_Schema) isAdditionalPropertiesItem_Oneof() {}
  60. func (*AdditionalPropertiesItem_Boolean) isAdditionalPropertiesItem_Oneof() {}
  61. func (m *AdditionalPropertiesItem) GetOneof() isAdditionalPropertiesItem_Oneof {
  62. if m != nil {
  63. return m.Oneof
  64. }
  65. return nil
  66. }
  67. func (m *AdditionalPropertiesItem) GetSchema() *Schema {
  68. if x, ok := m.GetOneof().(*AdditionalPropertiesItem_Schema); ok {
  69. return x.Schema
  70. }
  71. return nil
  72. }
  73. func (m *AdditionalPropertiesItem) GetBoolean() bool {
  74. if x, ok := m.GetOneof().(*AdditionalPropertiesItem_Boolean); ok {
  75. return x.Boolean
  76. }
  77. return false
  78. }
  79. // XXX_OneofWrappers is for the internal use of the proto package.
  80. func (*AdditionalPropertiesItem) XXX_OneofWrappers() []interface{} {
  81. return []interface{}{
  82. (*AdditionalPropertiesItem_Schema)(nil),
  83. (*AdditionalPropertiesItem_Boolean)(nil),
  84. }
  85. }
  86. type Any struct {
  87. Value *any.Any `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
  88. Yaml string `protobuf:"bytes,2,opt,name=yaml,proto3" json:"yaml,omitempty"`
  89. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  90. XXX_unrecognized []byte `json:"-"`
  91. XXX_sizecache int32 `json:"-"`
  92. }
  93. func (m *Any) Reset() { *m = Any{} }
  94. func (m *Any) String() string { return proto.CompactTextString(m) }
  95. func (*Any) ProtoMessage() {}
  96. func (*Any) Descriptor() ([]byte, []int) {
  97. return fileDescriptor_a43d10d209cd31c2, []int{1}
  98. }
  99. func (m *Any) XXX_Unmarshal(b []byte) error {
  100. return xxx_messageInfo_Any.Unmarshal(m, b)
  101. }
  102. func (m *Any) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  103. return xxx_messageInfo_Any.Marshal(b, m, deterministic)
  104. }
  105. func (m *Any) XXX_Merge(src proto.Message) {
  106. xxx_messageInfo_Any.Merge(m, src)
  107. }
  108. func (m *Any) XXX_Size() int {
  109. return xxx_messageInfo_Any.Size(m)
  110. }
  111. func (m *Any) XXX_DiscardUnknown() {
  112. xxx_messageInfo_Any.DiscardUnknown(m)
  113. }
  114. var xxx_messageInfo_Any proto.InternalMessageInfo
  115. func (m *Any) GetValue() *any.Any {
  116. if m != nil {
  117. return m.Value
  118. }
  119. return nil
  120. }
  121. func (m *Any) GetYaml() string {
  122. if m != nil {
  123. return m.Yaml
  124. }
  125. return ""
  126. }
  127. type ApiKeySecurity struct {
  128. Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
  129. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  130. In string `protobuf:"bytes,3,opt,name=in,proto3" json:"in,omitempty"`
  131. Description string `protobuf:"bytes,4,opt,name=description,proto3" json:"description,omitempty"`
  132. VendorExtension []*NamedAny `protobuf:"bytes,5,rep,name=vendor_extension,json=vendorExtension,proto3" json:"vendor_extension,omitempty"`
  133. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  134. XXX_unrecognized []byte `json:"-"`
  135. XXX_sizecache int32 `json:"-"`
  136. }
  137. func (m *ApiKeySecurity) Reset() { *m = ApiKeySecurity{} }
  138. func (m *ApiKeySecurity) String() string { return proto.CompactTextString(m) }
  139. func (*ApiKeySecurity) ProtoMessage() {}
  140. func (*ApiKeySecurity) Descriptor() ([]byte, []int) {
  141. return fileDescriptor_a43d10d209cd31c2, []int{2}
  142. }
  143. func (m *ApiKeySecurity) XXX_Unmarshal(b []byte) error {
  144. return xxx_messageInfo_ApiKeySecurity.Unmarshal(m, b)
  145. }
  146. func (m *ApiKeySecurity) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  147. return xxx_messageInfo_ApiKeySecurity.Marshal(b, m, deterministic)
  148. }
  149. func (m *ApiKeySecurity) XXX_Merge(src proto.Message) {
  150. xxx_messageInfo_ApiKeySecurity.Merge(m, src)
  151. }
  152. func (m *ApiKeySecurity) XXX_Size() int {
  153. return xxx_messageInfo_ApiKeySecurity.Size(m)
  154. }
  155. func (m *ApiKeySecurity) XXX_DiscardUnknown() {
  156. xxx_messageInfo_ApiKeySecurity.DiscardUnknown(m)
  157. }
  158. var xxx_messageInfo_ApiKeySecurity proto.InternalMessageInfo
  159. func (m *ApiKeySecurity) GetType() string {
  160. if m != nil {
  161. return m.Type
  162. }
  163. return ""
  164. }
  165. func (m *ApiKeySecurity) GetName() string {
  166. if m != nil {
  167. return m.Name
  168. }
  169. return ""
  170. }
  171. func (m *ApiKeySecurity) GetIn() string {
  172. if m != nil {
  173. return m.In
  174. }
  175. return ""
  176. }
  177. func (m *ApiKeySecurity) GetDescription() string {
  178. if m != nil {
  179. return m.Description
  180. }
  181. return ""
  182. }
  183. func (m *ApiKeySecurity) GetVendorExtension() []*NamedAny {
  184. if m != nil {
  185. return m.VendorExtension
  186. }
  187. return nil
  188. }
  189. type BasicAuthenticationSecurity struct {
  190. Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
  191. Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
  192. VendorExtension []*NamedAny `protobuf:"bytes,3,rep,name=vendor_extension,json=vendorExtension,proto3" json:"vendor_extension,omitempty"`
  193. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  194. XXX_unrecognized []byte `json:"-"`
  195. XXX_sizecache int32 `json:"-"`
  196. }
  197. func (m *BasicAuthenticationSecurity) Reset() { *m = BasicAuthenticationSecurity{} }
  198. func (m *BasicAuthenticationSecurity) String() string { return proto.CompactTextString(m) }
  199. func (*BasicAuthenticationSecurity) ProtoMessage() {}
  200. func (*BasicAuthenticationSecurity) Descriptor() ([]byte, []int) {
  201. return fileDescriptor_a43d10d209cd31c2, []int{3}
  202. }
  203. func (m *BasicAuthenticationSecurity) XXX_Unmarshal(b []byte) error {
  204. return xxx_messageInfo_BasicAuthenticationSecurity.Unmarshal(m, b)
  205. }
  206. func (m *BasicAuthenticationSecurity) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  207. return xxx_messageInfo_BasicAuthenticationSecurity.Marshal(b, m, deterministic)
  208. }
  209. func (m *BasicAuthenticationSecurity) XXX_Merge(src proto.Message) {
  210. xxx_messageInfo_BasicAuthenticationSecurity.Merge(m, src)
  211. }
  212. func (m *BasicAuthenticationSecurity) XXX_Size() int {
  213. return xxx_messageInfo_BasicAuthenticationSecurity.Size(m)
  214. }
  215. func (m *BasicAuthenticationSecurity) XXX_DiscardUnknown() {
  216. xxx_messageInfo_BasicAuthenticationSecurity.DiscardUnknown(m)
  217. }
  218. var xxx_messageInfo_BasicAuthenticationSecurity proto.InternalMessageInfo
  219. func (m *BasicAuthenticationSecurity) GetType() string {
  220. if m != nil {
  221. return m.Type
  222. }
  223. return ""
  224. }
  225. func (m *BasicAuthenticationSecurity) GetDescription() string {
  226. if m != nil {
  227. return m.Description
  228. }
  229. return ""
  230. }
  231. func (m *BasicAuthenticationSecurity) GetVendorExtension() []*NamedAny {
  232. if m != nil {
  233. return m.VendorExtension
  234. }
  235. return nil
  236. }
  237. type BodyParameter struct {
  238. // A brief description of the parameter. This could contain examples of use. GitHub Flavored Markdown is allowed.
  239. Description string `protobuf:"bytes,1,opt,name=description,proto3" json:"description,omitempty"`
  240. // The name of the parameter.
  241. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  242. // Determines the location of the parameter.
  243. In string `protobuf:"bytes,3,opt,name=in,proto3" json:"in,omitempty"`
  244. // Determines whether or not this parameter is required or optional.
  245. Required bool `protobuf:"varint,4,opt,name=required,proto3" json:"required,omitempty"`
  246. Schema *Schema `protobuf:"bytes,5,opt,name=schema,proto3" json:"schema,omitempty"`
  247. VendorExtension []*NamedAny `protobuf:"bytes,6,rep,name=vendor_extension,json=vendorExtension,proto3" json:"vendor_extension,omitempty"`
  248. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  249. XXX_unrecognized []byte `json:"-"`
  250. XXX_sizecache int32 `json:"-"`
  251. }
  252. func (m *BodyParameter) Reset() { *m = BodyParameter{} }
  253. func (m *BodyParameter) String() string { return proto.CompactTextString(m) }
  254. func (*BodyParameter) ProtoMessage() {}
  255. func (*BodyParameter) Descriptor() ([]byte, []int) {
  256. return fileDescriptor_a43d10d209cd31c2, []int{4}
  257. }
  258. func (m *BodyParameter) XXX_Unmarshal(b []byte) error {
  259. return xxx_messageInfo_BodyParameter.Unmarshal(m, b)
  260. }
  261. func (m *BodyParameter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  262. return xxx_messageInfo_BodyParameter.Marshal(b, m, deterministic)
  263. }
  264. func (m *BodyParameter) XXX_Merge(src proto.Message) {
  265. xxx_messageInfo_BodyParameter.Merge(m, src)
  266. }
  267. func (m *BodyParameter) XXX_Size() int {
  268. return xxx_messageInfo_BodyParameter.Size(m)
  269. }
  270. func (m *BodyParameter) XXX_DiscardUnknown() {
  271. xxx_messageInfo_BodyParameter.DiscardUnknown(m)
  272. }
  273. var xxx_messageInfo_BodyParameter proto.InternalMessageInfo
  274. func (m *BodyParameter) GetDescription() string {
  275. if m != nil {
  276. return m.Description
  277. }
  278. return ""
  279. }
  280. func (m *BodyParameter) GetName() string {
  281. if m != nil {
  282. return m.Name
  283. }
  284. return ""
  285. }
  286. func (m *BodyParameter) GetIn() string {
  287. if m != nil {
  288. return m.In
  289. }
  290. return ""
  291. }
  292. func (m *BodyParameter) GetRequired() bool {
  293. if m != nil {
  294. return m.Required
  295. }
  296. return false
  297. }
  298. func (m *BodyParameter) GetSchema() *Schema {
  299. if m != nil {
  300. return m.Schema
  301. }
  302. return nil
  303. }
  304. func (m *BodyParameter) GetVendorExtension() []*NamedAny {
  305. if m != nil {
  306. return m.VendorExtension
  307. }
  308. return nil
  309. }
  310. // Contact information for the owners of the API.
  311. type Contact struct {
  312. // The identifying name of the contact person/organization.
  313. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  314. // The URL pointing to the contact information.
  315. Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
  316. // The email address of the contact person/organization.
  317. Email string `protobuf:"bytes,3,opt,name=email,proto3" json:"email,omitempty"`
  318. VendorExtension []*NamedAny `protobuf:"bytes,4,rep,name=vendor_extension,json=vendorExtension,proto3" json:"vendor_extension,omitempty"`
  319. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  320. XXX_unrecognized []byte `json:"-"`
  321. XXX_sizecache int32 `json:"-"`
  322. }
  323. func (m *Contact) Reset() { *m = Contact{} }
  324. func (m *Contact) String() string { return proto.CompactTextString(m) }
  325. func (*Contact) ProtoMessage() {}
  326. func (*Contact) Descriptor() ([]byte, []int) {
  327. return fileDescriptor_a43d10d209cd31c2, []int{5}
  328. }
  329. func (m *Contact) XXX_Unmarshal(b []byte) error {
  330. return xxx_messageInfo_Contact.Unmarshal(m, b)
  331. }
  332. func (m *Contact) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  333. return xxx_messageInfo_Contact.Marshal(b, m, deterministic)
  334. }
  335. func (m *Contact) XXX_Merge(src proto.Message) {
  336. xxx_messageInfo_Contact.Merge(m, src)
  337. }
  338. func (m *Contact) XXX_Size() int {
  339. return xxx_messageInfo_Contact.Size(m)
  340. }
  341. func (m *Contact) XXX_DiscardUnknown() {
  342. xxx_messageInfo_Contact.DiscardUnknown(m)
  343. }
  344. var xxx_messageInfo_Contact proto.InternalMessageInfo
  345. func (m *Contact) GetName() string {
  346. if m != nil {
  347. return m.Name
  348. }
  349. return ""
  350. }
  351. func (m *Contact) GetUrl() string {
  352. if m != nil {
  353. return m.Url
  354. }
  355. return ""
  356. }
  357. func (m *Contact) GetEmail() string {
  358. if m != nil {
  359. return m.Email
  360. }
  361. return ""
  362. }
  363. func (m *Contact) GetVendorExtension() []*NamedAny {
  364. if m != nil {
  365. return m.VendorExtension
  366. }
  367. return nil
  368. }
  369. type Default struct {
  370. AdditionalProperties []*NamedAny `protobuf:"bytes,1,rep,name=additional_properties,json=additionalProperties,proto3" json:"additional_properties,omitempty"`
  371. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  372. XXX_unrecognized []byte `json:"-"`
  373. XXX_sizecache int32 `json:"-"`
  374. }
  375. func (m *Default) Reset() { *m = Default{} }
  376. func (m *Default) String() string { return proto.CompactTextString(m) }
  377. func (*Default) ProtoMessage() {}
  378. func (*Default) Descriptor() ([]byte, []int) {
  379. return fileDescriptor_a43d10d209cd31c2, []int{6}
  380. }
  381. func (m *Default) XXX_Unmarshal(b []byte) error {
  382. return xxx_messageInfo_Default.Unmarshal(m, b)
  383. }
  384. func (m *Default) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  385. return xxx_messageInfo_Default.Marshal(b, m, deterministic)
  386. }
  387. func (m *Default) XXX_Merge(src proto.Message) {
  388. xxx_messageInfo_Default.Merge(m, src)
  389. }
  390. func (m *Default) XXX_Size() int {
  391. return xxx_messageInfo_Default.Size(m)
  392. }
  393. func (m *Default) XXX_DiscardUnknown() {
  394. xxx_messageInfo_Default.DiscardUnknown(m)
  395. }
  396. var xxx_messageInfo_Default proto.InternalMessageInfo
  397. func (m *Default) GetAdditionalProperties() []*NamedAny {
  398. if m != nil {
  399. return m.AdditionalProperties
  400. }
  401. return nil
  402. }
  403. // One or more JSON objects describing the schemas being consumed and produced by the API.
  404. type Definitions struct {
  405. AdditionalProperties []*NamedSchema `protobuf:"bytes,1,rep,name=additional_properties,json=additionalProperties,proto3" json:"additional_properties,omitempty"`
  406. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  407. XXX_unrecognized []byte `json:"-"`
  408. XXX_sizecache int32 `json:"-"`
  409. }
  410. func (m *Definitions) Reset() { *m = Definitions{} }
  411. func (m *Definitions) String() string { return proto.CompactTextString(m) }
  412. func (*Definitions) ProtoMessage() {}
  413. func (*Definitions) Descriptor() ([]byte, []int) {
  414. return fileDescriptor_a43d10d209cd31c2, []int{7}
  415. }
  416. func (m *Definitions) XXX_Unmarshal(b []byte) error {
  417. return xxx_messageInfo_Definitions.Unmarshal(m, b)
  418. }
  419. func (m *Definitions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  420. return xxx_messageInfo_Definitions.Marshal(b, m, deterministic)
  421. }
  422. func (m *Definitions) XXX_Merge(src proto.Message) {
  423. xxx_messageInfo_Definitions.Merge(m, src)
  424. }
  425. func (m *Definitions) XXX_Size() int {
  426. return xxx_messageInfo_Definitions.Size(m)
  427. }
  428. func (m *Definitions) XXX_DiscardUnknown() {
  429. xxx_messageInfo_Definitions.DiscardUnknown(m)
  430. }
  431. var xxx_messageInfo_Definitions proto.InternalMessageInfo
  432. func (m *Definitions) GetAdditionalProperties() []*NamedSchema {
  433. if m != nil {
  434. return m.AdditionalProperties
  435. }
  436. return nil
  437. }
  438. type Document struct {
  439. // The Swagger version of this document.
  440. Swagger string `protobuf:"bytes,1,opt,name=swagger,proto3" json:"swagger,omitempty"`
  441. Info *Info `protobuf:"bytes,2,opt,name=info,proto3" json:"info,omitempty"`
  442. // The host (name or ip) of the API. Example: 'swagger.io'
  443. Host string `protobuf:"bytes,3,opt,name=host,proto3" json:"host,omitempty"`
  444. // The base path to the API. Example: '/api'.
  445. BasePath string `protobuf:"bytes,4,opt,name=base_path,json=basePath,proto3" json:"base_path,omitempty"`
  446. // The transfer protocol of the API.
  447. Schemes []string `protobuf:"bytes,5,rep,name=schemes,proto3" json:"schemes,omitempty"`
  448. // A list of MIME types accepted by the API.
  449. Consumes []string `protobuf:"bytes,6,rep,name=consumes,proto3" json:"consumes,omitempty"`
  450. // A list of MIME types the API can produce.
  451. Produces []string `protobuf:"bytes,7,rep,name=produces,proto3" json:"produces,omitempty"`
  452. Paths *Paths `protobuf:"bytes,8,opt,name=paths,proto3" json:"paths,omitempty"`
  453. Definitions *Definitions `protobuf:"bytes,9,opt,name=definitions,proto3" json:"definitions,omitempty"`
  454. Parameters *ParameterDefinitions `protobuf:"bytes,10,opt,name=parameters,proto3" json:"parameters,omitempty"`
  455. Responses *ResponseDefinitions `protobuf:"bytes,11,opt,name=responses,proto3" json:"responses,omitempty"`
  456. Security []*SecurityRequirement `protobuf:"bytes,12,rep,name=security,proto3" json:"security,omitempty"`
  457. SecurityDefinitions *SecurityDefinitions `protobuf:"bytes,13,opt,name=security_definitions,json=securityDefinitions,proto3" json:"security_definitions,omitempty"`
  458. Tags []*Tag `protobuf:"bytes,14,rep,name=tags,proto3" json:"tags,omitempty"`
  459. ExternalDocs *ExternalDocs `protobuf:"bytes,15,opt,name=external_docs,json=externalDocs,proto3" json:"external_docs,omitempty"`
  460. VendorExtension []*NamedAny `protobuf:"bytes,16,rep,name=vendor_extension,json=vendorExtension,proto3" json:"vendor_extension,omitempty"`
  461. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  462. XXX_unrecognized []byte `json:"-"`
  463. XXX_sizecache int32 `json:"-"`
  464. }
  465. func (m *Document) Reset() { *m = Document{} }
  466. func (m *Document) String() string { return proto.CompactTextString(m) }
  467. func (*Document) ProtoMessage() {}
  468. func (*Document) Descriptor() ([]byte, []int) {
  469. return fileDescriptor_a43d10d209cd31c2, []int{8}
  470. }
  471. func (m *Document) XXX_Unmarshal(b []byte) error {
  472. return xxx_messageInfo_Document.Unmarshal(m, b)
  473. }
  474. func (m *Document) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  475. return xxx_messageInfo_Document.Marshal(b, m, deterministic)
  476. }
  477. func (m *Document) XXX_Merge(src proto.Message) {
  478. xxx_messageInfo_Document.Merge(m, src)
  479. }
  480. func (m *Document) XXX_Size() int {
  481. return xxx_messageInfo_Document.Size(m)
  482. }
  483. func (m *Document) XXX_DiscardUnknown() {
  484. xxx_messageInfo_Document.DiscardUnknown(m)
  485. }
  486. var xxx_messageInfo_Document proto.InternalMessageInfo
  487. func (m *Document) GetSwagger() string {
  488. if m != nil {
  489. return m.Swagger
  490. }
  491. return ""
  492. }
  493. func (m *Document) GetInfo() *Info {
  494. if m != nil {
  495. return m.Info
  496. }
  497. return nil
  498. }
  499. func (m *Document) GetHost() string {
  500. if m != nil {
  501. return m.Host
  502. }
  503. return ""
  504. }
  505. func (m *Document) GetBasePath() string {
  506. if m != nil {
  507. return m.BasePath
  508. }
  509. return ""
  510. }
  511. func (m *Document) GetSchemes() []string {
  512. if m != nil {
  513. return m.Schemes
  514. }
  515. return nil
  516. }
  517. func (m *Document) GetConsumes() []string {
  518. if m != nil {
  519. return m.Consumes
  520. }
  521. return nil
  522. }
  523. func (m *Document) GetProduces() []string {
  524. if m != nil {
  525. return m.Produces
  526. }
  527. return nil
  528. }
  529. func (m *Document) GetPaths() *Paths {
  530. if m != nil {
  531. return m.Paths
  532. }
  533. return nil
  534. }
  535. func (m *Document) GetDefinitions() *Definitions {
  536. if m != nil {
  537. return m.Definitions
  538. }
  539. return nil
  540. }
  541. func (m *Document) GetParameters() *ParameterDefinitions {
  542. if m != nil {
  543. return m.Parameters
  544. }
  545. return nil
  546. }
  547. func (m *Document) GetResponses() *ResponseDefinitions {
  548. if m != nil {
  549. return m.Responses
  550. }
  551. return nil
  552. }
  553. func (m *Document) GetSecurity() []*SecurityRequirement {
  554. if m != nil {
  555. return m.Security
  556. }
  557. return nil
  558. }
  559. func (m *Document) GetSecurityDefinitions() *SecurityDefinitions {
  560. if m != nil {
  561. return m.SecurityDefinitions
  562. }
  563. return nil
  564. }
  565. func (m *Document) GetTags() []*Tag {
  566. if m != nil {
  567. return m.Tags
  568. }
  569. return nil
  570. }
  571. func (m *Document) GetExternalDocs() *ExternalDocs {
  572. if m != nil {
  573. return m.ExternalDocs
  574. }
  575. return nil
  576. }
  577. func (m *Document) GetVendorExtension() []*NamedAny {
  578. if m != nil {
  579. return m.VendorExtension
  580. }
  581. return nil
  582. }
  583. type Examples struct {
  584. AdditionalProperties []*NamedAny `protobuf:"bytes,1,rep,name=additional_properties,json=additionalProperties,proto3" json:"additional_properties,omitempty"`
  585. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  586. XXX_unrecognized []byte `json:"-"`
  587. XXX_sizecache int32 `json:"-"`
  588. }
  589. func (m *Examples) Reset() { *m = Examples{} }
  590. func (m *Examples) String() string { return proto.CompactTextString(m) }
  591. func (*Examples) ProtoMessage() {}
  592. func (*Examples) Descriptor() ([]byte, []int) {
  593. return fileDescriptor_a43d10d209cd31c2, []int{9}
  594. }
  595. func (m *Examples) XXX_Unmarshal(b []byte) error {
  596. return xxx_messageInfo_Examples.Unmarshal(m, b)
  597. }
  598. func (m *Examples) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  599. return xxx_messageInfo_Examples.Marshal(b, m, deterministic)
  600. }
  601. func (m *Examples) XXX_Merge(src proto.Message) {
  602. xxx_messageInfo_Examples.Merge(m, src)
  603. }
  604. func (m *Examples) XXX_Size() int {
  605. return xxx_messageInfo_Examples.Size(m)
  606. }
  607. func (m *Examples) XXX_DiscardUnknown() {
  608. xxx_messageInfo_Examples.DiscardUnknown(m)
  609. }
  610. var xxx_messageInfo_Examples proto.InternalMessageInfo
  611. func (m *Examples) GetAdditionalProperties() []*NamedAny {
  612. if m != nil {
  613. return m.AdditionalProperties
  614. }
  615. return nil
  616. }
  617. // information about external documentation
  618. type ExternalDocs struct {
  619. Description string `protobuf:"bytes,1,opt,name=description,proto3" json:"description,omitempty"`
  620. Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
  621. VendorExtension []*NamedAny `protobuf:"bytes,3,rep,name=vendor_extension,json=vendorExtension,proto3" json:"vendor_extension,omitempty"`
  622. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  623. XXX_unrecognized []byte `json:"-"`
  624. XXX_sizecache int32 `json:"-"`
  625. }
  626. func (m *ExternalDocs) Reset() { *m = ExternalDocs{} }
  627. func (m *ExternalDocs) String() string { return proto.CompactTextString(m) }
  628. func (*ExternalDocs) ProtoMessage() {}
  629. func (*ExternalDocs) Descriptor() ([]byte, []int) {
  630. return fileDescriptor_a43d10d209cd31c2, []int{10}
  631. }
  632. func (m *ExternalDocs) XXX_Unmarshal(b []byte) error {
  633. return xxx_messageInfo_ExternalDocs.Unmarshal(m, b)
  634. }
  635. func (m *ExternalDocs) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  636. return xxx_messageInfo_ExternalDocs.Marshal(b, m, deterministic)
  637. }
  638. func (m *ExternalDocs) XXX_Merge(src proto.Message) {
  639. xxx_messageInfo_ExternalDocs.Merge(m, src)
  640. }
  641. func (m *ExternalDocs) XXX_Size() int {
  642. return xxx_messageInfo_ExternalDocs.Size(m)
  643. }
  644. func (m *ExternalDocs) XXX_DiscardUnknown() {
  645. xxx_messageInfo_ExternalDocs.DiscardUnknown(m)
  646. }
  647. var xxx_messageInfo_ExternalDocs proto.InternalMessageInfo
  648. func (m *ExternalDocs) GetDescription() string {
  649. if m != nil {
  650. return m.Description
  651. }
  652. return ""
  653. }
  654. func (m *ExternalDocs) GetUrl() string {
  655. if m != nil {
  656. return m.Url
  657. }
  658. return ""
  659. }
  660. func (m *ExternalDocs) GetVendorExtension() []*NamedAny {
  661. if m != nil {
  662. return m.VendorExtension
  663. }
  664. return nil
  665. }
  666. // A deterministic version of a JSON Schema object.
  667. type FileSchema struct {
  668. Format string `protobuf:"bytes,1,opt,name=format,proto3" json:"format,omitempty"`
  669. Title string `protobuf:"bytes,2,opt,name=title,proto3" json:"title,omitempty"`
  670. Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
  671. Default *Any `protobuf:"bytes,4,opt,name=default,proto3" json:"default,omitempty"`
  672. Required []string `protobuf:"bytes,5,rep,name=required,proto3" json:"required,omitempty"`
  673. Type string `protobuf:"bytes,6,opt,name=type,proto3" json:"type,omitempty"`
  674. ReadOnly bool `protobuf:"varint,7,opt,name=read_only,json=readOnly,proto3" json:"read_only,omitempty"`
  675. ExternalDocs *ExternalDocs `protobuf:"bytes,8,opt,name=external_docs,json=externalDocs,proto3" json:"external_docs,omitempty"`
  676. Example *Any `protobuf:"bytes,9,opt,name=example,proto3" json:"example,omitempty"`
  677. VendorExtension []*NamedAny `protobuf:"bytes,10,rep,name=vendor_extension,json=vendorExtension,proto3" json:"vendor_extension,omitempty"`
  678. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  679. XXX_unrecognized []byte `json:"-"`
  680. XXX_sizecache int32 `json:"-"`
  681. }
  682. func (m *FileSchema) Reset() { *m = FileSchema{} }
  683. func (m *FileSchema) String() string { return proto.CompactTextString(m) }
  684. func (*FileSchema) ProtoMessage() {}
  685. func (*FileSchema) Descriptor() ([]byte, []int) {
  686. return fileDescriptor_a43d10d209cd31c2, []int{11}
  687. }
  688. func (m *FileSchema) XXX_Unmarshal(b []byte) error {
  689. return xxx_messageInfo_FileSchema.Unmarshal(m, b)
  690. }
  691. func (m *FileSchema) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  692. return xxx_messageInfo_FileSchema.Marshal(b, m, deterministic)
  693. }
  694. func (m *FileSchema) XXX_Merge(src proto.Message) {
  695. xxx_messageInfo_FileSchema.Merge(m, src)
  696. }
  697. func (m *FileSchema) XXX_Size() int {
  698. return xxx_messageInfo_FileSchema.Size(m)
  699. }
  700. func (m *FileSchema) XXX_DiscardUnknown() {
  701. xxx_messageInfo_FileSchema.DiscardUnknown(m)
  702. }
  703. var xxx_messageInfo_FileSchema proto.InternalMessageInfo
  704. func (m *FileSchema) GetFormat() string {
  705. if m != nil {
  706. return m.Format
  707. }
  708. return ""
  709. }
  710. func (m *FileSchema) GetTitle() string {
  711. if m != nil {
  712. return m.Title
  713. }
  714. return ""
  715. }
  716. func (m *FileSchema) GetDescription() string {
  717. if m != nil {
  718. return m.Description
  719. }
  720. return ""
  721. }
  722. func (m *FileSchema) GetDefault() *Any {
  723. if m != nil {
  724. return m.Default
  725. }
  726. return nil
  727. }
  728. func (m *FileSchema) GetRequired() []string {
  729. if m != nil {
  730. return m.Required
  731. }
  732. return nil
  733. }
  734. func (m *FileSchema) GetType() string {
  735. if m != nil {
  736. return m.Type
  737. }
  738. return ""
  739. }
  740. func (m *FileSchema) GetReadOnly() bool {
  741. if m != nil {
  742. return m.ReadOnly
  743. }
  744. return false
  745. }
  746. func (m *FileSchema) GetExternalDocs() *ExternalDocs {
  747. if m != nil {
  748. return m.ExternalDocs
  749. }
  750. return nil
  751. }
  752. func (m *FileSchema) GetExample() *Any {
  753. if m != nil {
  754. return m.Example
  755. }
  756. return nil
  757. }
  758. func (m *FileSchema) GetVendorExtension() []*NamedAny {
  759. if m != nil {
  760. return m.VendorExtension
  761. }
  762. return nil
  763. }
  764. type FormDataParameterSubSchema struct {
  765. // Determines whether or not this parameter is required or optional.
  766. Required bool `protobuf:"varint,1,opt,name=required,proto3" json:"required,omitempty"`
  767. // Determines the location of the parameter.
  768. In string `protobuf:"bytes,2,opt,name=in,proto3" json:"in,omitempty"`
  769. // A brief description of the parameter. This could contain examples of use. GitHub Flavored Markdown is allowed.
  770. Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
  771. // The name of the parameter.
  772. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
  773. // allows sending a parameter by name only or with an empty value.
  774. AllowEmptyValue bool `protobuf:"varint,5,opt,name=allow_empty_value,json=allowEmptyValue,proto3" json:"allow_empty_value,omitempty"`
  775. Type string `protobuf:"bytes,6,opt,name=type,proto3" json:"type,omitempty"`
  776. Format string `protobuf:"bytes,7,opt,name=format,proto3" json:"format,omitempty"`
  777. Items *PrimitivesItems `protobuf:"bytes,8,opt,name=items,proto3" json:"items,omitempty"`
  778. CollectionFormat string `protobuf:"bytes,9,opt,name=collection_format,json=collectionFormat,proto3" json:"collection_format,omitempty"`
  779. Default *Any `protobuf:"bytes,10,opt,name=default,proto3" json:"default,omitempty"`
  780. Maximum float64 `protobuf:"fixed64,11,opt,name=maximum,proto3" json:"maximum,omitempty"`
  781. ExclusiveMaximum bool `protobuf:"varint,12,opt,name=exclusive_maximum,json=exclusiveMaximum,proto3" json:"exclusive_maximum,omitempty"`
  782. Minimum float64 `protobuf:"fixed64,13,opt,name=minimum,proto3" json:"minimum,omitempty"`
  783. ExclusiveMinimum bool `protobuf:"varint,14,opt,name=exclusive_minimum,json=exclusiveMinimum,proto3" json:"exclusive_minimum,omitempty"`
  784. MaxLength int64 `protobuf:"varint,15,opt,name=max_length,json=maxLength,proto3" json:"max_length,omitempty"`
  785. MinLength int64 `protobuf:"varint,16,opt,name=min_length,json=minLength,proto3" json:"min_length,omitempty"`
  786. Pattern string `protobuf:"bytes,17,opt,name=pattern,proto3" json:"pattern,omitempty"`
  787. MaxItems int64 `protobuf:"varint,18,opt,name=max_items,json=maxItems,proto3" json:"max_items,omitempty"`
  788. MinItems int64 `protobuf:"varint,19,opt,name=min_items,json=minItems,proto3" json:"min_items,omitempty"`
  789. UniqueItems bool `protobuf:"varint,20,opt,name=unique_items,json=uniqueItems,proto3" json:"unique_items,omitempty"`
  790. Enum []*Any `protobuf:"bytes,21,rep,name=enum,proto3" json:"enum,omitempty"`
  791. MultipleOf float64 `protobuf:"fixed64,22,opt,name=multiple_of,json=multipleOf,proto3" json:"multiple_of,omitempty"`
  792. VendorExtension []*NamedAny `protobuf:"bytes,23,rep,name=vendor_extension,json=vendorExtension,proto3" json:"vendor_extension,omitempty"`
  793. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  794. XXX_unrecognized []byte `json:"-"`
  795. XXX_sizecache int32 `json:"-"`
  796. }
  797. func (m *FormDataParameterSubSchema) Reset() { *m = FormDataParameterSubSchema{} }
  798. func (m *FormDataParameterSubSchema) String() string { return proto.CompactTextString(m) }
  799. func (*FormDataParameterSubSchema) ProtoMessage() {}
  800. func (*FormDataParameterSubSchema) Descriptor() ([]byte, []int) {
  801. return fileDescriptor_a43d10d209cd31c2, []int{12}
  802. }
  803. func (m *FormDataParameterSubSchema) XXX_Unmarshal(b []byte) error {
  804. return xxx_messageInfo_FormDataParameterSubSchema.Unmarshal(m, b)
  805. }
  806. func (m *FormDataParameterSubSchema) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  807. return xxx_messageInfo_FormDataParameterSubSchema.Marshal(b, m, deterministic)
  808. }
  809. func (m *FormDataParameterSubSchema) XXX_Merge(src proto.Message) {
  810. xxx_messageInfo_FormDataParameterSubSchema.Merge(m, src)
  811. }
  812. func (m *FormDataParameterSubSchema) XXX_Size() int {
  813. return xxx_messageInfo_FormDataParameterSubSchema.Size(m)
  814. }
  815. func (m *FormDataParameterSubSchema) XXX_DiscardUnknown() {
  816. xxx_messageInfo_FormDataParameterSubSchema.DiscardUnknown(m)
  817. }
  818. var xxx_messageInfo_FormDataParameterSubSchema proto.InternalMessageInfo
  819. func (m *FormDataParameterSubSchema) GetRequired() bool {
  820. if m != nil {
  821. return m.Required
  822. }
  823. return false
  824. }
  825. func (m *FormDataParameterSubSchema) GetIn() string {
  826. if m != nil {
  827. return m.In
  828. }
  829. return ""
  830. }
  831. func (m *FormDataParameterSubSchema) GetDescription() string {
  832. if m != nil {
  833. return m.Description
  834. }
  835. return ""
  836. }
  837. func (m *FormDataParameterSubSchema) GetName() string {
  838. if m != nil {
  839. return m.Name
  840. }
  841. return ""
  842. }
  843. func (m *FormDataParameterSubSchema) GetAllowEmptyValue() bool {
  844. if m != nil {
  845. return m.AllowEmptyValue
  846. }
  847. return false
  848. }
  849. func (m *FormDataParameterSubSchema) GetType() string {
  850. if m != nil {
  851. return m.Type
  852. }
  853. return ""
  854. }
  855. func (m *FormDataParameterSubSchema) GetFormat() string {
  856. if m != nil {
  857. return m.Format
  858. }
  859. return ""
  860. }
  861. func (m *FormDataParameterSubSchema) GetItems() *PrimitivesItems {
  862. if m != nil {
  863. return m.Items
  864. }
  865. return nil
  866. }
  867. func (m *FormDataParameterSubSchema) GetCollectionFormat() string {
  868. if m != nil {
  869. return m.CollectionFormat
  870. }
  871. return ""
  872. }
  873. func (m *FormDataParameterSubSchema) GetDefault() *Any {
  874. if m != nil {
  875. return m.Default
  876. }
  877. return nil
  878. }
  879. func (m *FormDataParameterSubSchema) GetMaximum() float64 {
  880. if m != nil {
  881. return m.Maximum
  882. }
  883. return 0
  884. }
  885. func (m *FormDataParameterSubSchema) GetExclusiveMaximum() bool {
  886. if m != nil {
  887. return m.ExclusiveMaximum
  888. }
  889. return false
  890. }
  891. func (m *FormDataParameterSubSchema) GetMinimum() float64 {
  892. if m != nil {
  893. return m.Minimum
  894. }
  895. return 0
  896. }
  897. func (m *FormDataParameterSubSchema) GetExclusiveMinimum() bool {
  898. if m != nil {
  899. return m.ExclusiveMinimum
  900. }
  901. return false
  902. }
  903. func (m *FormDataParameterSubSchema) GetMaxLength() int64 {
  904. if m != nil {
  905. return m.MaxLength
  906. }
  907. return 0
  908. }
  909. func (m *FormDataParameterSubSchema) GetMinLength() int64 {
  910. if m != nil {
  911. return m.MinLength
  912. }
  913. return 0
  914. }
  915. func (m *FormDataParameterSubSchema) GetPattern() string {
  916. if m != nil {
  917. return m.Pattern
  918. }
  919. return ""
  920. }
  921. func (m *FormDataParameterSubSchema) GetMaxItems() int64 {
  922. if m != nil {
  923. return m.MaxItems
  924. }
  925. return 0
  926. }
  927. func (m *FormDataParameterSubSchema) GetMinItems() int64 {
  928. if m != nil {
  929. return m.MinItems
  930. }
  931. return 0
  932. }
  933. func (m *FormDataParameterSubSchema) GetUniqueItems() bool {
  934. if m != nil {
  935. return m.UniqueItems
  936. }
  937. return false
  938. }
  939. func (m *FormDataParameterSubSchema) GetEnum() []*Any {
  940. if m != nil {
  941. return m.Enum
  942. }
  943. return nil
  944. }
  945. func (m *FormDataParameterSubSchema) GetMultipleOf() float64 {
  946. if m != nil {
  947. return m.MultipleOf
  948. }
  949. return 0
  950. }
  951. func (m *FormDataParameterSubSchema) GetVendorExtension() []*NamedAny {
  952. if m != nil {
  953. return m.VendorExtension
  954. }
  955. return nil
  956. }
  957. type Header struct {
  958. Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
  959. Format string `protobuf:"bytes,2,opt,name=format,proto3" json:"format,omitempty"`
  960. Items *PrimitivesItems `protobuf:"bytes,3,opt,name=items,proto3" json:"items,omitempty"`
  961. CollectionFormat string `protobuf:"bytes,4,opt,name=collection_format,json=collectionFormat,proto3" json:"collection_format,omitempty"`
  962. Default *Any `protobuf:"bytes,5,opt,name=default,proto3" json:"default,omitempty"`
  963. Maximum float64 `protobuf:"fixed64,6,opt,name=maximum,proto3" json:"maximum,omitempty"`
  964. ExclusiveMaximum bool `protobuf:"varint,7,opt,name=exclusive_maximum,json=exclusiveMaximum,proto3" json:"exclusive_maximum,omitempty"`
  965. Minimum float64 `protobuf:"fixed64,8,opt,name=minimum,proto3" json:"minimum,omitempty"`
  966. ExclusiveMinimum bool `protobuf:"varint,9,opt,name=exclusive_minimum,json=exclusiveMinimum,proto3" json:"exclusive_minimum,omitempty"`
  967. MaxLength int64 `protobuf:"varint,10,opt,name=max_length,json=maxLength,proto3" json:"max_length,omitempty"`
  968. MinLength int64 `protobuf:"varint,11,opt,name=min_length,json=minLength,proto3" json:"min_length,omitempty"`
  969. Pattern string `protobuf:"bytes,12,opt,name=pattern,proto3" json:"pattern,omitempty"`
  970. MaxItems int64 `protobuf:"varint,13,opt,name=max_items,json=maxItems,proto3" json:"max_items,omitempty"`
  971. MinItems int64 `protobuf:"varint,14,opt,name=min_items,json=minItems,proto3" json:"min_items,omitempty"`
  972. UniqueItems bool `protobuf:"varint,15,opt,name=unique_items,json=uniqueItems,proto3" json:"unique_items,omitempty"`
  973. Enum []*Any `protobuf:"bytes,16,rep,name=enum,proto3" json:"enum,omitempty"`
  974. MultipleOf float64 `protobuf:"fixed64,17,opt,name=multiple_of,json=multipleOf,proto3" json:"multiple_of,omitempty"`
  975. Description string `protobuf:"bytes,18,opt,name=description,proto3" json:"description,omitempty"`
  976. VendorExtension []*NamedAny `protobuf:"bytes,19,rep,name=vendor_extension,json=vendorExtension,proto3" json:"vendor_extension,omitempty"`
  977. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  978. XXX_unrecognized []byte `json:"-"`
  979. XXX_sizecache int32 `json:"-"`
  980. }
  981. func (m *Header) Reset() { *m = Header{} }
  982. func (m *Header) String() string { return proto.CompactTextString(m) }
  983. func (*Header) ProtoMessage() {}
  984. func (*Header) Descriptor() ([]byte, []int) {
  985. return fileDescriptor_a43d10d209cd31c2, []int{13}
  986. }
  987. func (m *Header) XXX_Unmarshal(b []byte) error {
  988. return xxx_messageInfo_Header.Unmarshal(m, b)
  989. }
  990. func (m *Header) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  991. return xxx_messageInfo_Header.Marshal(b, m, deterministic)
  992. }
  993. func (m *Header) XXX_Merge(src proto.Message) {
  994. xxx_messageInfo_Header.Merge(m, src)
  995. }
  996. func (m *Header) XXX_Size() int {
  997. return xxx_messageInfo_Header.Size(m)
  998. }
  999. func (m *Header) XXX_DiscardUnknown() {
  1000. xxx_messageInfo_Header.DiscardUnknown(m)
  1001. }
  1002. var xxx_messageInfo_Header proto.InternalMessageInfo
  1003. func (m *Header) GetType() string {
  1004. if m != nil {
  1005. return m.Type
  1006. }
  1007. return ""
  1008. }
  1009. func (m *Header) GetFormat() string {
  1010. if m != nil {
  1011. return m.Format
  1012. }
  1013. return ""
  1014. }
  1015. func (m *Header) GetItems() *PrimitivesItems {
  1016. if m != nil {
  1017. return m.Items
  1018. }
  1019. return nil
  1020. }
  1021. func (m *Header) GetCollectionFormat() string {
  1022. if m != nil {
  1023. return m.CollectionFormat
  1024. }
  1025. return ""
  1026. }
  1027. func (m *Header) GetDefault() *Any {
  1028. if m != nil {
  1029. return m.Default
  1030. }
  1031. return nil
  1032. }
  1033. func (m *Header) GetMaximum() float64 {
  1034. if m != nil {
  1035. return m.Maximum
  1036. }
  1037. return 0
  1038. }
  1039. func (m *Header) GetExclusiveMaximum() bool {
  1040. if m != nil {
  1041. return m.ExclusiveMaximum
  1042. }
  1043. return false
  1044. }
  1045. func (m *Header) GetMinimum() float64 {
  1046. if m != nil {
  1047. return m.Minimum
  1048. }
  1049. return 0
  1050. }
  1051. func (m *Header) GetExclusiveMinimum() bool {
  1052. if m != nil {
  1053. return m.ExclusiveMinimum
  1054. }
  1055. return false
  1056. }
  1057. func (m *Header) GetMaxLength() int64 {
  1058. if m != nil {
  1059. return m.MaxLength
  1060. }
  1061. return 0
  1062. }
  1063. func (m *Header) GetMinLength() int64 {
  1064. if m != nil {
  1065. return m.MinLength
  1066. }
  1067. return 0
  1068. }
  1069. func (m *Header) GetPattern() string {
  1070. if m != nil {
  1071. return m.Pattern
  1072. }
  1073. return ""
  1074. }
  1075. func (m *Header) GetMaxItems() int64 {
  1076. if m != nil {
  1077. return m.MaxItems
  1078. }
  1079. return 0
  1080. }
  1081. func (m *Header) GetMinItems() int64 {
  1082. if m != nil {
  1083. return m.MinItems
  1084. }
  1085. return 0
  1086. }
  1087. func (m *Header) GetUniqueItems() bool {
  1088. if m != nil {
  1089. return m.UniqueItems
  1090. }
  1091. return false
  1092. }
  1093. func (m *Header) GetEnum() []*Any {
  1094. if m != nil {
  1095. return m.Enum
  1096. }
  1097. return nil
  1098. }
  1099. func (m *Header) GetMultipleOf() float64 {
  1100. if m != nil {
  1101. return m.MultipleOf
  1102. }
  1103. return 0
  1104. }
  1105. func (m *Header) GetDescription() string {
  1106. if m != nil {
  1107. return m.Description
  1108. }
  1109. return ""
  1110. }
  1111. func (m *Header) GetVendorExtension() []*NamedAny {
  1112. if m != nil {
  1113. return m.VendorExtension
  1114. }
  1115. return nil
  1116. }
  1117. type HeaderParameterSubSchema struct {
  1118. // Determines whether or not this parameter is required or optional.
  1119. Required bool `protobuf:"varint,1,opt,name=required,proto3" json:"required,omitempty"`
  1120. // Determines the location of the parameter.
  1121. In string `protobuf:"bytes,2,opt,name=in,proto3" json:"in,omitempty"`
  1122. // A brief description of the parameter. This could contain examples of use. GitHub Flavored Markdown is allowed.
  1123. Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
  1124. // The name of the parameter.
  1125. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
  1126. Type string `protobuf:"bytes,5,opt,name=type,proto3" json:"type,omitempty"`
  1127. Format string `protobuf:"bytes,6,opt,name=format,proto3" json:"format,omitempty"`
  1128. Items *PrimitivesItems `protobuf:"bytes,7,opt,name=items,proto3" json:"items,omitempty"`
  1129. CollectionFormat string `protobuf:"bytes,8,opt,name=collection_format,json=collectionFormat,proto3" json:"collection_format,omitempty"`
  1130. Default *Any `protobuf:"bytes,9,opt,name=default,proto3" json:"default,omitempty"`
  1131. Maximum float64 `protobuf:"fixed64,10,opt,name=maximum,proto3" json:"maximum,omitempty"`
  1132. ExclusiveMaximum bool `protobuf:"varint,11,opt,name=exclusive_maximum,json=exclusiveMaximum,proto3" json:"exclusive_maximum,omitempty"`
  1133. Minimum float64 `protobuf:"fixed64,12,opt,name=minimum,proto3" json:"minimum,omitempty"`
  1134. ExclusiveMinimum bool `protobuf:"varint,13,opt,name=exclusive_minimum,json=exclusiveMinimum,proto3" json:"exclusive_minimum,omitempty"`
  1135. MaxLength int64 `protobuf:"varint,14,opt,name=max_length,json=maxLength,proto3" json:"max_length,omitempty"`
  1136. MinLength int64 `protobuf:"varint,15,opt,name=min_length,json=minLength,proto3" json:"min_length,omitempty"`
  1137. Pattern string `protobuf:"bytes,16,opt,name=pattern,proto3" json:"pattern,omitempty"`
  1138. MaxItems int64 `protobuf:"varint,17,opt,name=max_items,json=maxItems,proto3" json:"max_items,omitempty"`
  1139. MinItems int64 `protobuf:"varint,18,opt,name=min_items,json=minItems,proto3" json:"min_items,omitempty"`
  1140. UniqueItems bool `protobuf:"varint,19,opt,name=unique_items,json=uniqueItems,proto3" json:"unique_items,omitempty"`
  1141. Enum []*Any `protobuf:"bytes,20,rep,name=enum,proto3" json:"enum,omitempty"`
  1142. MultipleOf float64 `protobuf:"fixed64,21,opt,name=multiple_of,json=multipleOf,proto3" json:"multiple_of,omitempty"`
  1143. VendorExtension []*NamedAny `protobuf:"bytes,22,rep,name=vendor_extension,json=vendorExtension,proto3" json:"vendor_extension,omitempty"`
  1144. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1145. XXX_unrecognized []byte `json:"-"`
  1146. XXX_sizecache int32 `json:"-"`
  1147. }
  1148. func (m *HeaderParameterSubSchema) Reset() { *m = HeaderParameterSubSchema{} }
  1149. func (m *HeaderParameterSubSchema) String() string { return proto.CompactTextString(m) }
  1150. func (*HeaderParameterSubSchema) ProtoMessage() {}
  1151. func (*HeaderParameterSubSchema) Descriptor() ([]byte, []int) {
  1152. return fileDescriptor_a43d10d209cd31c2, []int{14}
  1153. }
  1154. func (m *HeaderParameterSubSchema) XXX_Unmarshal(b []byte) error {
  1155. return xxx_messageInfo_HeaderParameterSubSchema.Unmarshal(m, b)
  1156. }
  1157. func (m *HeaderParameterSubSchema) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1158. return xxx_messageInfo_HeaderParameterSubSchema.Marshal(b, m, deterministic)
  1159. }
  1160. func (m *HeaderParameterSubSchema) XXX_Merge(src proto.Message) {
  1161. xxx_messageInfo_HeaderParameterSubSchema.Merge(m, src)
  1162. }
  1163. func (m *HeaderParameterSubSchema) XXX_Size() int {
  1164. return xxx_messageInfo_HeaderParameterSubSchema.Size(m)
  1165. }
  1166. func (m *HeaderParameterSubSchema) XXX_DiscardUnknown() {
  1167. xxx_messageInfo_HeaderParameterSubSchema.DiscardUnknown(m)
  1168. }
  1169. var xxx_messageInfo_HeaderParameterSubSchema proto.InternalMessageInfo
  1170. func (m *HeaderParameterSubSchema) GetRequired() bool {
  1171. if m != nil {
  1172. return m.Required
  1173. }
  1174. return false
  1175. }
  1176. func (m *HeaderParameterSubSchema) GetIn() string {
  1177. if m != nil {
  1178. return m.In
  1179. }
  1180. return ""
  1181. }
  1182. func (m *HeaderParameterSubSchema) GetDescription() string {
  1183. if m != nil {
  1184. return m.Description
  1185. }
  1186. return ""
  1187. }
  1188. func (m *HeaderParameterSubSchema) GetName() string {
  1189. if m != nil {
  1190. return m.Name
  1191. }
  1192. return ""
  1193. }
  1194. func (m *HeaderParameterSubSchema) GetType() string {
  1195. if m != nil {
  1196. return m.Type
  1197. }
  1198. return ""
  1199. }
  1200. func (m *HeaderParameterSubSchema) GetFormat() string {
  1201. if m != nil {
  1202. return m.Format
  1203. }
  1204. return ""
  1205. }
  1206. func (m *HeaderParameterSubSchema) GetItems() *PrimitivesItems {
  1207. if m != nil {
  1208. return m.Items
  1209. }
  1210. return nil
  1211. }
  1212. func (m *HeaderParameterSubSchema) GetCollectionFormat() string {
  1213. if m != nil {
  1214. return m.CollectionFormat
  1215. }
  1216. return ""
  1217. }
  1218. func (m *HeaderParameterSubSchema) GetDefault() *Any {
  1219. if m != nil {
  1220. return m.Default
  1221. }
  1222. return nil
  1223. }
  1224. func (m *HeaderParameterSubSchema) GetMaximum() float64 {
  1225. if m != nil {
  1226. return m.Maximum
  1227. }
  1228. return 0
  1229. }
  1230. func (m *HeaderParameterSubSchema) GetExclusiveMaximum() bool {
  1231. if m != nil {
  1232. return m.ExclusiveMaximum
  1233. }
  1234. return false
  1235. }
  1236. func (m *HeaderParameterSubSchema) GetMinimum() float64 {
  1237. if m != nil {
  1238. return m.Minimum
  1239. }
  1240. return 0
  1241. }
  1242. func (m *HeaderParameterSubSchema) GetExclusiveMinimum() bool {
  1243. if m != nil {
  1244. return m.ExclusiveMinimum
  1245. }
  1246. return false
  1247. }
  1248. func (m *HeaderParameterSubSchema) GetMaxLength() int64 {
  1249. if m != nil {
  1250. return m.MaxLength
  1251. }
  1252. return 0
  1253. }
  1254. func (m *HeaderParameterSubSchema) GetMinLength() int64 {
  1255. if m != nil {
  1256. return m.MinLength
  1257. }
  1258. return 0
  1259. }
  1260. func (m *HeaderParameterSubSchema) GetPattern() string {
  1261. if m != nil {
  1262. return m.Pattern
  1263. }
  1264. return ""
  1265. }
  1266. func (m *HeaderParameterSubSchema) GetMaxItems() int64 {
  1267. if m != nil {
  1268. return m.MaxItems
  1269. }
  1270. return 0
  1271. }
  1272. func (m *HeaderParameterSubSchema) GetMinItems() int64 {
  1273. if m != nil {
  1274. return m.MinItems
  1275. }
  1276. return 0
  1277. }
  1278. func (m *HeaderParameterSubSchema) GetUniqueItems() bool {
  1279. if m != nil {
  1280. return m.UniqueItems
  1281. }
  1282. return false
  1283. }
  1284. func (m *HeaderParameterSubSchema) GetEnum() []*Any {
  1285. if m != nil {
  1286. return m.Enum
  1287. }
  1288. return nil
  1289. }
  1290. func (m *HeaderParameterSubSchema) GetMultipleOf() float64 {
  1291. if m != nil {
  1292. return m.MultipleOf
  1293. }
  1294. return 0
  1295. }
  1296. func (m *HeaderParameterSubSchema) GetVendorExtension() []*NamedAny {
  1297. if m != nil {
  1298. return m.VendorExtension
  1299. }
  1300. return nil
  1301. }
  1302. type Headers struct {
  1303. AdditionalProperties []*NamedHeader `protobuf:"bytes,1,rep,name=additional_properties,json=additionalProperties,proto3" json:"additional_properties,omitempty"`
  1304. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1305. XXX_unrecognized []byte `json:"-"`
  1306. XXX_sizecache int32 `json:"-"`
  1307. }
  1308. func (m *Headers) Reset() { *m = Headers{} }
  1309. func (m *Headers) String() string { return proto.CompactTextString(m) }
  1310. func (*Headers) ProtoMessage() {}
  1311. func (*Headers) Descriptor() ([]byte, []int) {
  1312. return fileDescriptor_a43d10d209cd31c2, []int{15}
  1313. }
  1314. func (m *Headers) XXX_Unmarshal(b []byte) error {
  1315. return xxx_messageInfo_Headers.Unmarshal(m, b)
  1316. }
  1317. func (m *Headers) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1318. return xxx_messageInfo_Headers.Marshal(b, m, deterministic)
  1319. }
  1320. func (m *Headers) XXX_Merge(src proto.Message) {
  1321. xxx_messageInfo_Headers.Merge(m, src)
  1322. }
  1323. func (m *Headers) XXX_Size() int {
  1324. return xxx_messageInfo_Headers.Size(m)
  1325. }
  1326. func (m *Headers) XXX_DiscardUnknown() {
  1327. xxx_messageInfo_Headers.DiscardUnknown(m)
  1328. }
  1329. var xxx_messageInfo_Headers proto.InternalMessageInfo
  1330. func (m *Headers) GetAdditionalProperties() []*NamedHeader {
  1331. if m != nil {
  1332. return m.AdditionalProperties
  1333. }
  1334. return nil
  1335. }
  1336. // General information about the API.
  1337. type Info struct {
  1338. // A unique and precise title of the API.
  1339. Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
  1340. // A semantic version number of the API.
  1341. Version string `protobuf:"bytes,2,opt,name=version,proto3" json:"version,omitempty"`
  1342. // A longer description of the API. Should be different from the title. GitHub Flavored Markdown is allowed.
  1343. Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
  1344. // The terms of service for the API.
  1345. TermsOfService string `protobuf:"bytes,4,opt,name=terms_of_service,json=termsOfService,proto3" json:"terms_of_service,omitempty"`
  1346. Contact *Contact `protobuf:"bytes,5,opt,name=contact,proto3" json:"contact,omitempty"`
  1347. License *License `protobuf:"bytes,6,opt,name=license,proto3" json:"license,omitempty"`
  1348. VendorExtension []*NamedAny `protobuf:"bytes,7,rep,name=vendor_extension,json=vendorExtension,proto3" json:"vendor_extension,omitempty"`
  1349. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1350. XXX_unrecognized []byte `json:"-"`
  1351. XXX_sizecache int32 `json:"-"`
  1352. }
  1353. func (m *Info) Reset() { *m = Info{} }
  1354. func (m *Info) String() string { return proto.CompactTextString(m) }
  1355. func (*Info) ProtoMessage() {}
  1356. func (*Info) Descriptor() ([]byte, []int) {
  1357. return fileDescriptor_a43d10d209cd31c2, []int{16}
  1358. }
  1359. func (m *Info) XXX_Unmarshal(b []byte) error {
  1360. return xxx_messageInfo_Info.Unmarshal(m, b)
  1361. }
  1362. func (m *Info) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1363. return xxx_messageInfo_Info.Marshal(b, m, deterministic)
  1364. }
  1365. func (m *Info) XXX_Merge(src proto.Message) {
  1366. xxx_messageInfo_Info.Merge(m, src)
  1367. }
  1368. func (m *Info) XXX_Size() int {
  1369. return xxx_messageInfo_Info.Size(m)
  1370. }
  1371. func (m *Info) XXX_DiscardUnknown() {
  1372. xxx_messageInfo_Info.DiscardUnknown(m)
  1373. }
  1374. var xxx_messageInfo_Info proto.InternalMessageInfo
  1375. func (m *Info) GetTitle() string {
  1376. if m != nil {
  1377. return m.Title
  1378. }
  1379. return ""
  1380. }
  1381. func (m *Info) GetVersion() string {
  1382. if m != nil {
  1383. return m.Version
  1384. }
  1385. return ""
  1386. }
  1387. func (m *Info) GetDescription() string {
  1388. if m != nil {
  1389. return m.Description
  1390. }
  1391. return ""
  1392. }
  1393. func (m *Info) GetTermsOfService() string {
  1394. if m != nil {
  1395. return m.TermsOfService
  1396. }
  1397. return ""
  1398. }
  1399. func (m *Info) GetContact() *Contact {
  1400. if m != nil {
  1401. return m.Contact
  1402. }
  1403. return nil
  1404. }
  1405. func (m *Info) GetLicense() *License {
  1406. if m != nil {
  1407. return m.License
  1408. }
  1409. return nil
  1410. }
  1411. func (m *Info) GetVendorExtension() []*NamedAny {
  1412. if m != nil {
  1413. return m.VendorExtension
  1414. }
  1415. return nil
  1416. }
  1417. type ItemsItem struct {
  1418. Schema []*Schema `protobuf:"bytes,1,rep,name=schema,proto3" json:"schema,omitempty"`
  1419. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1420. XXX_unrecognized []byte `json:"-"`
  1421. XXX_sizecache int32 `json:"-"`
  1422. }
  1423. func (m *ItemsItem) Reset() { *m = ItemsItem{} }
  1424. func (m *ItemsItem) String() string { return proto.CompactTextString(m) }
  1425. func (*ItemsItem) ProtoMessage() {}
  1426. func (*ItemsItem) Descriptor() ([]byte, []int) {
  1427. return fileDescriptor_a43d10d209cd31c2, []int{17}
  1428. }
  1429. func (m *ItemsItem) XXX_Unmarshal(b []byte) error {
  1430. return xxx_messageInfo_ItemsItem.Unmarshal(m, b)
  1431. }
  1432. func (m *ItemsItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1433. return xxx_messageInfo_ItemsItem.Marshal(b, m, deterministic)
  1434. }
  1435. func (m *ItemsItem) XXX_Merge(src proto.Message) {
  1436. xxx_messageInfo_ItemsItem.Merge(m, src)
  1437. }
  1438. func (m *ItemsItem) XXX_Size() int {
  1439. return xxx_messageInfo_ItemsItem.Size(m)
  1440. }
  1441. func (m *ItemsItem) XXX_DiscardUnknown() {
  1442. xxx_messageInfo_ItemsItem.DiscardUnknown(m)
  1443. }
  1444. var xxx_messageInfo_ItemsItem proto.InternalMessageInfo
  1445. func (m *ItemsItem) GetSchema() []*Schema {
  1446. if m != nil {
  1447. return m.Schema
  1448. }
  1449. return nil
  1450. }
  1451. type JsonReference struct {
  1452. XRef string `protobuf:"bytes,1,opt,name=_ref,json=Ref,proto3" json:"_ref,omitempty"`
  1453. Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
  1454. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1455. XXX_unrecognized []byte `json:"-"`
  1456. XXX_sizecache int32 `json:"-"`
  1457. }
  1458. func (m *JsonReference) Reset() { *m = JsonReference{} }
  1459. func (m *JsonReference) String() string { return proto.CompactTextString(m) }
  1460. func (*JsonReference) ProtoMessage() {}
  1461. func (*JsonReference) Descriptor() ([]byte, []int) {
  1462. return fileDescriptor_a43d10d209cd31c2, []int{18}
  1463. }
  1464. func (m *JsonReference) XXX_Unmarshal(b []byte) error {
  1465. return xxx_messageInfo_JsonReference.Unmarshal(m, b)
  1466. }
  1467. func (m *JsonReference) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1468. return xxx_messageInfo_JsonReference.Marshal(b, m, deterministic)
  1469. }
  1470. func (m *JsonReference) XXX_Merge(src proto.Message) {
  1471. xxx_messageInfo_JsonReference.Merge(m, src)
  1472. }
  1473. func (m *JsonReference) XXX_Size() int {
  1474. return xxx_messageInfo_JsonReference.Size(m)
  1475. }
  1476. func (m *JsonReference) XXX_DiscardUnknown() {
  1477. xxx_messageInfo_JsonReference.DiscardUnknown(m)
  1478. }
  1479. var xxx_messageInfo_JsonReference proto.InternalMessageInfo
  1480. func (m *JsonReference) GetXRef() string {
  1481. if m != nil {
  1482. return m.XRef
  1483. }
  1484. return ""
  1485. }
  1486. func (m *JsonReference) GetDescription() string {
  1487. if m != nil {
  1488. return m.Description
  1489. }
  1490. return ""
  1491. }
  1492. type License struct {
  1493. // The name of the license type. It's encouraged to use an OSI compatible license.
  1494. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  1495. // The URL pointing to the license.
  1496. Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
  1497. VendorExtension []*NamedAny `protobuf:"bytes,3,rep,name=vendor_extension,json=vendorExtension,proto3" json:"vendor_extension,omitempty"`
  1498. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1499. XXX_unrecognized []byte `json:"-"`
  1500. XXX_sizecache int32 `json:"-"`
  1501. }
  1502. func (m *License) Reset() { *m = License{} }
  1503. func (m *License) String() string { return proto.CompactTextString(m) }
  1504. func (*License) ProtoMessage() {}
  1505. func (*License) Descriptor() ([]byte, []int) {
  1506. return fileDescriptor_a43d10d209cd31c2, []int{19}
  1507. }
  1508. func (m *License) XXX_Unmarshal(b []byte) error {
  1509. return xxx_messageInfo_License.Unmarshal(m, b)
  1510. }
  1511. func (m *License) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1512. return xxx_messageInfo_License.Marshal(b, m, deterministic)
  1513. }
  1514. func (m *License) XXX_Merge(src proto.Message) {
  1515. xxx_messageInfo_License.Merge(m, src)
  1516. }
  1517. func (m *License) XXX_Size() int {
  1518. return xxx_messageInfo_License.Size(m)
  1519. }
  1520. func (m *License) XXX_DiscardUnknown() {
  1521. xxx_messageInfo_License.DiscardUnknown(m)
  1522. }
  1523. var xxx_messageInfo_License proto.InternalMessageInfo
  1524. func (m *License) GetName() string {
  1525. if m != nil {
  1526. return m.Name
  1527. }
  1528. return ""
  1529. }
  1530. func (m *License) GetUrl() string {
  1531. if m != nil {
  1532. return m.Url
  1533. }
  1534. return ""
  1535. }
  1536. func (m *License) GetVendorExtension() []*NamedAny {
  1537. if m != nil {
  1538. return m.VendorExtension
  1539. }
  1540. return nil
  1541. }
  1542. // Automatically-generated message used to represent maps of Any as ordered (name,value) pairs.
  1543. type NamedAny struct {
  1544. // Map key
  1545. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  1546. // Mapped value
  1547. Value *Any `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
  1548. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1549. XXX_unrecognized []byte `json:"-"`
  1550. XXX_sizecache int32 `json:"-"`
  1551. }
  1552. func (m *NamedAny) Reset() { *m = NamedAny{} }
  1553. func (m *NamedAny) String() string { return proto.CompactTextString(m) }
  1554. func (*NamedAny) ProtoMessage() {}
  1555. func (*NamedAny) Descriptor() ([]byte, []int) {
  1556. return fileDescriptor_a43d10d209cd31c2, []int{20}
  1557. }
  1558. func (m *NamedAny) XXX_Unmarshal(b []byte) error {
  1559. return xxx_messageInfo_NamedAny.Unmarshal(m, b)
  1560. }
  1561. func (m *NamedAny) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1562. return xxx_messageInfo_NamedAny.Marshal(b, m, deterministic)
  1563. }
  1564. func (m *NamedAny) XXX_Merge(src proto.Message) {
  1565. xxx_messageInfo_NamedAny.Merge(m, src)
  1566. }
  1567. func (m *NamedAny) XXX_Size() int {
  1568. return xxx_messageInfo_NamedAny.Size(m)
  1569. }
  1570. func (m *NamedAny) XXX_DiscardUnknown() {
  1571. xxx_messageInfo_NamedAny.DiscardUnknown(m)
  1572. }
  1573. var xxx_messageInfo_NamedAny proto.InternalMessageInfo
  1574. func (m *NamedAny) GetName() string {
  1575. if m != nil {
  1576. return m.Name
  1577. }
  1578. return ""
  1579. }
  1580. func (m *NamedAny) GetValue() *Any {
  1581. if m != nil {
  1582. return m.Value
  1583. }
  1584. return nil
  1585. }
  1586. // Automatically-generated message used to represent maps of Header as ordered (name,value) pairs.
  1587. type NamedHeader struct {
  1588. // Map key
  1589. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  1590. // Mapped value
  1591. Value *Header `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
  1592. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1593. XXX_unrecognized []byte `json:"-"`
  1594. XXX_sizecache int32 `json:"-"`
  1595. }
  1596. func (m *NamedHeader) Reset() { *m = NamedHeader{} }
  1597. func (m *NamedHeader) String() string { return proto.CompactTextString(m) }
  1598. func (*NamedHeader) ProtoMessage() {}
  1599. func (*NamedHeader) Descriptor() ([]byte, []int) {
  1600. return fileDescriptor_a43d10d209cd31c2, []int{21}
  1601. }
  1602. func (m *NamedHeader) XXX_Unmarshal(b []byte) error {
  1603. return xxx_messageInfo_NamedHeader.Unmarshal(m, b)
  1604. }
  1605. func (m *NamedHeader) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1606. return xxx_messageInfo_NamedHeader.Marshal(b, m, deterministic)
  1607. }
  1608. func (m *NamedHeader) XXX_Merge(src proto.Message) {
  1609. xxx_messageInfo_NamedHeader.Merge(m, src)
  1610. }
  1611. func (m *NamedHeader) XXX_Size() int {
  1612. return xxx_messageInfo_NamedHeader.Size(m)
  1613. }
  1614. func (m *NamedHeader) XXX_DiscardUnknown() {
  1615. xxx_messageInfo_NamedHeader.DiscardUnknown(m)
  1616. }
  1617. var xxx_messageInfo_NamedHeader proto.InternalMessageInfo
  1618. func (m *NamedHeader) GetName() string {
  1619. if m != nil {
  1620. return m.Name
  1621. }
  1622. return ""
  1623. }
  1624. func (m *NamedHeader) GetValue() *Header {
  1625. if m != nil {
  1626. return m.Value
  1627. }
  1628. return nil
  1629. }
  1630. // Automatically-generated message used to represent maps of Parameter as ordered (name,value) pairs.
  1631. type NamedParameter struct {
  1632. // Map key
  1633. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  1634. // Mapped value
  1635. Value *Parameter `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
  1636. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1637. XXX_unrecognized []byte `json:"-"`
  1638. XXX_sizecache int32 `json:"-"`
  1639. }
  1640. func (m *NamedParameter) Reset() { *m = NamedParameter{} }
  1641. func (m *NamedParameter) String() string { return proto.CompactTextString(m) }
  1642. func (*NamedParameter) ProtoMessage() {}
  1643. func (*NamedParameter) Descriptor() ([]byte, []int) {
  1644. return fileDescriptor_a43d10d209cd31c2, []int{22}
  1645. }
  1646. func (m *NamedParameter) XXX_Unmarshal(b []byte) error {
  1647. return xxx_messageInfo_NamedParameter.Unmarshal(m, b)
  1648. }
  1649. func (m *NamedParameter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1650. return xxx_messageInfo_NamedParameter.Marshal(b, m, deterministic)
  1651. }
  1652. func (m *NamedParameter) XXX_Merge(src proto.Message) {
  1653. xxx_messageInfo_NamedParameter.Merge(m, src)
  1654. }
  1655. func (m *NamedParameter) XXX_Size() int {
  1656. return xxx_messageInfo_NamedParameter.Size(m)
  1657. }
  1658. func (m *NamedParameter) XXX_DiscardUnknown() {
  1659. xxx_messageInfo_NamedParameter.DiscardUnknown(m)
  1660. }
  1661. var xxx_messageInfo_NamedParameter proto.InternalMessageInfo
  1662. func (m *NamedParameter) GetName() string {
  1663. if m != nil {
  1664. return m.Name
  1665. }
  1666. return ""
  1667. }
  1668. func (m *NamedParameter) GetValue() *Parameter {
  1669. if m != nil {
  1670. return m.Value
  1671. }
  1672. return nil
  1673. }
  1674. // Automatically-generated message used to represent maps of PathItem as ordered (name,value) pairs.
  1675. type NamedPathItem struct {
  1676. // Map key
  1677. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  1678. // Mapped value
  1679. Value *PathItem `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
  1680. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1681. XXX_unrecognized []byte `json:"-"`
  1682. XXX_sizecache int32 `json:"-"`
  1683. }
  1684. func (m *NamedPathItem) Reset() { *m = NamedPathItem{} }
  1685. func (m *NamedPathItem) String() string { return proto.CompactTextString(m) }
  1686. func (*NamedPathItem) ProtoMessage() {}
  1687. func (*NamedPathItem) Descriptor() ([]byte, []int) {
  1688. return fileDescriptor_a43d10d209cd31c2, []int{23}
  1689. }
  1690. func (m *NamedPathItem) XXX_Unmarshal(b []byte) error {
  1691. return xxx_messageInfo_NamedPathItem.Unmarshal(m, b)
  1692. }
  1693. func (m *NamedPathItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1694. return xxx_messageInfo_NamedPathItem.Marshal(b, m, deterministic)
  1695. }
  1696. func (m *NamedPathItem) XXX_Merge(src proto.Message) {
  1697. xxx_messageInfo_NamedPathItem.Merge(m, src)
  1698. }
  1699. func (m *NamedPathItem) XXX_Size() int {
  1700. return xxx_messageInfo_NamedPathItem.Size(m)
  1701. }
  1702. func (m *NamedPathItem) XXX_DiscardUnknown() {
  1703. xxx_messageInfo_NamedPathItem.DiscardUnknown(m)
  1704. }
  1705. var xxx_messageInfo_NamedPathItem proto.InternalMessageInfo
  1706. func (m *NamedPathItem) GetName() string {
  1707. if m != nil {
  1708. return m.Name
  1709. }
  1710. return ""
  1711. }
  1712. func (m *NamedPathItem) GetValue() *PathItem {
  1713. if m != nil {
  1714. return m.Value
  1715. }
  1716. return nil
  1717. }
  1718. // Automatically-generated message used to represent maps of Response as ordered (name,value) pairs.
  1719. type NamedResponse struct {
  1720. // Map key
  1721. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  1722. // Mapped value
  1723. Value *Response `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
  1724. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1725. XXX_unrecognized []byte `json:"-"`
  1726. XXX_sizecache int32 `json:"-"`
  1727. }
  1728. func (m *NamedResponse) Reset() { *m = NamedResponse{} }
  1729. func (m *NamedResponse) String() string { return proto.CompactTextString(m) }
  1730. func (*NamedResponse) ProtoMessage() {}
  1731. func (*NamedResponse) Descriptor() ([]byte, []int) {
  1732. return fileDescriptor_a43d10d209cd31c2, []int{24}
  1733. }
  1734. func (m *NamedResponse) XXX_Unmarshal(b []byte) error {
  1735. return xxx_messageInfo_NamedResponse.Unmarshal(m, b)
  1736. }
  1737. func (m *NamedResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1738. return xxx_messageInfo_NamedResponse.Marshal(b, m, deterministic)
  1739. }
  1740. func (m *NamedResponse) XXX_Merge(src proto.Message) {
  1741. xxx_messageInfo_NamedResponse.Merge(m, src)
  1742. }
  1743. func (m *NamedResponse) XXX_Size() int {
  1744. return xxx_messageInfo_NamedResponse.Size(m)
  1745. }
  1746. func (m *NamedResponse) XXX_DiscardUnknown() {
  1747. xxx_messageInfo_NamedResponse.DiscardUnknown(m)
  1748. }
  1749. var xxx_messageInfo_NamedResponse proto.InternalMessageInfo
  1750. func (m *NamedResponse) GetName() string {
  1751. if m != nil {
  1752. return m.Name
  1753. }
  1754. return ""
  1755. }
  1756. func (m *NamedResponse) GetValue() *Response {
  1757. if m != nil {
  1758. return m.Value
  1759. }
  1760. return nil
  1761. }
  1762. // Automatically-generated message used to represent maps of ResponseValue as ordered (name,value) pairs.
  1763. type NamedResponseValue struct {
  1764. // Map key
  1765. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  1766. // Mapped value
  1767. Value *ResponseValue `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
  1768. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1769. XXX_unrecognized []byte `json:"-"`
  1770. XXX_sizecache int32 `json:"-"`
  1771. }
  1772. func (m *NamedResponseValue) Reset() { *m = NamedResponseValue{} }
  1773. func (m *NamedResponseValue) String() string { return proto.CompactTextString(m) }
  1774. func (*NamedResponseValue) ProtoMessage() {}
  1775. func (*NamedResponseValue) Descriptor() ([]byte, []int) {
  1776. return fileDescriptor_a43d10d209cd31c2, []int{25}
  1777. }
  1778. func (m *NamedResponseValue) XXX_Unmarshal(b []byte) error {
  1779. return xxx_messageInfo_NamedResponseValue.Unmarshal(m, b)
  1780. }
  1781. func (m *NamedResponseValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1782. return xxx_messageInfo_NamedResponseValue.Marshal(b, m, deterministic)
  1783. }
  1784. func (m *NamedResponseValue) XXX_Merge(src proto.Message) {
  1785. xxx_messageInfo_NamedResponseValue.Merge(m, src)
  1786. }
  1787. func (m *NamedResponseValue) XXX_Size() int {
  1788. return xxx_messageInfo_NamedResponseValue.Size(m)
  1789. }
  1790. func (m *NamedResponseValue) XXX_DiscardUnknown() {
  1791. xxx_messageInfo_NamedResponseValue.DiscardUnknown(m)
  1792. }
  1793. var xxx_messageInfo_NamedResponseValue proto.InternalMessageInfo
  1794. func (m *NamedResponseValue) GetName() string {
  1795. if m != nil {
  1796. return m.Name
  1797. }
  1798. return ""
  1799. }
  1800. func (m *NamedResponseValue) GetValue() *ResponseValue {
  1801. if m != nil {
  1802. return m.Value
  1803. }
  1804. return nil
  1805. }
  1806. // Automatically-generated message used to represent maps of Schema as ordered (name,value) pairs.
  1807. type NamedSchema struct {
  1808. // Map key
  1809. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  1810. // Mapped value
  1811. Value *Schema `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
  1812. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1813. XXX_unrecognized []byte `json:"-"`
  1814. XXX_sizecache int32 `json:"-"`
  1815. }
  1816. func (m *NamedSchema) Reset() { *m = NamedSchema{} }
  1817. func (m *NamedSchema) String() string { return proto.CompactTextString(m) }
  1818. func (*NamedSchema) ProtoMessage() {}
  1819. func (*NamedSchema) Descriptor() ([]byte, []int) {
  1820. return fileDescriptor_a43d10d209cd31c2, []int{26}
  1821. }
  1822. func (m *NamedSchema) XXX_Unmarshal(b []byte) error {
  1823. return xxx_messageInfo_NamedSchema.Unmarshal(m, b)
  1824. }
  1825. func (m *NamedSchema) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1826. return xxx_messageInfo_NamedSchema.Marshal(b, m, deterministic)
  1827. }
  1828. func (m *NamedSchema) XXX_Merge(src proto.Message) {
  1829. xxx_messageInfo_NamedSchema.Merge(m, src)
  1830. }
  1831. func (m *NamedSchema) XXX_Size() int {
  1832. return xxx_messageInfo_NamedSchema.Size(m)
  1833. }
  1834. func (m *NamedSchema) XXX_DiscardUnknown() {
  1835. xxx_messageInfo_NamedSchema.DiscardUnknown(m)
  1836. }
  1837. var xxx_messageInfo_NamedSchema proto.InternalMessageInfo
  1838. func (m *NamedSchema) GetName() string {
  1839. if m != nil {
  1840. return m.Name
  1841. }
  1842. return ""
  1843. }
  1844. func (m *NamedSchema) GetValue() *Schema {
  1845. if m != nil {
  1846. return m.Value
  1847. }
  1848. return nil
  1849. }
  1850. // Automatically-generated message used to represent maps of SecurityDefinitionsItem as ordered (name,value) pairs.
  1851. type NamedSecurityDefinitionsItem struct {
  1852. // Map key
  1853. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  1854. // Mapped value
  1855. Value *SecurityDefinitionsItem `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
  1856. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1857. XXX_unrecognized []byte `json:"-"`
  1858. XXX_sizecache int32 `json:"-"`
  1859. }
  1860. func (m *NamedSecurityDefinitionsItem) Reset() { *m = NamedSecurityDefinitionsItem{} }
  1861. func (m *NamedSecurityDefinitionsItem) String() string { return proto.CompactTextString(m) }
  1862. func (*NamedSecurityDefinitionsItem) ProtoMessage() {}
  1863. func (*NamedSecurityDefinitionsItem) Descriptor() ([]byte, []int) {
  1864. return fileDescriptor_a43d10d209cd31c2, []int{27}
  1865. }
  1866. func (m *NamedSecurityDefinitionsItem) XXX_Unmarshal(b []byte) error {
  1867. return xxx_messageInfo_NamedSecurityDefinitionsItem.Unmarshal(m, b)
  1868. }
  1869. func (m *NamedSecurityDefinitionsItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1870. return xxx_messageInfo_NamedSecurityDefinitionsItem.Marshal(b, m, deterministic)
  1871. }
  1872. func (m *NamedSecurityDefinitionsItem) XXX_Merge(src proto.Message) {
  1873. xxx_messageInfo_NamedSecurityDefinitionsItem.Merge(m, src)
  1874. }
  1875. func (m *NamedSecurityDefinitionsItem) XXX_Size() int {
  1876. return xxx_messageInfo_NamedSecurityDefinitionsItem.Size(m)
  1877. }
  1878. func (m *NamedSecurityDefinitionsItem) XXX_DiscardUnknown() {
  1879. xxx_messageInfo_NamedSecurityDefinitionsItem.DiscardUnknown(m)
  1880. }
  1881. var xxx_messageInfo_NamedSecurityDefinitionsItem proto.InternalMessageInfo
  1882. func (m *NamedSecurityDefinitionsItem) GetName() string {
  1883. if m != nil {
  1884. return m.Name
  1885. }
  1886. return ""
  1887. }
  1888. func (m *NamedSecurityDefinitionsItem) GetValue() *SecurityDefinitionsItem {
  1889. if m != nil {
  1890. return m.Value
  1891. }
  1892. return nil
  1893. }
  1894. // Automatically-generated message used to represent maps of string as ordered (name,value) pairs.
  1895. type NamedString struct {
  1896. // Map key
  1897. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  1898. // Mapped value
  1899. Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
  1900. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1901. XXX_unrecognized []byte `json:"-"`
  1902. XXX_sizecache int32 `json:"-"`
  1903. }
  1904. func (m *NamedString) Reset() { *m = NamedString{} }
  1905. func (m *NamedString) String() string { return proto.CompactTextString(m) }
  1906. func (*NamedString) ProtoMessage() {}
  1907. func (*NamedString) Descriptor() ([]byte, []int) {
  1908. return fileDescriptor_a43d10d209cd31c2, []int{28}
  1909. }
  1910. func (m *NamedString) XXX_Unmarshal(b []byte) error {
  1911. return xxx_messageInfo_NamedString.Unmarshal(m, b)
  1912. }
  1913. func (m *NamedString) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1914. return xxx_messageInfo_NamedString.Marshal(b, m, deterministic)
  1915. }
  1916. func (m *NamedString) XXX_Merge(src proto.Message) {
  1917. xxx_messageInfo_NamedString.Merge(m, src)
  1918. }
  1919. func (m *NamedString) XXX_Size() int {
  1920. return xxx_messageInfo_NamedString.Size(m)
  1921. }
  1922. func (m *NamedString) XXX_DiscardUnknown() {
  1923. xxx_messageInfo_NamedString.DiscardUnknown(m)
  1924. }
  1925. var xxx_messageInfo_NamedString proto.InternalMessageInfo
  1926. func (m *NamedString) GetName() string {
  1927. if m != nil {
  1928. return m.Name
  1929. }
  1930. return ""
  1931. }
  1932. func (m *NamedString) GetValue() string {
  1933. if m != nil {
  1934. return m.Value
  1935. }
  1936. return ""
  1937. }
  1938. // Automatically-generated message used to represent maps of StringArray as ordered (name,value) pairs.
  1939. type NamedStringArray struct {
  1940. // Map key
  1941. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  1942. // Mapped value
  1943. Value *StringArray `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
  1944. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1945. XXX_unrecognized []byte `json:"-"`
  1946. XXX_sizecache int32 `json:"-"`
  1947. }
  1948. func (m *NamedStringArray) Reset() { *m = NamedStringArray{} }
  1949. func (m *NamedStringArray) String() string { return proto.CompactTextString(m) }
  1950. func (*NamedStringArray) ProtoMessage() {}
  1951. func (*NamedStringArray) Descriptor() ([]byte, []int) {
  1952. return fileDescriptor_a43d10d209cd31c2, []int{29}
  1953. }
  1954. func (m *NamedStringArray) XXX_Unmarshal(b []byte) error {
  1955. return xxx_messageInfo_NamedStringArray.Unmarshal(m, b)
  1956. }
  1957. func (m *NamedStringArray) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1958. return xxx_messageInfo_NamedStringArray.Marshal(b, m, deterministic)
  1959. }
  1960. func (m *NamedStringArray) XXX_Merge(src proto.Message) {
  1961. xxx_messageInfo_NamedStringArray.Merge(m, src)
  1962. }
  1963. func (m *NamedStringArray) XXX_Size() int {
  1964. return xxx_messageInfo_NamedStringArray.Size(m)
  1965. }
  1966. func (m *NamedStringArray) XXX_DiscardUnknown() {
  1967. xxx_messageInfo_NamedStringArray.DiscardUnknown(m)
  1968. }
  1969. var xxx_messageInfo_NamedStringArray proto.InternalMessageInfo
  1970. func (m *NamedStringArray) GetName() string {
  1971. if m != nil {
  1972. return m.Name
  1973. }
  1974. return ""
  1975. }
  1976. func (m *NamedStringArray) GetValue() *StringArray {
  1977. if m != nil {
  1978. return m.Value
  1979. }
  1980. return nil
  1981. }
  1982. type NonBodyParameter struct {
  1983. // Types that are valid to be assigned to Oneof:
  1984. // *NonBodyParameter_HeaderParameterSubSchema
  1985. // *NonBodyParameter_FormDataParameterSubSchema
  1986. // *NonBodyParameter_QueryParameterSubSchema
  1987. // *NonBodyParameter_PathParameterSubSchema
  1988. Oneof isNonBodyParameter_Oneof `protobuf_oneof:"oneof"`
  1989. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1990. XXX_unrecognized []byte `json:"-"`
  1991. XXX_sizecache int32 `json:"-"`
  1992. }
  1993. func (m *NonBodyParameter) Reset() { *m = NonBodyParameter{} }
  1994. func (m *NonBodyParameter) String() string { return proto.CompactTextString(m) }
  1995. func (*NonBodyParameter) ProtoMessage() {}
  1996. func (*NonBodyParameter) Descriptor() ([]byte, []int) {
  1997. return fileDescriptor_a43d10d209cd31c2, []int{30}
  1998. }
  1999. func (m *NonBodyParameter) XXX_Unmarshal(b []byte) error {
  2000. return xxx_messageInfo_NonBodyParameter.Unmarshal(m, b)
  2001. }
  2002. func (m *NonBodyParameter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2003. return xxx_messageInfo_NonBodyParameter.Marshal(b, m, deterministic)
  2004. }
  2005. func (m *NonBodyParameter) XXX_Merge(src proto.Message) {
  2006. xxx_messageInfo_NonBodyParameter.Merge(m, src)
  2007. }
  2008. func (m *NonBodyParameter) XXX_Size() int {
  2009. return xxx_messageInfo_NonBodyParameter.Size(m)
  2010. }
  2011. func (m *NonBodyParameter) XXX_DiscardUnknown() {
  2012. xxx_messageInfo_NonBodyParameter.DiscardUnknown(m)
  2013. }
  2014. var xxx_messageInfo_NonBodyParameter proto.InternalMessageInfo
  2015. type isNonBodyParameter_Oneof interface {
  2016. isNonBodyParameter_Oneof()
  2017. }
  2018. type NonBodyParameter_HeaderParameterSubSchema struct {
  2019. HeaderParameterSubSchema *HeaderParameterSubSchema `protobuf:"bytes,1,opt,name=header_parameter_sub_schema,json=headerParameterSubSchema,proto3,oneof"`
  2020. }
  2021. type NonBodyParameter_FormDataParameterSubSchema struct {
  2022. FormDataParameterSubSchema *FormDataParameterSubSchema `protobuf:"bytes,2,opt,name=form_data_parameter_sub_schema,json=formDataParameterSubSchema,proto3,oneof"`
  2023. }
  2024. type NonBodyParameter_QueryParameterSubSchema struct {
  2025. QueryParameterSubSchema *QueryParameterSubSchema `protobuf:"bytes,3,opt,name=query_parameter_sub_schema,json=queryParameterSubSchema,proto3,oneof"`
  2026. }
  2027. type NonBodyParameter_PathParameterSubSchema struct {
  2028. PathParameterSubSchema *PathParameterSubSchema `protobuf:"bytes,4,opt,name=path_parameter_sub_schema,json=pathParameterSubSchema,proto3,oneof"`
  2029. }
  2030. func (*NonBodyParameter_HeaderParameterSubSchema) isNonBodyParameter_Oneof() {}
  2031. func (*NonBodyParameter_FormDataParameterSubSchema) isNonBodyParameter_Oneof() {}
  2032. func (*NonBodyParameter_QueryParameterSubSchema) isNonBodyParameter_Oneof() {}
  2033. func (*NonBodyParameter_PathParameterSubSchema) isNonBodyParameter_Oneof() {}
  2034. func (m *NonBodyParameter) GetOneof() isNonBodyParameter_Oneof {
  2035. if m != nil {
  2036. return m.Oneof
  2037. }
  2038. return nil
  2039. }
  2040. func (m *NonBodyParameter) GetHeaderParameterSubSchema() *HeaderParameterSubSchema {
  2041. if x, ok := m.GetOneof().(*NonBodyParameter_HeaderParameterSubSchema); ok {
  2042. return x.HeaderParameterSubSchema
  2043. }
  2044. return nil
  2045. }
  2046. func (m *NonBodyParameter) GetFormDataParameterSubSchema() *FormDataParameterSubSchema {
  2047. if x, ok := m.GetOneof().(*NonBodyParameter_FormDataParameterSubSchema); ok {
  2048. return x.FormDataParameterSubSchema
  2049. }
  2050. return nil
  2051. }
  2052. func (m *NonBodyParameter) GetQueryParameterSubSchema() *QueryParameterSubSchema {
  2053. if x, ok := m.GetOneof().(*NonBodyParameter_QueryParameterSubSchema); ok {
  2054. return x.QueryParameterSubSchema
  2055. }
  2056. return nil
  2057. }
  2058. func (m *NonBodyParameter) GetPathParameterSubSchema() *PathParameterSubSchema {
  2059. if x, ok := m.GetOneof().(*NonBodyParameter_PathParameterSubSchema); ok {
  2060. return x.PathParameterSubSchema
  2061. }
  2062. return nil
  2063. }
  2064. // XXX_OneofWrappers is for the internal use of the proto package.
  2065. func (*NonBodyParameter) XXX_OneofWrappers() []interface{} {
  2066. return []interface{}{
  2067. (*NonBodyParameter_HeaderParameterSubSchema)(nil),
  2068. (*NonBodyParameter_FormDataParameterSubSchema)(nil),
  2069. (*NonBodyParameter_QueryParameterSubSchema)(nil),
  2070. (*NonBodyParameter_PathParameterSubSchema)(nil),
  2071. }
  2072. }
  2073. type Oauth2AccessCodeSecurity struct {
  2074. Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
  2075. Flow string `protobuf:"bytes,2,opt,name=flow,proto3" json:"flow,omitempty"`
  2076. Scopes *Oauth2Scopes `protobuf:"bytes,3,opt,name=scopes,proto3" json:"scopes,omitempty"`
  2077. AuthorizationUrl string `protobuf:"bytes,4,opt,name=authorization_url,json=authorizationUrl,proto3" json:"authorization_url,omitempty"`
  2078. TokenUrl string `protobuf:"bytes,5,opt,name=token_url,json=tokenUrl,proto3" json:"token_url,omitempty"`
  2079. Description string `protobuf:"bytes,6,opt,name=description,proto3" json:"description,omitempty"`
  2080. VendorExtension []*NamedAny `protobuf:"bytes,7,rep,name=vendor_extension,json=vendorExtension,proto3" json:"vendor_extension,omitempty"`
  2081. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2082. XXX_unrecognized []byte `json:"-"`
  2083. XXX_sizecache int32 `json:"-"`
  2084. }
  2085. func (m *Oauth2AccessCodeSecurity) Reset() { *m = Oauth2AccessCodeSecurity{} }
  2086. func (m *Oauth2AccessCodeSecurity) String() string { return proto.CompactTextString(m) }
  2087. func (*Oauth2AccessCodeSecurity) ProtoMessage() {}
  2088. func (*Oauth2AccessCodeSecurity) Descriptor() ([]byte, []int) {
  2089. return fileDescriptor_a43d10d209cd31c2, []int{31}
  2090. }
  2091. func (m *Oauth2AccessCodeSecurity) XXX_Unmarshal(b []byte) error {
  2092. return xxx_messageInfo_Oauth2AccessCodeSecurity.Unmarshal(m, b)
  2093. }
  2094. func (m *Oauth2AccessCodeSecurity) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2095. return xxx_messageInfo_Oauth2AccessCodeSecurity.Marshal(b, m, deterministic)
  2096. }
  2097. func (m *Oauth2AccessCodeSecurity) XXX_Merge(src proto.Message) {
  2098. xxx_messageInfo_Oauth2AccessCodeSecurity.Merge(m, src)
  2099. }
  2100. func (m *Oauth2AccessCodeSecurity) XXX_Size() int {
  2101. return xxx_messageInfo_Oauth2AccessCodeSecurity.Size(m)
  2102. }
  2103. func (m *Oauth2AccessCodeSecurity) XXX_DiscardUnknown() {
  2104. xxx_messageInfo_Oauth2AccessCodeSecurity.DiscardUnknown(m)
  2105. }
  2106. var xxx_messageInfo_Oauth2AccessCodeSecurity proto.InternalMessageInfo
  2107. func (m *Oauth2AccessCodeSecurity) GetType() string {
  2108. if m != nil {
  2109. return m.Type
  2110. }
  2111. return ""
  2112. }
  2113. func (m *Oauth2AccessCodeSecurity) GetFlow() string {
  2114. if m != nil {
  2115. return m.Flow
  2116. }
  2117. return ""
  2118. }
  2119. func (m *Oauth2AccessCodeSecurity) GetScopes() *Oauth2Scopes {
  2120. if m != nil {
  2121. return m.Scopes
  2122. }
  2123. return nil
  2124. }
  2125. func (m *Oauth2AccessCodeSecurity) GetAuthorizationUrl() string {
  2126. if m != nil {
  2127. return m.AuthorizationUrl
  2128. }
  2129. return ""
  2130. }
  2131. func (m *Oauth2AccessCodeSecurity) GetTokenUrl() string {
  2132. if m != nil {
  2133. return m.TokenUrl
  2134. }
  2135. return ""
  2136. }
  2137. func (m *Oauth2AccessCodeSecurity) GetDescription() string {
  2138. if m != nil {
  2139. return m.Description
  2140. }
  2141. return ""
  2142. }
  2143. func (m *Oauth2AccessCodeSecurity) GetVendorExtension() []*NamedAny {
  2144. if m != nil {
  2145. return m.VendorExtension
  2146. }
  2147. return nil
  2148. }
  2149. type Oauth2ApplicationSecurity struct {
  2150. Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
  2151. Flow string `protobuf:"bytes,2,opt,name=flow,proto3" json:"flow,omitempty"`
  2152. Scopes *Oauth2Scopes `protobuf:"bytes,3,opt,name=scopes,proto3" json:"scopes,omitempty"`
  2153. TokenUrl string `protobuf:"bytes,4,opt,name=token_url,json=tokenUrl,proto3" json:"token_url,omitempty"`
  2154. Description string `protobuf:"bytes,5,opt,name=description,proto3" json:"description,omitempty"`
  2155. VendorExtension []*NamedAny `protobuf:"bytes,6,rep,name=vendor_extension,json=vendorExtension,proto3" json:"vendor_extension,omitempty"`
  2156. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2157. XXX_unrecognized []byte `json:"-"`
  2158. XXX_sizecache int32 `json:"-"`
  2159. }
  2160. func (m *Oauth2ApplicationSecurity) Reset() { *m = Oauth2ApplicationSecurity{} }
  2161. func (m *Oauth2ApplicationSecurity) String() string { return proto.CompactTextString(m) }
  2162. func (*Oauth2ApplicationSecurity) ProtoMessage() {}
  2163. func (*Oauth2ApplicationSecurity) Descriptor() ([]byte, []int) {
  2164. return fileDescriptor_a43d10d209cd31c2, []int{32}
  2165. }
  2166. func (m *Oauth2ApplicationSecurity) XXX_Unmarshal(b []byte) error {
  2167. return xxx_messageInfo_Oauth2ApplicationSecurity.Unmarshal(m, b)
  2168. }
  2169. func (m *Oauth2ApplicationSecurity) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2170. return xxx_messageInfo_Oauth2ApplicationSecurity.Marshal(b, m, deterministic)
  2171. }
  2172. func (m *Oauth2ApplicationSecurity) XXX_Merge(src proto.Message) {
  2173. xxx_messageInfo_Oauth2ApplicationSecurity.Merge(m, src)
  2174. }
  2175. func (m *Oauth2ApplicationSecurity) XXX_Size() int {
  2176. return xxx_messageInfo_Oauth2ApplicationSecurity.Size(m)
  2177. }
  2178. func (m *Oauth2ApplicationSecurity) XXX_DiscardUnknown() {
  2179. xxx_messageInfo_Oauth2ApplicationSecurity.DiscardUnknown(m)
  2180. }
  2181. var xxx_messageInfo_Oauth2ApplicationSecurity proto.InternalMessageInfo
  2182. func (m *Oauth2ApplicationSecurity) GetType() string {
  2183. if m != nil {
  2184. return m.Type
  2185. }
  2186. return ""
  2187. }
  2188. func (m *Oauth2ApplicationSecurity) GetFlow() string {
  2189. if m != nil {
  2190. return m.Flow
  2191. }
  2192. return ""
  2193. }
  2194. func (m *Oauth2ApplicationSecurity) GetScopes() *Oauth2Scopes {
  2195. if m != nil {
  2196. return m.Scopes
  2197. }
  2198. return nil
  2199. }
  2200. func (m *Oauth2ApplicationSecurity) GetTokenUrl() string {
  2201. if m != nil {
  2202. return m.TokenUrl
  2203. }
  2204. return ""
  2205. }
  2206. func (m *Oauth2ApplicationSecurity) GetDescription() string {
  2207. if m != nil {
  2208. return m.Description
  2209. }
  2210. return ""
  2211. }
  2212. func (m *Oauth2ApplicationSecurity) GetVendorExtension() []*NamedAny {
  2213. if m != nil {
  2214. return m.VendorExtension
  2215. }
  2216. return nil
  2217. }
  2218. type Oauth2ImplicitSecurity struct {
  2219. Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
  2220. Flow string `protobuf:"bytes,2,opt,name=flow,proto3" json:"flow,omitempty"`
  2221. Scopes *Oauth2Scopes `protobuf:"bytes,3,opt,name=scopes,proto3" json:"scopes,omitempty"`
  2222. AuthorizationUrl string `protobuf:"bytes,4,opt,name=authorization_url,json=authorizationUrl,proto3" json:"authorization_url,omitempty"`
  2223. Description string `protobuf:"bytes,5,opt,name=description,proto3" json:"description,omitempty"`
  2224. VendorExtension []*NamedAny `protobuf:"bytes,6,rep,name=vendor_extension,json=vendorExtension,proto3" json:"vendor_extension,omitempty"`
  2225. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2226. XXX_unrecognized []byte `json:"-"`
  2227. XXX_sizecache int32 `json:"-"`
  2228. }
  2229. func (m *Oauth2ImplicitSecurity) Reset() { *m = Oauth2ImplicitSecurity{} }
  2230. func (m *Oauth2ImplicitSecurity) String() string { return proto.CompactTextString(m) }
  2231. func (*Oauth2ImplicitSecurity) ProtoMessage() {}
  2232. func (*Oauth2ImplicitSecurity) Descriptor() ([]byte, []int) {
  2233. return fileDescriptor_a43d10d209cd31c2, []int{33}
  2234. }
  2235. func (m *Oauth2ImplicitSecurity) XXX_Unmarshal(b []byte) error {
  2236. return xxx_messageInfo_Oauth2ImplicitSecurity.Unmarshal(m, b)
  2237. }
  2238. func (m *Oauth2ImplicitSecurity) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2239. return xxx_messageInfo_Oauth2ImplicitSecurity.Marshal(b, m, deterministic)
  2240. }
  2241. func (m *Oauth2ImplicitSecurity) XXX_Merge(src proto.Message) {
  2242. xxx_messageInfo_Oauth2ImplicitSecurity.Merge(m, src)
  2243. }
  2244. func (m *Oauth2ImplicitSecurity) XXX_Size() int {
  2245. return xxx_messageInfo_Oauth2ImplicitSecurity.Size(m)
  2246. }
  2247. func (m *Oauth2ImplicitSecurity) XXX_DiscardUnknown() {
  2248. xxx_messageInfo_Oauth2ImplicitSecurity.DiscardUnknown(m)
  2249. }
  2250. var xxx_messageInfo_Oauth2ImplicitSecurity proto.InternalMessageInfo
  2251. func (m *Oauth2ImplicitSecurity) GetType() string {
  2252. if m != nil {
  2253. return m.Type
  2254. }
  2255. return ""
  2256. }
  2257. func (m *Oauth2ImplicitSecurity) GetFlow() string {
  2258. if m != nil {
  2259. return m.Flow
  2260. }
  2261. return ""
  2262. }
  2263. func (m *Oauth2ImplicitSecurity) GetScopes() *Oauth2Scopes {
  2264. if m != nil {
  2265. return m.Scopes
  2266. }
  2267. return nil
  2268. }
  2269. func (m *Oauth2ImplicitSecurity) GetAuthorizationUrl() string {
  2270. if m != nil {
  2271. return m.AuthorizationUrl
  2272. }
  2273. return ""
  2274. }
  2275. func (m *Oauth2ImplicitSecurity) GetDescription() string {
  2276. if m != nil {
  2277. return m.Description
  2278. }
  2279. return ""
  2280. }
  2281. func (m *Oauth2ImplicitSecurity) GetVendorExtension() []*NamedAny {
  2282. if m != nil {
  2283. return m.VendorExtension
  2284. }
  2285. return nil
  2286. }
  2287. type Oauth2PasswordSecurity struct {
  2288. Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
  2289. Flow string `protobuf:"bytes,2,opt,name=flow,proto3" json:"flow,omitempty"`
  2290. Scopes *Oauth2Scopes `protobuf:"bytes,3,opt,name=scopes,proto3" json:"scopes,omitempty"`
  2291. TokenUrl string `protobuf:"bytes,4,opt,name=token_url,json=tokenUrl,proto3" json:"token_url,omitempty"`
  2292. Description string `protobuf:"bytes,5,opt,name=description,proto3" json:"description,omitempty"`
  2293. VendorExtension []*NamedAny `protobuf:"bytes,6,rep,name=vendor_extension,json=vendorExtension,proto3" json:"vendor_extension,omitempty"`
  2294. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2295. XXX_unrecognized []byte `json:"-"`
  2296. XXX_sizecache int32 `json:"-"`
  2297. }
  2298. func (m *Oauth2PasswordSecurity) Reset() { *m = Oauth2PasswordSecurity{} }
  2299. func (m *Oauth2PasswordSecurity) String() string { return proto.CompactTextString(m) }
  2300. func (*Oauth2PasswordSecurity) ProtoMessage() {}
  2301. func (*Oauth2PasswordSecurity) Descriptor() ([]byte, []int) {
  2302. return fileDescriptor_a43d10d209cd31c2, []int{34}
  2303. }
  2304. func (m *Oauth2PasswordSecurity) XXX_Unmarshal(b []byte) error {
  2305. return xxx_messageInfo_Oauth2PasswordSecurity.Unmarshal(m, b)
  2306. }
  2307. func (m *Oauth2PasswordSecurity) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2308. return xxx_messageInfo_Oauth2PasswordSecurity.Marshal(b, m, deterministic)
  2309. }
  2310. func (m *Oauth2PasswordSecurity) XXX_Merge(src proto.Message) {
  2311. xxx_messageInfo_Oauth2PasswordSecurity.Merge(m, src)
  2312. }
  2313. func (m *Oauth2PasswordSecurity) XXX_Size() int {
  2314. return xxx_messageInfo_Oauth2PasswordSecurity.Size(m)
  2315. }
  2316. func (m *Oauth2PasswordSecurity) XXX_DiscardUnknown() {
  2317. xxx_messageInfo_Oauth2PasswordSecurity.DiscardUnknown(m)
  2318. }
  2319. var xxx_messageInfo_Oauth2PasswordSecurity proto.InternalMessageInfo
  2320. func (m *Oauth2PasswordSecurity) GetType() string {
  2321. if m != nil {
  2322. return m.Type
  2323. }
  2324. return ""
  2325. }
  2326. func (m *Oauth2PasswordSecurity) GetFlow() string {
  2327. if m != nil {
  2328. return m.Flow
  2329. }
  2330. return ""
  2331. }
  2332. func (m *Oauth2PasswordSecurity) GetScopes() *Oauth2Scopes {
  2333. if m != nil {
  2334. return m.Scopes
  2335. }
  2336. return nil
  2337. }
  2338. func (m *Oauth2PasswordSecurity) GetTokenUrl() string {
  2339. if m != nil {
  2340. return m.TokenUrl
  2341. }
  2342. return ""
  2343. }
  2344. func (m *Oauth2PasswordSecurity) GetDescription() string {
  2345. if m != nil {
  2346. return m.Description
  2347. }
  2348. return ""
  2349. }
  2350. func (m *Oauth2PasswordSecurity) GetVendorExtension() []*NamedAny {
  2351. if m != nil {
  2352. return m.VendorExtension
  2353. }
  2354. return nil
  2355. }
  2356. type Oauth2Scopes struct {
  2357. AdditionalProperties []*NamedString `protobuf:"bytes,1,rep,name=additional_properties,json=additionalProperties,proto3" json:"additional_properties,omitempty"`
  2358. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2359. XXX_unrecognized []byte `json:"-"`
  2360. XXX_sizecache int32 `json:"-"`
  2361. }
  2362. func (m *Oauth2Scopes) Reset() { *m = Oauth2Scopes{} }
  2363. func (m *Oauth2Scopes) String() string { return proto.CompactTextString(m) }
  2364. func (*Oauth2Scopes) ProtoMessage() {}
  2365. func (*Oauth2Scopes) Descriptor() ([]byte, []int) {
  2366. return fileDescriptor_a43d10d209cd31c2, []int{35}
  2367. }
  2368. func (m *Oauth2Scopes) XXX_Unmarshal(b []byte) error {
  2369. return xxx_messageInfo_Oauth2Scopes.Unmarshal(m, b)
  2370. }
  2371. func (m *Oauth2Scopes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2372. return xxx_messageInfo_Oauth2Scopes.Marshal(b, m, deterministic)
  2373. }
  2374. func (m *Oauth2Scopes) XXX_Merge(src proto.Message) {
  2375. xxx_messageInfo_Oauth2Scopes.Merge(m, src)
  2376. }
  2377. func (m *Oauth2Scopes) XXX_Size() int {
  2378. return xxx_messageInfo_Oauth2Scopes.Size(m)
  2379. }
  2380. func (m *Oauth2Scopes) XXX_DiscardUnknown() {
  2381. xxx_messageInfo_Oauth2Scopes.DiscardUnknown(m)
  2382. }
  2383. var xxx_messageInfo_Oauth2Scopes proto.InternalMessageInfo
  2384. func (m *Oauth2Scopes) GetAdditionalProperties() []*NamedString {
  2385. if m != nil {
  2386. return m.AdditionalProperties
  2387. }
  2388. return nil
  2389. }
  2390. type Operation struct {
  2391. Tags []string `protobuf:"bytes,1,rep,name=tags,proto3" json:"tags,omitempty"`
  2392. // A brief summary of the operation.
  2393. Summary string `protobuf:"bytes,2,opt,name=summary,proto3" json:"summary,omitempty"`
  2394. // A longer description of the operation, GitHub Flavored Markdown is allowed.
  2395. Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
  2396. ExternalDocs *ExternalDocs `protobuf:"bytes,4,opt,name=external_docs,json=externalDocs,proto3" json:"external_docs,omitempty"`
  2397. // A unique identifier of the operation.
  2398. OperationId string `protobuf:"bytes,5,opt,name=operation_id,json=operationId,proto3" json:"operation_id,omitempty"`
  2399. // A list of MIME types the API can produce.
  2400. Produces []string `protobuf:"bytes,6,rep,name=produces,proto3" json:"produces,omitempty"`
  2401. // A list of MIME types the API can consume.
  2402. Consumes []string `protobuf:"bytes,7,rep,name=consumes,proto3" json:"consumes,omitempty"`
  2403. // The parameters needed to send a valid API call.
  2404. Parameters []*ParametersItem `protobuf:"bytes,8,rep,name=parameters,proto3" json:"parameters,omitempty"`
  2405. Responses *Responses `protobuf:"bytes,9,opt,name=responses,proto3" json:"responses,omitempty"`
  2406. // The transfer protocol of the API.
  2407. Schemes []string `protobuf:"bytes,10,rep,name=schemes,proto3" json:"schemes,omitempty"`
  2408. Deprecated bool `protobuf:"varint,11,opt,name=deprecated,proto3" json:"deprecated,omitempty"`
  2409. Security []*SecurityRequirement `protobuf:"bytes,12,rep,name=security,proto3" json:"security,omitempty"`
  2410. VendorExtension []*NamedAny `protobuf:"bytes,13,rep,name=vendor_extension,json=vendorExtension,proto3" json:"vendor_extension,omitempty"`
  2411. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2412. XXX_unrecognized []byte `json:"-"`
  2413. XXX_sizecache int32 `json:"-"`
  2414. }
  2415. func (m *Operation) Reset() { *m = Operation{} }
  2416. func (m *Operation) String() string { return proto.CompactTextString(m) }
  2417. func (*Operation) ProtoMessage() {}
  2418. func (*Operation) Descriptor() ([]byte, []int) {
  2419. return fileDescriptor_a43d10d209cd31c2, []int{36}
  2420. }
  2421. func (m *Operation) XXX_Unmarshal(b []byte) error {
  2422. return xxx_messageInfo_Operation.Unmarshal(m, b)
  2423. }
  2424. func (m *Operation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2425. return xxx_messageInfo_Operation.Marshal(b, m, deterministic)
  2426. }
  2427. func (m *Operation) XXX_Merge(src proto.Message) {
  2428. xxx_messageInfo_Operation.Merge(m, src)
  2429. }
  2430. func (m *Operation) XXX_Size() int {
  2431. return xxx_messageInfo_Operation.Size(m)
  2432. }
  2433. func (m *Operation) XXX_DiscardUnknown() {
  2434. xxx_messageInfo_Operation.DiscardUnknown(m)
  2435. }
  2436. var xxx_messageInfo_Operation proto.InternalMessageInfo
  2437. func (m *Operation) GetTags() []string {
  2438. if m != nil {
  2439. return m.Tags
  2440. }
  2441. return nil
  2442. }
  2443. func (m *Operation) GetSummary() string {
  2444. if m != nil {
  2445. return m.Summary
  2446. }
  2447. return ""
  2448. }
  2449. func (m *Operation) GetDescription() string {
  2450. if m != nil {
  2451. return m.Description
  2452. }
  2453. return ""
  2454. }
  2455. func (m *Operation) GetExternalDocs() *ExternalDocs {
  2456. if m != nil {
  2457. return m.ExternalDocs
  2458. }
  2459. return nil
  2460. }
  2461. func (m *Operation) GetOperationId() string {
  2462. if m != nil {
  2463. return m.OperationId
  2464. }
  2465. return ""
  2466. }
  2467. func (m *Operation) GetProduces() []string {
  2468. if m != nil {
  2469. return m.Produces
  2470. }
  2471. return nil
  2472. }
  2473. func (m *Operation) GetConsumes() []string {
  2474. if m != nil {
  2475. return m.Consumes
  2476. }
  2477. return nil
  2478. }
  2479. func (m *Operation) GetParameters() []*ParametersItem {
  2480. if m != nil {
  2481. return m.Parameters
  2482. }
  2483. return nil
  2484. }
  2485. func (m *Operation) GetResponses() *Responses {
  2486. if m != nil {
  2487. return m.Responses
  2488. }
  2489. return nil
  2490. }
  2491. func (m *Operation) GetSchemes() []string {
  2492. if m != nil {
  2493. return m.Schemes
  2494. }
  2495. return nil
  2496. }
  2497. func (m *Operation) GetDeprecated() bool {
  2498. if m != nil {
  2499. return m.Deprecated
  2500. }
  2501. return false
  2502. }
  2503. func (m *Operation) GetSecurity() []*SecurityRequirement {
  2504. if m != nil {
  2505. return m.Security
  2506. }
  2507. return nil
  2508. }
  2509. func (m *Operation) GetVendorExtension() []*NamedAny {
  2510. if m != nil {
  2511. return m.VendorExtension
  2512. }
  2513. return nil
  2514. }
  2515. type Parameter struct {
  2516. // Types that are valid to be assigned to Oneof:
  2517. // *Parameter_BodyParameter
  2518. // *Parameter_NonBodyParameter
  2519. Oneof isParameter_Oneof `protobuf_oneof:"oneof"`
  2520. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2521. XXX_unrecognized []byte `json:"-"`
  2522. XXX_sizecache int32 `json:"-"`
  2523. }
  2524. func (m *Parameter) Reset() { *m = Parameter{} }
  2525. func (m *Parameter) String() string { return proto.CompactTextString(m) }
  2526. func (*Parameter) ProtoMessage() {}
  2527. func (*Parameter) Descriptor() ([]byte, []int) {
  2528. return fileDescriptor_a43d10d209cd31c2, []int{37}
  2529. }
  2530. func (m *Parameter) XXX_Unmarshal(b []byte) error {
  2531. return xxx_messageInfo_Parameter.Unmarshal(m, b)
  2532. }
  2533. func (m *Parameter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2534. return xxx_messageInfo_Parameter.Marshal(b, m, deterministic)
  2535. }
  2536. func (m *Parameter) XXX_Merge(src proto.Message) {
  2537. xxx_messageInfo_Parameter.Merge(m, src)
  2538. }
  2539. func (m *Parameter) XXX_Size() int {
  2540. return xxx_messageInfo_Parameter.Size(m)
  2541. }
  2542. func (m *Parameter) XXX_DiscardUnknown() {
  2543. xxx_messageInfo_Parameter.DiscardUnknown(m)
  2544. }
  2545. var xxx_messageInfo_Parameter proto.InternalMessageInfo
  2546. type isParameter_Oneof interface {
  2547. isParameter_Oneof()
  2548. }
  2549. type Parameter_BodyParameter struct {
  2550. BodyParameter *BodyParameter `protobuf:"bytes,1,opt,name=body_parameter,json=bodyParameter,proto3,oneof"`
  2551. }
  2552. type Parameter_NonBodyParameter struct {
  2553. NonBodyParameter *NonBodyParameter `protobuf:"bytes,2,opt,name=non_body_parameter,json=nonBodyParameter,proto3,oneof"`
  2554. }
  2555. func (*Parameter_BodyParameter) isParameter_Oneof() {}
  2556. func (*Parameter_NonBodyParameter) isParameter_Oneof() {}
  2557. func (m *Parameter) GetOneof() isParameter_Oneof {
  2558. if m != nil {
  2559. return m.Oneof
  2560. }
  2561. return nil
  2562. }
  2563. func (m *Parameter) GetBodyParameter() *BodyParameter {
  2564. if x, ok := m.GetOneof().(*Parameter_BodyParameter); ok {
  2565. return x.BodyParameter
  2566. }
  2567. return nil
  2568. }
  2569. func (m *Parameter) GetNonBodyParameter() *NonBodyParameter {
  2570. if x, ok := m.GetOneof().(*Parameter_NonBodyParameter); ok {
  2571. return x.NonBodyParameter
  2572. }
  2573. return nil
  2574. }
  2575. // XXX_OneofWrappers is for the internal use of the proto package.
  2576. func (*Parameter) XXX_OneofWrappers() []interface{} {
  2577. return []interface{}{
  2578. (*Parameter_BodyParameter)(nil),
  2579. (*Parameter_NonBodyParameter)(nil),
  2580. }
  2581. }
  2582. // One or more JSON representations for parameters
  2583. type ParameterDefinitions struct {
  2584. AdditionalProperties []*NamedParameter `protobuf:"bytes,1,rep,name=additional_properties,json=additionalProperties,proto3" json:"additional_properties,omitempty"`
  2585. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2586. XXX_unrecognized []byte `json:"-"`
  2587. XXX_sizecache int32 `json:"-"`
  2588. }
  2589. func (m *ParameterDefinitions) Reset() { *m = ParameterDefinitions{} }
  2590. func (m *ParameterDefinitions) String() string { return proto.CompactTextString(m) }
  2591. func (*ParameterDefinitions) ProtoMessage() {}
  2592. func (*ParameterDefinitions) Descriptor() ([]byte, []int) {
  2593. return fileDescriptor_a43d10d209cd31c2, []int{38}
  2594. }
  2595. func (m *ParameterDefinitions) XXX_Unmarshal(b []byte) error {
  2596. return xxx_messageInfo_ParameterDefinitions.Unmarshal(m, b)
  2597. }
  2598. func (m *ParameterDefinitions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2599. return xxx_messageInfo_ParameterDefinitions.Marshal(b, m, deterministic)
  2600. }
  2601. func (m *ParameterDefinitions) XXX_Merge(src proto.Message) {
  2602. xxx_messageInfo_ParameterDefinitions.Merge(m, src)
  2603. }
  2604. func (m *ParameterDefinitions) XXX_Size() int {
  2605. return xxx_messageInfo_ParameterDefinitions.Size(m)
  2606. }
  2607. func (m *ParameterDefinitions) XXX_DiscardUnknown() {
  2608. xxx_messageInfo_ParameterDefinitions.DiscardUnknown(m)
  2609. }
  2610. var xxx_messageInfo_ParameterDefinitions proto.InternalMessageInfo
  2611. func (m *ParameterDefinitions) GetAdditionalProperties() []*NamedParameter {
  2612. if m != nil {
  2613. return m.AdditionalProperties
  2614. }
  2615. return nil
  2616. }
  2617. type ParametersItem struct {
  2618. // Types that are valid to be assigned to Oneof:
  2619. // *ParametersItem_Parameter
  2620. // *ParametersItem_JsonReference
  2621. Oneof isParametersItem_Oneof `protobuf_oneof:"oneof"`
  2622. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2623. XXX_unrecognized []byte `json:"-"`
  2624. XXX_sizecache int32 `json:"-"`
  2625. }
  2626. func (m *ParametersItem) Reset() { *m = ParametersItem{} }
  2627. func (m *ParametersItem) String() string { return proto.CompactTextString(m) }
  2628. func (*ParametersItem) ProtoMessage() {}
  2629. func (*ParametersItem) Descriptor() ([]byte, []int) {
  2630. return fileDescriptor_a43d10d209cd31c2, []int{39}
  2631. }
  2632. func (m *ParametersItem) XXX_Unmarshal(b []byte) error {
  2633. return xxx_messageInfo_ParametersItem.Unmarshal(m, b)
  2634. }
  2635. func (m *ParametersItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2636. return xxx_messageInfo_ParametersItem.Marshal(b, m, deterministic)
  2637. }
  2638. func (m *ParametersItem) XXX_Merge(src proto.Message) {
  2639. xxx_messageInfo_ParametersItem.Merge(m, src)
  2640. }
  2641. func (m *ParametersItem) XXX_Size() int {
  2642. return xxx_messageInfo_ParametersItem.Size(m)
  2643. }
  2644. func (m *ParametersItem) XXX_DiscardUnknown() {
  2645. xxx_messageInfo_ParametersItem.DiscardUnknown(m)
  2646. }
  2647. var xxx_messageInfo_ParametersItem proto.InternalMessageInfo
  2648. type isParametersItem_Oneof interface {
  2649. isParametersItem_Oneof()
  2650. }
  2651. type ParametersItem_Parameter struct {
  2652. Parameter *Parameter `protobuf:"bytes,1,opt,name=parameter,proto3,oneof"`
  2653. }
  2654. type ParametersItem_JsonReference struct {
  2655. JsonReference *JsonReference `protobuf:"bytes,2,opt,name=json_reference,json=jsonReference,proto3,oneof"`
  2656. }
  2657. func (*ParametersItem_Parameter) isParametersItem_Oneof() {}
  2658. func (*ParametersItem_JsonReference) isParametersItem_Oneof() {}
  2659. func (m *ParametersItem) GetOneof() isParametersItem_Oneof {
  2660. if m != nil {
  2661. return m.Oneof
  2662. }
  2663. return nil
  2664. }
  2665. func (m *ParametersItem) GetParameter() *Parameter {
  2666. if x, ok := m.GetOneof().(*ParametersItem_Parameter); ok {
  2667. return x.Parameter
  2668. }
  2669. return nil
  2670. }
  2671. func (m *ParametersItem) GetJsonReference() *JsonReference {
  2672. if x, ok := m.GetOneof().(*ParametersItem_JsonReference); ok {
  2673. return x.JsonReference
  2674. }
  2675. return nil
  2676. }
  2677. // XXX_OneofWrappers is for the internal use of the proto package.
  2678. func (*ParametersItem) XXX_OneofWrappers() []interface{} {
  2679. return []interface{}{
  2680. (*ParametersItem_Parameter)(nil),
  2681. (*ParametersItem_JsonReference)(nil),
  2682. }
  2683. }
  2684. type PathItem struct {
  2685. XRef string `protobuf:"bytes,1,opt,name=_ref,json=Ref,proto3" json:"_ref,omitempty"`
  2686. Get *Operation `protobuf:"bytes,2,opt,name=get,proto3" json:"get,omitempty"`
  2687. Put *Operation `protobuf:"bytes,3,opt,name=put,proto3" json:"put,omitempty"`
  2688. Post *Operation `protobuf:"bytes,4,opt,name=post,proto3" json:"post,omitempty"`
  2689. Delete *Operation `protobuf:"bytes,5,opt,name=delete,proto3" json:"delete,omitempty"`
  2690. Options *Operation `protobuf:"bytes,6,opt,name=options,proto3" json:"options,omitempty"`
  2691. Head *Operation `protobuf:"bytes,7,opt,name=head,proto3" json:"head,omitempty"`
  2692. Patch *Operation `protobuf:"bytes,8,opt,name=patch,proto3" json:"patch,omitempty"`
  2693. // The parameters needed to send a valid API call.
  2694. Parameters []*ParametersItem `protobuf:"bytes,9,rep,name=parameters,proto3" json:"parameters,omitempty"`
  2695. VendorExtension []*NamedAny `protobuf:"bytes,10,rep,name=vendor_extension,json=vendorExtension,proto3" json:"vendor_extension,omitempty"`
  2696. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2697. XXX_unrecognized []byte `json:"-"`
  2698. XXX_sizecache int32 `json:"-"`
  2699. }
  2700. func (m *PathItem) Reset() { *m = PathItem{} }
  2701. func (m *PathItem) String() string { return proto.CompactTextString(m) }
  2702. func (*PathItem) ProtoMessage() {}
  2703. func (*PathItem) Descriptor() ([]byte, []int) {
  2704. return fileDescriptor_a43d10d209cd31c2, []int{40}
  2705. }
  2706. func (m *PathItem) XXX_Unmarshal(b []byte) error {
  2707. return xxx_messageInfo_PathItem.Unmarshal(m, b)
  2708. }
  2709. func (m *PathItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2710. return xxx_messageInfo_PathItem.Marshal(b, m, deterministic)
  2711. }
  2712. func (m *PathItem) XXX_Merge(src proto.Message) {
  2713. xxx_messageInfo_PathItem.Merge(m, src)
  2714. }
  2715. func (m *PathItem) XXX_Size() int {
  2716. return xxx_messageInfo_PathItem.Size(m)
  2717. }
  2718. func (m *PathItem) XXX_DiscardUnknown() {
  2719. xxx_messageInfo_PathItem.DiscardUnknown(m)
  2720. }
  2721. var xxx_messageInfo_PathItem proto.InternalMessageInfo
  2722. func (m *PathItem) GetXRef() string {
  2723. if m != nil {
  2724. return m.XRef
  2725. }
  2726. return ""
  2727. }
  2728. func (m *PathItem) GetGet() *Operation {
  2729. if m != nil {
  2730. return m.Get
  2731. }
  2732. return nil
  2733. }
  2734. func (m *PathItem) GetPut() *Operation {
  2735. if m != nil {
  2736. return m.Put
  2737. }
  2738. return nil
  2739. }
  2740. func (m *PathItem) GetPost() *Operation {
  2741. if m != nil {
  2742. return m.Post
  2743. }
  2744. return nil
  2745. }
  2746. func (m *PathItem) GetDelete() *Operation {
  2747. if m != nil {
  2748. return m.Delete
  2749. }
  2750. return nil
  2751. }
  2752. func (m *PathItem) GetOptions() *Operation {
  2753. if m != nil {
  2754. return m.Options
  2755. }
  2756. return nil
  2757. }
  2758. func (m *PathItem) GetHead() *Operation {
  2759. if m != nil {
  2760. return m.Head
  2761. }
  2762. return nil
  2763. }
  2764. func (m *PathItem) GetPatch() *Operation {
  2765. if m != nil {
  2766. return m.Patch
  2767. }
  2768. return nil
  2769. }
  2770. func (m *PathItem) GetParameters() []*ParametersItem {
  2771. if m != nil {
  2772. return m.Parameters
  2773. }
  2774. return nil
  2775. }
  2776. func (m *PathItem) GetVendorExtension() []*NamedAny {
  2777. if m != nil {
  2778. return m.VendorExtension
  2779. }
  2780. return nil
  2781. }
  2782. type PathParameterSubSchema struct {
  2783. // Determines whether or not this parameter is required or optional.
  2784. Required bool `protobuf:"varint,1,opt,name=required,proto3" json:"required,omitempty"`
  2785. // Determines the location of the parameter.
  2786. In string `protobuf:"bytes,2,opt,name=in,proto3" json:"in,omitempty"`
  2787. // A brief description of the parameter. This could contain examples of use. GitHub Flavored Markdown is allowed.
  2788. Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
  2789. // The name of the parameter.
  2790. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
  2791. Type string `protobuf:"bytes,5,opt,name=type,proto3" json:"type,omitempty"`
  2792. Format string `protobuf:"bytes,6,opt,name=format,proto3" json:"format,omitempty"`
  2793. Items *PrimitivesItems `protobuf:"bytes,7,opt,name=items,proto3" json:"items,omitempty"`
  2794. CollectionFormat string `protobuf:"bytes,8,opt,name=collection_format,json=collectionFormat,proto3" json:"collection_format,omitempty"`
  2795. Default *Any `protobuf:"bytes,9,opt,name=default,proto3" json:"default,omitempty"`
  2796. Maximum float64 `protobuf:"fixed64,10,opt,name=maximum,proto3" json:"maximum,omitempty"`
  2797. ExclusiveMaximum bool `protobuf:"varint,11,opt,name=exclusive_maximum,json=exclusiveMaximum,proto3" json:"exclusive_maximum,omitempty"`
  2798. Minimum float64 `protobuf:"fixed64,12,opt,name=minimum,proto3" json:"minimum,omitempty"`
  2799. ExclusiveMinimum bool `protobuf:"varint,13,opt,name=exclusive_minimum,json=exclusiveMinimum,proto3" json:"exclusive_minimum,omitempty"`
  2800. MaxLength int64 `protobuf:"varint,14,opt,name=max_length,json=maxLength,proto3" json:"max_length,omitempty"`
  2801. MinLength int64 `protobuf:"varint,15,opt,name=min_length,json=minLength,proto3" json:"min_length,omitempty"`
  2802. Pattern string `protobuf:"bytes,16,opt,name=pattern,proto3" json:"pattern,omitempty"`
  2803. MaxItems int64 `protobuf:"varint,17,opt,name=max_items,json=maxItems,proto3" json:"max_items,omitempty"`
  2804. MinItems int64 `protobuf:"varint,18,opt,name=min_items,json=minItems,proto3" json:"min_items,omitempty"`
  2805. UniqueItems bool `protobuf:"varint,19,opt,name=unique_items,json=uniqueItems,proto3" json:"unique_items,omitempty"`
  2806. Enum []*Any `protobuf:"bytes,20,rep,name=enum,proto3" json:"enum,omitempty"`
  2807. MultipleOf float64 `protobuf:"fixed64,21,opt,name=multiple_of,json=multipleOf,proto3" json:"multiple_of,omitempty"`
  2808. VendorExtension []*NamedAny `protobuf:"bytes,22,rep,name=vendor_extension,json=vendorExtension,proto3" json:"vendor_extension,omitempty"`
  2809. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2810. XXX_unrecognized []byte `json:"-"`
  2811. XXX_sizecache int32 `json:"-"`
  2812. }
  2813. func (m *PathParameterSubSchema) Reset() { *m = PathParameterSubSchema{} }
  2814. func (m *PathParameterSubSchema) String() string { return proto.CompactTextString(m) }
  2815. func (*PathParameterSubSchema) ProtoMessage() {}
  2816. func (*PathParameterSubSchema) Descriptor() ([]byte, []int) {
  2817. return fileDescriptor_a43d10d209cd31c2, []int{41}
  2818. }
  2819. func (m *PathParameterSubSchema) XXX_Unmarshal(b []byte) error {
  2820. return xxx_messageInfo_PathParameterSubSchema.Unmarshal(m, b)
  2821. }
  2822. func (m *PathParameterSubSchema) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2823. return xxx_messageInfo_PathParameterSubSchema.Marshal(b, m, deterministic)
  2824. }
  2825. func (m *PathParameterSubSchema) XXX_Merge(src proto.Message) {
  2826. xxx_messageInfo_PathParameterSubSchema.Merge(m, src)
  2827. }
  2828. func (m *PathParameterSubSchema) XXX_Size() int {
  2829. return xxx_messageInfo_PathParameterSubSchema.Size(m)
  2830. }
  2831. func (m *PathParameterSubSchema) XXX_DiscardUnknown() {
  2832. xxx_messageInfo_PathParameterSubSchema.DiscardUnknown(m)
  2833. }
  2834. var xxx_messageInfo_PathParameterSubSchema proto.InternalMessageInfo
  2835. func (m *PathParameterSubSchema) GetRequired() bool {
  2836. if m != nil {
  2837. return m.Required
  2838. }
  2839. return false
  2840. }
  2841. func (m *PathParameterSubSchema) GetIn() string {
  2842. if m != nil {
  2843. return m.In
  2844. }
  2845. return ""
  2846. }
  2847. func (m *PathParameterSubSchema) GetDescription() string {
  2848. if m != nil {
  2849. return m.Description
  2850. }
  2851. return ""
  2852. }
  2853. func (m *PathParameterSubSchema) GetName() string {
  2854. if m != nil {
  2855. return m.Name
  2856. }
  2857. return ""
  2858. }
  2859. func (m *PathParameterSubSchema) GetType() string {
  2860. if m != nil {
  2861. return m.Type
  2862. }
  2863. return ""
  2864. }
  2865. func (m *PathParameterSubSchema) GetFormat() string {
  2866. if m != nil {
  2867. return m.Format
  2868. }
  2869. return ""
  2870. }
  2871. func (m *PathParameterSubSchema) GetItems() *PrimitivesItems {
  2872. if m != nil {
  2873. return m.Items
  2874. }
  2875. return nil
  2876. }
  2877. func (m *PathParameterSubSchema) GetCollectionFormat() string {
  2878. if m != nil {
  2879. return m.CollectionFormat
  2880. }
  2881. return ""
  2882. }
  2883. func (m *PathParameterSubSchema) GetDefault() *Any {
  2884. if m != nil {
  2885. return m.Default
  2886. }
  2887. return nil
  2888. }
  2889. func (m *PathParameterSubSchema) GetMaximum() float64 {
  2890. if m != nil {
  2891. return m.Maximum
  2892. }
  2893. return 0
  2894. }
  2895. func (m *PathParameterSubSchema) GetExclusiveMaximum() bool {
  2896. if m != nil {
  2897. return m.ExclusiveMaximum
  2898. }
  2899. return false
  2900. }
  2901. func (m *PathParameterSubSchema) GetMinimum() float64 {
  2902. if m != nil {
  2903. return m.Minimum
  2904. }
  2905. return 0
  2906. }
  2907. func (m *PathParameterSubSchema) GetExclusiveMinimum() bool {
  2908. if m != nil {
  2909. return m.ExclusiveMinimum
  2910. }
  2911. return false
  2912. }
  2913. func (m *PathParameterSubSchema) GetMaxLength() int64 {
  2914. if m != nil {
  2915. return m.MaxLength
  2916. }
  2917. return 0
  2918. }
  2919. func (m *PathParameterSubSchema) GetMinLength() int64 {
  2920. if m != nil {
  2921. return m.MinLength
  2922. }
  2923. return 0
  2924. }
  2925. func (m *PathParameterSubSchema) GetPattern() string {
  2926. if m != nil {
  2927. return m.Pattern
  2928. }
  2929. return ""
  2930. }
  2931. func (m *PathParameterSubSchema) GetMaxItems() int64 {
  2932. if m != nil {
  2933. return m.MaxItems
  2934. }
  2935. return 0
  2936. }
  2937. func (m *PathParameterSubSchema) GetMinItems() int64 {
  2938. if m != nil {
  2939. return m.MinItems
  2940. }
  2941. return 0
  2942. }
  2943. func (m *PathParameterSubSchema) GetUniqueItems() bool {
  2944. if m != nil {
  2945. return m.UniqueItems
  2946. }
  2947. return false
  2948. }
  2949. func (m *PathParameterSubSchema) GetEnum() []*Any {
  2950. if m != nil {
  2951. return m.Enum
  2952. }
  2953. return nil
  2954. }
  2955. func (m *PathParameterSubSchema) GetMultipleOf() float64 {
  2956. if m != nil {
  2957. return m.MultipleOf
  2958. }
  2959. return 0
  2960. }
  2961. func (m *PathParameterSubSchema) GetVendorExtension() []*NamedAny {
  2962. if m != nil {
  2963. return m.VendorExtension
  2964. }
  2965. return nil
  2966. }
  2967. // Relative paths to the individual endpoints. They must be relative to the 'basePath'.
  2968. type Paths struct {
  2969. VendorExtension []*NamedAny `protobuf:"bytes,1,rep,name=vendor_extension,json=vendorExtension,proto3" json:"vendor_extension,omitempty"`
  2970. Path []*NamedPathItem `protobuf:"bytes,2,rep,name=path,proto3" json:"path,omitempty"`
  2971. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2972. XXX_unrecognized []byte `json:"-"`
  2973. XXX_sizecache int32 `json:"-"`
  2974. }
  2975. func (m *Paths) Reset() { *m = Paths{} }
  2976. func (m *Paths) String() string { return proto.CompactTextString(m) }
  2977. func (*Paths) ProtoMessage() {}
  2978. func (*Paths) Descriptor() ([]byte, []int) {
  2979. return fileDescriptor_a43d10d209cd31c2, []int{42}
  2980. }
  2981. func (m *Paths) XXX_Unmarshal(b []byte) error {
  2982. return xxx_messageInfo_Paths.Unmarshal(m, b)
  2983. }
  2984. func (m *Paths) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2985. return xxx_messageInfo_Paths.Marshal(b, m, deterministic)
  2986. }
  2987. func (m *Paths) XXX_Merge(src proto.Message) {
  2988. xxx_messageInfo_Paths.Merge(m, src)
  2989. }
  2990. func (m *Paths) XXX_Size() int {
  2991. return xxx_messageInfo_Paths.Size(m)
  2992. }
  2993. func (m *Paths) XXX_DiscardUnknown() {
  2994. xxx_messageInfo_Paths.DiscardUnknown(m)
  2995. }
  2996. var xxx_messageInfo_Paths proto.InternalMessageInfo
  2997. func (m *Paths) GetVendorExtension() []*NamedAny {
  2998. if m != nil {
  2999. return m.VendorExtension
  3000. }
  3001. return nil
  3002. }
  3003. func (m *Paths) GetPath() []*NamedPathItem {
  3004. if m != nil {
  3005. return m.Path
  3006. }
  3007. return nil
  3008. }
  3009. type PrimitivesItems struct {
  3010. Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
  3011. Format string `protobuf:"bytes,2,opt,name=format,proto3" json:"format,omitempty"`
  3012. Items *PrimitivesItems `protobuf:"bytes,3,opt,name=items,proto3" json:"items,omitempty"`
  3013. CollectionFormat string `protobuf:"bytes,4,opt,name=collection_format,json=collectionFormat,proto3" json:"collection_format,omitempty"`
  3014. Default *Any `protobuf:"bytes,5,opt,name=default,proto3" json:"default,omitempty"`
  3015. Maximum float64 `protobuf:"fixed64,6,opt,name=maximum,proto3" json:"maximum,omitempty"`
  3016. ExclusiveMaximum bool `protobuf:"varint,7,opt,name=exclusive_maximum,json=exclusiveMaximum,proto3" json:"exclusive_maximum,omitempty"`
  3017. Minimum float64 `protobuf:"fixed64,8,opt,name=minimum,proto3" json:"minimum,omitempty"`
  3018. ExclusiveMinimum bool `protobuf:"varint,9,opt,name=exclusive_minimum,json=exclusiveMinimum,proto3" json:"exclusive_minimum,omitempty"`
  3019. MaxLength int64 `protobuf:"varint,10,opt,name=max_length,json=maxLength,proto3" json:"max_length,omitempty"`
  3020. MinLength int64 `protobuf:"varint,11,opt,name=min_length,json=minLength,proto3" json:"min_length,omitempty"`
  3021. Pattern string `protobuf:"bytes,12,opt,name=pattern,proto3" json:"pattern,omitempty"`
  3022. MaxItems int64 `protobuf:"varint,13,opt,name=max_items,json=maxItems,proto3" json:"max_items,omitempty"`
  3023. MinItems int64 `protobuf:"varint,14,opt,name=min_items,json=minItems,proto3" json:"min_items,omitempty"`
  3024. UniqueItems bool `protobuf:"varint,15,opt,name=unique_items,json=uniqueItems,proto3" json:"unique_items,omitempty"`
  3025. Enum []*Any `protobuf:"bytes,16,rep,name=enum,proto3" json:"enum,omitempty"`
  3026. MultipleOf float64 `protobuf:"fixed64,17,opt,name=multiple_of,json=multipleOf,proto3" json:"multiple_of,omitempty"`
  3027. VendorExtension []*NamedAny `protobuf:"bytes,18,rep,name=vendor_extension,json=vendorExtension,proto3" json:"vendor_extension,omitempty"`
  3028. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3029. XXX_unrecognized []byte `json:"-"`
  3030. XXX_sizecache int32 `json:"-"`
  3031. }
  3032. func (m *PrimitivesItems) Reset() { *m = PrimitivesItems{} }
  3033. func (m *PrimitivesItems) String() string { return proto.CompactTextString(m) }
  3034. func (*PrimitivesItems) ProtoMessage() {}
  3035. func (*PrimitivesItems) Descriptor() ([]byte, []int) {
  3036. return fileDescriptor_a43d10d209cd31c2, []int{43}
  3037. }
  3038. func (m *PrimitivesItems) XXX_Unmarshal(b []byte) error {
  3039. return xxx_messageInfo_PrimitivesItems.Unmarshal(m, b)
  3040. }
  3041. func (m *PrimitivesItems) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3042. return xxx_messageInfo_PrimitivesItems.Marshal(b, m, deterministic)
  3043. }
  3044. func (m *PrimitivesItems) XXX_Merge(src proto.Message) {
  3045. xxx_messageInfo_PrimitivesItems.Merge(m, src)
  3046. }
  3047. func (m *PrimitivesItems) XXX_Size() int {
  3048. return xxx_messageInfo_PrimitivesItems.Size(m)
  3049. }
  3050. func (m *PrimitivesItems) XXX_DiscardUnknown() {
  3051. xxx_messageInfo_PrimitivesItems.DiscardUnknown(m)
  3052. }
  3053. var xxx_messageInfo_PrimitivesItems proto.InternalMessageInfo
  3054. func (m *PrimitivesItems) GetType() string {
  3055. if m != nil {
  3056. return m.Type
  3057. }
  3058. return ""
  3059. }
  3060. func (m *PrimitivesItems) GetFormat() string {
  3061. if m != nil {
  3062. return m.Format
  3063. }
  3064. return ""
  3065. }
  3066. func (m *PrimitivesItems) GetItems() *PrimitivesItems {
  3067. if m != nil {
  3068. return m.Items
  3069. }
  3070. return nil
  3071. }
  3072. func (m *PrimitivesItems) GetCollectionFormat() string {
  3073. if m != nil {
  3074. return m.CollectionFormat
  3075. }
  3076. return ""
  3077. }
  3078. func (m *PrimitivesItems) GetDefault() *Any {
  3079. if m != nil {
  3080. return m.Default
  3081. }
  3082. return nil
  3083. }
  3084. func (m *PrimitivesItems) GetMaximum() float64 {
  3085. if m != nil {
  3086. return m.Maximum
  3087. }
  3088. return 0
  3089. }
  3090. func (m *PrimitivesItems) GetExclusiveMaximum() bool {
  3091. if m != nil {
  3092. return m.ExclusiveMaximum
  3093. }
  3094. return false
  3095. }
  3096. func (m *PrimitivesItems) GetMinimum() float64 {
  3097. if m != nil {
  3098. return m.Minimum
  3099. }
  3100. return 0
  3101. }
  3102. func (m *PrimitivesItems) GetExclusiveMinimum() bool {
  3103. if m != nil {
  3104. return m.ExclusiveMinimum
  3105. }
  3106. return false
  3107. }
  3108. func (m *PrimitivesItems) GetMaxLength() int64 {
  3109. if m != nil {
  3110. return m.MaxLength
  3111. }
  3112. return 0
  3113. }
  3114. func (m *PrimitivesItems) GetMinLength() int64 {
  3115. if m != nil {
  3116. return m.MinLength
  3117. }
  3118. return 0
  3119. }
  3120. func (m *PrimitivesItems) GetPattern() string {
  3121. if m != nil {
  3122. return m.Pattern
  3123. }
  3124. return ""
  3125. }
  3126. func (m *PrimitivesItems) GetMaxItems() int64 {
  3127. if m != nil {
  3128. return m.MaxItems
  3129. }
  3130. return 0
  3131. }
  3132. func (m *PrimitivesItems) GetMinItems() int64 {
  3133. if m != nil {
  3134. return m.MinItems
  3135. }
  3136. return 0
  3137. }
  3138. func (m *PrimitivesItems) GetUniqueItems() bool {
  3139. if m != nil {
  3140. return m.UniqueItems
  3141. }
  3142. return false
  3143. }
  3144. func (m *PrimitivesItems) GetEnum() []*Any {
  3145. if m != nil {
  3146. return m.Enum
  3147. }
  3148. return nil
  3149. }
  3150. func (m *PrimitivesItems) GetMultipleOf() float64 {
  3151. if m != nil {
  3152. return m.MultipleOf
  3153. }
  3154. return 0
  3155. }
  3156. func (m *PrimitivesItems) GetVendorExtension() []*NamedAny {
  3157. if m != nil {
  3158. return m.VendorExtension
  3159. }
  3160. return nil
  3161. }
  3162. type Properties struct {
  3163. AdditionalProperties []*NamedSchema `protobuf:"bytes,1,rep,name=additional_properties,json=additionalProperties,proto3" json:"additional_properties,omitempty"`
  3164. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3165. XXX_unrecognized []byte `json:"-"`
  3166. XXX_sizecache int32 `json:"-"`
  3167. }
  3168. func (m *Properties) Reset() { *m = Properties{} }
  3169. func (m *Properties) String() string { return proto.CompactTextString(m) }
  3170. func (*Properties) ProtoMessage() {}
  3171. func (*Properties) Descriptor() ([]byte, []int) {
  3172. return fileDescriptor_a43d10d209cd31c2, []int{44}
  3173. }
  3174. func (m *Properties) XXX_Unmarshal(b []byte) error {
  3175. return xxx_messageInfo_Properties.Unmarshal(m, b)
  3176. }
  3177. func (m *Properties) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3178. return xxx_messageInfo_Properties.Marshal(b, m, deterministic)
  3179. }
  3180. func (m *Properties) XXX_Merge(src proto.Message) {
  3181. xxx_messageInfo_Properties.Merge(m, src)
  3182. }
  3183. func (m *Properties) XXX_Size() int {
  3184. return xxx_messageInfo_Properties.Size(m)
  3185. }
  3186. func (m *Properties) XXX_DiscardUnknown() {
  3187. xxx_messageInfo_Properties.DiscardUnknown(m)
  3188. }
  3189. var xxx_messageInfo_Properties proto.InternalMessageInfo
  3190. func (m *Properties) GetAdditionalProperties() []*NamedSchema {
  3191. if m != nil {
  3192. return m.AdditionalProperties
  3193. }
  3194. return nil
  3195. }
  3196. type QueryParameterSubSchema struct {
  3197. // Determines whether or not this parameter is required or optional.
  3198. Required bool `protobuf:"varint,1,opt,name=required,proto3" json:"required,omitempty"`
  3199. // Determines the location of the parameter.
  3200. In string `protobuf:"bytes,2,opt,name=in,proto3" json:"in,omitempty"`
  3201. // A brief description of the parameter. This could contain examples of use. GitHub Flavored Markdown is allowed.
  3202. Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
  3203. // The name of the parameter.
  3204. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
  3205. // allows sending a parameter by name only or with an empty value.
  3206. AllowEmptyValue bool `protobuf:"varint,5,opt,name=allow_empty_value,json=allowEmptyValue,proto3" json:"allow_empty_value,omitempty"`
  3207. Type string `protobuf:"bytes,6,opt,name=type,proto3" json:"type,omitempty"`
  3208. Format string `protobuf:"bytes,7,opt,name=format,proto3" json:"format,omitempty"`
  3209. Items *PrimitivesItems `protobuf:"bytes,8,opt,name=items,proto3" json:"items,omitempty"`
  3210. CollectionFormat string `protobuf:"bytes,9,opt,name=collection_format,json=collectionFormat,proto3" json:"collection_format,omitempty"`
  3211. Default *Any `protobuf:"bytes,10,opt,name=default,proto3" json:"default,omitempty"`
  3212. Maximum float64 `protobuf:"fixed64,11,opt,name=maximum,proto3" json:"maximum,omitempty"`
  3213. ExclusiveMaximum bool `protobuf:"varint,12,opt,name=exclusive_maximum,json=exclusiveMaximum,proto3" json:"exclusive_maximum,omitempty"`
  3214. Minimum float64 `protobuf:"fixed64,13,opt,name=minimum,proto3" json:"minimum,omitempty"`
  3215. ExclusiveMinimum bool `protobuf:"varint,14,opt,name=exclusive_minimum,json=exclusiveMinimum,proto3" json:"exclusive_minimum,omitempty"`
  3216. MaxLength int64 `protobuf:"varint,15,opt,name=max_length,json=maxLength,proto3" json:"max_length,omitempty"`
  3217. MinLength int64 `protobuf:"varint,16,opt,name=min_length,json=minLength,proto3" json:"min_length,omitempty"`
  3218. Pattern string `protobuf:"bytes,17,opt,name=pattern,proto3" json:"pattern,omitempty"`
  3219. MaxItems int64 `protobuf:"varint,18,opt,name=max_items,json=maxItems,proto3" json:"max_items,omitempty"`
  3220. MinItems int64 `protobuf:"varint,19,opt,name=min_items,json=minItems,proto3" json:"min_items,omitempty"`
  3221. UniqueItems bool `protobuf:"varint,20,opt,name=unique_items,json=uniqueItems,proto3" json:"unique_items,omitempty"`
  3222. Enum []*Any `protobuf:"bytes,21,rep,name=enum,proto3" json:"enum,omitempty"`
  3223. MultipleOf float64 `protobuf:"fixed64,22,opt,name=multiple_of,json=multipleOf,proto3" json:"multiple_of,omitempty"`
  3224. VendorExtension []*NamedAny `protobuf:"bytes,23,rep,name=vendor_extension,json=vendorExtension,proto3" json:"vendor_extension,omitempty"`
  3225. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3226. XXX_unrecognized []byte `json:"-"`
  3227. XXX_sizecache int32 `json:"-"`
  3228. }
  3229. func (m *QueryParameterSubSchema) Reset() { *m = QueryParameterSubSchema{} }
  3230. func (m *QueryParameterSubSchema) String() string { return proto.CompactTextString(m) }
  3231. func (*QueryParameterSubSchema) ProtoMessage() {}
  3232. func (*QueryParameterSubSchema) Descriptor() ([]byte, []int) {
  3233. return fileDescriptor_a43d10d209cd31c2, []int{45}
  3234. }
  3235. func (m *QueryParameterSubSchema) XXX_Unmarshal(b []byte) error {
  3236. return xxx_messageInfo_QueryParameterSubSchema.Unmarshal(m, b)
  3237. }
  3238. func (m *QueryParameterSubSchema) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3239. return xxx_messageInfo_QueryParameterSubSchema.Marshal(b, m, deterministic)
  3240. }
  3241. func (m *QueryParameterSubSchema) XXX_Merge(src proto.Message) {
  3242. xxx_messageInfo_QueryParameterSubSchema.Merge(m, src)
  3243. }
  3244. func (m *QueryParameterSubSchema) XXX_Size() int {
  3245. return xxx_messageInfo_QueryParameterSubSchema.Size(m)
  3246. }
  3247. func (m *QueryParameterSubSchema) XXX_DiscardUnknown() {
  3248. xxx_messageInfo_QueryParameterSubSchema.DiscardUnknown(m)
  3249. }
  3250. var xxx_messageInfo_QueryParameterSubSchema proto.InternalMessageInfo
  3251. func (m *QueryParameterSubSchema) GetRequired() bool {
  3252. if m != nil {
  3253. return m.Required
  3254. }
  3255. return false
  3256. }
  3257. func (m *QueryParameterSubSchema) GetIn() string {
  3258. if m != nil {
  3259. return m.In
  3260. }
  3261. return ""
  3262. }
  3263. func (m *QueryParameterSubSchema) GetDescription() string {
  3264. if m != nil {
  3265. return m.Description
  3266. }
  3267. return ""
  3268. }
  3269. func (m *QueryParameterSubSchema) GetName() string {
  3270. if m != nil {
  3271. return m.Name
  3272. }
  3273. return ""
  3274. }
  3275. func (m *QueryParameterSubSchema) GetAllowEmptyValue() bool {
  3276. if m != nil {
  3277. return m.AllowEmptyValue
  3278. }
  3279. return false
  3280. }
  3281. func (m *QueryParameterSubSchema) GetType() string {
  3282. if m != nil {
  3283. return m.Type
  3284. }
  3285. return ""
  3286. }
  3287. func (m *QueryParameterSubSchema) GetFormat() string {
  3288. if m != nil {
  3289. return m.Format
  3290. }
  3291. return ""
  3292. }
  3293. func (m *QueryParameterSubSchema) GetItems() *PrimitivesItems {
  3294. if m != nil {
  3295. return m.Items
  3296. }
  3297. return nil
  3298. }
  3299. func (m *QueryParameterSubSchema) GetCollectionFormat() string {
  3300. if m != nil {
  3301. return m.CollectionFormat
  3302. }
  3303. return ""
  3304. }
  3305. func (m *QueryParameterSubSchema) GetDefault() *Any {
  3306. if m != nil {
  3307. return m.Default
  3308. }
  3309. return nil
  3310. }
  3311. func (m *QueryParameterSubSchema) GetMaximum() float64 {
  3312. if m != nil {
  3313. return m.Maximum
  3314. }
  3315. return 0
  3316. }
  3317. func (m *QueryParameterSubSchema) GetExclusiveMaximum() bool {
  3318. if m != nil {
  3319. return m.ExclusiveMaximum
  3320. }
  3321. return false
  3322. }
  3323. func (m *QueryParameterSubSchema) GetMinimum() float64 {
  3324. if m != nil {
  3325. return m.Minimum
  3326. }
  3327. return 0
  3328. }
  3329. func (m *QueryParameterSubSchema) GetExclusiveMinimum() bool {
  3330. if m != nil {
  3331. return m.ExclusiveMinimum
  3332. }
  3333. return false
  3334. }
  3335. func (m *QueryParameterSubSchema) GetMaxLength() int64 {
  3336. if m != nil {
  3337. return m.MaxLength
  3338. }
  3339. return 0
  3340. }
  3341. func (m *QueryParameterSubSchema) GetMinLength() int64 {
  3342. if m != nil {
  3343. return m.MinLength
  3344. }
  3345. return 0
  3346. }
  3347. func (m *QueryParameterSubSchema) GetPattern() string {
  3348. if m != nil {
  3349. return m.Pattern
  3350. }
  3351. return ""
  3352. }
  3353. func (m *QueryParameterSubSchema) GetMaxItems() int64 {
  3354. if m != nil {
  3355. return m.MaxItems
  3356. }
  3357. return 0
  3358. }
  3359. func (m *QueryParameterSubSchema) GetMinItems() int64 {
  3360. if m != nil {
  3361. return m.MinItems
  3362. }
  3363. return 0
  3364. }
  3365. func (m *QueryParameterSubSchema) GetUniqueItems() bool {
  3366. if m != nil {
  3367. return m.UniqueItems
  3368. }
  3369. return false
  3370. }
  3371. func (m *QueryParameterSubSchema) GetEnum() []*Any {
  3372. if m != nil {
  3373. return m.Enum
  3374. }
  3375. return nil
  3376. }
  3377. func (m *QueryParameterSubSchema) GetMultipleOf() float64 {
  3378. if m != nil {
  3379. return m.MultipleOf
  3380. }
  3381. return 0
  3382. }
  3383. func (m *QueryParameterSubSchema) GetVendorExtension() []*NamedAny {
  3384. if m != nil {
  3385. return m.VendorExtension
  3386. }
  3387. return nil
  3388. }
  3389. type Response struct {
  3390. Description string `protobuf:"bytes,1,opt,name=description,proto3" json:"description,omitempty"`
  3391. Schema *SchemaItem `protobuf:"bytes,2,opt,name=schema,proto3" json:"schema,omitempty"`
  3392. Headers *Headers `protobuf:"bytes,3,opt,name=headers,proto3" json:"headers,omitempty"`
  3393. Examples *Examples `protobuf:"bytes,4,opt,name=examples,proto3" json:"examples,omitempty"`
  3394. VendorExtension []*NamedAny `protobuf:"bytes,5,rep,name=vendor_extension,json=vendorExtension,proto3" json:"vendor_extension,omitempty"`
  3395. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3396. XXX_unrecognized []byte `json:"-"`
  3397. XXX_sizecache int32 `json:"-"`
  3398. }
  3399. func (m *Response) Reset() { *m = Response{} }
  3400. func (m *Response) String() string { return proto.CompactTextString(m) }
  3401. func (*Response) ProtoMessage() {}
  3402. func (*Response) Descriptor() ([]byte, []int) {
  3403. return fileDescriptor_a43d10d209cd31c2, []int{46}
  3404. }
  3405. func (m *Response) XXX_Unmarshal(b []byte) error {
  3406. return xxx_messageInfo_Response.Unmarshal(m, b)
  3407. }
  3408. func (m *Response) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3409. return xxx_messageInfo_Response.Marshal(b, m, deterministic)
  3410. }
  3411. func (m *Response) XXX_Merge(src proto.Message) {
  3412. xxx_messageInfo_Response.Merge(m, src)
  3413. }
  3414. func (m *Response) XXX_Size() int {
  3415. return xxx_messageInfo_Response.Size(m)
  3416. }
  3417. func (m *Response) XXX_DiscardUnknown() {
  3418. xxx_messageInfo_Response.DiscardUnknown(m)
  3419. }
  3420. var xxx_messageInfo_Response proto.InternalMessageInfo
  3421. func (m *Response) GetDescription() string {
  3422. if m != nil {
  3423. return m.Description
  3424. }
  3425. return ""
  3426. }
  3427. func (m *Response) GetSchema() *SchemaItem {
  3428. if m != nil {
  3429. return m.Schema
  3430. }
  3431. return nil
  3432. }
  3433. func (m *Response) GetHeaders() *Headers {
  3434. if m != nil {
  3435. return m.Headers
  3436. }
  3437. return nil
  3438. }
  3439. func (m *Response) GetExamples() *Examples {
  3440. if m != nil {
  3441. return m.Examples
  3442. }
  3443. return nil
  3444. }
  3445. func (m *Response) GetVendorExtension() []*NamedAny {
  3446. if m != nil {
  3447. return m.VendorExtension
  3448. }
  3449. return nil
  3450. }
  3451. // One or more JSON representations for parameters
  3452. type ResponseDefinitions struct {
  3453. AdditionalProperties []*NamedResponse `protobuf:"bytes,1,rep,name=additional_properties,json=additionalProperties,proto3" json:"additional_properties,omitempty"`
  3454. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3455. XXX_unrecognized []byte `json:"-"`
  3456. XXX_sizecache int32 `json:"-"`
  3457. }
  3458. func (m *ResponseDefinitions) Reset() { *m = ResponseDefinitions{} }
  3459. func (m *ResponseDefinitions) String() string { return proto.CompactTextString(m) }
  3460. func (*ResponseDefinitions) ProtoMessage() {}
  3461. func (*ResponseDefinitions) Descriptor() ([]byte, []int) {
  3462. return fileDescriptor_a43d10d209cd31c2, []int{47}
  3463. }
  3464. func (m *ResponseDefinitions) XXX_Unmarshal(b []byte) error {
  3465. return xxx_messageInfo_ResponseDefinitions.Unmarshal(m, b)
  3466. }
  3467. func (m *ResponseDefinitions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3468. return xxx_messageInfo_ResponseDefinitions.Marshal(b, m, deterministic)
  3469. }
  3470. func (m *ResponseDefinitions) XXX_Merge(src proto.Message) {
  3471. xxx_messageInfo_ResponseDefinitions.Merge(m, src)
  3472. }
  3473. func (m *ResponseDefinitions) XXX_Size() int {
  3474. return xxx_messageInfo_ResponseDefinitions.Size(m)
  3475. }
  3476. func (m *ResponseDefinitions) XXX_DiscardUnknown() {
  3477. xxx_messageInfo_ResponseDefinitions.DiscardUnknown(m)
  3478. }
  3479. var xxx_messageInfo_ResponseDefinitions proto.InternalMessageInfo
  3480. func (m *ResponseDefinitions) GetAdditionalProperties() []*NamedResponse {
  3481. if m != nil {
  3482. return m.AdditionalProperties
  3483. }
  3484. return nil
  3485. }
  3486. type ResponseValue struct {
  3487. // Types that are valid to be assigned to Oneof:
  3488. // *ResponseValue_Response
  3489. // *ResponseValue_JsonReference
  3490. Oneof isResponseValue_Oneof `protobuf_oneof:"oneof"`
  3491. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3492. XXX_unrecognized []byte `json:"-"`
  3493. XXX_sizecache int32 `json:"-"`
  3494. }
  3495. func (m *ResponseValue) Reset() { *m = ResponseValue{} }
  3496. func (m *ResponseValue) String() string { return proto.CompactTextString(m) }
  3497. func (*ResponseValue) ProtoMessage() {}
  3498. func (*ResponseValue) Descriptor() ([]byte, []int) {
  3499. return fileDescriptor_a43d10d209cd31c2, []int{48}
  3500. }
  3501. func (m *ResponseValue) XXX_Unmarshal(b []byte) error {
  3502. return xxx_messageInfo_ResponseValue.Unmarshal(m, b)
  3503. }
  3504. func (m *ResponseValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3505. return xxx_messageInfo_ResponseValue.Marshal(b, m, deterministic)
  3506. }
  3507. func (m *ResponseValue) XXX_Merge(src proto.Message) {
  3508. xxx_messageInfo_ResponseValue.Merge(m, src)
  3509. }
  3510. func (m *ResponseValue) XXX_Size() int {
  3511. return xxx_messageInfo_ResponseValue.Size(m)
  3512. }
  3513. func (m *ResponseValue) XXX_DiscardUnknown() {
  3514. xxx_messageInfo_ResponseValue.DiscardUnknown(m)
  3515. }
  3516. var xxx_messageInfo_ResponseValue proto.InternalMessageInfo
  3517. type isResponseValue_Oneof interface {
  3518. isResponseValue_Oneof()
  3519. }
  3520. type ResponseValue_Response struct {
  3521. Response *Response `protobuf:"bytes,1,opt,name=response,proto3,oneof"`
  3522. }
  3523. type ResponseValue_JsonReference struct {
  3524. JsonReference *JsonReference `protobuf:"bytes,2,opt,name=json_reference,json=jsonReference,proto3,oneof"`
  3525. }
  3526. func (*ResponseValue_Response) isResponseValue_Oneof() {}
  3527. func (*ResponseValue_JsonReference) isResponseValue_Oneof() {}
  3528. func (m *ResponseValue) GetOneof() isResponseValue_Oneof {
  3529. if m != nil {
  3530. return m.Oneof
  3531. }
  3532. return nil
  3533. }
  3534. func (m *ResponseValue) GetResponse() *Response {
  3535. if x, ok := m.GetOneof().(*ResponseValue_Response); ok {
  3536. return x.Response
  3537. }
  3538. return nil
  3539. }
  3540. func (m *ResponseValue) GetJsonReference() *JsonReference {
  3541. if x, ok := m.GetOneof().(*ResponseValue_JsonReference); ok {
  3542. return x.JsonReference
  3543. }
  3544. return nil
  3545. }
  3546. // XXX_OneofWrappers is for the internal use of the proto package.
  3547. func (*ResponseValue) XXX_OneofWrappers() []interface{} {
  3548. return []interface{}{
  3549. (*ResponseValue_Response)(nil),
  3550. (*ResponseValue_JsonReference)(nil),
  3551. }
  3552. }
  3553. // Response objects names can either be any valid HTTP status code or 'default'.
  3554. type Responses struct {
  3555. ResponseCode []*NamedResponseValue `protobuf:"bytes,1,rep,name=response_code,json=responseCode,proto3" json:"response_code,omitempty"`
  3556. VendorExtension []*NamedAny `protobuf:"bytes,2,rep,name=vendor_extension,json=vendorExtension,proto3" json:"vendor_extension,omitempty"`
  3557. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3558. XXX_unrecognized []byte `json:"-"`
  3559. XXX_sizecache int32 `json:"-"`
  3560. }
  3561. func (m *Responses) Reset() { *m = Responses{} }
  3562. func (m *Responses) String() string { return proto.CompactTextString(m) }
  3563. func (*Responses) ProtoMessage() {}
  3564. func (*Responses) Descriptor() ([]byte, []int) {
  3565. return fileDescriptor_a43d10d209cd31c2, []int{49}
  3566. }
  3567. func (m *Responses) XXX_Unmarshal(b []byte) error {
  3568. return xxx_messageInfo_Responses.Unmarshal(m, b)
  3569. }
  3570. func (m *Responses) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3571. return xxx_messageInfo_Responses.Marshal(b, m, deterministic)
  3572. }
  3573. func (m *Responses) XXX_Merge(src proto.Message) {
  3574. xxx_messageInfo_Responses.Merge(m, src)
  3575. }
  3576. func (m *Responses) XXX_Size() int {
  3577. return xxx_messageInfo_Responses.Size(m)
  3578. }
  3579. func (m *Responses) XXX_DiscardUnknown() {
  3580. xxx_messageInfo_Responses.DiscardUnknown(m)
  3581. }
  3582. var xxx_messageInfo_Responses proto.InternalMessageInfo
  3583. func (m *Responses) GetResponseCode() []*NamedResponseValue {
  3584. if m != nil {
  3585. return m.ResponseCode
  3586. }
  3587. return nil
  3588. }
  3589. func (m *Responses) GetVendorExtension() []*NamedAny {
  3590. if m != nil {
  3591. return m.VendorExtension
  3592. }
  3593. return nil
  3594. }
  3595. // A deterministic version of a JSON Schema object.
  3596. type Schema struct {
  3597. XRef string `protobuf:"bytes,1,opt,name=_ref,json=Ref,proto3" json:"_ref,omitempty"`
  3598. Format string `protobuf:"bytes,2,opt,name=format,proto3" json:"format,omitempty"`
  3599. Title string `protobuf:"bytes,3,opt,name=title,proto3" json:"title,omitempty"`
  3600. Description string `protobuf:"bytes,4,opt,name=description,proto3" json:"description,omitempty"`
  3601. Default *Any `protobuf:"bytes,5,opt,name=default,proto3" json:"default,omitempty"`
  3602. MultipleOf float64 `protobuf:"fixed64,6,opt,name=multiple_of,json=multipleOf,proto3" json:"multiple_of,omitempty"`
  3603. Maximum float64 `protobuf:"fixed64,7,opt,name=maximum,proto3" json:"maximum,omitempty"`
  3604. ExclusiveMaximum bool `protobuf:"varint,8,opt,name=exclusive_maximum,json=exclusiveMaximum,proto3" json:"exclusive_maximum,omitempty"`
  3605. Minimum float64 `protobuf:"fixed64,9,opt,name=minimum,proto3" json:"minimum,omitempty"`
  3606. ExclusiveMinimum bool `protobuf:"varint,10,opt,name=exclusive_minimum,json=exclusiveMinimum,proto3" json:"exclusive_minimum,omitempty"`
  3607. MaxLength int64 `protobuf:"varint,11,opt,name=max_length,json=maxLength,proto3" json:"max_length,omitempty"`
  3608. MinLength int64 `protobuf:"varint,12,opt,name=min_length,json=minLength,proto3" json:"min_length,omitempty"`
  3609. Pattern string `protobuf:"bytes,13,opt,name=pattern,proto3" json:"pattern,omitempty"`
  3610. MaxItems int64 `protobuf:"varint,14,opt,name=max_items,json=maxItems,proto3" json:"max_items,omitempty"`
  3611. MinItems int64 `protobuf:"varint,15,opt,name=min_items,json=minItems,proto3" json:"min_items,omitempty"`
  3612. UniqueItems bool `protobuf:"varint,16,opt,name=unique_items,json=uniqueItems,proto3" json:"unique_items,omitempty"`
  3613. MaxProperties int64 `protobuf:"varint,17,opt,name=max_properties,json=maxProperties,proto3" json:"max_properties,omitempty"`
  3614. MinProperties int64 `protobuf:"varint,18,opt,name=min_properties,json=minProperties,proto3" json:"min_properties,omitempty"`
  3615. Required []string `protobuf:"bytes,19,rep,name=required,proto3" json:"required,omitempty"`
  3616. Enum []*Any `protobuf:"bytes,20,rep,name=enum,proto3" json:"enum,omitempty"`
  3617. AdditionalProperties *AdditionalPropertiesItem `protobuf:"bytes,21,opt,name=additional_properties,json=additionalProperties,proto3" json:"additional_properties,omitempty"`
  3618. Type *TypeItem `protobuf:"bytes,22,opt,name=type,proto3" json:"type,omitempty"`
  3619. Items *ItemsItem `protobuf:"bytes,23,opt,name=items,proto3" json:"items,omitempty"`
  3620. AllOf []*Schema `protobuf:"bytes,24,rep,name=all_of,json=allOf,proto3" json:"all_of,omitempty"`
  3621. Properties *Properties `protobuf:"bytes,25,opt,name=properties,proto3" json:"properties,omitempty"`
  3622. Discriminator string `protobuf:"bytes,26,opt,name=discriminator,proto3" json:"discriminator,omitempty"`
  3623. ReadOnly bool `protobuf:"varint,27,opt,name=read_only,json=readOnly,proto3" json:"read_only,omitempty"`
  3624. Xml *Xml `protobuf:"bytes,28,opt,name=xml,proto3" json:"xml,omitempty"`
  3625. ExternalDocs *ExternalDocs `protobuf:"bytes,29,opt,name=external_docs,json=externalDocs,proto3" json:"external_docs,omitempty"`
  3626. Example *Any `protobuf:"bytes,30,opt,name=example,proto3" json:"example,omitempty"`
  3627. VendorExtension []*NamedAny `protobuf:"bytes,31,rep,name=vendor_extension,json=vendorExtension,proto3" json:"vendor_extension,omitempty"`
  3628. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3629. XXX_unrecognized []byte `json:"-"`
  3630. XXX_sizecache int32 `json:"-"`
  3631. }
  3632. func (m *Schema) Reset() { *m = Schema{} }
  3633. func (m *Schema) String() string { return proto.CompactTextString(m) }
  3634. func (*Schema) ProtoMessage() {}
  3635. func (*Schema) Descriptor() ([]byte, []int) {
  3636. return fileDescriptor_a43d10d209cd31c2, []int{50}
  3637. }
  3638. func (m *Schema) XXX_Unmarshal(b []byte) error {
  3639. return xxx_messageInfo_Schema.Unmarshal(m, b)
  3640. }
  3641. func (m *Schema) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3642. return xxx_messageInfo_Schema.Marshal(b, m, deterministic)
  3643. }
  3644. func (m *Schema) XXX_Merge(src proto.Message) {
  3645. xxx_messageInfo_Schema.Merge(m, src)
  3646. }
  3647. func (m *Schema) XXX_Size() int {
  3648. return xxx_messageInfo_Schema.Size(m)
  3649. }
  3650. func (m *Schema) XXX_DiscardUnknown() {
  3651. xxx_messageInfo_Schema.DiscardUnknown(m)
  3652. }
  3653. var xxx_messageInfo_Schema proto.InternalMessageInfo
  3654. func (m *Schema) GetXRef() string {
  3655. if m != nil {
  3656. return m.XRef
  3657. }
  3658. return ""
  3659. }
  3660. func (m *Schema) GetFormat() string {
  3661. if m != nil {
  3662. return m.Format
  3663. }
  3664. return ""
  3665. }
  3666. func (m *Schema) GetTitle() string {
  3667. if m != nil {
  3668. return m.Title
  3669. }
  3670. return ""
  3671. }
  3672. func (m *Schema) GetDescription() string {
  3673. if m != nil {
  3674. return m.Description
  3675. }
  3676. return ""
  3677. }
  3678. func (m *Schema) GetDefault() *Any {
  3679. if m != nil {
  3680. return m.Default
  3681. }
  3682. return nil
  3683. }
  3684. func (m *Schema) GetMultipleOf() float64 {
  3685. if m != nil {
  3686. return m.MultipleOf
  3687. }
  3688. return 0
  3689. }
  3690. func (m *Schema) GetMaximum() float64 {
  3691. if m != nil {
  3692. return m.Maximum
  3693. }
  3694. return 0
  3695. }
  3696. func (m *Schema) GetExclusiveMaximum() bool {
  3697. if m != nil {
  3698. return m.ExclusiveMaximum
  3699. }
  3700. return false
  3701. }
  3702. func (m *Schema) GetMinimum() float64 {
  3703. if m != nil {
  3704. return m.Minimum
  3705. }
  3706. return 0
  3707. }
  3708. func (m *Schema) GetExclusiveMinimum() bool {
  3709. if m != nil {
  3710. return m.ExclusiveMinimum
  3711. }
  3712. return false
  3713. }
  3714. func (m *Schema) GetMaxLength() int64 {
  3715. if m != nil {
  3716. return m.MaxLength
  3717. }
  3718. return 0
  3719. }
  3720. func (m *Schema) GetMinLength() int64 {
  3721. if m != nil {
  3722. return m.MinLength
  3723. }
  3724. return 0
  3725. }
  3726. func (m *Schema) GetPattern() string {
  3727. if m != nil {
  3728. return m.Pattern
  3729. }
  3730. return ""
  3731. }
  3732. func (m *Schema) GetMaxItems() int64 {
  3733. if m != nil {
  3734. return m.MaxItems
  3735. }
  3736. return 0
  3737. }
  3738. func (m *Schema) GetMinItems() int64 {
  3739. if m != nil {
  3740. return m.MinItems
  3741. }
  3742. return 0
  3743. }
  3744. func (m *Schema) GetUniqueItems() bool {
  3745. if m != nil {
  3746. return m.UniqueItems
  3747. }
  3748. return false
  3749. }
  3750. func (m *Schema) GetMaxProperties() int64 {
  3751. if m != nil {
  3752. return m.MaxProperties
  3753. }
  3754. return 0
  3755. }
  3756. func (m *Schema) GetMinProperties() int64 {
  3757. if m != nil {
  3758. return m.MinProperties
  3759. }
  3760. return 0
  3761. }
  3762. func (m *Schema) GetRequired() []string {
  3763. if m != nil {
  3764. return m.Required
  3765. }
  3766. return nil
  3767. }
  3768. func (m *Schema) GetEnum() []*Any {
  3769. if m != nil {
  3770. return m.Enum
  3771. }
  3772. return nil
  3773. }
  3774. func (m *Schema) GetAdditionalProperties() *AdditionalPropertiesItem {
  3775. if m != nil {
  3776. return m.AdditionalProperties
  3777. }
  3778. return nil
  3779. }
  3780. func (m *Schema) GetType() *TypeItem {
  3781. if m != nil {
  3782. return m.Type
  3783. }
  3784. return nil
  3785. }
  3786. func (m *Schema) GetItems() *ItemsItem {
  3787. if m != nil {
  3788. return m.Items
  3789. }
  3790. return nil
  3791. }
  3792. func (m *Schema) GetAllOf() []*Schema {
  3793. if m != nil {
  3794. return m.AllOf
  3795. }
  3796. return nil
  3797. }
  3798. func (m *Schema) GetProperties() *Properties {
  3799. if m != nil {
  3800. return m.Properties
  3801. }
  3802. return nil
  3803. }
  3804. func (m *Schema) GetDiscriminator() string {
  3805. if m != nil {
  3806. return m.Discriminator
  3807. }
  3808. return ""
  3809. }
  3810. func (m *Schema) GetReadOnly() bool {
  3811. if m != nil {
  3812. return m.ReadOnly
  3813. }
  3814. return false
  3815. }
  3816. func (m *Schema) GetXml() *Xml {
  3817. if m != nil {
  3818. return m.Xml
  3819. }
  3820. return nil
  3821. }
  3822. func (m *Schema) GetExternalDocs() *ExternalDocs {
  3823. if m != nil {
  3824. return m.ExternalDocs
  3825. }
  3826. return nil
  3827. }
  3828. func (m *Schema) GetExample() *Any {
  3829. if m != nil {
  3830. return m.Example
  3831. }
  3832. return nil
  3833. }
  3834. func (m *Schema) GetVendorExtension() []*NamedAny {
  3835. if m != nil {
  3836. return m.VendorExtension
  3837. }
  3838. return nil
  3839. }
  3840. type SchemaItem struct {
  3841. // Types that are valid to be assigned to Oneof:
  3842. // *SchemaItem_Schema
  3843. // *SchemaItem_FileSchema
  3844. Oneof isSchemaItem_Oneof `protobuf_oneof:"oneof"`
  3845. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3846. XXX_unrecognized []byte `json:"-"`
  3847. XXX_sizecache int32 `json:"-"`
  3848. }
  3849. func (m *SchemaItem) Reset() { *m = SchemaItem{} }
  3850. func (m *SchemaItem) String() string { return proto.CompactTextString(m) }
  3851. func (*SchemaItem) ProtoMessage() {}
  3852. func (*SchemaItem) Descriptor() ([]byte, []int) {
  3853. return fileDescriptor_a43d10d209cd31c2, []int{51}
  3854. }
  3855. func (m *SchemaItem) XXX_Unmarshal(b []byte) error {
  3856. return xxx_messageInfo_SchemaItem.Unmarshal(m, b)
  3857. }
  3858. func (m *SchemaItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3859. return xxx_messageInfo_SchemaItem.Marshal(b, m, deterministic)
  3860. }
  3861. func (m *SchemaItem) XXX_Merge(src proto.Message) {
  3862. xxx_messageInfo_SchemaItem.Merge(m, src)
  3863. }
  3864. func (m *SchemaItem) XXX_Size() int {
  3865. return xxx_messageInfo_SchemaItem.Size(m)
  3866. }
  3867. func (m *SchemaItem) XXX_DiscardUnknown() {
  3868. xxx_messageInfo_SchemaItem.DiscardUnknown(m)
  3869. }
  3870. var xxx_messageInfo_SchemaItem proto.InternalMessageInfo
  3871. type isSchemaItem_Oneof interface {
  3872. isSchemaItem_Oneof()
  3873. }
  3874. type SchemaItem_Schema struct {
  3875. Schema *Schema `protobuf:"bytes,1,opt,name=schema,proto3,oneof"`
  3876. }
  3877. type SchemaItem_FileSchema struct {
  3878. FileSchema *FileSchema `protobuf:"bytes,2,opt,name=file_schema,json=fileSchema,proto3,oneof"`
  3879. }
  3880. func (*SchemaItem_Schema) isSchemaItem_Oneof() {}
  3881. func (*SchemaItem_FileSchema) isSchemaItem_Oneof() {}
  3882. func (m *SchemaItem) GetOneof() isSchemaItem_Oneof {
  3883. if m != nil {
  3884. return m.Oneof
  3885. }
  3886. return nil
  3887. }
  3888. func (m *SchemaItem) GetSchema() *Schema {
  3889. if x, ok := m.GetOneof().(*SchemaItem_Schema); ok {
  3890. return x.Schema
  3891. }
  3892. return nil
  3893. }
  3894. func (m *SchemaItem) GetFileSchema() *FileSchema {
  3895. if x, ok := m.GetOneof().(*SchemaItem_FileSchema); ok {
  3896. return x.FileSchema
  3897. }
  3898. return nil
  3899. }
  3900. // XXX_OneofWrappers is for the internal use of the proto package.
  3901. func (*SchemaItem) XXX_OneofWrappers() []interface{} {
  3902. return []interface{}{
  3903. (*SchemaItem_Schema)(nil),
  3904. (*SchemaItem_FileSchema)(nil),
  3905. }
  3906. }
  3907. type SecurityDefinitions struct {
  3908. AdditionalProperties []*NamedSecurityDefinitionsItem `protobuf:"bytes,1,rep,name=additional_properties,json=additionalProperties,proto3" json:"additional_properties,omitempty"`
  3909. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3910. XXX_unrecognized []byte `json:"-"`
  3911. XXX_sizecache int32 `json:"-"`
  3912. }
  3913. func (m *SecurityDefinitions) Reset() { *m = SecurityDefinitions{} }
  3914. func (m *SecurityDefinitions) String() string { return proto.CompactTextString(m) }
  3915. func (*SecurityDefinitions) ProtoMessage() {}
  3916. func (*SecurityDefinitions) Descriptor() ([]byte, []int) {
  3917. return fileDescriptor_a43d10d209cd31c2, []int{52}
  3918. }
  3919. func (m *SecurityDefinitions) XXX_Unmarshal(b []byte) error {
  3920. return xxx_messageInfo_SecurityDefinitions.Unmarshal(m, b)
  3921. }
  3922. func (m *SecurityDefinitions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3923. return xxx_messageInfo_SecurityDefinitions.Marshal(b, m, deterministic)
  3924. }
  3925. func (m *SecurityDefinitions) XXX_Merge(src proto.Message) {
  3926. xxx_messageInfo_SecurityDefinitions.Merge(m, src)
  3927. }
  3928. func (m *SecurityDefinitions) XXX_Size() int {
  3929. return xxx_messageInfo_SecurityDefinitions.Size(m)
  3930. }
  3931. func (m *SecurityDefinitions) XXX_DiscardUnknown() {
  3932. xxx_messageInfo_SecurityDefinitions.DiscardUnknown(m)
  3933. }
  3934. var xxx_messageInfo_SecurityDefinitions proto.InternalMessageInfo
  3935. func (m *SecurityDefinitions) GetAdditionalProperties() []*NamedSecurityDefinitionsItem {
  3936. if m != nil {
  3937. return m.AdditionalProperties
  3938. }
  3939. return nil
  3940. }
  3941. type SecurityDefinitionsItem struct {
  3942. // Types that are valid to be assigned to Oneof:
  3943. // *SecurityDefinitionsItem_BasicAuthenticationSecurity
  3944. // *SecurityDefinitionsItem_ApiKeySecurity
  3945. // *SecurityDefinitionsItem_Oauth2ImplicitSecurity
  3946. // *SecurityDefinitionsItem_Oauth2PasswordSecurity
  3947. // *SecurityDefinitionsItem_Oauth2ApplicationSecurity
  3948. // *SecurityDefinitionsItem_Oauth2AccessCodeSecurity
  3949. Oneof isSecurityDefinitionsItem_Oneof `protobuf_oneof:"oneof"`
  3950. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3951. XXX_unrecognized []byte `json:"-"`
  3952. XXX_sizecache int32 `json:"-"`
  3953. }
  3954. func (m *SecurityDefinitionsItem) Reset() { *m = SecurityDefinitionsItem{} }
  3955. func (m *SecurityDefinitionsItem) String() string { return proto.CompactTextString(m) }
  3956. func (*SecurityDefinitionsItem) ProtoMessage() {}
  3957. func (*SecurityDefinitionsItem) Descriptor() ([]byte, []int) {
  3958. return fileDescriptor_a43d10d209cd31c2, []int{53}
  3959. }
  3960. func (m *SecurityDefinitionsItem) XXX_Unmarshal(b []byte) error {
  3961. return xxx_messageInfo_SecurityDefinitionsItem.Unmarshal(m, b)
  3962. }
  3963. func (m *SecurityDefinitionsItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3964. return xxx_messageInfo_SecurityDefinitionsItem.Marshal(b, m, deterministic)
  3965. }
  3966. func (m *SecurityDefinitionsItem) XXX_Merge(src proto.Message) {
  3967. xxx_messageInfo_SecurityDefinitionsItem.Merge(m, src)
  3968. }
  3969. func (m *SecurityDefinitionsItem) XXX_Size() int {
  3970. return xxx_messageInfo_SecurityDefinitionsItem.Size(m)
  3971. }
  3972. func (m *SecurityDefinitionsItem) XXX_DiscardUnknown() {
  3973. xxx_messageInfo_SecurityDefinitionsItem.DiscardUnknown(m)
  3974. }
  3975. var xxx_messageInfo_SecurityDefinitionsItem proto.InternalMessageInfo
  3976. type isSecurityDefinitionsItem_Oneof interface {
  3977. isSecurityDefinitionsItem_Oneof()
  3978. }
  3979. type SecurityDefinitionsItem_BasicAuthenticationSecurity struct {
  3980. BasicAuthenticationSecurity *BasicAuthenticationSecurity `protobuf:"bytes,1,opt,name=basic_authentication_security,json=basicAuthenticationSecurity,proto3,oneof"`
  3981. }
  3982. type SecurityDefinitionsItem_ApiKeySecurity struct {
  3983. ApiKeySecurity *ApiKeySecurity `protobuf:"bytes,2,opt,name=api_key_security,json=apiKeySecurity,proto3,oneof"`
  3984. }
  3985. type SecurityDefinitionsItem_Oauth2ImplicitSecurity struct {
  3986. Oauth2ImplicitSecurity *Oauth2ImplicitSecurity `protobuf:"bytes,3,opt,name=oauth2_implicit_security,json=oauth2ImplicitSecurity,proto3,oneof"`
  3987. }
  3988. type SecurityDefinitionsItem_Oauth2PasswordSecurity struct {
  3989. Oauth2PasswordSecurity *Oauth2PasswordSecurity `protobuf:"bytes,4,opt,name=oauth2_password_security,json=oauth2PasswordSecurity,proto3,oneof"`
  3990. }
  3991. type SecurityDefinitionsItem_Oauth2ApplicationSecurity struct {
  3992. Oauth2ApplicationSecurity *Oauth2ApplicationSecurity `protobuf:"bytes,5,opt,name=oauth2_application_security,json=oauth2ApplicationSecurity,proto3,oneof"`
  3993. }
  3994. type SecurityDefinitionsItem_Oauth2AccessCodeSecurity struct {
  3995. Oauth2AccessCodeSecurity *Oauth2AccessCodeSecurity `protobuf:"bytes,6,opt,name=oauth2_access_code_security,json=oauth2AccessCodeSecurity,proto3,oneof"`
  3996. }
  3997. func (*SecurityDefinitionsItem_BasicAuthenticationSecurity) isSecurityDefinitionsItem_Oneof() {}
  3998. func (*SecurityDefinitionsItem_ApiKeySecurity) isSecurityDefinitionsItem_Oneof() {}
  3999. func (*SecurityDefinitionsItem_Oauth2ImplicitSecurity) isSecurityDefinitionsItem_Oneof() {}
  4000. func (*SecurityDefinitionsItem_Oauth2PasswordSecurity) isSecurityDefinitionsItem_Oneof() {}
  4001. func (*SecurityDefinitionsItem_Oauth2ApplicationSecurity) isSecurityDefinitionsItem_Oneof() {}
  4002. func (*SecurityDefinitionsItem_Oauth2AccessCodeSecurity) isSecurityDefinitionsItem_Oneof() {}
  4003. func (m *SecurityDefinitionsItem) GetOneof() isSecurityDefinitionsItem_Oneof {
  4004. if m != nil {
  4005. return m.Oneof
  4006. }
  4007. return nil
  4008. }
  4009. func (m *SecurityDefinitionsItem) GetBasicAuthenticationSecurity() *BasicAuthenticationSecurity {
  4010. if x, ok := m.GetOneof().(*SecurityDefinitionsItem_BasicAuthenticationSecurity); ok {
  4011. return x.BasicAuthenticationSecurity
  4012. }
  4013. return nil
  4014. }
  4015. func (m *SecurityDefinitionsItem) GetApiKeySecurity() *ApiKeySecurity {
  4016. if x, ok := m.GetOneof().(*SecurityDefinitionsItem_ApiKeySecurity); ok {
  4017. return x.ApiKeySecurity
  4018. }
  4019. return nil
  4020. }
  4021. func (m *SecurityDefinitionsItem) GetOauth2ImplicitSecurity() *Oauth2ImplicitSecurity {
  4022. if x, ok := m.GetOneof().(*SecurityDefinitionsItem_Oauth2ImplicitSecurity); ok {
  4023. return x.Oauth2ImplicitSecurity
  4024. }
  4025. return nil
  4026. }
  4027. func (m *SecurityDefinitionsItem) GetOauth2PasswordSecurity() *Oauth2PasswordSecurity {
  4028. if x, ok := m.GetOneof().(*SecurityDefinitionsItem_Oauth2PasswordSecurity); ok {
  4029. return x.Oauth2PasswordSecurity
  4030. }
  4031. return nil
  4032. }
  4033. func (m *SecurityDefinitionsItem) GetOauth2ApplicationSecurity() *Oauth2ApplicationSecurity {
  4034. if x, ok := m.GetOneof().(*SecurityDefinitionsItem_Oauth2ApplicationSecurity); ok {
  4035. return x.Oauth2ApplicationSecurity
  4036. }
  4037. return nil
  4038. }
  4039. func (m *SecurityDefinitionsItem) GetOauth2AccessCodeSecurity() *Oauth2AccessCodeSecurity {
  4040. if x, ok := m.GetOneof().(*SecurityDefinitionsItem_Oauth2AccessCodeSecurity); ok {
  4041. return x.Oauth2AccessCodeSecurity
  4042. }
  4043. return nil
  4044. }
  4045. // XXX_OneofWrappers is for the internal use of the proto package.
  4046. func (*SecurityDefinitionsItem) XXX_OneofWrappers() []interface{} {
  4047. return []interface{}{
  4048. (*SecurityDefinitionsItem_BasicAuthenticationSecurity)(nil),
  4049. (*SecurityDefinitionsItem_ApiKeySecurity)(nil),
  4050. (*SecurityDefinitionsItem_Oauth2ImplicitSecurity)(nil),
  4051. (*SecurityDefinitionsItem_Oauth2PasswordSecurity)(nil),
  4052. (*SecurityDefinitionsItem_Oauth2ApplicationSecurity)(nil),
  4053. (*SecurityDefinitionsItem_Oauth2AccessCodeSecurity)(nil),
  4054. }
  4055. }
  4056. type SecurityRequirement struct {
  4057. AdditionalProperties []*NamedStringArray `protobuf:"bytes,1,rep,name=additional_properties,json=additionalProperties,proto3" json:"additional_properties,omitempty"`
  4058. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4059. XXX_unrecognized []byte `json:"-"`
  4060. XXX_sizecache int32 `json:"-"`
  4061. }
  4062. func (m *SecurityRequirement) Reset() { *m = SecurityRequirement{} }
  4063. func (m *SecurityRequirement) String() string { return proto.CompactTextString(m) }
  4064. func (*SecurityRequirement) ProtoMessage() {}
  4065. func (*SecurityRequirement) Descriptor() ([]byte, []int) {
  4066. return fileDescriptor_a43d10d209cd31c2, []int{54}
  4067. }
  4068. func (m *SecurityRequirement) XXX_Unmarshal(b []byte) error {
  4069. return xxx_messageInfo_SecurityRequirement.Unmarshal(m, b)
  4070. }
  4071. func (m *SecurityRequirement) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4072. return xxx_messageInfo_SecurityRequirement.Marshal(b, m, deterministic)
  4073. }
  4074. func (m *SecurityRequirement) XXX_Merge(src proto.Message) {
  4075. xxx_messageInfo_SecurityRequirement.Merge(m, src)
  4076. }
  4077. func (m *SecurityRequirement) XXX_Size() int {
  4078. return xxx_messageInfo_SecurityRequirement.Size(m)
  4079. }
  4080. func (m *SecurityRequirement) XXX_DiscardUnknown() {
  4081. xxx_messageInfo_SecurityRequirement.DiscardUnknown(m)
  4082. }
  4083. var xxx_messageInfo_SecurityRequirement proto.InternalMessageInfo
  4084. func (m *SecurityRequirement) GetAdditionalProperties() []*NamedStringArray {
  4085. if m != nil {
  4086. return m.AdditionalProperties
  4087. }
  4088. return nil
  4089. }
  4090. type StringArray struct {
  4091. Value []string `protobuf:"bytes,1,rep,name=value,proto3" json:"value,omitempty"`
  4092. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4093. XXX_unrecognized []byte `json:"-"`
  4094. XXX_sizecache int32 `json:"-"`
  4095. }
  4096. func (m *StringArray) Reset() { *m = StringArray{} }
  4097. func (m *StringArray) String() string { return proto.CompactTextString(m) }
  4098. func (*StringArray) ProtoMessage() {}
  4099. func (*StringArray) Descriptor() ([]byte, []int) {
  4100. return fileDescriptor_a43d10d209cd31c2, []int{55}
  4101. }
  4102. func (m *StringArray) XXX_Unmarshal(b []byte) error {
  4103. return xxx_messageInfo_StringArray.Unmarshal(m, b)
  4104. }
  4105. func (m *StringArray) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4106. return xxx_messageInfo_StringArray.Marshal(b, m, deterministic)
  4107. }
  4108. func (m *StringArray) XXX_Merge(src proto.Message) {
  4109. xxx_messageInfo_StringArray.Merge(m, src)
  4110. }
  4111. func (m *StringArray) XXX_Size() int {
  4112. return xxx_messageInfo_StringArray.Size(m)
  4113. }
  4114. func (m *StringArray) XXX_DiscardUnknown() {
  4115. xxx_messageInfo_StringArray.DiscardUnknown(m)
  4116. }
  4117. var xxx_messageInfo_StringArray proto.InternalMessageInfo
  4118. func (m *StringArray) GetValue() []string {
  4119. if m != nil {
  4120. return m.Value
  4121. }
  4122. return nil
  4123. }
  4124. type Tag struct {
  4125. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  4126. Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
  4127. ExternalDocs *ExternalDocs `protobuf:"bytes,3,opt,name=external_docs,json=externalDocs,proto3" json:"external_docs,omitempty"`
  4128. VendorExtension []*NamedAny `protobuf:"bytes,4,rep,name=vendor_extension,json=vendorExtension,proto3" json:"vendor_extension,omitempty"`
  4129. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4130. XXX_unrecognized []byte `json:"-"`
  4131. XXX_sizecache int32 `json:"-"`
  4132. }
  4133. func (m *Tag) Reset() { *m = Tag{} }
  4134. func (m *Tag) String() string { return proto.CompactTextString(m) }
  4135. func (*Tag) ProtoMessage() {}
  4136. func (*Tag) Descriptor() ([]byte, []int) {
  4137. return fileDescriptor_a43d10d209cd31c2, []int{56}
  4138. }
  4139. func (m *Tag) XXX_Unmarshal(b []byte) error {
  4140. return xxx_messageInfo_Tag.Unmarshal(m, b)
  4141. }
  4142. func (m *Tag) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4143. return xxx_messageInfo_Tag.Marshal(b, m, deterministic)
  4144. }
  4145. func (m *Tag) XXX_Merge(src proto.Message) {
  4146. xxx_messageInfo_Tag.Merge(m, src)
  4147. }
  4148. func (m *Tag) XXX_Size() int {
  4149. return xxx_messageInfo_Tag.Size(m)
  4150. }
  4151. func (m *Tag) XXX_DiscardUnknown() {
  4152. xxx_messageInfo_Tag.DiscardUnknown(m)
  4153. }
  4154. var xxx_messageInfo_Tag proto.InternalMessageInfo
  4155. func (m *Tag) GetName() string {
  4156. if m != nil {
  4157. return m.Name
  4158. }
  4159. return ""
  4160. }
  4161. func (m *Tag) GetDescription() string {
  4162. if m != nil {
  4163. return m.Description
  4164. }
  4165. return ""
  4166. }
  4167. func (m *Tag) GetExternalDocs() *ExternalDocs {
  4168. if m != nil {
  4169. return m.ExternalDocs
  4170. }
  4171. return nil
  4172. }
  4173. func (m *Tag) GetVendorExtension() []*NamedAny {
  4174. if m != nil {
  4175. return m.VendorExtension
  4176. }
  4177. return nil
  4178. }
  4179. type TypeItem struct {
  4180. Value []string `protobuf:"bytes,1,rep,name=value,proto3" json:"value,omitempty"`
  4181. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4182. XXX_unrecognized []byte `json:"-"`
  4183. XXX_sizecache int32 `json:"-"`
  4184. }
  4185. func (m *TypeItem) Reset() { *m = TypeItem{} }
  4186. func (m *TypeItem) String() string { return proto.CompactTextString(m) }
  4187. func (*TypeItem) ProtoMessage() {}
  4188. func (*TypeItem) Descriptor() ([]byte, []int) {
  4189. return fileDescriptor_a43d10d209cd31c2, []int{57}
  4190. }
  4191. func (m *TypeItem) XXX_Unmarshal(b []byte) error {
  4192. return xxx_messageInfo_TypeItem.Unmarshal(m, b)
  4193. }
  4194. func (m *TypeItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4195. return xxx_messageInfo_TypeItem.Marshal(b, m, deterministic)
  4196. }
  4197. func (m *TypeItem) XXX_Merge(src proto.Message) {
  4198. xxx_messageInfo_TypeItem.Merge(m, src)
  4199. }
  4200. func (m *TypeItem) XXX_Size() int {
  4201. return xxx_messageInfo_TypeItem.Size(m)
  4202. }
  4203. func (m *TypeItem) XXX_DiscardUnknown() {
  4204. xxx_messageInfo_TypeItem.DiscardUnknown(m)
  4205. }
  4206. var xxx_messageInfo_TypeItem proto.InternalMessageInfo
  4207. func (m *TypeItem) GetValue() []string {
  4208. if m != nil {
  4209. return m.Value
  4210. }
  4211. return nil
  4212. }
  4213. // Any property starting with x- is valid.
  4214. type VendorExtension struct {
  4215. AdditionalProperties []*NamedAny `protobuf:"bytes,1,rep,name=additional_properties,json=additionalProperties,proto3" json:"additional_properties,omitempty"`
  4216. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4217. XXX_unrecognized []byte `json:"-"`
  4218. XXX_sizecache int32 `json:"-"`
  4219. }
  4220. func (m *VendorExtension) Reset() { *m = VendorExtension{} }
  4221. func (m *VendorExtension) String() string { return proto.CompactTextString(m) }
  4222. func (*VendorExtension) ProtoMessage() {}
  4223. func (*VendorExtension) Descriptor() ([]byte, []int) {
  4224. return fileDescriptor_a43d10d209cd31c2, []int{58}
  4225. }
  4226. func (m *VendorExtension) XXX_Unmarshal(b []byte) error {
  4227. return xxx_messageInfo_VendorExtension.Unmarshal(m, b)
  4228. }
  4229. func (m *VendorExtension) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4230. return xxx_messageInfo_VendorExtension.Marshal(b, m, deterministic)
  4231. }
  4232. func (m *VendorExtension) XXX_Merge(src proto.Message) {
  4233. xxx_messageInfo_VendorExtension.Merge(m, src)
  4234. }
  4235. func (m *VendorExtension) XXX_Size() int {
  4236. return xxx_messageInfo_VendorExtension.Size(m)
  4237. }
  4238. func (m *VendorExtension) XXX_DiscardUnknown() {
  4239. xxx_messageInfo_VendorExtension.DiscardUnknown(m)
  4240. }
  4241. var xxx_messageInfo_VendorExtension proto.InternalMessageInfo
  4242. func (m *VendorExtension) GetAdditionalProperties() []*NamedAny {
  4243. if m != nil {
  4244. return m.AdditionalProperties
  4245. }
  4246. return nil
  4247. }
  4248. type Xml struct {
  4249. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  4250. Namespace string `protobuf:"bytes,2,opt,name=namespace,proto3" json:"namespace,omitempty"`
  4251. Prefix string `protobuf:"bytes,3,opt,name=prefix,proto3" json:"prefix,omitempty"`
  4252. Attribute bool `protobuf:"varint,4,opt,name=attribute,proto3" json:"attribute,omitempty"`
  4253. Wrapped bool `protobuf:"varint,5,opt,name=wrapped,proto3" json:"wrapped,omitempty"`
  4254. VendorExtension []*NamedAny `protobuf:"bytes,6,rep,name=vendor_extension,json=vendorExtension,proto3" json:"vendor_extension,omitempty"`
  4255. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4256. XXX_unrecognized []byte `json:"-"`
  4257. XXX_sizecache int32 `json:"-"`
  4258. }
  4259. func (m *Xml) Reset() { *m = Xml{} }
  4260. func (m *Xml) String() string { return proto.CompactTextString(m) }
  4261. func (*Xml) ProtoMessage() {}
  4262. func (*Xml) Descriptor() ([]byte, []int) {
  4263. return fileDescriptor_a43d10d209cd31c2, []int{59}
  4264. }
  4265. func (m *Xml) XXX_Unmarshal(b []byte) error {
  4266. return xxx_messageInfo_Xml.Unmarshal(m, b)
  4267. }
  4268. func (m *Xml) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4269. return xxx_messageInfo_Xml.Marshal(b, m, deterministic)
  4270. }
  4271. func (m *Xml) XXX_Merge(src proto.Message) {
  4272. xxx_messageInfo_Xml.Merge(m, src)
  4273. }
  4274. func (m *Xml) XXX_Size() int {
  4275. return xxx_messageInfo_Xml.Size(m)
  4276. }
  4277. func (m *Xml) XXX_DiscardUnknown() {
  4278. xxx_messageInfo_Xml.DiscardUnknown(m)
  4279. }
  4280. var xxx_messageInfo_Xml proto.InternalMessageInfo
  4281. func (m *Xml) GetName() string {
  4282. if m != nil {
  4283. return m.Name
  4284. }
  4285. return ""
  4286. }
  4287. func (m *Xml) GetNamespace() string {
  4288. if m != nil {
  4289. return m.Namespace
  4290. }
  4291. return ""
  4292. }
  4293. func (m *Xml) GetPrefix() string {
  4294. if m != nil {
  4295. return m.Prefix
  4296. }
  4297. return ""
  4298. }
  4299. func (m *Xml) GetAttribute() bool {
  4300. if m != nil {
  4301. return m.Attribute
  4302. }
  4303. return false
  4304. }
  4305. func (m *Xml) GetWrapped() bool {
  4306. if m != nil {
  4307. return m.Wrapped
  4308. }
  4309. return false
  4310. }
  4311. func (m *Xml) GetVendorExtension() []*NamedAny {
  4312. if m != nil {
  4313. return m.VendorExtension
  4314. }
  4315. return nil
  4316. }
  4317. func init() {
  4318. proto.RegisterType((*AdditionalPropertiesItem)(nil), "openapi.v2.AdditionalPropertiesItem")
  4319. proto.RegisterType((*Any)(nil), "openapi.v2.Any")
  4320. proto.RegisterType((*ApiKeySecurity)(nil), "openapi.v2.ApiKeySecurity")
  4321. proto.RegisterType((*BasicAuthenticationSecurity)(nil), "openapi.v2.BasicAuthenticationSecurity")
  4322. proto.RegisterType((*BodyParameter)(nil), "openapi.v2.BodyParameter")
  4323. proto.RegisterType((*Contact)(nil), "openapi.v2.Contact")
  4324. proto.RegisterType((*Default)(nil), "openapi.v2.Default")
  4325. proto.RegisterType((*Definitions)(nil), "openapi.v2.Definitions")
  4326. proto.RegisterType((*Document)(nil), "openapi.v2.Document")
  4327. proto.RegisterType((*Examples)(nil), "openapi.v2.Examples")
  4328. proto.RegisterType((*ExternalDocs)(nil), "openapi.v2.ExternalDocs")
  4329. proto.RegisterType((*FileSchema)(nil), "openapi.v2.FileSchema")
  4330. proto.RegisterType((*FormDataParameterSubSchema)(nil), "openapi.v2.FormDataParameterSubSchema")
  4331. proto.RegisterType((*Header)(nil), "openapi.v2.Header")
  4332. proto.RegisterType((*HeaderParameterSubSchema)(nil), "openapi.v2.HeaderParameterSubSchema")
  4333. proto.RegisterType((*Headers)(nil), "openapi.v2.Headers")
  4334. proto.RegisterType((*Info)(nil), "openapi.v2.Info")
  4335. proto.RegisterType((*ItemsItem)(nil), "openapi.v2.ItemsItem")
  4336. proto.RegisterType((*JsonReference)(nil), "openapi.v2.JsonReference")
  4337. proto.RegisterType((*License)(nil), "openapi.v2.License")
  4338. proto.RegisterType((*NamedAny)(nil), "openapi.v2.NamedAny")
  4339. proto.RegisterType((*NamedHeader)(nil), "openapi.v2.NamedHeader")
  4340. proto.RegisterType((*NamedParameter)(nil), "openapi.v2.NamedParameter")
  4341. proto.RegisterType((*NamedPathItem)(nil), "openapi.v2.NamedPathItem")
  4342. proto.RegisterType((*NamedResponse)(nil), "openapi.v2.NamedResponse")
  4343. proto.RegisterType((*NamedResponseValue)(nil), "openapi.v2.NamedResponseValue")
  4344. proto.RegisterType((*NamedSchema)(nil), "openapi.v2.NamedSchema")
  4345. proto.RegisterType((*NamedSecurityDefinitionsItem)(nil), "openapi.v2.NamedSecurityDefinitionsItem")
  4346. proto.RegisterType((*NamedString)(nil), "openapi.v2.NamedString")
  4347. proto.RegisterType((*NamedStringArray)(nil), "openapi.v2.NamedStringArray")
  4348. proto.RegisterType((*NonBodyParameter)(nil), "openapi.v2.NonBodyParameter")
  4349. proto.RegisterType((*Oauth2AccessCodeSecurity)(nil), "openapi.v2.Oauth2AccessCodeSecurity")
  4350. proto.RegisterType((*Oauth2ApplicationSecurity)(nil), "openapi.v2.Oauth2ApplicationSecurity")
  4351. proto.RegisterType((*Oauth2ImplicitSecurity)(nil), "openapi.v2.Oauth2ImplicitSecurity")
  4352. proto.RegisterType((*Oauth2PasswordSecurity)(nil), "openapi.v2.Oauth2PasswordSecurity")
  4353. proto.RegisterType((*Oauth2Scopes)(nil), "openapi.v2.Oauth2Scopes")
  4354. proto.RegisterType((*Operation)(nil), "openapi.v2.Operation")
  4355. proto.RegisterType((*Parameter)(nil), "openapi.v2.Parameter")
  4356. proto.RegisterType((*ParameterDefinitions)(nil), "openapi.v2.ParameterDefinitions")
  4357. proto.RegisterType((*ParametersItem)(nil), "openapi.v2.ParametersItem")
  4358. proto.RegisterType((*PathItem)(nil), "openapi.v2.PathItem")
  4359. proto.RegisterType((*PathParameterSubSchema)(nil), "openapi.v2.PathParameterSubSchema")
  4360. proto.RegisterType((*Paths)(nil), "openapi.v2.Paths")
  4361. proto.RegisterType((*PrimitivesItems)(nil), "openapi.v2.PrimitivesItems")
  4362. proto.RegisterType((*Properties)(nil), "openapi.v2.Properties")
  4363. proto.RegisterType((*QueryParameterSubSchema)(nil), "openapi.v2.QueryParameterSubSchema")
  4364. proto.RegisterType((*Response)(nil), "openapi.v2.Response")
  4365. proto.RegisterType((*ResponseDefinitions)(nil), "openapi.v2.ResponseDefinitions")
  4366. proto.RegisterType((*ResponseValue)(nil), "openapi.v2.ResponseValue")
  4367. proto.RegisterType((*Responses)(nil), "openapi.v2.Responses")
  4368. proto.RegisterType((*Schema)(nil), "openapi.v2.Schema")
  4369. proto.RegisterType((*SchemaItem)(nil), "openapi.v2.SchemaItem")
  4370. proto.RegisterType((*SecurityDefinitions)(nil), "openapi.v2.SecurityDefinitions")
  4371. proto.RegisterType((*SecurityDefinitionsItem)(nil), "openapi.v2.SecurityDefinitionsItem")
  4372. proto.RegisterType((*SecurityRequirement)(nil), "openapi.v2.SecurityRequirement")
  4373. proto.RegisterType((*StringArray)(nil), "openapi.v2.StringArray")
  4374. proto.RegisterType((*Tag)(nil), "openapi.v2.Tag")
  4375. proto.RegisterType((*TypeItem)(nil), "openapi.v2.TypeItem")
  4376. proto.RegisterType((*VendorExtension)(nil), "openapi.v2.VendorExtension")
  4377. proto.RegisterType((*Xml)(nil), "openapi.v2.Xml")
  4378. }
  4379. func init() { proto.RegisterFile("openapiv2/OpenAPIv2.proto", fileDescriptor_a43d10d209cd31c2) }
  4380. var fileDescriptor_a43d10d209cd31c2 = []byte{
  4381. // 3130 bytes of a gzipped FileDescriptorProto
  4382. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x3b, 0x4b, 0x73, 0x1c, 0x57,
  4383. 0xd5, 0xf3, 0x7e, 0x1c, 0x69, 0x46, 0xa3, 0x96, 0x2c, 0xb7, 0x24, 0xc7, 0x71, 0xe4, 0x3c, 0x6c,
  4384. 0xe7, 0xb3, 0x9c, 0x4f, 0x29, 0x48, 0x05, 0x2a, 0x05, 0xf2, 0xab, 0xc6, 0xc4, 0x44, 0x4a, 0xcb,
  4385. 0x0e, 0x09, 0x04, 0xba, 0xae, 0x66, 0xee, 0x48, 0x9d, 0x74, 0xf7, 0x6d, 0x77, 0xf7, 0xc8, 0x1a,
  4386. 0x16, 0x2c, 0xa0, 0x8a, 0x35, 0x50, 0x59, 0x53, 0x15, 0x16, 0x14, 0x55, 0x59, 0xb0, 0x62, 0xc5,
  4387. 0x1f, 0x60, 0xc7, 0x3f, 0x60, 0x0d, 0x5b, 0xaa, 0x58, 0x51, 0x3c, 0xea, 0xbe, 0xa6, 0x5f, 0xb7,
  4388. 0xe7, 0x61, 0xb9, 0x80, 0x02, 0xad, 0x66, 0xee, 0x3d, 0xe7, 0x9e, 0x7b, 0xfa, 0xf4, 0x79, 0xdd,
  4389. 0x73, 0x6e, 0xc3, 0x3a, 0xf1, 0xb0, 0x8b, 0x3c, 0xeb, 0x64, 0xe7, 0xd6, 0x9e, 0x87, 0xdd, 0xdd,
  4390. 0xfd, 0x07, 0x27, 0x3b, 0xdb, 0x9e, 0x4f, 0x42, 0xa2, 0x81, 0x00, 0x6d, 0x9f, 0xec, 0x6c, 0xac,
  4391. 0x1f, 0x11, 0x72, 0x64, 0xe3, 0x5b, 0x0c, 0x72, 0x38, 0x1c, 0xdc, 0x42, 0xee, 0x88, 0xa3, 0x6d,
  4392. 0x39, 0xa0, 0xef, 0xf6, 0xfb, 0x56, 0x68, 0x11, 0x17, 0xd9, 0xfb, 0x3e, 0xf1, 0xb0, 0x1f, 0x5a,
  4393. 0x38, 0x78, 0x10, 0x62, 0x47, 0xfb, 0x3f, 0xa8, 0x05, 0xbd, 0x63, 0xec, 0x20, 0xbd, 0x78, 0xa5,
  4394. 0x78, 0x6d, 0x61, 0x47, 0xdb, 0x8e, 0x68, 0x6e, 0x1f, 0x30, 0x48, 0xb7, 0x60, 0x08, 0x1c, 0x6d,
  4395. 0x03, 0xea, 0x87, 0x84, 0xd8, 0x18, 0xb9, 0x7a, 0xe9, 0x4a, 0xf1, 0x5a, 0xa3, 0x5b, 0x30, 0xe4,
  4396. 0xc4, 0xed, 0x3a, 0x54, 0x89, 0x8b, 0xc9, 0x60, 0xeb, 0x1e, 0x94, 0x77, 0xdd, 0x91, 0x76, 0x03,
  4397. 0xaa, 0x27, 0xc8, 0x1e, 0x62, 0x41, 0x78, 0x75, 0x9b, 0x33, 0xb8, 0x2d, 0x19, 0xdc, 0xde, 0x75,
  4398. 0x47, 0x06, 0x47, 0xd1, 0x34, 0xa8, 0x8c, 0x90, 0x63, 0x33, 0xa2, 0x4d, 0x83, 0xfd, 0xdf, 0xfa,
  4399. 0xa2, 0x08, 0xed, 0x5d, 0xcf, 0x7a, 0x17, 0x8f, 0x0e, 0x70, 0x6f, 0xe8, 0x5b, 0xe1, 0x88, 0xa2,
  4400. 0x85, 0x23, 0x8f, 0x53, 0x6c, 0x1a, 0xec, 0x3f, 0x9d, 0x73, 0x91, 0x83, 0xe5, 0x52, 0xfa, 0x5f,
  4401. 0x6b, 0x43, 0xc9, 0x72, 0xf5, 0x32, 0x9b, 0x29, 0x59, 0xae, 0x76, 0x05, 0x16, 0xfa, 0x38, 0xe8,
  4402. 0xf9, 0x96, 0x47, 0x65, 0xa0, 0x57, 0x18, 0x20, 0x3e, 0xa5, 0x7d, 0x0d, 0x3a, 0x27, 0xd8, 0xed,
  4403. 0x13, 0xdf, 0xc4, 0xa7, 0x21, 0x76, 0x03, 0x8a, 0x56, 0xbd, 0x52, 0x66, 0x7c, 0xc7, 0x04, 0xf2,
  4404. 0x1e, 0x72, 0x70, 0x9f, 0xf2, 0xbd, 0xc4, 0xb1, 0xef, 0x49, 0xe4, 0xad, 0xcf, 0x8a, 0xb0, 0x79,
  4405. 0x1b, 0x05, 0x56, 0x6f, 0x77, 0x18, 0x1e, 0x63, 0x37, 0xb4, 0x7a, 0x88, 0x12, 0x9e, 0xc8, 0x7a,
  4406. 0x8a, 0xad, 0xd2, 0x6c, 0x6c, 0x95, 0xe7, 0x61, 0xeb, 0x0f, 0x45, 0x68, 0xdd, 0x26, 0xfd, 0xd1,
  4407. 0x3e, 0xf2, 0x91, 0x83, 0x43, 0xec, 0xa7, 0x37, 0x2d, 0x66, 0x37, 0x9d, 0x45, 0xa2, 0x1b, 0xd0,
  4408. 0xf0, 0xf1, 0x93, 0xa1, 0xe5, 0xe3, 0x3e, 0x13, 0x67, 0xc3, 0x18, 0x8f, 0xb5, 0x1b, 0x63, 0x95,
  4409. 0xaa, 0xe6, 0xa9, 0xd4, 0x58, 0xa1, 0x54, 0x0f, 0x58, 0x9b, 0xe7, 0x01, 0x7f, 0x5c, 0x84, 0xfa,
  4410. 0x1d, 0xe2, 0x86, 0xa8, 0x17, 0x8e, 0x19, 0x2f, 0xc6, 0x18, 0xef, 0x40, 0x79, 0xe8, 0x4b, 0xc5,
  4411. 0xa2, 0x7f, 0xb5, 0x55, 0xa8, 0x62, 0x07, 0x59, 0xb6, 0x78, 0x1a, 0x3e, 0x50, 0x32, 0x52, 0x99,
  4412. 0x87, 0x91, 0x47, 0x50, 0xbf, 0x8b, 0x07, 0x68, 0x68, 0x87, 0xda, 0x03, 0xb8, 0x80, 0xc6, 0xf6,
  4413. 0x66, 0x7a, 0x63, 0x83, 0xd3, 0x8b, 0x13, 0x08, 0xae, 0x22, 0x85, 0x89, 0x6e, 0x7d, 0x07, 0x16,
  4414. 0xee, 0xe2, 0x81, 0xe5, 0x32, 0x48, 0xa0, 0x3d, 0x9c, 0x4c, 0xf9, 0x62, 0x86, 0xb2, 0x10, 0xb7,
  4415. 0x9a, 0xf8, 0x1f, 0xab, 0xd0, 0xb8, 0x4b, 0x7a, 0x43, 0x07, 0xbb, 0xa1, 0xa6, 0x43, 0x3d, 0x78,
  4416. 0x8a, 0x8e, 0x8e, 0xb0, 0x2f, 0xe4, 0x27, 0x87, 0xda, 0xcb, 0x50, 0xb1, 0xdc, 0x01, 0x61, 0x32,
  4417. 0x5c, 0xd8, 0xe9, 0xc4, 0xf7, 0x78, 0xe0, 0x0e, 0x88, 0xc1, 0xa0, 0x54, 0xf8, 0xc7, 0x24, 0x08,
  4418. 0x85, 0x54, 0xd9, 0x7f, 0x6d, 0x13, 0x9a, 0x87, 0x28, 0xc0, 0xa6, 0x87, 0xc2, 0x63, 0x61, 0x75,
  4419. 0x0d, 0x3a, 0xb1, 0x8f, 0xc2, 0x63, 0xb6, 0x21, 0xe5, 0x0e, 0x07, 0xcc, 0xd2, 0xe8, 0x86, 0x7c,
  4420. 0x48, 0x95, 0xab, 0x47, 0xdc, 0x60, 0x48, 0x41, 0x35, 0x06, 0x1a, 0x8f, 0x29, 0xcc, 0xf3, 0x49,
  4421. 0x7f, 0xd8, 0xc3, 0x81, 0x5e, 0xe7, 0x30, 0x39, 0xd6, 0x5e, 0x83, 0x2a, 0xdd, 0x29, 0xd0, 0x1b,
  4422. 0x8c, 0xd3, 0xe5, 0x38, 0xa7, 0x74, 0xcb, 0xc0, 0xe0, 0x70, 0xed, 0x6d, 0x6a, 0x03, 0x63, 0xa9,
  4423. 0xea, 0x4d, 0x86, 0x9e, 0x10, 0x5e, 0x4c, 0xe8, 0x46, 0x1c, 0x57, 0xfb, 0x3a, 0x80, 0x27, 0x6d,
  4424. 0x29, 0xd0, 0x81, 0xad, 0xbc, 0x92, 0xdc, 0x48, 0x40, 0xe3, 0x24, 0x62, 0x6b, 0xb4, 0x77, 0xa0,
  4425. 0xe9, 0xe3, 0xc0, 0x23, 0x6e, 0x80, 0x03, 0x7d, 0x81, 0x11, 0x78, 0x31, 0x4e, 0xc0, 0x10, 0xc0,
  4426. 0xf8, 0xfa, 0x68, 0x85, 0xf6, 0x55, 0x68, 0x04, 0xc2, 0xa9, 0xe8, 0x8b, 0xec, 0xad, 0x27, 0x56,
  4427. 0x4b, 0x87, 0x63, 0x70, 0x6b, 0xa4, 0xaf, 0xd6, 0x18, 0x2f, 0xd0, 0x0c, 0x58, 0x95, 0xff, 0xcd,
  4428. 0xb8, 0x04, 0x5a, 0x59, 0x36, 0x24, 0xa1, 0x38, 0x1b, 0x2b, 0x41, 0x76, 0x52, 0xbb, 0x0a, 0x95,
  4429. 0x10, 0x1d, 0x05, 0x7a, 0x9b, 0x31, 0xb3, 0x14, 0xa7, 0xf1, 0x08, 0x1d, 0x19, 0x0c, 0xa8, 0xbd,
  4430. 0x03, 0x2d, 0x6a, 0x57, 0x3e, 0x55, 0xdb, 0x3e, 0xe9, 0x05, 0xfa, 0x12, 0xdb, 0x51, 0x8f, 0x63,
  4431. 0xdf, 0x13, 0x08, 0x77, 0x49, 0x2f, 0x30, 0x16, 0x71, 0x6c, 0xa4, 0xb4, 0xce, 0xce, 0x3c, 0xd6,
  4432. 0xf9, 0x18, 0x1a, 0xf7, 0x4e, 0x91, 0xe3, 0xd9, 0x38, 0x78, 0x9e, 0xe6, 0xf9, 0xa3, 0x22, 0x2c,
  4433. 0xc6, 0xd9, 0x9e, 0xc1, 0xbb, 0x66, 0x1d, 0xd2, 0x99, 0x9d, 0xfc, 0x3f, 0x4a, 0x00, 0xf7, 0x2d,
  4434. 0x1b, 0x73, 0x63, 0xd7, 0xd6, 0xa0, 0x36, 0x20, 0xbe, 0x83, 0x42, 0xb1, 0xbd, 0x18, 0x51, 0xc7,
  4435. 0x17, 0x5a, 0xa1, 0x2d, 0x1d, 0x3b, 0x1f, 0xa4, 0x39, 0x2e, 0x67, 0x39, 0xbe, 0x0e, 0xf5, 0x3e,
  4436. 0xf7, 0x6c, 0xcc, 0x86, 0x53, 0xef, 0x98, 0x72, 0x24, 0xe1, 0x89, 0xb0, 0xc0, 0x8d, 0x3a, 0x0a,
  4437. 0x0b, 0x32, 0x02, 0xd6, 0x62, 0x11, 0x70, 0x93, 0xda, 0x02, 0xea, 0x9b, 0xc4, 0xb5, 0x47, 0x7a,
  4438. 0x5d, 0xc6, 0x11, 0xd4, 0xdf, 0x73, 0xed, 0x51, 0x56, 0x67, 0x1a, 0x73, 0xe9, 0xcc, 0x75, 0xa8,
  4439. 0x63, 0xfe, 0xca, 0x85, 0x81, 0x67, 0xd9, 0x16, 0x70, 0xe5, 0x1b, 0x80, 0x79, 0xde, 0xc0, 0x17,
  4440. 0x35, 0xd8, 0xb8, 0x4f, 0x7c, 0xe7, 0x2e, 0x0a, 0xd1, 0xd8, 0x01, 0x1c, 0x0c, 0x0f, 0x0f, 0x64,
  4441. 0xda, 0x14, 0x89, 0xa5, 0x98, 0x8a, 0x96, 0x3c, 0xb2, 0x96, 0xf2, 0x72, 0x95, 0x72, 0x7e, 0x7c,
  4442. 0xae, 0xc4, 0xc2, 0xdc, 0x0d, 0x58, 0x46, 0xb6, 0x4d, 0x9e, 0x9a, 0xd8, 0xf1, 0xc2, 0x91, 0xc9,
  4443. 0x13, 0xaf, 0x2a, 0xdb, 0x6a, 0x89, 0x01, 0xee, 0xd1, 0xf9, 0x0f, 0x64, 0xb2, 0x95, 0x79, 0x11,
  4444. 0x91, 0xce, 0xd4, 0x13, 0x3a, 0xf3, 0xff, 0x50, 0xb5, 0x42, 0xec, 0x48, 0xd9, 0x6f, 0x26, 0x3c,
  4445. 0x9d, 0x6f, 0x39, 0x56, 0x68, 0x9d, 0xf0, 0x4c, 0x32, 0x30, 0x38, 0xa6, 0xf6, 0x3a, 0x2c, 0xf7,
  4446. 0x88, 0x6d, 0xe3, 0x1e, 0x65, 0xd6, 0x14, 0x54, 0x9b, 0x8c, 0x6a, 0x27, 0x02, 0xdc, 0xe7, 0xf4,
  4447. 0x63, 0xba, 0x05, 0x53, 0x74, 0x4b, 0x87, 0xba, 0x83, 0x4e, 0x2d, 0x67, 0xe8, 0x30, 0xaf, 0x59,
  4448. 0x34, 0xe4, 0x90, 0xee, 0x88, 0x4f, 0x7b, 0xf6, 0x30, 0xb0, 0x4e, 0xb0, 0x29, 0x71, 0x16, 0xd9,
  4449. 0xc3, 0x77, 0xc6, 0x80, 0x6f, 0x0a, 0x64, 0x4a, 0xc6, 0x72, 0x19, 0x4a, 0x4b, 0x90, 0xe1, 0xc3,
  4450. 0x14, 0x19, 0x81, 0xd3, 0x4e, 0x93, 0x11, 0xc8, 0x2f, 0x00, 0x38, 0xe8, 0xd4, 0xb4, 0xb1, 0x7b,
  4451. 0x14, 0x1e, 0x33, 0x6f, 0x56, 0x36, 0x9a, 0x0e, 0x3a, 0x7d, 0xc8, 0x26, 0x18, 0xd8, 0x72, 0x25,
  4452. 0xb8, 0x23, 0xc0, 0x96, 0x2b, 0xc0, 0x3a, 0xd4, 0x3d, 0x14, 0x52, 0x65, 0xd5, 0x97, 0x79, 0xb0,
  4453. 0x15, 0x43, 0x6a, 0x11, 0x94, 0x2e, 0x17, 0xba, 0xc6, 0xd6, 0x35, 0x1c, 0x74, 0xca, 0x24, 0xcc,
  4454. 0x80, 0x96, 0x2b, 0x80, 0x2b, 0x02, 0x68, 0xb9, 0x1c, 0xf8, 0x12, 0x2c, 0x0e, 0x5d, 0xeb, 0xc9,
  4455. 0x10, 0x0b, 0xf8, 0x2a, 0xe3, 0x7c, 0x81, 0xcf, 0x71, 0x94, 0xab, 0x50, 0xc1, 0xee, 0xd0, 0xd1,
  4456. 0x2f, 0x64, 0x5d, 0x35, 0x15, 0x35, 0x03, 0x6a, 0x2f, 0xc2, 0x82, 0x33, 0xb4, 0x43, 0xcb, 0xb3,
  4457. 0xb1, 0x49, 0x06, 0xfa, 0x1a, 0x13, 0x12, 0xc8, 0xa9, 0xbd, 0x81, 0xd2, 0x5a, 0x2e, 0xce, 0x65,
  4458. 0x2d, 0x55, 0xa8, 0x75, 0x31, 0xea, 0x63, 0x5f, 0x99, 0x16, 0x47, 0xba, 0x58, 0x52, 0xeb, 0x62,
  4459. 0xf9, 0x6c, 0xba, 0x58, 0x99, 0xae, 0x8b, 0xd5, 0xd9, 0x75, 0xb1, 0x36, 0x83, 0x2e, 0xd6, 0xa7,
  4460. 0xeb, 0x62, 0x63, 0x06, 0x5d, 0x6c, 0xce, 0xa4, 0x8b, 0x30, 0x59, 0x17, 0x17, 0x26, 0xe8, 0xe2,
  4461. 0xe2, 0x04, 0x5d, 0x6c, 0x4d, 0xd2, 0xc5, 0xf6, 0x14, 0x5d, 0x5c, 0xca, 0xd7, 0xc5, 0xce, 0x1c,
  4462. 0xba, 0xb8, 0x9c, 0xd1, 0xc5, 0x94, 0xb7, 0xd4, 0x66, 0x3b, 0x42, 0xad, 0xcc, 0xa3, 0xad, 0x7f,
  4463. 0xab, 0x82, 0xce, 0xb5, 0xf5, 0xdf, 0xe2, 0xd9, 0xa5, 0x85, 0x54, 0x95, 0x16, 0x52, 0x53, 0x5b,
  4464. 0x48, 0xfd, 0x6c, 0x16, 0xd2, 0x98, 0x6e, 0x21, 0xcd, 0xd9, 0x2d, 0x04, 0x66, 0xb0, 0x90, 0x85,
  4465. 0xe9, 0x16, 0xb2, 0x38, 0x83, 0x85, 0xb4, 0x66, 0xb2, 0x90, 0xf6, 0x64, 0x0b, 0x59, 0x9a, 0x60,
  4466. 0x21, 0x9d, 0x09, 0x16, 0xb2, 0x3c, 0xc9, 0x42, 0xb4, 0x29, 0x16, 0xb2, 0x92, 0x6f, 0x21, 0xab,
  4467. 0x73, 0x58, 0xc8, 0x85, 0x99, 0xbc, 0xf5, 0xda, 0x3c, 0xfa, 0xff, 0x2d, 0xa8, 0x73, 0xf5, 0x7f,
  4468. 0x86, 0xe3, 0x27, 0x5f, 0x98, 0x93, 0x3c, 0x7f, 0x5e, 0x82, 0x0a, 0x3d, 0x40, 0x46, 0x89, 0x69,
  4469. 0x31, 0x9e, 0x98, 0xea, 0x50, 0x3f, 0xc1, 0x7e, 0x10, 0x55, 0x46, 0xe4, 0x70, 0x06, 0x43, 0xba,
  4470. 0x06, 0x9d, 0x10, 0xfb, 0x4e, 0x60, 0x92, 0x81, 0x19, 0x60, 0xff, 0xc4, 0xea, 0x49, 0xa3, 0x6a,
  4471. 0xb3, 0xf9, 0xbd, 0xc1, 0x01, 0x9f, 0xd5, 0x6e, 0x42, 0xbd, 0xc7, 0xcb, 0x07, 0xc2, 0xe9, 0xaf,
  4472. 0xc4, 0x1f, 0x42, 0x54, 0x16, 0x0c, 0x89, 0x43, 0xd1, 0x6d, 0xab, 0x87, 0xdd, 0x80, 0xa7, 0x4f,
  4473. 0x29, 0xf4, 0x87, 0x1c, 0x64, 0x48, 0x1c, 0xa5, 0xf0, 0xeb, 0xf3, 0x08, 0xff, 0x2d, 0x68, 0x32,
  4474. 0x65, 0x60, 0xb5, 0xba, 0x1b, 0xb1, 0x5a, 0x5d, 0x79, 0x72, 0x61, 0x65, 0xeb, 0x2e, 0xb4, 0xbe,
  4475. 0x11, 0x10, 0xd7, 0xc0, 0x03, 0xec, 0x63, 0xb7, 0x87, 0xb5, 0x65, 0xa8, 0x98, 0x3e, 0x1e, 0x08,
  4476. 0x19, 0x97, 0x0d, 0x3c, 0x98, 0x5e, 0x7f, 0xda, 0xf2, 0xa0, 0x2e, 0x9e, 0x69, 0xc6, 0xe2, 0xca,
  4477. 0x99, 0xcf, 0x32, 0xf7, 0xa0, 0x21, 0x81, 0xca, 0x2d, 0x5f, 0x91, 0x55, 0xc5, 0x92, 0xda, 0x01,
  4478. 0x71, 0xe8, 0xd6, 0xbb, 0xb0, 0x10, 0x53, 0x40, 0x25, 0xa5, 0x6b, 0x49, 0x4a, 0x09, 0x61, 0x0a,
  4479. 0xbd, 0x15, 0xc4, 0xde, 0x87, 0x36, 0x23, 0x16, 0x15, 0xd1, 0x54, 0xf4, 0x5e, 0x4f, 0xd2, 0xbb,
  4480. 0xa0, 0x2c, 0x0a, 0x48, 0x92, 0x7b, 0xd0, 0x12, 0x24, 0xc3, 0x63, 0xf6, 0x6e, 0x55, 0x14, 0x6f,
  4481. 0x24, 0x29, 0xae, 0xa6, 0xeb, 0x19, 0x74, 0x61, 0x9a, 0xa0, 0xac, 0x1e, 0xcc, 0x4d, 0x50, 0x2e,
  4482. 0x94, 0x04, 0x3f, 0x02, 0x2d, 0x41, 0x70, 0x7c, 0x76, 0xc8, 0x50, 0xbd, 0x95, 0xa4, 0xba, 0xae,
  4483. 0xa2, 0xca, 0x56, 0xa7, 0x5f, 0x8e, 0x88, 0xa1, 0xf3, 0xbe, 0x1c, 0xa1, 0xe9, 0x82, 0x98, 0x03,
  4484. 0x97, 0x38, 0xb1, 0x6c, 0x69, 0x22, 0x57, 0xb0, 0x6f, 0x27, 0xa9, 0x5f, 0x9d, 0x52, 0xf7, 0x88,
  4485. 0xcb, 0xf9, 0x2d, 0xc9, 0x7b, 0xe8, 0x5b, 0xee, 0x91, 0x92, 0xfa, 0x6a, 0x9c, 0x7a, 0x53, 0x2e,
  4486. 0x7c, 0x0c, 0x9d, 0xd8, 0xc2, 0x5d, 0xdf, 0x47, 0x6a, 0x05, 0xbf, 0x99, 0xe4, 0x2d, 0xe1, 0x53,
  4487. 0x63, 0x6b, 0x25, 0xd9, 0xdf, 0x94, 0xa1, 0xf3, 0x1e, 0x71, 0x93, 0x35, 0x5e, 0x0c, 0x9b, 0xc7,
  4488. 0x4c, 0x83, 0xcd, 0x71, 0xdd, 0xc9, 0x0c, 0x86, 0x87, 0x66, 0xa2, 0xd2, 0xff, 0x72, 0x56, 0xe1,
  4489. 0xb3, 0x09, 0x4e, 0xb7, 0x60, 0xe8, 0xc7, 0x79, 0xc9, 0x8f, 0x0d, 0x97, 0x69, 0xc2, 0x60, 0xf6,
  4490. 0x51, 0x88, 0xd4, 0x3b, 0xf1, 0x67, 0x78, 0x35, 0xbe, 0x53, 0xfe, 0x31, 0xb9, 0x5b, 0x30, 0x36,
  4491. 0x06, 0xf9, 0x87, 0xe8, 0x43, 0xd8, 0x78, 0x32, 0xc4, 0xfe, 0x48, 0xbd, 0x53, 0x39, 0xfb, 0x26,
  4492. 0xdf, 0xa7, 0xd8, 0xca, 0x6d, 0x2e, 0x3e, 0x51, 0x83, 0x34, 0x13, 0xd6, 0x3d, 0x14, 0x1e, 0xab,
  4493. 0xb7, 0xe0, 0xc5, 0x8f, 0xad, 0xb4, 0x15, 0x2a, 0x77, 0x58, 0xf3, 0x94, 0x90, 0xa8, 0x49, 0xf2,
  4494. 0x79, 0x09, 0xf4, 0x3d, 0x34, 0x0c, 0x8f, 0x77, 0x76, 0x7b, 0x3d, 0x1c, 0x04, 0x77, 0x48, 0x1f,
  4495. 0x4f, 0xeb, 0x73, 0x0c, 0x6c, 0xf2, 0x54, 0x56, 0xe5, 0xe9, 0x7f, 0xed, 0x0d, 0x1a, 0x10, 0x88,
  4496. 0x87, 0xe5, 0x91, 0x28, 0x51, 0x1a, 0xe1, 0xd4, 0x0f, 0x18, 0xdc, 0x10, 0x78, 0x34, 0x6b, 0xa2,
  4497. 0xd3, 0xc4, 0xb7, 0xbe, 0xcf, 0xfa, 0x13, 0x26, 0xf5, 0xdf, 0xe2, 0x40, 0x94, 0x00, 0x3c, 0xf6,
  4498. 0x6d, 0x9a, 0xc0, 0x84, 0xe4, 0x53, 0xcc, 0x91, 0x78, 0xfe, 0xd9, 0x60, 0x13, 0x14, 0x98, 0x0a,
  4499. 0x1e, 0xb5, 0xd9, 0x32, 0xef, 0xb9, 0x82, 0xdf, 0x5f, 0x8a, 0xb0, 0x2e, 0x64, 0xe4, 0x79, 0xf6,
  4500. 0x2c, 0x1d, 0x95, 0xe7, 0x23, 0xa4, 0xc4, 0x73, 0x57, 0x26, 0x3f, 0x77, 0x75, 0xb6, 0xe7, 0x9e,
  4501. 0xab, 0xa7, 0xf1, 0xc3, 0x12, 0xac, 0x71, 0xc6, 0x1e, 0x38, 0xf4, 0xb9, 0xad, 0xf0, 0x3f, 0x4d,
  4502. 0x33, 0xfe, 0x05, 0x42, 0xf8, 0x73, 0x51, 0x0a, 0x61, 0x1f, 0x05, 0xc1, 0x53, 0xe2, 0xf7, 0xff,
  4503. 0x07, 0xde, 0xfc, 0xc7, 0xb0, 0x18, 0xe7, 0xeb, 0x19, 0xfa, 0x3d, 0x2c, 0x42, 0xe4, 0x24, 0xdc,
  4504. 0x3f, 0xaf, 0x40, 0x73, 0xcf, 0xc3, 0x3e, 0x92, 0x87, 0x4d, 0x56, 0xb7, 0x2f, 0xb2, 0x3a, 0x2d,
  4505. 0x2f, 0xd3, 0xeb, 0x50, 0x0f, 0x86, 0x8e, 0x83, 0xfc, 0x91, 0xcc, 0xb9, 0xc5, 0x70, 0x86, 0x9c,
  4506. 0x3b, 0x53, 0xae, 0xad, 0xcc, 0x55, 0xae, 0x7d, 0x09, 0x16, 0x89, 0xe4, 0xcd, 0xb4, 0xfa, 0x52,
  4507. 0xbc, 0xe3, 0xb9, 0x07, 0xfd, 0x44, 0xef, 0xa7, 0x96, 0xea, 0xfd, 0xc4, 0x7b, 0x46, 0xf5, 0x54,
  4508. 0xcf, 0xe8, 0x2b, 0x89, 0x9e, 0x4d, 0x83, 0x89, 0x6e, 0x43, 0x99, 0x9e, 0xf1, 0x50, 0x1f, 0xef,
  4509. 0xd6, 0xbc, 0x19, 0xef, 0xd6, 0x34, 0xb3, 0x99, 0x9d, 0x4c, 0x70, 0x12, 0x3d, 0x9a, 0x58, 0x6b,
  4510. 0x0b, 0x92, 0xad, 0xad, 0xcb, 0x00, 0x7d, 0xec, 0xf9, 0xb8, 0x87, 0x42, 0xdc, 0x17, 0xa7, 0xde,
  4511. 0xd8, 0xcc, 0xd9, 0xba, 0x3b, 0x2a, 0xf5, 0x6b, 0xcd, 0xa3, 0x7e, 0xbf, 0x2c, 0x42, 0x33, 0xca,
  4512. 0x22, 0x6e, 0x43, 0xfb, 0x90, 0xf4, 0x63, 0xf1, 0x56, 0x24, 0x0e, 0x89, 0x04, 0x2f, 0x91, 0x78,
  4513. 0x74, 0x0b, 0x46, 0xeb, 0x30, 0x91, 0x89, 0x3c, 0x04, 0xcd, 0x25, 0xae, 0x99, 0xa2, 0xc3, 0xd3,
  4514. 0x82, 0x4b, 0x09, 0xa6, 0x52, 0x39, 0x4c, 0xb7, 0x60, 0x74, 0xdc, 0xd4, 0x5c, 0x14, 0x3d, 0x8f,
  4515. 0x60, 0x55, 0xd5, 0x67, 0xd3, 0xf6, 0x26, 0xdb, 0xcb, 0x46, 0x46, 0x0c, 0x51, 0x62, 0xae, 0x36,
  4516. 0x99, 0xcf, 0x8a, 0xd0, 0x4e, 0x6a, 0x87, 0xf6, 0x25, 0x68, 0xa6, 0x25, 0xa2, 0xce, 0xf5, 0xbb,
  4517. 0x05, 0x23, 0xc2, 0xa4, 0xd2, 0xfc, 0x24, 0x20, 0x2e, 0x3d, 0x83, 0xf1, 0x13, 0x99, 0x2a, 0x5d,
  4518. 0x4e, 0x1c, 0xd9, 0xa8, 0x34, 0x3f, 0x89, 0x4f, 0x44, 0xcf, 0xff, 0xfb, 0x32, 0x34, 0xc6, 0x47,
  4519. 0x07, 0xc5, 0xc9, 0xee, 0x35, 0x28, 0x1f, 0xe1, 0x50, 0x75, 0x12, 0x19, 0xdb, 0xbf, 0x41, 0x31,
  4520. 0x28, 0xa2, 0x37, 0x0c, 0x85, 0x7f, 0xcc, 0x43, 0xf4, 0x86, 0xa1, 0x76, 0x1d, 0x2a, 0x1e, 0x09,
  4521. 0x64, 0x07, 0x28, 0x07, 0x93, 0xa1, 0x68, 0x37, 0xa1, 0xd6, 0xc7, 0x36, 0x0e, 0xb1, 0x38, 0x51,
  4522. 0xe7, 0x20, 0x0b, 0x24, 0xed, 0x16, 0xd4, 0x89, 0xc7, 0xdb, 0x90, 0xb5, 0x49, 0xf8, 0x12, 0x8b,
  4523. 0xb2, 0x42, 0x53, 0x52, 0x51, 0xe4, 0xca, 0x63, 0x85, 0xa2, 0xd0, 0x33, 0x99, 0x87, 0xc2, 0xde,
  4524. 0xb1, 0x68, 0x5f, 0xe4, 0xe0, 0x72, 0x9c, 0x94, 0x9b, 0x68, 0xce, 0xe5, 0x26, 0xce, 0xdc, 0x41,
  4525. 0xfa, 0x6b, 0x15, 0xd6, 0xd4, 0xd9, 0xe4, 0x79, 0x8d, 0xf1, 0xbc, 0xc6, 0xf8, 0xdf, 0x5e, 0x63,
  4526. 0x7c, 0x0a, 0x55, 0x76, 0x41, 0x43, 0x49, 0xa9, 0x38, 0x07, 0x25, 0xed, 0x26, 0x54, 0xd8, 0x6d,
  4527. 0x93, 0x12, 0x5b, 0xb4, 0xae, 0x70, 0xf8, 0xa2, 0x6e, 0xc2, 0xd0, 0xb6, 0x7e, 0x56, 0x85, 0xa5,
  4528. 0x94, 0xd6, 0x9e, 0xf7, 0xa4, 0xce, 0x7b, 0x52, 0x67, 0xea, 0x49, 0xa9, 0x74, 0x58, 0x9b, 0xc7,
  4529. 0x1a, 0xbe, 0x0d, 0x10, 0xa5, 0x20, 0xcf, 0xf9, 0xce, 0xd7, 0xaf, 0x6a, 0x70, 0x31, 0xa7, 0x30,
  4530. 0x72, 0x7e, 0x4d, 0xe1, 0xfc, 0x9a, 0xc2, 0xf9, 0x35, 0x85, 0xc8, 0x0c, 0xff, 0x5e, 0x84, 0xc6,
  4531. 0xb8, 0x9c, 0x3e, 0xfd, 0x62, 0xd7, 0xf6, 0xb8, 0x3b, 0xc3, 0xd3, 0xee, 0xb5, 0x6c, 0xcd, 0x9a,
  4532. 0x05, 0x1e, 0x79, 0xf5, 0xf5, 0x26, 0xd4, 0x79, 0x65, 0x55, 0x06, 0x8f, 0x95, 0x6c, 0x41, 0x36,
  4533. 0x30, 0x24, 0x8e, 0xf6, 0x06, 0x34, 0xc4, 0x75, 0x25, 0x79, 0xb2, 0x5e, 0x4d, 0x9e, 0xac, 0x39,
  4534. 0xcc, 0x18, 0x63, 0x9d, 0xfd, 0x4e, 0x33, 0x86, 0x15, 0xc5, 0x65, 0x44, 0xed, 0xbd, 0xc9, 0x0e,
  4535. 0x29, 0x1b, 0x73, 0xc7, 0xad, 0x05, 0xb5, 0x4b, 0xfa, 0x49, 0x11, 0x5a, 0xc9, 0x2e, 0xc3, 0x0e,
  4536. 0x75, 0x44, 0x7c, 0x62, 0x7c, 0x7b, 0x5c, 0x71, 0xe6, 0xee, 0x16, 0x8c, 0x31, 0xde, 0xf3, 0x3d,
  4537. 0x5f, 0xfd, 0xb4, 0x08, 0xcd, 0xf1, 0xc9, 0x5e, 0xbb, 0x03, 0x2d, 0xb9, 0x8d, 0xd9, 0x23, 0x7d,
  4538. 0x2c, 0x1e, 0xf4, 0x72, 0xee, 0x83, 0xf2, 0x6e, 0xc7, 0xa2, 0x5c, 0x74, 0x87, 0xf4, 0xd5, 0xad,
  4539. 0xc0, 0xd2, 0x3c, 0x6f, 0xe3, 0xd7, 0x4d, 0xa8, 0x09, 0x47, 0xad, 0x38, 0xf1, 0xe5, 0x25, 0x28,
  4540. 0xe3, 0xde, 0x6a, 0x79, 0xc2, 0xa5, 0xbf, 0xca, 0xc4, 0x4b, 0x7f, 0xd3, 0x12, 0x8f, 0x94, 0x25,
  4541. 0xd6, 0x32, 0x96, 0x18, 0x73, 0x89, 0xf5, 0x19, 0x5c, 0x62, 0x63, 0xba, 0x4b, 0x6c, 0xce, 0xe0,
  4542. 0x12, 0x61, 0x26, 0x97, 0xb8, 0x30, 0xd9, 0x25, 0x2e, 0x4e, 0x70, 0x89, 0xad, 0x09, 0x2e, 0xb1,
  4543. 0x3d, 0xc9, 0x25, 0x2e, 0x4d, 0x71, 0x89, 0x9d, 0xac, 0x4b, 0x7c, 0x05, 0xda, 0x94, 0x78, 0xcc,
  4544. 0xd8, 0xf8, 0x49, 0xa0, 0xe5, 0xa0, 0xd3, 0x58, 0xae, 0x40, 0xd1, 0x2c, 0x37, 0x8e, 0xa6, 0x09,
  4545. 0x34, 0xcb, 0x8d, 0xa1, 0xc5, 0x03, 0xfd, 0x4a, 0xea, 0x9a, 0xe6, 0x4c, 0x27, 0x82, 0x8f, 0xf2,
  4546. 0x5c, 0xc0, 0x85, 0x6c, 0x6b, 0x29, 0xef, 0xd3, 0x13, 0xb5, 0x37, 0xd0, 0xae, 0x89, 0xb0, 0xbf,
  4547. 0x96, 0xb5, 0xfb, 0x47, 0x23, 0x0f, 0xf3, 0xdc, 0x9d, 0x25, 0x03, 0xaf, 0xcb, 0xa0, 0x7f, 0x31,
  4548. 0x7b, 0xb8, 0x1f, 0x37, 0xcd, 0x65, 0xb8, 0xbf, 0x0e, 0x35, 0x64, 0xdb, 0x54, 0x3f, 0xf5, 0xdc,
  4549. 0xde, 0x79, 0x15, 0xd9, 0xf6, 0xde, 0x40, 0xfb, 0x32, 0x40, 0xec, 0x89, 0xd6, 0xb3, 0xce, 0x3c,
  4550. 0xe2, 0xd6, 0x88, 0x61, 0x6a, 0x2f, 0x43, 0xab, 0x6f, 0x51, 0x0b, 0x72, 0x2c, 0x17, 0x85, 0xc4,
  4551. 0xd7, 0x37, 0x98, 0x82, 0x24, 0x27, 0x93, 0x57, 0x5e, 0x37, 0x53, 0x57, 0x5e, 0x5f, 0x82, 0xf2,
  4552. 0xa9, 0x63, 0xeb, 0x97, 0xb2, 0x16, 0xf7, 0xa1, 0x63, 0x1b, 0x14, 0x96, 0x2d, 0xb3, 0xbe, 0xf0,
  4553. 0xac, 0xb7, 0x62, 0x2f, 0x3f, 0xc3, 0xad, 0xd8, 0x17, 0xe7, 0xf1, 0x58, 0x3f, 0x00, 0x88, 0xe2,
  4554. 0xde, 0x9c, 0x5f, 0x1a, 0xbd, 0x0d, 0x0b, 0x03, 0xcb, 0xc6, 0x66, 0x7e, 0x48, 0x8d, 0x6e, 0x3c,
  4555. 0x77, 0x0b, 0x06, 0x0c, 0xc6, 0xa3, 0xc8, 0x8b, 0x87, 0xb0, 0xa2, 0xe8, 0xe6, 0x6a, 0xdf, 0x9d,
  4556. 0x1c, 0xbf, 0xae, 0x65, 0x13, 0xea, 0x9c, 0x96, 0xb0, 0x3a, 0x9c, 0xfd, 0xa9, 0x02, 0x17, 0xf3,
  4557. 0x9a, 0xd1, 0x0e, 0xbc, 0x70, 0x88, 0x02, 0xab, 0x67, 0xa2, 0xc4, 0x57, 0x42, 0xe6, 0xb8, 0xe6,
  4558. 0xcb, 0x45, 0xf3, 0x5a, 0xa2, 0xc2, 0x9a, 0xff, 0x55, 0x51, 0xb7, 0x60, 0x6c, 0x1e, 0x4e, 0xf8,
  4559. 0xe8, 0xe8, 0x3e, 0x74, 0x90, 0x67, 0x99, 0x9f, 0xe2, 0x51, 0xb4, 0x03, 0x97, 0x64, 0xa2, 0xae,
  4560. 0x95, 0xfc, 0xca, 0xaa, 0x5b, 0x30, 0xda, 0x28, 0xf9, 0xdd, 0xd5, 0xf7, 0x40, 0x27, 0xac, 0x2d,
  4561. 0x61, 0x5a, 0xa2, 0x21, 0x15, 0xd1, 0x2b, 0x67, 0xbb, 0xa2, 0xea, 0xde, 0x55, 0xb7, 0x60, 0xac,
  4562. 0x11, 0x75, 0x57, 0x2b, 0xa2, 0xef, 0x89, 0x5e, 0x4f, 0x44, 0xbf, 0x92, 0x47, 0x3f, 0xdd, 0x16,
  4563. 0x8a, 0xe8, 0x67, 0x1a, 0x46, 0x47, 0xb0, 0x29, 0xe8, 0xa3, 0xa8, 0x91, 0x18, 0x6d, 0xc1, 0x03,
  4564. 0xdc, 0x2b, 0xd9, 0x2d, 0x14, 0x6d, 0xc7, 0x6e, 0xc1, 0x58, 0x27, 0xb9, 0x3d, 0x49, 0x1c, 0x6d,
  4565. 0xc4, 0xba, 0xba, 0x2c, 0x5d, 0x88, 0x36, 0xaa, 0x65, 0xbd, 0x63, 0x5e, 0x0f, 0xb8, 0x5b, 0x30,
  4566. 0x84, 0x4c, 0xb2, 0xb0, 0x48, 0xc3, 0x8f, 0x23, 0x0d, 0x8f, 0xb5, 0x04, 0xb4, 0xf7, 0x27, 0x6b,
  4567. 0xf8, 0xa5, 0x9c, 0xb6, 0x11, 0xbf, 0x58, 0xa0, 0xd6, 0xea, 0xab, 0xb0, 0x10, 0xbf, 0xb9, 0xb0,
  4568. 0x1a, 0x7d, 0xdc, 0x57, 0x8e, 0xee, 0x38, 0xfc, 0xb6, 0x08, 0xe5, 0x47, 0x48, 0x7d, 0x2b, 0x62,
  4569. 0xfa, 0xc7, 0x6e, 0x19, 0xcf, 0x56, 0x3e, 0xf3, 0x37, 0x22, 0x73, 0x7d, 0xc1, 0x75, 0x05, 0x1a,
  4570. 0x32, 0xc2, 0xe4, 0x3c, 0xdf, 0xc7, 0xb0, 0xf4, 0x41, 0xaa, 0xde, 0xf4, 0x1c, 0x3f, 0x26, 0xf9,
  4571. 0x5d, 0x11, 0xca, 0x1f, 0x3a, 0xb6, 0x52, 0x7a, 0x97, 0xa0, 0x49, 0x7f, 0x03, 0x0f, 0xf5, 0xe4,
  4572. 0xbd, 0x92, 0x68, 0x82, 0x26, 0x7f, 0x9e, 0x8f, 0x07, 0xd6, 0xa9, 0xc8, 0xf2, 0xc4, 0x88, 0xae,
  4573. 0x42, 0x61, 0xe8, 0x5b, 0x87, 0xc3, 0x10, 0x8b, 0xcf, 0xf4, 0xa2, 0x09, 0x9a, 0xca, 0x3c, 0xf5,
  4574. 0x91, 0xe7, 0xe1, 0xbe, 0x38, 0x82, 0xcb, 0xe1, 0x99, 0xfb, 0x98, 0xb7, 0x5f, 0x85, 0x36, 0xf1,
  4575. 0x8f, 0x24, 0xae, 0x79, 0xb2, 0x73, 0x7b, 0x51, 0x7c, 0xbb, 0xba, 0xef, 0x93, 0x90, 0xec, 0x17,
  4576. 0x7f, 0x51, 0x2a, 0xef, 0xed, 0x1e, 0x1c, 0xd6, 0xd8, 0xc7, 0xa0, 0x6f, 0xfe, 0x33, 0x00, 0x00,
  4577. 0xff, 0xff, 0xdc, 0xb2, 0x46, 0x98, 0xe4, 0x3a, 0x00, 0x00,
  4578. }