apim-developer-portal1
Version:
API management developer portal
13 lines (11 loc) • 332 B
text/typescript
import { ParameterContract } from "./parameter";
import { RepresentationContract } from "./representation";
/*
Model of API operation request
*/
export interface RequestContract {
description?: string;
queryParameters: ParameterContract[];
headers: ParameterContract[];
representations: RepresentationContract[];
}