All Downloads are FREE. Search and download functionalities are using the official Maven repository.

template.ApiDoc.btl Maven / Gradle / Ivy

There is a newer version: 0.5
Show newest version

# ${desc}
<%
for(doc in list){
%>
## ${doc.desc}
**URL:** ${doc.url}

**Type:** ${doc.type}

**Content-Type:** ${doc.contentType}

<%if(isNotEmpty(doc.headers)){%>
**Request-headers:**

Name | Type|Description
---|---|---
${doc.headers}
<%}%>

<%if(isNotEmpty(doc.requestParams)){%>
**Request-parameters:**

Parameter | Type|Description|Required
---|---|---|---
${doc.requestParams}
<%}%>

<%if(isNotEmpty(doc.requestUsage)){%>
**Request-example:**
```
${doc.requestUsage}
```
<%}%>
<%if(isNotEmpty(doc.responseParams)){%>
**Response-fields:**

Field | Type|Description
---|---|---
${doc.responseParams}
<%}%>

<%if(isNotEmpty(doc.responseUsage)){%>
**Response-example:**
```
${doc.responseUsage}
```
<%}%>

<% } %>




© 2015 - 2025 Weber Informatics LLC | Privacy Policy