/** * Generated by Orval * Do not edit manually. * See `gen:api` script in package.json */ import type { CreateProjectSchemaMode } from './createProjectSchemaMode'; /** * Data used to create a new [project](https://docs.getunleash.io/reference/projects). */ export interface CreateProjectSchema { /** 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; /** The project's identifier. */ id: string; /** A mode of the project affecting what actions are possible in this project */ mode?: CreateProjectSchemaMode; /** The project's name. */ name: string; }