]> git.basschouten.com Git - openhab-addons.git/blob
f244dbac2eb12a3b0790bdc2e4815f2f4c66fb71
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2022 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.bmwconnecteddrive.internal.dto.discovery;
14
15 import java.util.List;
16
17 /**
18  * The {@link Vehicle} Data Transfer Object
19  *
20  * @author Bernd Weymann - Initial contribution
21  */
22 public class Vehicle {
23     public String vin;
24     public String model;
25     public String driveTrain;
26     public String brand;
27     public short yearOfConstruction;
28     public String bodytype;
29     public String color;
30     public boolean statisticsCommunityEnabled;
31     public boolean statisticsAvailable;
32     public boolean hasAlarmSystem;
33     public Dealer dealer;
34     public String breakdownNumber;
35     public List<String> supportedChargingModes;
36     public String chargingControl;// ": "WEEKLY_PLANNER",
37
38     // Remote Services
39     public String vehicleFinder; // ACTIVATED
40     public String hornBlow; // ACTIVATED
41     public String lightFlash; // ACTIVATED
42     public String doorLock; // ACTIVATED
43     public String doorUnlock; // ACTIVATED
44     public String climateNow; // ACTIVATED
45     public String sendPoi; // ACTIVATED
46
47     public String remote360; // SUPPORTED
48     public String climateControl; // SUPPORTED
49     public String chargeNow; // SUPPORTED
50     public String lastDestinations; // SUPPORTED
51     public String carCloud; // SUPPORTED
52     public String remoteSoftwareUpgrade; // SUPPORTED
53
54     public String climateNowRES;// ": "NOT_SUPPORTED",
55     public String climateControlRES;// ": "NOT_SUPPORTED",
56     public String smartSolution;// ": "NOT_SUPPORTED",
57     public String ipa;// ": "NOT_SUPPORTED",
58 }