This template is modified from the original one, to handle multiple status-code handling of response. Don't ask me how they work, I don't quite understand them in depth...
24 lines
274 B
Text
24 lines
274 B
Text
/* tslint:disable */
|
|
/* eslint-disable */
|
|
{{>licenseInfo}}
|
|
|
|
{{#models}}
|
|
{{#model}}
|
|
{{#isEnum}}
|
|
{{>modelEnum}}
|
|
|
|
{{/isEnum}}
|
|
{{^isEnum}}
|
|
{{#oneOf}}
|
|
{{#-first}}
|
|
{{>modelOneOf}}
|
|
|
|
{{/-first}}
|
|
{{/oneOf}}
|
|
{{^oneOf}}
|
|
{{>modelGeneric}}
|
|
|
|
{{/oneOf}}
|
|
{{/isEnum}}
|
|
{{/model}}
|
|
{{/models}}
|