UNPKG

apim-developer-portal1

Version:

API management developer portal

16 lines (14 loc) 294 B
import { ReportRecord } from "./reportRecord"; /** * Metrics aggregated by API. */ export interface ReportRecordByApi extends ReportRecord { /** * API name, e.g. "HTTP Bin". */ name: string; /** * API identifier, e.g. "/apis/httpbin". */ apiId: string; }