1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-16 00:06:40 +01:00
unleash.unleash/frontend/src/openapi/models/adminPermissionSchema.ts

22 lines
598 B
TypeScript
Raw Normal View History

2023-01-05 11:57:53 +01:00
/**
2023-03-15 13:30:07 +01:00
* Generated by Orval
2023-01-05 11:57:53 +01:00
* Do not edit manually.
2023-03-15 13:30:07 +01:00
* See `gen:api` script in package.json
2023-01-05 11:57:53 +01:00
*/
/**
* Describes a single permission
*/
2023-01-05 11:57:53 +01:00
export interface AdminPermissionSchema {
/** The identifier for this permission */
2023-01-05 11:57:53 +01:00
id: number;
/** The name of this permission */
2023-01-05 11:57:53 +01:00
name: string;
/** The name to display in listings of permissions */
2023-01-05 11:57:53 +01:00
displayName: string;
/** What level this permission applies to. Either root, project or the name of the environment it applies to */
2023-01-05 11:57:53 +01:00
type: string;
/** Which environment this permission applies to */
2023-01-05 11:57:53 +01:00
environment?: string;
}