mirror of
https://github.com/Unleash/unleash.git
synced 2025-05-22 01:16:07 +02:00
19 lines
501 B
TypeScript
19 lines
501 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
/**
|
|
* Data used to update change request in an environment
|
|
*/
|
|
export interface UpdateChangeRequestEnvironmentConfigSchema {
|
|
/** `true` if change requests should be enabled, otherwise `false`. */
|
|
changeRequestsEnabled: boolean;
|
|
/**
|
|
* The number of approvals required before a change request can be applied in this environment.
|
|
* @minimum 0
|
|
*/
|
|
requiredApprovals?: number;
|
|
}
|