mirror of
https://github.com/Unleash/unleash.git
synced 2025-11-24 20:06:55 +01:00
18 lines
553 B
TypeScript
18 lines
553 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-level-permissions) or [environment](https://docs.getunleash.io/reference/rbac#environment-level-permissions) permission name */
|
|
permission: string;
|
|
/** The project this permission applies to */
|
|
project?: string;
|
|
}
|