You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
275 B
9 lines
275 B
4 years ago
|
{% macro describe_property(prop) %}
|
||
|
{{prop.name}}, {{prop.data_type}}
|
||
|
{%- if prop.default -%}
|
||
|
, default: "{{prop.default | print_typed_value}}"
|
||
|
{%- endif -%}
|
||
|
{%- if prop.optional %}, OPTIONAL{% endif %}
|
||
|
{%- if prop.multiple %}, MULTIPLE{% endif %}
|
||
|
{% endmacro input %}
|