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.fronius.internal.api;
15 import com.google.gson.annotations.SerializedName;
18 * The {@link HeadRequestArguments} is responsible for storing
19 * the "RequestArguments" node from the {@link Head}
21 * @author Thomas Rokohl - Initial contribution
23 public class HeadRequestArguments {
24 @SerializedName("DataCollection")
25 private String dataCollection;
26 @SerializedName("DeviceClass")
27 private String deviceClass;
28 @SerializedName("DeviceId")
29 private String deviceId;
30 @SerializedName("Scope")
33 public String getDataCollection() {
34 if (null == dataCollection) {
37 return dataCollection;
40 public void setDataCollection(String dataCollection) {
41 this.dataCollection = dataCollection;
44 public String getDeviceClass() {
45 if (null == deviceClass) {
51 public void setDeviceClass(String deviceClass) {
52 this.deviceClass = deviceClass;
55 public String getDeviceId() {
56 if (null == deviceId) {
62 public void setDeviceId(String deviceId) {
63 this.deviceId = deviceId;
66 public String getScope() {
73 public void setScope(String scope) {