1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-07 01:16:28 +02:00
unleash.unleash/frontend/src/openapi/models/projectAddAccessSchema.ts
2023-12-04 21:49:49 +02:00

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