mirror of
https://github.com/Unleash/unleash.git
synced 2025-05-22 01:16:07 +02:00
22 lines
542 B
TypeScript
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;
|
|
}
|