/** * Generated by Orval * Do not edit manually. * See `gen:api` script in package.json */ import type { RoleSchema } from './roleSchema'; /** * A collection of user roles */ export interface RolesWithVersionSchema { /** A list of roles */ roles: RoleSchema[]; /** The version of this schema */ version: number; }