]> granicus.if.org Git - icinga2/blob - lib/icinga/notificationresult.ti
Merge pull request #6727 from Icinga/feature/cluster-config-sync-stage
[icinga2] / lib / icinga / notificationresult.ti
1 /* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2
3 library icinga;
4
5 namespace icinga
6 {
7
8 class NotificationResult
9 {
10         [state] Timestamp execution_start;
11         [state] Timestamp execution_end;
12
13         [state] Value command;
14         [state] int exit_status;
15         [state] String output;
16
17         [state] bool active {
18                 default {{{ return true; }}}
19         };
20
21         [state] String execution_endpoint;
22 };
23
24 }