]> git.basschouten.com Git - openhab-addons.git/blob
36fc508e21002bfab236ab133ee6711fcf24d276
[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.boschshc.internal.services.cameranotification.dto;
14
15 import org.openhab.binding.boschshc.internal.services.cameranotification.CameraNotificationState;
16 import org.openhab.binding.boschshc.internal.services.dto.BoschSHCServiceState;
17
18 /**
19  * Represents the state of camera notifications as reported by the Smart Home Controller.
20  * 
21  * @author David Pace - Initial contribution
22  *
23  */
24 public class CameraNotificationServiceState extends BoschSHCServiceState {
25
26     public CameraNotificationServiceState() {
27         super("cameraNotificationState");
28     }
29
30     /**
31      * The name of this member has to be <code>value</code>, otherwise JSON requests and responses can not be
32      * serialized/deserialized. The JSON message looks like this:
33      * 
34      * <pre>
35      * {"@type":"cameraNotificationState","value":"ENABLED"}
36      * </pre>
37      */
38     public CameraNotificationState value;
39 }