35 lines
670 B
TypeScript
35 lines
670 B
TypeScript
/* generated using openapi-typescript-codegen -- do not edit */
|
|
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
export type User = {
|
|
/**
|
|
* Unique user ID (primary key)
|
|
*/
|
|
id?: number;
|
|
/**
|
|
* ID of the user avatar (references images table)
|
|
*/
|
|
avatar_id?: number | null;
|
|
/**
|
|
* 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;
|
|
};
|
|
|