]> git.basschouten.com Git - openhab-addons.git/blob
4308a129c80d71959c392d10a531efbb4de134b5
[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 Details} is the internal class for detailed information about the vacuum cleaner.
17  *
18  * @author Patrik Wimnell - Initial contribution
19  */
20 public class Details {
21
22     private Boolean isCharging;
23     private Boolean isDocked;
24     private Boolean isScheduleEnabled;
25     private Boolean dockHasBeenSeen;
26     private Integer charge;
27
28     public Boolean getIsCharging() {
29         return isCharging;
30     }
31
32     public void setIsCharging(Boolean isCharging) {
33         this.isCharging = isCharging;
34     }
35
36     public Boolean getIsDocked() {
37         return isDocked;
38     }
39
40     public void setIsDocked(Boolean isDocked) {
41         this.isDocked = isDocked;
42     }
43
44     public Boolean getIsScheduleEnabled() {
45         return isScheduleEnabled;
46     }
47
48     public void setIsScheduleEnabled(Boolean isScheduleEnabled) {
49         this.isScheduleEnabled = isScheduleEnabled;
50     }
51
52     public Boolean getDockHasBeenSeen() {
53         return dockHasBeenSeen;
54     }
55
56     public void setDockHasBeenSeen(Boolean dockHasBeenSeen) {
57         this.dockHasBeenSeen = dockHasBeenSeen;
58     }
59
60     public Integer getCharge() {
61         return charge;
62     }
63
64     public void setCharge(Integer charge) {
65         this.charge = charge;
66     }
67 }