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

8 lines
330 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">
<tab *ngFor="let response of data.responses" [tabTitle]="response.code + ' ' + response.description | marked"
[tabStatus]="response.type">
<schema-sample [pointer]="response.pointer"></schema-sample>
2015-10-22 20:53:07 +03:00
</tab>
</tabs>