]> git.basschouten.com Git - openhab-addons.git/blob
d6dfea0ac5c9579493703010cc445a2c3d3585bc
[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.ecovacs.internal.api.model;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16
17 import com.google.gson.annotations.SerializedName;
18
19 /**
20  * @author Danny Baumann - Initial contribution
21  */
22 @NonNullByDefault
23 public enum DeviceCapability {
24     @SerializedName("mopping_system")
25     MOPPING_SYSTEM,
26     @SerializedName("main_brush")
27     MAIN_BRUSH,
28     @SerializedName("voice_reporting")
29     VOICE_REPORTING,
30     @SerializedName("spot_area_cleaning")
31     SPOT_AREA_CLEANING,
32     @SerializedName("custom_area_cleaning")
33     CUSTOM_AREA_CLEANING,
34     @SerializedName("single_room_cleaning")
35     SINGLE_ROOM_CLEANING,
36     @SerializedName("clean_speed_control")
37     CLEAN_SPEED_CONTROL,
38     @SerializedName("mapping")
39     MAPPING,
40     @SerializedName("auto_empty_station")
41     AUTO_EMPTY_STATION,
42     @SerializedName("read_network_info")
43     READ_NETWORK_INFO,
44     @SerializedName("true_detect_3d")
45     TRUE_DETECT_3D,
46     @SerializedName("unit_care_lifespan")
47     UNIT_CARE_LIFESPAN,
48     // implicit capabilities added in code
49     EDGE_CLEANING,
50     SPOT_CLEANING,
51     EXTENDED_CLEAN_SPEED_CONTROL,
52     EXTENDED_CLEAN_LOG_RECORD,
53     DEFAULT_CLEAN_COUNT_SETTING
54 }