]> git.basschouten.com Git - openhab-addons.git/blob
b6be3361309ee6583db1ff0aa8618e108a026f96
[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.vizio.internal.dto;
14
15 import com.google.gson.annotations.SerializedName;
16
17 /**
18  * The {@link Parameters} class contains data from the Vizio TV JSON response
19  *
20  * @author Michael Lobstein - Initial contribution
21  */
22 public class Parameters {
23     @SerializedName("FLAT")
24     private String flat;
25     @SerializedName("HELPTEXT")
26     private String helptext;
27     @SerializedName("HASHONLY")
28     private String hashonly;
29
30     public String getFlat() {
31         return flat;
32     }
33
34     public void setFlat(String flat) {
35         this.flat = flat;
36     }
37
38     public String getHelptext() {
39         return helptext;
40     }
41
42     public void setHelptext(String helptext) {
43         this.helptext = helptext;
44     }
45
46     public String getHashonly() {
47         return hashonly;
48     }
49
50     public void setHashonly(String hashonly) {
51         this.hashonly = hashonly;
52     }
53 }