Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
alerts-entry.model.ts 207 B
Newer Older
export interface AlertsEntry {
  processed: boolean;
  alertId: string;
  alertType: string;
  alertLevel: string;
  alertText: string;
  creationTime: Date;
  reportingTime: Date;
  parameters: string[];