]> git.basschouten.com Git - openhab-addons.git/blob
79874ab87f15381e2cca7c5f55551323e83849b6
[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.intrusion.dto;
14
15 /**
16  * DTO for the arming state of the intrusion detection system.
17  * <p>
18  * Example data:
19  * 
20  * <pre>
21  * "armingState": {
22  *   "remainingTimeUntilArmed": 0,
23  *   "state": "SYSTEM_ARMING",
24  *   "deleted": true,
25  *   "id": "string"
26  * }
27  * </pre>
28  * 
29  * @author David Pace - Initial contribution
30  *
31  */
32 public class ArmingStateData {
33
34     public long remainingTimeUntilArmed;
35
36     public ArmingState state;
37 }