cannoli-interfaces
Version:
Interfaces de Projetos Cannoli
19 lines (18 loc) • 499 B
TypeScript
import { CannoliETopics } from '../../cannoli';
import { INotify } from '../interfaces';
export declare class NotifyEntity implements INotify {
active?: boolean;
companyId: string;
containerId: string;
createdAt: number | Date;
data: any;
eventId: string;
id: string;
notified: boolean;
notifiedAt: number | null;
topic: CannoliETopics;
topicId: string;
updatedAt: number | Date;
version?: string;
constructor(data?: Partial<NotifyEntity>);
}