]> git.basschouten.com Git - openhab-addons.git/blob
976be8762619f834dcf1bf631203ae3fb4921c05
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2023 Contributors to the openHAB project
3  *
4  * See the NOTICE file(s) distributed with this work for additional
5  * information.
6  *
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
10  *
11  * SPDX-License-Identifier: EPL-2.0
12  */
13 package org.openhab.binding.generacmobilelink.internal.dto;
14
15 /**
16  * {@link GeneratorStatusDTO} object from the MobileLink API
17  *
18  * @author Dan Cunningham - Initial contribution
19  */
20 public class GeneratorStatusDTO {
21     public Integer gensetID;
22     public String generatorDate;
23     public String generatorName;
24     public String generatorSerialNumber;
25     public String generatorModel;
26     public String generatorDescription;
27     public String generatorMDN;
28     public String generatorImei;
29     public String generatorIccid;
30     public String generatorTetherSerial;
31     public Boolean connected;
32     public Boolean greenLightLit;
33     public Boolean yellowLightLit;
34     public Boolean redLightLit;
35     public Boolean blueLightLit;
36     public String generatorStatus;
37     public String generatorStatusDate;
38     public String currentAlarmDescription;
39     public Integer runHours;
40     public Integer exerciseHours;
41     public String batteryVoltage;
42     public Integer fuelType;
43     public Integer fuelLevel;
44     public String generatorBrandImageURL;
45     public Boolean generatorServiceStatus;
46     public String signalStrength;
47     public String deviceId;
48     public Integer deviceTypeId;
49     public String firmwareVersion;
50     public String timezone;
51     public String mACAddress;
52     public String iPAddress;
53     public String sSID;
54 }