]> git.basschouten.com Git - openhab-addons.git/blob
ef5a4289a66088a40c8272181140094c7c3b8a06
[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.vehicle;
14
15 /**
16  * The {@link Capabilities} Data Transfer Object
17  *
18  * @author Bernd Weymann - Initial contribution
19  */
20
21 public class Capabilities {
22     public boolean isRemoteServicesBookingRequired;
23     public boolean isRemoteServicesActivationRequired;
24     public boolean isRemoteHistorySupported;
25     public boolean canRemoteHistoryBeDeleted;
26     public boolean isChargingHistorySupported;
27     public boolean isScanAndChargeSupported;
28     public boolean isDCSContractManagementSupported;
29     public boolean isBmwChargingSupported;
30     public boolean isMiniChargingSupported;
31     public boolean isChargeNowForBusinessSupported;
32     public boolean isDataPrivacyEnabled;
33     public boolean isChargingPlanSupported;
34     public boolean isChargingPowerLimitEnable;
35     public boolean isChargingTargetSocEnable;
36     public boolean isChargingLoudnessEnable;
37     public boolean isChargingSettingsEnabled;
38     public boolean isChargingHospitalityEnabled;
39     public boolean isEvGoChargingSupported;
40     public boolean isFindChargingEnabled;
41     public boolean isCustomerEsimSupported;
42     public boolean isCarSharingSupported;
43     public boolean isEasyChargeSupported;
44
45     public RemoteService lock;
46     public RemoteService unlock;
47     public RemoteService lights;
48     public RemoteService horn;
49     public RemoteService vehicleFinder;
50     public RemoteService sendPoi;
51     public RemoteService climateNow;
52 }