mirror of
https://github.com/Unleash/unleash.git
synced 2025-12-09 20:04:11 +01:00
18 lines
461 B
TypeScript
18 lines
461 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
export type ArchivedFeatureSchemaEnvironmentsItem = {
|
|
/** `true` if the feature is enabled for the environment, otherwise `false`. */
|
|
enabled?: boolean;
|
|
/**
|
|
* The date when metrics where last collected for the feature environment
|
|
* @nullable
|
|
*/
|
|
lastSeenAt?: string | null;
|
|
/** The name of the environment */
|
|
name?: string;
|
|
};
|