redoc/lib/components/ResponsesSamples/responses-samples.html

8 lines
317 B
HTML
Raw Normal View History

<header *ngIf="data.responses.length"> Responses samples </header>
<tabs *ngIf="data.responses.length">
<tab *ngFor="#response of data.responses" tabTitle="{{response.code}} {{response.description}}"
[tabStatus]="response.type">
<schema-sample [pointer]="response.pointer"></schema-sample>
2015-10-22 20:53:07 +03:00
</tab>
</tabs>