Files
romm/frontend/src/__generated__/models/UserSchema.ts
2024-07-09 13:43:14 +02:00

19 lines
404 B
TypeScript

/* generated using openapi-typescript-codegen -- do no edit */
/* istanbul ignore file */
/* tslint:disable */
import type { Role } from "./Role";
export type UserSchema = {
id: number;
username: string;
enabled: boolean;
role: Role;
oauth_scopes: Array<string>;
avatar_path: string;
last_login: string | null;
last_active: string | null;
created_at: string;
updated_at: string;
};