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.venstarthermostat.internal.dto;
15 import org.eclipse.jdt.annotation.NonNullByDefault;
18 * The {@link VenstarRuntime} represents one Runtime from the RuntimeData returned from the REST API
20 * @author Matthew Davies - Initial contribution
23 public class VenstarRuntime {
33 public long getTimeStamp() {
37 public void setTimeStamp(long ts) {
41 public int getHeat1Runtime() {
45 public void setHeat1Runtime(int heat1) {
49 public int getHeat2Runtime() {
53 public void setHeat2Runtime(int heat2) {
57 public int getCool1Runtime() {
61 public void setCool1Runtime(int cool1) {
65 public int getCool2Runtime() {
69 public void setCool2Runtime(int cool2) {
73 public int getAux1Runtime() {
77 public void setAux1Runtime(int aux1) {
81 public int getAux2Runtime() {
85 public void setAux2Runtime(int aux2) {
89 public int getFreeCoolRuntime() {
93 public void setFreeCoolRuntime(int fc) {