1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-05-22 01:16:07 +02:00
unleash.unleash/frontend/src/openapi/models/featureMetricsSchema.ts
2024-04-26 13:31:15 +02:00

22 lines
542 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
import type { FeatureEnvironmentMetricsSchema } from './featureEnvironmentMetricsSchema';
/**
* A batch of feature metrics
*/
export interface FeatureMetricsSchema {
/** Metrics gathered per environment */
data: FeatureEnvironmentMetricsSchema[];
/** The maturity level of this API (alpha, beta, stable, deprecated) */
maturity: string;
/**
* The version of this schema
* @minimum 1
*/
version: number;
}