]> git.basschouten.com Git - openhab-addons.git/blob
92a3d082b3a963f50cd80f5d6429786972d31043
[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.enphase.internal.dto;
14
15 /**
16  * Data class for Enphase Inverter data.
17  *
18  * @author Hilbrand Bouwkamp - Initial contribution
19  */
20 public class InverterDTO {
21     public String serialNumber;
22     public long lastReportDate;
23     public int devType;
24     public int lastReportWatts;
25     public int maxReportWatts;
26
27     /**
28      * @return the serialNumber
29      */
30     public String getSerialNumber() {
31         return serialNumber;
32     }
33 }