/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { Image } from './Image'; export type User = { /** * Unique user ID (primary key) */ id?: number; image?: Image; /** * User email */ mail?: string; /** * Username (alphanumeric + _ or -) */ nickname: string; /** * Display name */ disp_name?: string; /** * User description */ user_desc?: string; /** * Timestamp when the user was created */ creation_date?: string; };