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

8 lines
319 B
HTML
Raw Normal View History

2016-03-14 22:29:27 +03:00
<header *ngIf="data.responses.length"> Response samples </header>
<tabs *ngIf="data.responses.length">
2016-04-29 22:57:24 +03:00
<tab *ngFor="let 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>