]> git.basschouten.com Git - openhab-addons.git/blob
e0e4087970206a27e5ea91cebf11c51a32d512cb
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2023 Contributors to the openHAB project
3  *
4  * See the NOTICE file(s) distributed with this work for additional
5  * information.
6  *
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
10  *
11  * SPDX-License-Identifier: EPL-2.0
12  */
13 package org.openhab.binding.wlanthermo.internal.api.esp32.dto.data;
14
15 import java.util.List;
16
17 import com.google.gson.annotations.Expose;
18 import com.google.gson.annotations.SerializedName;
19
20 /**
21  * This DTO is used to parse the JSON
22  * Class is auto-generated from JSON using http://www.jsonschema2pojo.org/
23  *
24  * @author Christian Schlipp - Initial contribution
25  */
26 public class Data {
27
28     @SerializedName("system")
29     @Expose
30     private System system;
31     @SerializedName("channel")
32     @Expose
33     private List<Channel> channel = null;
34     @SerializedName("pitmaster")
35     @Expose
36     private Pitmaster pitmaster;
37
38     public System getSystem() {
39         return system;
40     }
41
42     public void setSystem(System system) {
43         this.system = system;
44     }
45
46     public List<Channel> getChannel() {
47         return channel;
48     }
49
50     public void setChannel(List<Channel> channel) {
51         this.channel = channel;
52     }
53
54     public Pitmaster getPitmaster() {
55         return pitmaster;
56     }
57
58     public void setPitmaster(Pitmaster pitmaster) {
59         this.pitmaster = pitmaster;
60     }
61 }