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.mybmw.internal.dto.status;
15 import java.util.List;
17 import org.openhab.binding.mybmw.internal.dto.charge.ChargeProfile;
20 * The {@link Status} Data Transfer Object
22 * @author Bernd Weymann - Initial contribution
25 public String lastUpdatedAt;// ": "2021-12-21T16:46:02Z",
26 public Mileage currentMileage;
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;