/**
 * {{@key}}
 {{#if description}}* {{description}}{{/if~}}
 *
 {{#each properties}}
 * @param { {{~typeConvert this~}} } {{#if _required}}{{@key}}{{else}}[{{@key}}]{{/if}} {{#if description}} - {{description}}{{/if}}
 {{/each}}
 */
class {{@key}} {

  static propertyTypes =  [
    {{#each properties}}
      {
        name: "{{@key}}",
        type: "{{typeConvert this}}"
      },
    {{/each}}
  ];

  {{#each properties}}
    {{@key}};
  {{/each}}
}