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;
15 import java.util.List;
18 * The {@link ProgramDTO} is a container for the Schedule and its Climates. See Core Concepts for
19 * details on how the program is structured. The schedule property is a two dimensional array
20 * containing the climate names.
22 * @author Mark Hilbush - Initial contribution
24 public class ProgramDTO {
27 * The Schedule object defining the program schedule.
29 public List<List<String>> schedule;
32 * The list of Climate objects defining all the climates in the program schedule.
34 public List<ClimateDTO> climates;
37 * The currently active climate, identified by its ClimateRef.
39 public String currentClimateRef;