1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-07 01:16:28 +02:00
unleash.unleash/frontend/src/openapi/models/projectCreatedSchema.ts
2023-12-04 21:49:49 +02:00

25 lines
845 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
import type { ProjectCreatedSchemaMode } from './projectCreatedSchemaMode';
/**
* Details about the newly created project.
*/
export interface ProjectCreatedSchema {
/** A default stickiness for the project affecting the default stickiness value for variants and Gradual Rollout strategy */
defaultStickiness?: string;
/** The project's description. */
description?: string | null;
/** A limit on the number of features allowed in the project. `null` if no limit. */
featureLimit?: number | null;
/** The project's identifier. */
id: string;
/** A mode of the project affecting what actions are possible in this project */
mode?: ProjectCreatedSchemaMode;
/** The project's name. */
name: string;
}