]> git.basschouten.com Git - openhab-addons.git/blob
025f87fe0becaaf578d5bcaa6c37accc669b2675
[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.mybmw.internal.dto.properties;
14
15 import java.util.List;
16
17 /**
18  * The {@link Properties} Data Transfer Object
19  *
20  * @author Bernd Weymann - Initial contribution
21  */
22 public class Properties {
23     public String lastUpdatedAt;// ": "2021-12-21T16:46:02Z",
24     public boolean inMotion;// ": false,
25     public boolean areDoorsLocked;// ": true,
26     public String originCountryISO;// ": "DE",
27     public boolean areDoorsClosed;// ": true,
28     public boolean areDoorsOpen;// ": false,
29     public boolean areWindowsClosed;// ": true,
30     public DoorsWindows doorsAndWindows;// ":
31     public boolean isServiceRequired;// ":false
32     public FuelLevel fuelLevel;
33     public ChargingState chargingState;// ":
34     public Range combustionRange;
35     public Range combinedRange;
36     public Range electricRange;
37     public Range electricRangeAndStatus;
38     public List<CCM> checkControlMessages;
39     public List<CBS> serviceRequired;
40     public Location vehicleLocation;
41     public Tires tires;
42     // "climateControl":{} [todo] definition currently unknown
43 }