mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +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[];
 | |
| }
 |