apim-developer-portal1
Version:
API management developer portal
12 lines (11 loc) • 321 B
text/typescript
import { RepresentationContract } from "./representation";
import { ParameterContract } from "./parameter";
/*
* Model of API operation response
*/
export interface ResponseContract {
headers?: ParameterContract[];
statusCode: number;
representations?: RepresentationContract[];
description?: string;
}