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 MonitorStatusDTO} contains the current status of the monitor.
20 * @author Mark Hilbush - Initial contribution
22 public class MonitorStatusDTO {
27 @SerializedName("MonitorId")
28 public String monitorId;
31 * Status of the monitor (e.g. Connected)
33 @SerializedName("Status")
37 * Analysis frames per second
39 @SerializedName("AnalysisFPS")
40 public String analysisFPS;
43 * Video capture bandwidth
45 @SerializedName("CaptureBandwidth")
46 public String captureBandwidth;
49 * Video capture frames per second
51 @SerializedName("CaptureFPS")
52 public String captureFPS;