2 * Copyright (c) 2010-2023 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.wlanthermo.internal.api.esp32.dto.settings;
15 import java.util.List;
17 import com.google.gson.annotations.Expose;
18 import com.google.gson.annotations.SerializedName;
21 * This DTO is used to parse the JSON
22 * Class is auto-generated from JSON using http://www.jsonschema2pojo.org/
24 * @author Christian Schlipp - Initial contribution
31 @SerializedName("token")
37 @SerializedName("repeat")
39 private Integer repeat;
40 @SerializedName("service")
42 private Integer service;
43 @SerializedName("services")
45 private List<String> services = null;
47 public Integer getOn() {
51 public void setOn(Integer on) {
55 public String getToken() {
59 public void setToken(String token) {
63 public String getId() {
67 public void setId(String id) {
71 public Integer getRepeat() {
75 public void setRepeat(Integer repeat) {
79 public Integer getService() {
83 public void setService(Integer service) {
84 this.service = service;
87 public List<String> getServices() {
91 public void setServices(List<String> services) {
92 this.services = services;