mirror of
https://github.com/rommapp/romm.git
synced 2026-02-18 00:27:41 +01:00
19 lines
404 B
TypeScript
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;
|
|
};
|