mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-07 01:16:28 +02:00
18 lines
541 B
TypeScript
18 lines
541 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
/**
|
|
* Project and environment permissions
|
|
*/
|
|
export interface PermissionSchema {
|
|
/** The environment this permission applies to */
|
|
environment?: string;
|
|
/** [Project](https://docs.getunleash.io/reference/rbac#project-permissions) or [environment](https://docs.getunleash.io/reference/rbac#environment-permissions) permission name */
|
|
permission: string;
|
|
/** The project this permission applies to */
|
|
project?: string;
|
|
}
|