evolution-api / src /api /dto /chatbot.dto.ts
oex2003's picture
Deploy Evolution API to Hugging Face Space
5e518ea
export class Session {
remoteJid?: string;
sessionId?: string;
status?: string;
createdAt?: number;
updateAt?: number;
}
export class IgnoreJidDto {
remoteJid?: string;
action?: string;
}