15 lines
353 B
TypeScript
15 lines
353 B
TypeScript
/* generated using openapi-typescript-codegen -- do not edit */
|
|
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
import type { TgUserSchema } from './TgUserSchema';
|
|
export type MessageSchema = {
|
|
text: string;
|
|
chatId: number;
|
|
id: number;
|
|
createdAt: string;
|
|
tgSender: (TgUserSchema | null);
|
|
status: string;
|
|
};
|
|
|