1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-02 01:17:58 +02:00
unleash.unleash/frontend/src/openapi/models/projectAccessConfigurationSchema.ts
andreas-unleash c5914a077f
chore: generate types (#5074)
Generate orval types

---------

Signed-off-by: andreas-unleash <andreas@getunleash.ai>
2023-10-18 09:55:07 +03:00

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[];
}