2 * Copyright (c) 2010-2024 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.boschshc.internal.devices.bridge.dto;
15 import java.util.List;
18 * Public Information of the controller.
21 * Currently, only the ipAddress is used for discovery. More fields can be added on demand.
27 * "apiVersions":["1.2","2.1"],
29 * "shcIpAddress":"192.168.1.2",
34 * @author Gerd Zanker - Initial contribution
36 public class PublicInformation {
37 public PublicInformation() {
38 this.shcIpAddress = "";
39 this.shcGeneration = "";
42 public List<String> apiVersions;
43 public String shcIpAddress;
44 public String shcGeneration;