apim-developer-portal1
Version:
API management developer portal
22 lines (18 loc) • 416 B
text/typescript
import { ReportRecord } from "./reportRecord";
/**
* Metrics aggregated by operation.
*/
export interface ReportRecordByOperation extends ReportRecord {
/**
* Operation name, e.g. "Get".
*/
name: string;
/**
* Operation identifier, e.g. "/apis/httpbin/operations/get".
*/
operationId: string;
/**
* API identifier, e.g. "/apis/httpbin".
*/
apiId: string;
}