1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-12 13:48:35 +02:00
unleash.unleash/frontend/src/openapi/models/rolesSchema.ts
2024-04-26 13:31:15 +02:00

20 lines
354 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
import type { RoleSchema } from './roleSchema';
/**
* A list of roles
*/
export interface RolesSchema {
/** A list of roles */
roles: RoleSchema[];
/**
* The version of the role schema used
* @minimum 1
*/
version: number;
}