mirror of
https://github.com/Unleash/unleash.git
synced 2025-11-24 20:06:55 +01:00
18 lines
430 B
TypeScript
18 lines
430 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
export type CreateRoleWithPermissionsSchemaAnyOfFourPermissionsItem = {
|
|
/**
|
|
* The environments of the permission if the permission is environment specific
|
|
* @nullable
|
|
*/
|
|
environment?: string | null;
|
|
/** The id of the permission */
|
|
id: number;
|
|
/** The name of the permission */
|
|
name?: string;
|
|
};
|