2 * Copyright (c) 2010-2020 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
14 package org.openhab.binding.wlanthermo.internal.api.nano.data;
16 import java.util.ArrayList;
17 import java.util.List;
19 import com.google.gson.annotations.Expose;
20 import com.google.gson.annotations.SerializedName;
23 * This DTO is used to parse the JSON
24 * Class is auto-generated from JSON using http://www.jsonschema2pojo.org/
26 * @author Christian Schlipp - Initial contribution
28 public class Pitmaster {
30 @SerializedName("type")
32 private List<String> type = new ArrayList<String>();
35 private List<Pm> pm = new ArrayList<Pm>();
38 * No args constructor for use in serialization
49 public Pitmaster(List<String> type, List<Pm> pm) {
55 public List<String> getType() {
59 public void setType(List<String> type) {
63 public Pitmaster withType(List<String> type) {
68 public List<Pm> getPm() {
72 public void setPm(List<Pm> pm) {
76 public Pitmaster withPm(List<Pm> pm) {