]> git.basschouten.com Git - openhab-addons.git/blob
352b7e0f2b72180b08633c9ac090be330cb20c60
[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.boschshc.internal.services.privacymode.dto;
14
15 import org.openhab.binding.boschshc.internal.services.dto.BoschSHCServiceState;
16 import org.openhab.binding.boschshc.internal.services.privacymode.PrivacyModeState;
17
18 /**
19  * Represents the privacy mode of cameras as reported by the Smart Home Controller.
20  * 
21  * @author David Pace - Initial contribution
22  *
23  */
24 public class PrivacyModeServiceState extends BoschSHCServiceState {
25
26     public PrivacyModeServiceState() {
27         super("privacyModeState");
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":"privacyModeState","value":"ENABLED"}
36      * </pre>
37      */
38     public PrivacyModeState value;
39 }