mirror of
https://github.com/Unleash/unleash.git
synced 2025-02-19 00:15:43 +01:00
19 lines
556 B
TypeScript
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[];
|
|
}
|