]> git.basschouten.com Git - openhab-addons.git/blob
0b9705b52d2808c71e77ecc80d841ff76f270327
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2021 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.tesla.internal.protocol;
14
15 /**
16  * The {@link VehicleConfig} is a data structure to capture
17  * vehicle configuration variables sent by the Tesla Vehicle
18  *
19  * @author Dan Cunningham - Initial contribution
20  */
21 public class VehicleConfig {
22     public boolean can_accept_navigation_requests;
23     public boolean can_actuate_trunks;
24     public boolean eu_vehicle;
25     public boolean has_air_suspension;
26     public boolean has_ludicrous_mode;
27     public boolean motorized_charge_port;
28     public boolean plg;
29     public boolean rhd;
30     public boolean use_range_badging;
31     public int rear_seat_heaters;
32     public int rear_seat_type;
33     public int sun_roof_installed;
34     public long timestamp;
35     public String car_special_type;
36     public String car_type;
37     public String charge_port_type;
38     public String exterior_color;
39     public String roof_color;
40     public String spoiler_type;
41     public String third_row_seats;
42     public String trim_badging;
43     public String wheel_type;
44 }