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.zoneminder.internal.dto;
15 import com.google.gson.annotations.SerializedName;
18 * The {@link RunStateDTO} contains a run state.
20 * @author Mark Hilbush - Initial contribution
22 public class RunStateDTO extends AbstractResponseDTO {
27 @SerializedName("State")
28 public RunState runState;
30 public class RunState {
32 * ID of run state, typically "1", "2", etc.
40 @SerializedName("Name")
44 * Definition of the run state
46 @SerializedName("Definition")
47 public String definition;
50 * "1" if run state is active; "0" if not active
52 @SerializedName("IsActive")
53 public String isActive;