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.ojelectronics.internal.models.groups;
15 import java.util.ArrayList;
16 import java.util.List;
18 import org.eclipse.jdt.annotation.NonNullByDefault;
19 import org.eclipse.jdt.annotation.Nullable;
20 import org.openhab.binding.ojelectronics.internal.models.thermostat.ThermostatModel;
23 * Model for content of a group
25 * @author Christian Kittel - Initial contribution
28 public class GroupContentModel {
34 public String groupName = "";
36 public List<ThermostatModel> thermostats = new ArrayList<ThermostatModel>();
38 public int regulationMode;
40 public @Nullable ScheduleModel schedule;
42 public int comfortSetpoint;
44 public String comfortEndTime = "";
46 public int manualModeSetpoint;
48 public boolean vacationEnabled;
50 public String vacationBeginDay = "";
52 public String vacationEndDay = "";
54 public int vacationTemperature;
56 public boolean lastPrimaryModeIsAuto;
58 public String boostEndTime = "";
60 public int frostProtectionTemperature;