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 NeatoGeneralInfo} is the internal class for Neato general information.
18 * @author Patrik Wimnell - Initial contribution
20 public class NeatoGeneralInfo {
22 private String productNumber;
23 private String serial;
25 private String language;
26 private String firmware;
27 private Battery battery;
29 public String getProductNumber() {
33 public void setProductNumber(String productNumber) {
34 this.productNumber = productNumber;
37 public String getSerial() {
41 public void setSerial(String serial) {
45 public String getModel() {
49 public void setModel(String model) {
53 public String getLanguage() {
57 public void setLanguage(String language) {
58 this.language = language;
61 public String getFirmware() {
65 public void setFirmware(String firmware) {
66 this.firmware = firmware;
69 public Battery getBattery() {
73 public void setBattery(Battery battery) {
74 this.battery = battery;