. * * @package LibreNMS * @link https://www.librenms.org * @copyright 2020 Tony Murray * @author Tony Murray */ namespace LibreNMS\Enum; class AlertScheduleStatus { const SET = 0; const LAPSED = 1; const ACTIVE = 2; }