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.icloud.internal.handler.dto.json.response;
15 import com.google.gson.annotations.SerializedName;
18 * Serializable class to parse json response received from the Apple server.
20 * @author Patrik Gfeller - Initial Contribution
23 public class ICloudDeviceFeatures {
25 @SerializedName("CLK")
28 @SerializedName("CLT")
31 @SerializedName("CWP")
34 @SerializedName("KEY")
37 @SerializedName("KPD")
40 @SerializedName("LCK")
43 @SerializedName("LKL")
46 @SerializedName("LKM")
49 @SerializedName("LLC")
52 @SerializedName("LMG")
55 @SerializedName("LOC")
58 @SerializedName("LST")
61 @SerializedName("MCS")
64 @SerializedName("MSG")
67 @SerializedName("PIN")
70 @SerializedName("REM")
73 @SerializedName("SND")
76 @SerializedName("SVP")
79 @SerializedName("TEU")
82 @SerializedName("WIP")
85 @SerializedName("WMG")
88 @SerializedName("XRM")
91 @SerializedName("CLT")
93 public boolean getCLK() {
97 public boolean getClt() {
101 public boolean getCwp() {
105 public boolean getKey() {
109 public boolean getKpd() {
113 public boolean getLck() {
117 public boolean getLkl() {
121 public boolean getLkm() {
125 public boolean getLlc() {
129 public boolean getLmg() {
133 public boolean getLoc() {
137 public boolean getLst() {
141 public boolean getMcs() {
145 public boolean getMsg() {
149 public boolean getPin() {
153 public boolean getRem() {
157 public boolean getSnd() {
161 public boolean getSvp() {
165 public boolean getTeu() {
169 public boolean getWip() {
173 public boolean getWmg() {
177 public boolean getXrm() {