2 * Copyright (c) 2010-2021 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.fronius.internal.api;
15 import com.google.gson.annotations.SerializedName;
18 * The {@link PowerFlowRealtimeInverter} is responsible for storing
19 * the "inverter" node of the JSON response
21 * @author Thomas Rokohl - Initial contribution
23 public class PowerFlowRealtimeInverter {
29 @SerializedName("E_Day")
31 @SerializedName("E_Year")
33 @SerializedName("E_Total")
34 private double eTotal;
36 public double getDt() {
40 public void setDt(double dt) {
44 public double getP() {
48 public void setP(double p) {
52 public double geteDay() {
56 public void seteDay(double eDay) {
60 public double geteYear() {
64 public void seteYear(double eYear) {
68 public double geteTotal() {
72 public void seteTotal(double eTotal) {