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