1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-02 01:17:58 +02:00
unleash.unleash/frontend/src/openapi/models/requestsPerSecondSchemaDataResultItem.ts
2023-01-05 11:57:53 +01:00

16 lines
824 B
TypeScript

/**
* Generated by orval v6.10.3 🍺
* Do not edit manually.
* Unleash API
* OpenAPI spec version: 4.20.0-beta.1
*/
import type { RequestsPerSecondSchemaDataResultItemMetric } from './requestsPerSecondSchemaDataResultItemMetric';
import type { RequestsPerSecondSchemaDataResultItemValuesItemItem } from './requestsPerSecondSchemaDataResultItemValuesItemItem';
export type RequestsPerSecondSchemaDataResultItem = {
/** A key value set representing the metric */
metric?: RequestsPerSecondSchemaDataResultItemMetric;
/** An array of arrays. Each element of the array is an array of size 2 consisting of the 2 axis for the graph: in position zero the x axis represented as a number and position one the y axis represented as string */
values?: RequestsPerSecondSchemaDataResultItemValuesItemItem[][];
};