mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-02 01:17:58 +02:00
15 lines
484 B
TypeScript
15 lines
484 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { ProjectAccessConfigurationSchemaRolesItem } from './projectAccessConfigurationSchemaRolesItem';
|
|
|
|
/**
|
|
* An object describing roles for a project and what users and groups are part of that role.
|
|
*/
|
|
export interface ProjectAccessConfigurationSchema {
|
|
/** A list of roles that are available within this project. */
|
|
roles: ProjectAccessConfigurationSchemaRolesItem[];
|
|
}
|