2023-01-05 11:57:53 +01:00
|
|
|
/**
|
2023-01-27 17:19:27 +01:00
|
|
|
* Generated by orval v6.11.0 🍺
|
2023-01-05 11:57:53 +01:00
|
|
|
* Do not edit manually.
|
|
|
|
* Unleash API
|
2023-03-10 09:36:31 +01:00
|
|
|
* OpenAPI spec version: 4.22.0-beta.55
|
2023-01-05 11:57:53 +01:00
|
|
|
*/
|
|
|
|
|
2023-02-24 11:31:37 +01:00
|
|
|
/**
|
|
|
|
* A definition of the project environment
|
|
|
|
*/
|
2023-01-05 11:57:53 +01:00
|
|
|
export interface EnvironmentSchema {
|
2023-02-24 11:31:37 +01:00
|
|
|
/** The name of the environment */
|
2023-01-05 11:57:53 +01:00
|
|
|
name: string;
|
2023-02-24 11:31:37 +01:00
|
|
|
/** The type of the environment */
|
2023-01-05 11:57:53 +01:00
|
|
|
type: string;
|
2023-02-24 11:31:37 +01:00
|
|
|
/** `true` if the environment is enabled for the project, otherwise `false`. */
|
2023-01-05 11:57:53 +01:00
|
|
|
enabled: boolean;
|
|
|
|
protected?: boolean;
|
2023-02-24 11:31:37 +01:00
|
|
|
/** The sort order of the environment in the environments list */
|
2023-01-05 11:57:53 +01:00
|
|
|
sortOrder?: number;
|
2023-02-24 11:31:37 +01:00
|
|
|
/** The number of projects with this environment */
|
2023-01-05 11:57:53 +01:00
|
|
|
projectCount?: number | null;
|
2023-02-24 11:31:37 +01:00
|
|
|
/** The number of API tokens for the project environment */
|
2023-01-05 11:57:53 +01:00
|
|
|
apiTokenCount?: number | null;
|
2023-02-24 11:31:37 +01:00
|
|
|
/** The number of enabled toggles for the project environment */
|
2023-01-05 11:57:53 +01:00
|
|
|
enabledToggleCount?: number | null;
|
|
|
|
}
|