]> git.basschouten.com Git - openhab-addons.git/blob
f4bbba9c8e3d621bd6cfc960bff64c8c57c88097
[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.neato.internal.classes;
14
15 /**
16  * The {@link NeatoRobotInfo} is the internal class for the Neato Robot information.
17  *
18  * @author Patrik Wimnell - Initial contribution
19  */
20 public class NeatoRobotInfo {
21
22     private Integer version;
23     private String reqId;
24     private String result;
25     private String error;
26     private RobotInfoData data;
27
28     public Integer getVersion() {
29         return version;
30     }
31
32     public void setVersion(Integer version) {
33         this.version = version;
34     }
35
36     public String getReqId() {
37         return reqId;
38     }
39
40     public void setReqId(String reqId) {
41         this.reqId = reqId;
42     }
43
44     public String getResult() {
45         return result;
46     }
47
48     public void setResult(String result) {
49         this.result = result;
50     }
51
52     public String getError() {
53         return error;
54     }
55
56     public void setError(String error) {
57         this.error = error;
58     }
59
60     public RobotInfoData getData() {
61         return data;
62     }
63
64     public void setData(RobotInfoData data) {
65         this.data = data;
66     }
67 }