{"version":3,"sources":["../../../packages/core/notification/notification-message.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAChC;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,YAAY,EAAE,MAAM,CAAC;IAErB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB;;OAEG;IACH,UAAU,EAAE,MAAM,GAAG,MAAM,CAAC;IAE5B;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IAEd;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAEhB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;CACtB","file":"notification-message.d.ts","sourcesContent":["/**\r\n * Notification message come directly from IFeatureMessageClient on the gateway.\r\n */\r\nexport interface NotificationMessage {\r\n    /**\r\n     * Gets or sets the identity of notification message.\r\n     */\r\n    id: string;\r\n\r\n    /**\r\n     * Gets or sets the started time. Set only when initially created a notification otherwise set to null.\r\n     */\r\n    beginTime?: string;\r\n\r\n    /**\r\n     * Gets or sets the instance time. Set always with current source time.\r\n     */\r\n    instanceTime: string;\r\n\r\n    /**\r\n     * Gets or sets the completed time. Set when the notification message is completed or error'ed out.\r\n     */\r\n    endTime?: string;\r\n\r\n    /**\r\n     * Gets or sets the notification error level.\r\n     */\r\n    errorLevel: number | string;\r\n\r\n    /**\r\n     * The title.\r\n     */\r\n    title: string;\r\n\r\n    /**\r\n     * The message.\r\n     */\r\n    message: string;\r\n\r\n    /**\r\n     * The notification source type.\r\n     */\r\n    sourceType: number;\r\n\r\n    /** <summary>\r\n     * The notification source name.\r\n     */\r\n    sourceName: string;\r\n}\r\n"]}