1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-06-18 01:18:23 +02:00
unleash.unleash/frontend/src/openapi/models/consumptionDataPointSchema.ts
Tymoteusz Czech 1b7cf6d97d
chore: update api types in frontend (#9748)
Get backend changes into frontend types
2025-04-11 20:00:09 +02:00

17 lines
342 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
export interface ConsumptionDataPointSchema {
/**
* Time interval in milliseconds [start, end].
* @minItems 2
* @maxItems 2
*/
interval: number[];
/** Number of requests in this interval */
requests: number;
}