2 * Copyright (c) 2010-2023 Contributors to the openHAB project
4 * See the NOTICE file(s) distributed with this work for additional
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
11 * SPDX-License-Identifier: EPL-2.0
13 package org.openhab.binding.neato.internal.classes;
16 * The {@link Details} is the internal class for detailed information about the vacuum cleaner.
18 * @author Patrik Wimnell - Initial contribution
20 public class Details {
22 private Boolean isCharging;
23 private Boolean isDocked;
24 private Boolean isScheduleEnabled;
25 private Boolean dockHasBeenSeen;
26 private Integer charge;
28 public Boolean getIsCharging() {
32 public void setIsCharging(Boolean isCharging) {
33 this.isCharging = isCharging;
36 public Boolean getIsDocked() {
40 public void setIsDocked(Boolean isDocked) {
41 this.isDocked = isDocked;
44 public Boolean getIsScheduleEnabled() {
45 return isScheduleEnabled;
48 public void setIsScheduleEnabled(Boolean isScheduleEnabled) {
49 this.isScheduleEnabled = isScheduleEnabled;
52 public Boolean getDockHasBeenSeen() {
53 return dockHasBeenSeen;
56 public void setDockHasBeenSeen(Boolean dockHasBeenSeen) {
57 this.dockHasBeenSeen = dockHasBeenSeen;
60 public Integer getCharge() {
64 public void setCharge(Integer charge) {