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.goecharger.internal.api;
15 import com.google.gson.annotations.SerializedName;
18 * The {@link GoEStatusResponseDTO} class represents a json response from the
21 * @author Samuel Brucksch - Initial contribution
22 * @author Reinhard Plaim - move some properties to base DTO
24 public class GoEStatusResponseDTO extends GoEStatusResponseBaseDTO {
25 @SerializedName("version")
26 public String version;
28 @SerializedName("pha")
29 public Integer phases;
31 @SerializedName("ast")
32 public Integer accessConfiguration;
34 @SerializedName("alw")
35 public Integer allowCharging;
37 @SerializedName("tmp")
38 public Integer temperature;
40 @SerializedName("dwo")
41 public Integer sessionChargeConsumptionLimit;
43 @SerializedName("dws")
44 public Long sessionChargeConsumption;
46 @SerializedName("amx")
47 public Integer maxCurrentTemporary;
49 @SerializedName("nrg")
50 public Integer[] energy;