]> git.basschouten.com Git - openhab-addons.git/blob
7081ac3b3738439dc144089a7c65e46e50e0031a
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2022 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.icloud.internal.json.request;
14
15 import static org.openhab.binding.icloud.internal.ICloudBindingConstants.FIND_MY_DEVICE_REQUEST_SUBJECT;
16
17 import org.eclipse.jdt.annotation.NonNullByDefault;
18 import org.eclipse.jdt.annotation.Nullable;
19
20 import com.google.gson.annotations.SerializedName;
21
22 /**
23  * Serializable class to create a "Find My Device" json request string.
24  *
25  * @author Patrik Gfeller - Initial Contribution
26  */
27 @NonNullByDefault
28 public class ICloudFindMyDeviceRequest {
29     @SerializedName("device")
30     @Nullable
31     String deviceId;
32     final String subject = FIND_MY_DEVICE_REQUEST_SUBJECT;
33
34     public ICloudFindMyDeviceRequest(String id) {
35         deviceId = id;
36     }
37 }