1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-01 00:08:27 +01:00
unleash.unleash/frontend/src/openapi/models/projectCreatedSchemaChangeRequestEnvironmentsItem.ts

16 lines
578 B
TypeScript
Raw Normal View History

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
export type ProjectCreatedSchemaChangeRequestEnvironmentsItem = {
/** The name of the environment this change request configuration applies to. */
name: string;
/**
* The number of approvals required for a change request to be fully approved and ready to applied in this environment. If no value is provided, it will be set to the default number, which is 1. The value must be greater than or equal to 1.
* @minimum 1
*/
requiredApprovals: number;
};