nyanimedb/modules/frontend/src/api/models/User.ts
nihonium 51bf7b6f7e
All checks were successful
Build and Deploy Go App / build (push) Successful in 5m28s
Build and Deploy Go App / deploy (push) Successful in 26s
fix: UserTitle cards
2025-11-25 05:36:57 +03:00

33 lines
626 B
TypeScript

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