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.wolfsmartset.internal.dto;
15 import java.util.List;
17 import javax.annotation.Generated;
19 import com.google.gson.annotations.Expose;
20 import com.google.gson.annotations.SerializedName;
23 * generated with https://www.jsonschema2pojo.org/
25 * @author Bo Biene - Initial contribution
27 @Generated("jsonschema2pojo")
28 public class GetParameterValuesDTO {
30 @SerializedName("LastAccess")
32 private String lastAccess;
33 @SerializedName("Values")
35 private List<ValueDTO> values = null;
36 @SerializedName("IsNewJobCreated")
38 private Boolean isNewJobCreated;
40 public String getLastAccess() {
44 public void setLastAccess(String lastAccess) {
45 this.lastAccess = lastAccess;
48 public List<ValueDTO> getValues() {
52 public void setValues(List<ValueDTO> values) {
56 public boolean getIsNewJobCreated() {
57 return isNewJobCreated != null ? isNewJobCreated : false;
60 public void setIsNewJobCreated(Boolean isNewJobCreated) {
61 this.isNewJobCreated = isNewJobCreated;