cecon-interfaces
Version:
Interfaces de Projetos Cecon
14 lines (13 loc) • 395 B
TypeScript
import { EZeEvent } from '../enums';
import { IPayioZeConfig } from '../interfaces/i-ze-config';
export declare class PayioZeConfigEntity implements IPayioZeConfig {
autoAccept: boolean;
createdAt: Date;
events: EZeEvent[];
id: string;
name: string;
soundAlert: boolean;
updatedAt: Date;
webhook: string[];
constructor(data?: Partial<PayioZeConfigEntity>);
}