2 * Copyright (c) 2010-2022 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.livisismarthome.internal.client.api.entity.device;
16 * Defines the {@link GatewayDTO} structure.
18 * @author Oliver Kuhl - Initial contribution
20 public class GatewayDTO {
23 * Version of the configuration. Changes each time the configuration was changed via the LIVISI client app.
25 private String configVersion;
28 * @return the configuration version
30 public String getConfigVersion() {
35 * @param configVersion the config version to set
37 public void setConfigVersion(String configVersion) {
38 this.configVersion = configVersion;