api-generator-templates/KotlinServer/Class.kt.twig

23 lines
797 B
Twig

/*
* This code is autogenerated by Touch Instinct tools
*/
@file:Suppress("UnusedImports")
package {{ packageName }}.api
import com.fasterxml.jackson.annotation.JsonInclude
import com.fasterxml.jackson.annotation.JsonFormat
import java.math.BigDecimal
import java.time.LocalDate
import java.time.ZonedDateTime
{% if (description is not empty) -%}
/**
* {{ description }}
*/
{% endif -%}
open class {% include 'blocks/class/classtype.twig' with { type: type } %} (
{%- include 'blocks/class/constructor-fields-info.twig' with { fields: allFieldsOrdered, superclassesFields: superclassesFields } %}
){% include 'blocks/class/supertype.twig' with { type: type, parent: parent } %} {%- include 'blocks/class/fields-super-initialization.twig' with { fields: superclassesFields } %}