1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-19 00:15:43 +01:00
unleash.unleash/frontend/src/openapi/models/projectUsersSchema.ts
2023-12-04 21:49:49 +02:00

19 lines
556 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
import type { RoleSchema } from './roleSchema';
import type { UserWithProjectRoleSchema } from './userWithProjectRoleSchema';
/**
* An overview of users and available roles within a project.
* @deprecated
*/
export interface ProjectUsersSchema {
/** A list of roles that are available for this project */
roles: RoleSchema[];
/** A list of users with access to this project and their role within it. */
users: UserWithProjectRoleSchema[];
}