2 * Copyright (c) 2010-2023 Contributors to the openHAB project
4 * See the NOTICE file(s) distributed with this work for additional
7 * This program and the accompanying materials are made available under the
8 * terms of the Eclipse Public License 2.0 which is available at
9 * http://www.eclipse.org/legal/epl-2.0
11 * SPDX-License-Identifier: EPL-2.0
13 package org.openhab.binding.ecobee.internal.dto.thermostat;
16 * The {@link GeneralSettingDTO} represent the General alert/reminder type. It is
17 * used when getting/setting the Thermostat NotificationSettings object. The type
18 * corresponds to the Alert.notificationType returned when alerts are included in
19 * the selection. See Alert for more information.
21 * @author Mark Hilbush - Initial contribution
23 public class GeneralSettingDTO {
26 * Boolean value representing whether or not alerts/reminders are enabled for this notification type or not.
28 public Boolean enabled;
31 * The type of notification. Possible values are: temp
36 * Boolean value representing whether or not alerts/reminders should be sent to the
37 * technician/contractor associated with the thermostat.
39 public Boolean remindTechnician;