]> git.basschouten.com Git - openhab-addons.git/blob
0dfd4fe867c6d332819cb9d9b3195fcc3254f482
[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.hyperion.internal.protocol.v1;
14
15 import com.google.gson.annotations.SerializedName;
16
17 /**
18  * The {@link ActiveEffect} is a POJO for an active effect on the Hyperion server.
19  *
20  * @author Daniel Walters - Initial contribution
21  */
22 public class ActiveEffect {
23
24     @SerializedName("priority")
25     private int priority;
26
27     @SerializedName("script")
28     private String script;
29
30     @SerializedName("timeout")
31     private int timeout;
32
33     public int getPriority() {
34         return priority;
35     }
36
37     public void setPriority(int priority) {
38         this.priority = priority;
39     }
40
41     public String getScript() {
42         return script;
43     }
44
45     public void setScript(String script) {
46         this.script = script;
47     }
48
49     public int getTimeout() {
50         return timeout;
51     }
52
53     public void setTimeout(int timeout) {
54         this.timeout = timeout;
55     }
56 }