14 lines
326 B
Text
14 lines
326 B
Text
|
<#list endpoints as endpoint>
|
||
|
<#list endpoint.paths.paths>
|
||
|
<#items as segment>/${segment}</#items>
|
||
|
Input:
|
||
|
${endpoint.inputType?cap_first}
|
||
|
Output:
|
||
|
<#if endpoint.outputType.isPresent()>
|
||
|
${endpoint.outputType.get()?cap_first}
|
||
|
<#else>
|
||
|
Not specified
|
||
|
</#if>
|
||
|
</#list>
|
||
|
|
||
|
</#list>
|