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.melcloud.internal.api.json;
15 import java.util.List;
17 import com.google.gson.annotations.Expose;
20 * The {@link Structure} is responsible of JSON data For MELCloud API
22 * Generated with jsonschema2pojo
24 * @author Luca Calcaterra - Initial contribution
25 * @author Wietse van Buitenen - Add Floor and Area
27 public class Structure {
30 private List<Floor> floors = null;
33 private List<Area> areas = null;
36 private List<Device> devices = null;
39 private List<Object> clients = null;
41 public List<Floor> getFloors() {
45 public void setFloors(List<Floor> floors) {
49 public List<Area> getAreas() {
53 public void setAreas(List<Area> areas) {
57 public List<Device> getDevices() {
61 public void setDevices(List<Device> devices) {
62 this.devices = devices;
65 public List<Object> getClients() {
69 public void setClients(List<Object> clients) {
70 this.clients = clients;