]> git.basschouten.com Git - openhab-addons.git/blob
c9cea1422aa1d1fa538ba2c07df0b18a9141a3a7
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2024 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("free_clean_command")
33     FREE_CLEAN_FOR_SPOT_AREA,
34     @SerializedName("custom_area_cleaning")
35     CUSTOM_AREA_CLEANING,
36     @SerializedName("single_room_cleaning")
37     SINGLE_ROOM_CLEANING,
38     @SerializedName("clean_speed_control")
39     CLEAN_SPEED_CONTROL,
40     @SerializedName("mapping")
41     MAPPING,
42     @SerializedName("auto_empty_station")
43     AUTO_EMPTY_STATION,
44     @SerializedName("read_network_info")
45     READ_NETWORK_INFO,
46     @SerializedName("true_detect_3d")
47     TRUE_DETECT_3D,
48     @SerializedName("unit_care_lifespan")
49     UNIT_CARE_LIFESPAN,
50     // implicit capabilities added in code
51     EDGE_CLEANING,
52     SPOT_CLEANING,
53     EXTENDED_CLEAN_SPEED_CONTROL,
54     EXTENDED_CLEAN_LOG_RECORD,
55     DEFAULT_CLEAN_COUNT_SETTING
56 }