api-generator-templates/KotlinServer/blocks/enum/cases.twig

5 lines
253 B
Twig

{%- import '../../utils.twig' as utils -%}
{%- for value in values %}
{{ value.nameUpperCaseWithUnderscope }}({{ utils.formatEnumValue(valuesTypes, value) }}, "{{ value.description }}"){%- if not (loop.last) %},{% else %};{% endif %}
{%- endfor -%}