]> git.basschouten.com Git - openhab-addons.git/blob
f5c14c802ede5b7a8857388fa9d4fccc27c83261
[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 Pitmaster {
27
28     @SerializedName("type")
29     @Expose
30     private List<String> type = null;
31     @SerializedName("pm")
32     @Expose
33     private List<Pm> pm = null;
34
35     public List<String> getType() {
36         return type;
37     }
38
39     public void setType(List<String> type) {
40         this.type = type;
41     }
42
43     public List<Pm> getPm() {
44         return pm;
45     }
46
47     public void setPm(List<Pm> pm) {
48         this.pm = pm;
49     }
50 }