25 lines
420 B
Plaintext
25 lines
420 B
Plaintext
{{#models}}
|
|
{{#model}}
|
|
{{#imports}}
|
|
import { {{classname}} } from './{{classFilename}}.model';
|
|
{{/imports}}
|
|
|
|
/**
|
|
* {{classname}} Entity
|
|
* {{#description}}{{description}}{{/description}}
|
|
* Generated from OpenAPI schema
|
|
*/
|
|
export class {{classname}} {
|
|
{{#vars}}
|
|
{{#description}}
|
|
/**
|
|
* {{description}}
|
|
*/
|
|
{{/description}}
|
|
{{name}}{{^required}}?{{/required}}: {{dataType}};
|
|
{{/vars}}
|
|
}
|
|
|
|
{{/model}}
|
|
{{/models}}
|