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 used for projects listing purposes
|
|
|
|
*/
|
2023-01-05 11:57:53 +01:00
|
|
|
export interface ProjectSchema {
|
2023-02-24 11:31:37 +01:00
|
|
|
/** The id of this project */
|
2023-01-05 11:57:53 +01:00
|
|
|
id: string;
|
2023-02-24 11:31:37 +01:00
|
|
|
/** The name of this project */
|
2023-01-05 11:57:53 +01:00
|
|
|
name: string;
|
2023-02-24 11:31:37 +01:00
|
|
|
/** Additional information about the project */
|
|
|
|
description?: string | null;
|
|
|
|
/** An indicator of the [project's health](https://docs.getunleash.io/reference/technical-debt#health-rating) on a scale from 0 to 100 */
|
2023-01-05 11:57:53 +01:00
|
|
|
health?: number;
|
2023-02-24 11:31:37 +01:00
|
|
|
/** The number of features this project has */
|
2023-01-05 11:57:53 +01:00
|
|
|
featureCount?: number;
|
2023-02-24 11:31:37 +01:00
|
|
|
/** The number of members this project has */
|
2023-01-05 11:57:53 +01:00
|
|
|
memberCount?: number;
|
|
|
|
createdAt?: string;
|
|
|
|
updatedAt?: string | null;
|
2023-02-24 11:31:37 +01:00
|
|
|
/** `true` if the project was favorited, otherwise `false`. */
|
2023-01-05 11:57:53 +01:00
|
|
|
favorite?: boolean;
|
|
|
|
}
|