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

23 lines
761 B
TypeScript

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