1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-07 01:16:28 +02:00
unleash.unleash/frontend/src/openapi/models/clientMetricsSchemaBucket.ts
2023-06-14 14:40:24 +02:00

20 lines
729 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
import type { DateSchema } from './dateSchema';
import type { ClientMetricsSchemaBucketToggles } from './clientMetricsSchemaBucketToggles';
/**
* Holds all metrics gathered over a window of time. Typically 1 hour wide
*/
export type ClientMetricsSchemaBucket = {
/** The start of the time window these metrics are valid for. The window is usually 1 hour wide */
start: DateSchema;
/** The end of the time window these metrics are valid for. The window is 1 hour wide */
stop: DateSchema;
/** an object containing feature names with yes/no plus variant usage */
toggles: ClientMetricsSchemaBucketToggles;
};