mirror of
https://github.com/Unleash/unleash.git
synced 2025-02-19 00:15:43 +01:00
31 lines
940 B
TypeScript
31 lines
940 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
/**
|
|
* A detailed description of the feature environment
|
|
*/
|
|
export interface ProjectFeatureEnvironmentSchema {
|
|
/** `true` if the feature is enabled for the environment, otherwise `false`. */
|
|
enabled: boolean;
|
|
/** Whether the feature has any enabled strategies defined. */
|
|
hasEnabledStrategies?: boolean;
|
|
/** Whether the feature has any strategies defined. */
|
|
hasStrategies?: boolean;
|
|
/**
|
|
* The date when metrics where last collected for the feature environment
|
|
* @nullable
|
|
*/
|
|
lastSeenAt: string | null;
|
|
/** The name of the environment */
|
|
name: string;
|
|
/** The sort order of the feature environment in the feature environments list */
|
|
sortOrder: number;
|
|
/** The type of the environment */
|
|
type: string;
|
|
/** The number of defined variants */
|
|
variantCount: number;
|
|
}
|