nyanimedb/modules/frontend/src/api/models/User.ts
nihonium feb763509e
All checks were successful
Build and Deploy Go App / build (push) Successful in 8m44s
Build and Deploy Go App / deploy (push) Successful in 3m24s
fix: regenerated frontend openapi functions
2025-10-26 02:51:53 +03:00

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;
};