mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-07 01:16:28 +02:00
18 lines
400 B
TypeScript
18 lines
400 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
/**
|
|
* An object containing a collection of roles, a collection of groups and a collection of users.
|
|
*/
|
|
export interface ProjectAddAccessSchema {
|
|
/** A list of group IDs */
|
|
groups: number[];
|
|
/** A list of role IDs */
|
|
roles: number[];
|
|
/** A list of user IDs */
|
|
users: number[];
|
|
}
|