feat: creating chats for cards and clients, sending and deleting text messages
This commit is contained in:
14
src/client/models/MessageSchema.ts
Normal file
14
src/client/models/MessageSchema.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
/* 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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user