]> git.basschouten.com Git - openhab-addons.git/blob
54a6c77426e0e6cbbc22f63878dead4afff674a3
[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.wolfsmartset.internal.dto;
14
15 import java.util.List;
16
17 import javax.annotation.Generated;
18
19 import com.google.gson.annotations.Expose;
20 import com.google.gson.annotations.SerializedName;
21
22 /**
23  * generated with https://www.jsonschema2pojo.org/
24  * 
25  * @author Bo Biene - Initial contribution
26  */
27 @Generated("jsonschema2pojo")
28 public class GetParameterValuesDTO {
29
30     @SerializedName("LastAccess")
31     @Expose
32     private String lastAccess;
33     @SerializedName("Values")
34     @Expose
35     private List<ValueDTO> values = null;
36     @SerializedName("IsNewJobCreated")
37     @Expose
38     private Boolean isNewJobCreated;
39
40     public String getLastAccess() {
41         return lastAccess;
42     }
43
44     public void setLastAccess(String lastAccess) {
45         this.lastAccess = lastAccess;
46     }
47
48     public List<ValueDTO> getValues() {
49         return values;
50     }
51
52     public void setValues(List<ValueDTO> values) {
53         this.values = values;
54     }
55
56     public boolean getIsNewJobCreated() {
57         return isNewJobCreated != null ? isNewJobCreated : false;
58     }
59
60     public void setIsNewJobCreated(Boolean isNewJobCreated) {
61         this.isNewJobCreated = isNewJobCreated;
62     }
63 }