redoc/lib/components/ResponsesSamples/responses-samples.html
2017-02-14 11:18:59 +02:00

8 lines
330 B
HTML

<header *ngIf="data.responses.length"> Response samples </header>
<tabs *ngIf="data.responses.length">
<tab *ngFor="let response of data.responses" [tabTitle]="response.code + ' ' + response.description | marked"
[tabStatus]="response.type">
<schema-sample [pointer]="response.pointer"></schema-sample>
</tab>
</tabs>