]> git.basschouten.com Git - openhab-addons.git/blob
e8d3c21e4899a8d8a6565b720c213e3032a121bb
[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 NeatoGeneralInfo} is the internal class for Neato general information.
17  *
18  * @author Patrik Wimnell - Initial contribution
19  */
20 public class NeatoGeneralInfo {
21
22     private String productNumber;
23     private String serial;
24     private String model;
25     private String language;
26     private String firmware;
27     private Battery battery;
28
29     public String getProductNumber() {
30         return productNumber;
31     }
32
33     public void setProductNumber(String productNumber) {
34         this.productNumber = productNumber;
35     }
36
37     public String getSerial() {
38         return serial;
39     }
40
41     public void setSerial(String serial) {
42         this.serial = serial;
43     }
44
45     public String getModel() {
46         return model;
47     }
48
49     public void setModel(String model) {
50         this.model = model;
51     }
52
53     public String getLanguage() {
54         return language;
55     }
56
57     public void setLanguage(String language) {
58         this.language = language;
59     }
60
61     public String getFirmware() {
62         return firmware;
63     }
64
65     public void setFirmware(String firmware) {
66         this.firmware = firmware;
67     }
68
69     public Battery getBattery() {
70         return battery;
71     }
72
73     public void setBattery(Battery battery) {
74         this.battery = battery;
75     }
76 }