{{path}}

{{description if description != None}}

{% for operation in operations %}

{{operation.method}}

{{operation.summary if operation.summary != None}}

{% if operation.parameters %}

Parameters

{% for parameter in operation.parameters %}
{{parameter.name}} {% if parameter.description %} - {{parameter.description}} {% endif %}
Type: {{parameter.dataType}}
Allow Multiple: {{parameter.allowMultiple}}
Required: {{parameter.required}}
{% endfor %}
{% endif %} {% if operation.notes %}

Implementation notes: {{operation.notes}}

{% endif %} {% if operation.responseClass %}

Response Class: {{operation.responseClass}}

{% endif %}
{% endfor %}