mirror of
https://github.com/Unleash/unleash.git
synced 2025-06-27 01:19:00 +02:00
15 lines
797 B
TypeScript
15 lines
797 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
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[][];
|
|
};
|