/** * 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; }