scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
18 lines (17 loc) • 521 B
TypeScript
import { IEvolutionDatabaseQueue } from '../interfaces/i-evolution-database-queue';
export declare class EvolutionDatabaseQueueEntity implements IEvolutionDatabaseQueue {
active: boolean;
baseUrl: string;
createdAt: number;
id: string;
instanceName: string;
globalApikey: string;
log: string[];
sendAt: number;
notified: boolean;
notifiedAt: number;
phoneNumber: string;
text: string;
updatedAt: number;
constructor(data?: Partial<EvolutionDatabaseQueueEntity>);
}