import { CommonEntity } from '@servicelabsco/nestjs-utility-services'; import { GchatNotificationAttributesDto } from '../dtos/gchat.notification.attributes.dto'; import { NotificationEntity } from './notification.entity'; import { GchatTemplateEntity } from '../../access/entities/gchat.template.entity'; export declare class GchatNotificationEntity extends CommonEntity { notification_id: number; template_id: number; through_webhook: boolean; filter_condition: any; active: boolean; attributes: GchatNotificationAttributesDto; notification: NotificationEntity; template: GchatTemplateEntity; }