]> git.basschouten.com Git - openhab-addons.git/blob
37b47f1751de7564c4e50e815dcd95a482b22ead
[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.status;
14
15 import java.util.List;
16
17 import org.openhab.binding.mybmw.internal.dto.charge.ChargeProfile;
18
19 /**
20  * The {@link Status} Data Transfer Object
21  *
22  * @author Bernd Weymann - Initial contribution
23  */
24 public class Status {
25     public String lastUpdatedAt;// ": "2021-12-21T16:46:02Z",
26     public Mileage currentMileage;
27     public Issues issues;
28     public String doorsGeneralState;// ":"Locked",
29     public String checkControlMessagesGeneralState;// ":"No Issues",
30     public List<DoorWindow> doorsAndWindows;// ":[
31     public List<CCMMessage> checkControlMessages;//
32     public List<CBSMessage> requiredServices;//
33     // "recallMessages":[],
34     // "recallExternalUrl":null,
35     public List<FuelIndicator> fuelIndicators;
36     public String timestampMessage;// ":"Updated from vehicle 12/21/2021 05:46 PM",
37     public ChargeProfile chargingProfile;
38 }