1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-10-27 11:02:16 +01:00
unleash.unleash/frontend/src/openapi/models/instanceAdminStatsSchemaEdgeInstances.ts

22 lines
527 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
/**
* The rounded up average number of edge instances in the last month and month before last
*/
export type InstanceAdminStatsSchemaEdgeInstances = {
/**
* The rounded up average number of edge instances in the last month
* @minimum 0
*/
lastMonth?: number;
/**
* The rounded up average number of edge instances in the month before last
* @minimum 0
*/
monthBeforeLast?: number;
};