create-template.dto.d.ts 604 B

1234567891011121314151617
  1. import { NotificationStepDto } from '../workflows';
  2. import { IPreferenceChannels } from '../../entities/subscriber-preference';
  3. import { NotificationTemplateCustomData } from '../../types';
  4. export interface ICreateNotificationTemplateDto {
  5. name: string;
  6. tags: string[];
  7. description?: string;
  8. steps: NotificationStepDto[];
  9. notificationGroupId: string;
  10. active?: boolean;
  11. draft?: boolean;
  12. critical?: boolean;
  13. preferenceSettings?: IPreferenceChannels;
  14. blueprintId?: string;
  15. data?: NotificationTemplateCustomData;
  16. }
  17. //# sourceMappingURL=create-template.dto.d.ts.map