tesla-protocol 0.1.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tesla_protocol-0.1.2/PKG-INFO +35 -0
- tesla_protocol-0.1.2/README.md +20 -0
- tesla_protocol-0.1.2/pyproject.toml +30 -0
- tesla_protocol-0.1.2/setup.cfg +4 -0
- tesla_protocol-0.1.2/tesla_protocol/__init__.py +6 -0
- tesla_protocol-0.1.2/tesla_protocol/command/__init__.py +0 -0
- tesla_protocol-0.1.2/tesla_protocol/command/__init__.pyi +10 -0
- tesla_protocol-0.1.2/tesla_protocol/command/car_server_pb2.py +419 -0
- tesla_protocol-0.1.2/tesla_protocol/command/car_server_pb2.pyi +2215 -0
- tesla_protocol-0.1.2/tesla_protocol/command/common_pb2.py +57 -0
- tesla_protocol-0.1.2/tesla_protocol/command/common_pb2.pyi +513 -0
- tesla_protocol-0.1.2/tesla_protocol/command/errors_pb2.py +19 -0
- tesla_protocol-0.1.2/tesla_protocol/command/errors_pb2.pyi +32 -0
- tesla_protocol-0.1.2/tesla_protocol/command/keys_pb2.py +17 -0
- tesla_protocol-0.1.2/tesla_protocol/command/keys_pb2.pyi +23 -0
- tesla_protocol-0.1.2/tesla_protocol/command/managed_charging_pb2.py +34 -0
- tesla_protocol-0.1.2/tesla_protocol/command/managed_charging_pb2.pyi +91 -0
- tesla_protocol-0.1.2/tesla_protocol/command/session_pb2.py +17 -0
- tesla_protocol-0.1.2/tesla_protocol/command/session_pb2.pyi +21 -0
- tesla_protocol-0.1.2/tesla_protocol/command/signatures_pb2.py +37 -0
- tesla_protocol-0.1.2/tesla_protocol/command/signatures_pb2.pyi +153 -0
- tesla_protocol-0.1.2/tesla_protocol/command/universal_message_pb2.py +32 -0
- tesla_protocol-0.1.2/tesla_protocol/command/universal_message_pb2.pyi +155 -0
- tesla_protocol-0.1.2/tesla_protocol/command/vcsec_pb2.py +85 -0
- tesla_protocol-0.1.2/tesla_protocol/command/vcsec_pb2.pyi +591 -0
- tesla_protocol-0.1.2/tesla_protocol/command/vehicle_pb2.py +209 -0
- tesla_protocol-0.1.2/tesla_protocol/command/vehicle_pb2.pyi +2342 -0
- tesla_protocol-0.1.2/tesla_protocol/energy_command/__init__.py +0 -0
- tesla_protocol-0.1.2/tesla_protocol/energy_command/__init__.pyi +1 -0
- tesla_protocol-0.1.2/tesla_protocol/energy_command/identifier_type_pb2.py +17 -0
- tesla_protocol-0.1.2/tesla_protocol/energy_command/identifier_type_pb2.pyi +17 -0
- tesla_protocol-0.1.2/tesla_protocol/energy_device/__init__.py +0 -0
- tesla_protocol-0.1.2/tesla_protocol/energy_device/__init__.pyi +12 -0
- tesla_protocol-0.1.2/tesla_protocol/energy_device/authorization_api_pb2.py +43 -0
- tesla_protocol-0.1.2/tesla_protocol/energy_device/authorization_api_pb2.pyi +153 -0
- tesla_protocol-0.1.2/tesla_protocol/energy_device/authorization_types_pb2.py +28 -0
- tesla_protocol-0.1.2/tesla_protocol/energy_device/authorization_types_pb2.pyi +88 -0
- tesla_protocol-0.1.2/tesla_protocol/energy_device/common_api_pb2.py +97 -0
- tesla_protocol-0.1.2/tesla_protocol/energy_device/common_api_pb2.pyi +400 -0
- tesla_protocol-0.1.2/tesla_protocol/energy_device/device_pb2.py +35 -0
- tesla_protocol-0.1.2/tesla_protocol/energy_device/device_pb2.pyi +123 -0
- tesla_protocol-0.1.2/tesla_protocol/energy_device/energy_pb2.py +32 -0
- tesla_protocol-0.1.2/tesla_protocol/energy_device/energy_pb2.pyi +95 -0
- tesla_protocol-0.1.2/tesla_protocol/energy_device/energy_site_net_pb2.py +25 -0
- tesla_protocol-0.1.2/tesla_protocol/energy_device/energy_site_net_pb2.pyi +89 -0
- tesla_protocol-0.1.2/tesla_protocol/energy_device/error_pb2.py +18 -0
- tesla_protocol-0.1.2/tesla_protocol/energy_device/error_pb2.pyi +14 -0
- tesla_protocol-0.1.2/tesla_protocol/energy_device/networking_pb2.py +42 -0
- tesla_protocol-0.1.2/tesla_protocol/energy_device/networking_pb2.pyi +211 -0
- tesla_protocol-0.1.2/tesla_protocol/energy_device/teg_api_pb2.py +40 -0
- tesla_protocol-0.1.2/tesla_protocol/energy_device/teg_api_pb2.pyi +112 -0
- tesla_protocol-0.1.2/tesla_protocol/energy_device/transport_pb2.py +37 -0
- tesla_protocol-0.1.2/tesla_protocol/energy_device/transport_pb2.pyi +108 -0
- tesla_protocol-0.1.2/tesla_protocol/energy_device/update_pb2.py +31 -0
- tesla_protocol-0.1.2/tesla_protocol/energy_device/update_pb2.pyi +114 -0
- tesla_protocol-0.1.2/tesla_protocol/energy_device/wall_connector_pb2.py +45 -0
- tesla_protocol-0.1.2/tesla_protocol/energy_device/wall_connector_pb2.pyi +229 -0
- tesla_protocol-0.1.2/tesla_protocol/py.typed +0 -0
- tesla_protocol-0.1.2/tesla_protocol/telemetry/__init__.py +0 -0
- tesla_protocol-0.1.2/tesla_protocol/telemetry/__init__.pyi +5 -0
- tesla_protocol-0.1.2/tesla_protocol/telemetry/vehicle_alert_pb2.py +22 -0
- tesla_protocol-0.1.2/tesla_protocol/telemetry/vehicle_alert_pb2.pyi +46 -0
- tesla_protocol-0.1.2/tesla_protocol/telemetry/vehicle_connectivity_pb2.py +20 -0
- tesla_protocol-0.1.2/tesla_protocol/telemetry/vehicle_connectivity_pb2.pyi +33 -0
- tesla_protocol-0.1.2/tesla_protocol/telemetry/vehicle_data_pb2.py +116 -0
- tesla_protocol-0.1.2/tesla_protocol/telemetry/vehicle_data_pb2.pyi +1348 -0
- tesla_protocol-0.1.2/tesla_protocol/telemetry/vehicle_error_pb2.py +24 -0
- tesla_protocol-0.1.2/tesla_protocol/telemetry/vehicle_error_pb2.pyi +44 -0
- tesla_protocol-0.1.2/tesla_protocol/telemetry/vehicle_metric_pb2.py +24 -0
- tesla_protocol-0.1.2/tesla_protocol/telemetry/vehicle_metric_pb2.pyi +42 -0
- tesla_protocol-0.1.2/tesla_protocol/teslapower/__init__.py +0 -0
- tesla_protocol-0.1.2/tesla_protocol/teslapower/__init__.pyi +1 -0
- tesla_protocol-0.1.2/tesla_protocol/teslapower/teslapower_pb2.py +212 -0
- tesla_protocol-0.1.2/tesla_protocol/teslapower/teslapower_pb2.pyi +1037 -0
- tesla_protocol-0.1.2/tesla_protocol.egg-info/PKG-INFO +35 -0
- tesla_protocol-0.1.2/tesla_protocol.egg-info/SOURCES.txt +77 -0
- tesla_protocol-0.1.2/tesla_protocol.egg-info/dependency_links.txt +1 -0
- tesla_protocol-0.1.2/tesla_protocol.egg-info/requires.txt +2 -0
- tesla_protocol-0.1.2/tesla_protocol.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tesla-protocol
|
|
3
|
+
Version: 0.1.2
|
|
4
|
+
Summary: Tesla vehicle-command, fleet-telemetry and energy protobuf bindings for Python
|
|
5
|
+
Author-email: Teslemetry <hello@teslemetry.com>
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/Teslemetry/tesla-protocol
|
|
8
|
+
Classifier: Development Status :: 4 - Beta
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.10
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
Requires-Dist: protobuf<7,>=6.32.0
|
|
14
|
+
Requires-Dist: googleapis-common-protos>=1.60
|
|
15
|
+
|
|
16
|
+
# tesla-protocol
|
|
17
|
+
|
|
18
|
+
Python protobuf bindings (`_pb2` modules with `.pyi` stubs) for Tesla's
|
|
19
|
+
vehicle-command, fleet-telemetry and energy device protocols.
|
|
20
|
+
|
|
21
|
+
```sh
|
|
22
|
+
pip install tesla-protocol
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
```python
|
|
26
|
+
from tesla_protocol.command import car_server_pb2
|
|
27
|
+
from tesla_protocol.telemetry import vehicle_data_pb2
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
Versioned in lockstep with the npm package `@teslemetry/tesla-protocol` from
|
|
31
|
+
the same repository. See the
|
|
32
|
+
[repository README](https://github.com/Teslemetry/tesla-protocol) for
|
|
33
|
+
provenance (which definitions track Tesla's upstream repos and which are
|
|
34
|
+
Teslemetry extensions from our own observations and contributions from the
|
|
35
|
+
community) and the release model.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# tesla-protocol
|
|
2
|
+
|
|
3
|
+
Python protobuf bindings (`_pb2` modules with `.pyi` stubs) for Tesla's
|
|
4
|
+
vehicle-command, fleet-telemetry and energy device protocols.
|
|
5
|
+
|
|
6
|
+
```sh
|
|
7
|
+
pip install tesla-protocol
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
```python
|
|
11
|
+
from tesla_protocol.command import car_server_pb2
|
|
12
|
+
from tesla_protocol.telemetry import vehicle_data_pb2
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Versioned in lockstep with the npm package `@teslemetry/tesla-protocol` from
|
|
16
|
+
the same repository. See the
|
|
17
|
+
[repository README](https://github.com/Teslemetry/tesla-protocol) for
|
|
18
|
+
provenance (which definitions track Tesla's upstream repos and which are
|
|
19
|
+
Teslemetry extensions from our own observations and contributions from the
|
|
20
|
+
community) and the release model.
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
build-backend = "setuptools.build_meta"
|
|
3
|
+
requires = ["setuptools>=77.0"]
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "tesla-protocol"
|
|
7
|
+
version = "0.1.2"
|
|
8
|
+
license = "Apache-2.0"
|
|
9
|
+
description = "Tesla vehicle-command, fleet-telemetry and energy protobuf bindings for Python"
|
|
10
|
+
readme = "README.md"
|
|
11
|
+
authors = [{ name = "Teslemetry", email = "hello@teslemetry.com" }]
|
|
12
|
+
requires-python = ">=3.10"
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 4 - Beta",
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"Operating System :: OS Independent",
|
|
17
|
+
]
|
|
18
|
+
dependencies = [
|
|
19
|
+
"protobuf>=6.32.0,<7",
|
|
20
|
+
"googleapis-common-protos>=1.60",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[project.urls]
|
|
24
|
+
"Homepage" = "https://github.com/Teslemetry/tesla-protocol"
|
|
25
|
+
|
|
26
|
+
[tool.setuptools.packages.find]
|
|
27
|
+
include = ["tesla_protocol*"]
|
|
28
|
+
|
|
29
|
+
[tool.setuptools.package-data]
|
|
30
|
+
tesla_protocol = ["py.typed", "*.pyi", "*/*.pyi"]
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"""Tesla vehicle-command, fleet-telemetry and energy protobuf bindings.
|
|
2
|
+
|
|
3
|
+
Generated modules live in subpackages mirroring the repo's proto/ tree:
|
|
4
|
+
tesla_protocol.command, tesla_protocol.telemetry, tesla_protocol.energy_device,
|
|
5
|
+
tesla_protocol.energy_command and tesla_protocol.teslapower.
|
|
6
|
+
"""
|
|
File without changes
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
from . import car_server_pb2
|
|
2
|
+
from . import common_pb2
|
|
3
|
+
from . import errors_pb2
|
|
4
|
+
from . import keys_pb2
|
|
5
|
+
from . import managed_charging_pb2
|
|
6
|
+
from . import session_pb2
|
|
7
|
+
from . import signatures_pb2
|
|
8
|
+
from . import universal_message_pb2
|
|
9
|
+
from . import vcsec_pb2
|
|
10
|
+
from . import vehicle_pb2
|
|
@@ -0,0 +1,419 @@
|
|
|
1
|
+
"""Generated protocol buffer code."""
|
|
2
|
+
from google.protobuf import descriptor as _descriptor
|
|
3
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
4
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
5
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
6
|
+
from google.protobuf.internal import builder as _builder
|
|
7
|
+
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 6, 31, 1, '', 'car_server.proto')
|
|
8
|
+
_sym_db = _symbol_database.Default()
|
|
9
|
+
from . import common_pb2 as common__pb2
|
|
10
|
+
from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
|
|
11
|
+
from . import signatures_pb2 as signatures__pb2
|
|
12
|
+
from . import vehicle_pb2 as vehicle__pb2
|
|
13
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x10car_server.proto\x12\tCarServer\x1a\x0ccommon.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x10signatures.proto\x1a\rvehicle.proto"O\n\x06Action\x121\n\rvehicleAction\x18\x02 \x01(\x0b2\x18.CarServer.VehicleActionH\x00B\x0c\n\naction_msgJ\x04\x08\x03\x10\x06"\xa2K\n\rVehicleAction\x123\n\x0egetVehicleData\x18\x01 \x01(\x0b2\x19.CarServer.GetVehicleDataH\x00\x127\n\x10remoteStartDrive\x18\x02 \x01(\x0b2\x1b.CarServer.RemoteStartDriveH\x00\x12=\n\x13createStreamSession\x18\x03 \x01(\x0b2\x1e.CarServer.CreateStreamSessionH\x00\x121\n\rstreamMessage\x18\x04 \x01(\x0b2\x18.CarServer.StreamMessageH\x00\x12C\n\x16chargingSetLimitAction\x18\x05 \x01(\x0b2!.CarServer.ChargingSetLimitActionH\x00\x12E\n\x17chargingStartStopAction\x18\x06 \x01(\x0b2".CarServer.ChargingStartStopActionH\x00\x12U\n\x1fdrivingClearSpeedLimitPinAction\x18\x07 \x01(\x0b2*.CarServer.DrivingClearSpeedLimitPinActionH\x00\x12K\n\x1adrivingSetSpeedLimitAction\x18\x08 \x01(\x0b2%.CarServer.DrivingSetSpeedLimitActionH\x00\x12E\n\x17drivingSpeedLimitAction\x18\t \x01(\x0b2".CarServer.DrivingSpeedLimitActionH\x00\x123\n\x0ehvacAutoAction\x18\n \x01(\x0b2\x19.CarServer.HvacAutoActionH\x00\x12U\n\x1fhvacSetPreconditioningMaxAction\x18\x0c \x01(\x0b2*.CarServer.HvacSetPreconditioningMaxActionH\x00\x12Q\n\x1dhvacSteeringWheelHeaterAction\x18\r \x01(\x0b2(.CarServer.HvacSteeringWheelHeaterActionH\x00\x12U\n\x1fhvacTemperatureAdjustmentAction\x18\x0e \x01(\x0b2*.CarServer.HvacTemperatureAdjustmentActionH\x00\x125\n\x0fmediaPlayAction\x18\x0f \x01(\x0b2\x1a.CarServer.MediaPlayActionH\x00\x129\n\x11mediaUpdateVolume\x18\x10 \x01(\x0b2\x1c.CarServer.MediaUpdateVolumeH\x00\x129\n\x11mediaNextFavorite\x18\x11 \x01(\x0b2\x1c.CarServer.MediaNextFavoriteH\x00\x12A\n\x15mediaPreviousFavorite\x18\x12 \x01(\x0b2 .CarServer.MediaPreviousFavoriteH\x00\x123\n\x0emediaNextTrack\x18\x13 \x01(\x0b2\x19.CarServer.MediaNextTrackH\x00\x12;\n\x12mediaPreviousTrack\x18\x14 \x01(\x0b2\x1d.CarServer.MediaPreviousTrackH\x00\x129\n\x11navigationRequest\x18\x15 \x01(\x0b2\x1c.CarServer.NavigationRequestH\x00\x12Q\n\x1dnavigationSuperchargerRequest\x18\x16 \x01(\x0b2(.CarServer.NavigationSuperchargerRequestH\x00\x12C\n\x16getNearbyChargingSites\x18\x17 \x01(\x0b2!.CarServer.GetNearbyChargingSitesH\x00\x12O\n\x1cuiSetUpcomingCalendarEntries\x18\x18 \x01(\x0b2\'.CarServer.UiSetUpcomingCalendarEntriesH\x00\x12g\n(vehicleControlCancelSoftwareUpdateAction\x18\x19 \x01(\x0b23.CarServer.VehicleControlCancelSoftwareUpdateActionH\x00\x12U\n\x1fvehicleControlFlashLightsAction\x18\x1a \x01(\x0b2*.CarServer.VehicleControlFlashLightsActionH\x00\x12O\n\x1cvehicleControlHonkHornAction\x18\x1b \x01(\x0b2\'.CarServer.VehicleControlHonkHornActionH\x00\x12Y\n!vehicleControlResetValetPinAction\x18\x1c \x01(\x0b2,.CarServer.VehicleControlResetValetPinActionH\x00\x12k\n*vehicleControlScheduleSoftwareUpdateAction\x18\x1d \x01(\x0b25.CarServer.VehicleControlScheduleSoftwareUpdateActionH\x00\x12Y\n!vehicleControlSetSentryModeAction\x18\x1e \x01(\x0b2,.CarServer.VehicleControlSetSentryModeActionH\x00\x12W\n vehicleControlSetValetModeAction\x18\x1f \x01(\x0b2+.CarServer.VehicleControlSetValetModeActionH\x00\x12_\n$vehicleControlSunroofOpenCloseAction\x18 \x01(\x0b2/.CarServer.VehicleControlSunroofOpenCloseActionH\x00\x12]\n#vehicleControlTriggerHomelinkAction\x18! \x01(\x0b2..CarServer.VehicleControlTriggerHomelinkActionH\x00\x12K\n\x1avehicleControlWindowAction\x18" \x01(\x0b2%.CarServer.VehicleControlWindowActionH\x00\x12E\n\x17hvacBioweaponModeAction\x18# \x01(\x0b2".CarServer.HvacBioweaponModeActionH\x00\x12A\n\x15hvacSeatHeaterActions\x18$ \x01(\x0b2 .CarServer.HvacSeatHeaterActionsH\x00\x12E\n\x17vehicleDataSubscription\x18% \x01(\x0b2".CarServer.VehicleDataSubscriptionH\x00\x123\n\x0evehicleDataAck\x18& \x01(\x0b2\x19.CarServer.VehicleDataAckH\x00\x12;\n\x12vitalsSubscription\x18\' \x01(\x0b2\x1d.CarServer.VitalsSubscriptionH\x00\x12)\n\tvitalsAck\x18( \x01(\x0b2\x14.CarServer.VitalsAckH\x00\x12E\n\x17scheduledChargingAction\x18) \x01(\x0b2".CarServer.ScheduledChargingActionH\x00\x12G\n\x18scheduledDepartureAction\x18* \x01(\x0b2#.CarServer.ScheduledDepartureActionH\x00\x12A\n\x15setChargingAmpsAction\x18+ \x01(\x0b2 .CarServer.SetChargingAmpsActionH\x00\x12E\n\x17hvacClimateKeeperAction\x18, \x01(\x0b2".CarServer.HvacClimateKeeperActionH\x00\x12E\n\x17hvacRecirculationAction\x18- \x01(\x0b2".CarServer.HvacRecirculationActionH\x00\x12\x1f\n\x04ping\x18. \x01(\x0b2\x0f.CarServer.PingH\x00\x12A\n\x15dashcamSaveClipAction\x18/ \x01(\x0b2 .CarServer.DashcamSaveClipActionH\x00\x12A\n\x15autoSeatClimateAction\x180 \x01(\x0b2 .CarServer.AutoSeatClimateActionH\x00\x12A\n\x15hvacSeatCoolerActions\x181 \x01(\x0b2 .CarServer.HvacSeatCoolerActionsH\x00\x12W\n setCabinOverheatProtectionAction\x182 \x01(\x0b2+.CarServer.SetCabinOverheatProtectionActionH\x00\x121\n\rpiiKeyRequest\x183 \x01(\x0b2\x18.CarServer.PiiKeyRequestH\x00\x12?\n\x14pseudonymSyncRequest\x184 \x01(\x0b2\x1f.CarServer.PseudonymSyncRequestH\x00\x12?\n\x14navigationGpsRequest\x185 \x01(\x0b2\x1f.CarServer.NavigationGpsRequestH\x00\x12?\n\x14setVehicleNameAction\x186 \x01(\x0b2\x1f.CarServer.SetVehicleNameActionH\x00\x12?\n\x14setRateTariffRequest\x187 \x01(\x0b2\x1f.CarServer.SetRateTariffRequestH\x00\x12?\n\x14getRateTariffRequest\x188 \x01(\x0b2\x1f.CarServer.GetRateTariffRequestH\x00\x12;\n\x12videoRequestAction\x189 \x01(\x0b2\x1d.CarServer.VideoRequestActionH\x00\x12=\n\x13takeDrivenoteAction\x18: \x01(\x0b2\x1e.CarServer.TakeDrivenoteActionH\x00\x12=\n\x13chargePortDoorClose\x18= \x01(\x0b2\x1e.CarServer.ChargePortDoorCloseH\x00\x12;\n\x12chargePortDoorOpen\x18> \x01(\x0b2\x1d.CarServer.ChargePortDoorOpenH\x00\x12S\n\x1ebluetoothClassicPairingRequest\x18? \x01(\x0b2).CarServer.BluetoothClassicPairingRequestH\x00\x121\n\rboomboxAction\x18@ \x01(\x0b2\x18.CarServer.BoomboxActionH\x00\x12<\n\x0fguestModeAction\x18A \x01(\x0b2!.CarServer.VehicleState.GuestModeH\x00\x127\n\x10setCopTempAction\x18B \x01(\x0b2\x1b.CarServer.SetCopTempActionH\x00\x12Q\n\x1daddManagedChargingSiteRequest\x18C \x01(\x0b2(.CarServer.AddManagedChargingSiteRequestH\x00\x12W\n removeManagedChargingSiteRequest\x18D \x01(\x0b2+.CarServer.RemoveManagedChargingSiteRequestH\x00\x12A\n\x15navigationRouteAction\x18E \x01(\x0b2 .CarServer.NavigationRouteActionH\x00\x129\n\x11autoStwHeatAction\x18F \x01(\x0b2\x1c.CarServer.AutoStwHeatActionH\x00\x12;\n\x12stwHeatLevelAction\x18G \x01(\x0b2\x1d.CarServer.StwHeatLevelActionH\x00\x12=\n\x13eraseUserDataAction\x18H \x01(\x0b2\x1e.CarServer.EraseUserDataActionH\x00\x12S\n\x1egetManagedChargingSitesRequest\x18I \x01(\x0b2).CarServer.GetManagedChargingSitesRequestH\x00\x12Y\n!updateChargeOnSolarFeatureRequest\x18J \x01(\x0b2,.CarServer.UpdateChargeOnSolarFeatureRequestH\x00\x12S\n\x1egetChargeOnSolarFeatureRequest\x18K \x01(\x0b2).CarServer.GetChargeOnSolarFeatureRequestH\x00\x12Y\n!vehicleControlSetPinToDriveAction\x18M \x01(\x0b2,.CarServer.VehicleControlSetPinToDriveActionH\x00\x12]\n#vehicleControlResetPinToDriveAction\x18N \x01(\x0b2..CarServer.VehicleControlResetPinToDriveActionH\x00\x12_\n$drivingClearSpeedLimitPinAdminAction\x18O \x01(\x0b2/.CarServer.DrivingClearSpeedLimitPinAdminActionH\x00\x12A\n\x15setOutletsOnOffAction\x18P \x01(\x0b2 .CarServer.SetOutletsOnOffActionH\x00\x12?\n\x14setOutletTimerAction\x18Q \x01(\x0b2\x1f.CarServer.SetOutletTimerActionH\x00\x12E\n\x17setOutletSocLimitAction\x18R \x01(\x0b2".CarServer.SetOutletSocLimitActionH\x00\x12E\n\x17setPowerFeedOnOffAction\x18S \x01(\x0b2".CarServer.SetPowerFeedOnOffActionH\x00\x12E\n\x17setPowerFeedTimerAction\x18T \x01(\x0b2".CarServer.SetPowerFeedTimerActionH\x00\x12K\n\x1asetPowerFeedSocLimitAction\x18U \x01(\x0b2%.CarServer.SetPowerFeedSocLimitActionH\x00\x12[\n"setTrailerLightTestStartStopAction\x18V \x01(\x0b2-.CarServer.SetTrailerLightTestStartStopActionH\x00\x12U\n\x1fsetTruckBedLightAutoStateAction\x18W \x01(\x0b2*.CarServer.SetTruckBedLightAutoStateActionH\x00\x12W\n setTruckBedLightBrightnessAction\x18X \x01(\x0b2+.CarServer.SetTruckBedLightBrightnessActionH\x00\x12g\n(vehicleControlResetPinToDriveAdminAction\x18Y \x01(\x0b23.CarServer.VehicleControlResetPinToDriveAdminActionH\x00\x12K\n\x1anavigationWaypointsRequest\x18Z \x01(\x0b2%.CarServer.NavigationWaypointsRequestH\x00\x12K\n\x1asetPowershareFeatureAction\x18[ \x01(\x0b2%.CarServer.SetPowershareFeatureActionH\x00\x12Y\n!setPowershareDischargeLimitAction\x18\\ \x01(\x0b2,.CarServer.SetPowershareDischargeLimitActionH\x00\x12K\n\x1asetPowershareRequestAction\x18] \x01(\x0b2%.CarServer.SetPowershareRequestActionH\x00\x12G\n\x18setTentModeRequestAction\x18^ \x01(\x0b2#.CarServer.SetTentModeRequestActionH\x00\x12N\n\x1esetFrontZoneLightRequestAction\x18_ \x01(\x0b2$.CarServer.SetZoneLightRequestActionH\x00\x12M\n\x1dsetRearZoneLightRequestAction\x18` \x01(\x0b2$.CarServer.SetZoneLightRequestActionH\x00\x12<\n\x17addChargeScheduleAction\x18a \x01(\x0b2\x19.CarServer.ChargeScheduleH\x00\x12K\n\x1aremoveChargeScheduleAction\x18b \x01(\x0b2%.CarServer.RemoveChargeScheduleActionH\x00\x12H\n\x1daddPreconditionScheduleAction\x18c \x01(\x0b2\x1f.CarServer.PreconditionScheduleH\x00\x12W\n removePreconditionScheduleAction\x18d \x01(\x0b2+.CarServer.RemovePreconditionScheduleActionH\x00\x12M\n\x1bsetLightbarBrightnessAction\x18e \x01(\x0b2&.CarServer.SetLightbarBrightnessActionH\x00\x12E\n\x17setLightbarMiddleAction\x18f \x01(\x0b2".CarServer.SetLightbarMiddleActionH\x00\x12C\n\x16setLightbarDitchAction\x18g \x01(\x0b2!.CarServer.SetLightbarDitchActionH\x00\x129\n\x11getMessagesAction\x18h \x01(\x0b2\x1c.CarServer.GetMessagesActionH\x00\x12E\n\x17teslaAuthResponseAction\x18i \x01(\x0b2".CarServer.TeslaAuthResponseActionH\x00\x12U\n\x1fnavigationGpsDestinationRequest\x18j \x01(\x0b2*.CarServer.NavigationGpsDestinationRequestH\x00\x12c\n&batchRemovePreconditionSchedulesAction\x18k \x01(\x0b21.CarServer.BatchRemovePreconditionSchedulesActionH\x00\x12W\n batchRemoveChargeSchedulesAction\x18l \x01(\x0b2+.CarServer.BatchRemoveChargeSchedulesActionH\x00\x12S\n\x1eparentalControlsClearPinAction\x18m \x01(\x0b2).CarServer.ParentalControlsClearPinActionH\x00\x12]\n#parentalControlsClearPinAdminAction\x18n \x01(\x0b2..CarServer.ParentalControlsClearPinAdminActionH\x00\x12C\n\x16parentalControlsAction\x18o \x01(\x0b2!.CarServer.ParentalControlsActionH\x00\x12_\n$parentalControlsEnableSettingsAction\x18p \x01(\x0b2/.CarServer.ParentalControlsEnableSettingsActionH\x00\x12]\n#parentalControlsSetSpeedLimitAction\x18q \x01(\x0b2..CarServer.ParentalControlsSetSpeedLimitActionH\x00\x12=\n\x13cancelSohTestAction\x18r \x01(\x0b2\x1e.CarServer.CancelSohTestActionH\x00\x12=\n\x13stopLightShowAction\x18t \x01(\x0b2\x1e.CarServer.StopLightShowActionH\x00\x12?\n\x14startLightShowAction\x18u \x01(\x0b2\x1f.CarServer.StartLightShowActionH\x00\x12G\n\x18setSuspensionLevelAction\x18v \x01(\x0b2#.CarServer.SetSuspensionLevelActionH\x00\x12F\n\x17setDischargeLimitAction\x18\x81\x01 \x01(\x0b2".CarServer.SetDischargeLimitActionH\x00\x12B\n\x15setLowPowerModeAction\x18\x82\x01 \x01(\x0b2 .CarServer.SetLowPowerModeActionH\x00\x12H\n\x18setTemperatureUnitAction\x18\x84\x01 \x01(\x0b2#.CarServer.SetTemperatureUnitActionH\x00\x12B\n\x15setDistanceUnitAction\x18\x85\x01 \x01(\x0b2 .CarServer.SetDistanceUnitActionH\x00\x12L\n\x1asetTimeDisplayFormatAction\x18\x86\x01 \x01(\x0b2%.CarServer.SetTimeDisplayFormatActionH\x00\x12J\n\x19setTirePressureUnitAction\x18\x87\x01 \x01(\x0b2$.CarServer.SetTirePressureUnitActionH\x00\x12P\n\x1csetEnergyDisplayFormatAction\x18\x88\x01 \x01(\x0b2\'.CarServer.SetEnergyDisplayFormatActionH\x00\x12V\n\x1fsetKeepAccessoryPowerModeAction\x18\x8a\x01 \x01(\x0b2*.CarServer.SetKeepAccessoryPowerModeActionH\x00\x12n\n+setupCloudProfileWithLocalProfileUuidAction\x18\x8b\x01 \x01(\x0b26.CarServer.SetupCloudProfileWithLocalProfileUuidActionH\x00\x12\\\n"getLocalProfilesForVaultUuidAction\x18\x8c\x01 \x01(\x0b2-.CarServer.GetLocalProfilesForVaultUuidActionH\x00\x12>\n\x13fetchKeysInfoAction\x18\x8e\x01 \x01(\x0b2\x1e.CarServer.FetchKeysInfoActionH\x00\x12H\n\x18deleteDashcamClipsAction\x18\x90\x01 \x01(\x0b2#.CarServer.DeleteDashcamClipsActionH\x00\x126\n\x0fformatUsbAction\x18\x92\x01 \x01(\x0b2\x1a.CarServer.FormatUSBActionH\x00\x122\n\rbandwidthTest\x18\x95\x01 \x01(\x0b2\x18.CarServer.BandwidthTestH\x00\x12X\n setPhoneSettingPreferencesAction\x18\x97\x01 \x01(\x0b2+.CarServer.SetPhoneSettingPreferencesActionH\x00\x12R\n\x1dcancelVehicleDataSubscription\x18\xab\x01 \x01(\x0b2(.CarServer.CancelVehicleDataSubscriptionH\x00B\x14\n\x12vehicle_action_msgJ\x04\x08\x0b\x10\x0cJ\x04\x08<\x10=J\x04\x08L\x10M"\xe2\t\n\x0eGetVehicleData\x121\n\x0egetGuiSettings\x18\x01 \x01(\x0b2\x19.CarServer.GetGuiSettings\x121\n\x0egetChargeState\x18\x02 \x01(\x0b2\x19.CarServer.GetChargeState\x123\n\x0fgetClimateState\x18\x03 \x01(\x0b2\x1a.CarServer.GetClimateState\x12/\n\rgetDriveState\x18\x04 \x01(\x0b2\x18.CarServer.GetDriveState\x125\n\x10getLocationState\x18\x07 \x01(\x0b2\x1b.CarServer.GetLocationState\x125\n\x10getClosuresState\x18\x08 \x01(\x0b2\x1b.CarServer.GetClosuresState\x12C\n\x17getParkedAccessoryState\x18\t \x01(\x0b2".CarServer.GetParkedAccessoryState\x12A\n\x16getChargeScheduleState\x18\n \x01(\x0b2!.CarServer.GetChargeScheduleState\x12S\n\x1fgetPreconditioningScheduleState\x18\x0b \x01(\x0b2*.CarServer.GetPreconditioningScheduleState\x12=\n\x14getTirePressureState\x18\x0e \x01(\x0b2\x1f.CarServer.GetTirePressureState\x12/\n\rgetMediaState\x18\x0f \x01(\x0b2\x18.CarServer.GetMediaState\x12;\n\x13getMediaDetailState\x18\x10 \x01(\x0b2\x1e.CarServer.GetMediaDetailState\x12A\n\x16getSoftwareUpdateState\x18\x11 \x01(\x0b2!.CarServer.GetSoftwareUpdateState\x123\n\x0fgetVehicleState\x18\x12 \x01(\x0b2\x1a.CarServer.GetVehicleState\x12E\n\x18getParentalControlsState\x18\x13 \x01(\x0b2#.CarServer.GetParentalControlsState\x12/\n\rgetAlertState\x18\x14 \x01(\x0b2\x18.CarServer.GetAlertState\x127\n\x11getLightShowState\x18\x15 \x01(\x0b2\x1c.CarServer.GetLightShowState\x12=\n\x14getVehicleImageState\x18\x16 \x01(\x0b2\x1f.CarServer.GetVehicleImageState\x129\n\x12getSuspensionState\x18\x17 \x01(\x0b2\x1d.CarServer.GetSuspensionState\x12Q\n\x1egetChildPresenceDetectionState\x18\x19 \x01(\x0b2).CarServer.GetChildPresenceDetectionStateJ\x04\x08\x05\x10\x06J\x04\x08\x06\x10\x07J\x04\x08\x0c\x10\rJ\x04\x08\r\x10\x0e"\x10\n\x0eGetGuiSettings"\x19\n\x17GetParkedAccessoryState"\x11\n\x0fGetVehicleState"\x0f\n\rGetAlertState"\x13\n\x11GetLightShowState"M\n\x14GetVehicleImageState\x125\n\rimageRequests\x18\x01 \x03(\x0b2\x1e.CarServer.VehicleImageRequest"\x14\n\x12GetSuspensionState" \n\x1eGetChildPresenceDetectionState"H\n\x1cVehicleImageDataChunkRequest\x12\x14\n\x0cchunk_offset\x18\x01 \x01(\r\x12\x12\n\nchunk_size\x18\x02 \x01(\r"\xda\x01\n\x13VehicleImageRequest\x125\n\x08dataType\x18\x01 \x01(\x0e2#.CarServer.VehicleImageRequest.Type\x123\n\timageType\x18\x02 \x01(\x0e2 .CarServer.VehicleImageStateType\x12=\n\x0cchunkRequest\x18\x03 \x01(\x0b2\'.CarServer.VehicleImageDataChunkRequest"\x18\n\x04Type\x12\x06\n\x02ID\x10\x00\x12\x08\n\x04DATA\x10\x01"\x16\n\x14GetTirePressureState"\x0f\n\rGetMediaState"\x15\n\x13GetMediaDetailState"\x18\n\x16GetSoftwareUpdateState"\x10\n\x0eGetChargeState"\x11\n\x0fGetClimateState"\x0f\n\rGetDriveState"\x12\n\x10GetLocationState"\x12\n\x10GetClosuresState"\x18\n\x16GetChargeScheduleState"!\n\x1fGetPreconditioningScheduleState"\x1a\n\x18GetParentalControlsState">\n\x13EraseUserDataAction\x12\x0e\n\x06reason\x18\x01 \x01(\t\x12\x17\n\x0ftrigger_on_park\x18\x02 \x01(\x08"\x96\x02\n\x08Response\x12-\n\x0cactionStatus\x18\x01 \x01(\x0b2\x17.CarServer.ActionStatus\x12-\n\x0bvehicleData\x18\x02 \x01(\x0b2\x16.CarServer.VehicleDataH\x00\x129\n\x16getSessionInfoResponse\x18\x03 \x01(\x0b2\x17.Signatures.SessionInfoH\x00\x12@\n\x16getNearbyChargingSites\x18\x05 \x01(\x0b2\x1e.CarServer.NearbyChargingSitesH\x00\x12\x1f\n\x04ping\x18\t \x01(\x0b2\x0f.CarServer.PingH\x00B\x0e\n\x0cresponse_msg"l\n\x0cActionStatus\x12,\n\x06result\x18\x01 \x01(\x0e2\x1c.CarServer.OperationStatus_E\x12.\n\rresult_reason\x18\x02 \x01(\x0b2\x17.CarServer.ResultReason".\n\x0cResultReason\x12\x14\n\nplain_text\x18\x01 \x01(\tH\x00B\x08\n\x06reason"F\n\rEncryptedData\x12\x14\n\x0cfield_number\x18\x01 \x01(\x05\x12\x12\n\nciphertext\x18\x02 \x01(\x0c\x12\x0b\n\x03tag\x18\x03 \x01(\x0c";\n\x16ChargingSetLimitAction\x12\x0f\n\x07percent\x18\x01 \x01(\x05\x12\x10\n\x08one_time\x18\x02 \x01(\x08"\xea\x01\n\x17ChargingStartStopAction\x12"\n\x07unknown\x18\x01 \x01(\x0b2\x0f.CarServer.VoidH\x00\x12 \n\x05start\x18\x02 \x01(\x0b2\x0f.CarServer.VoidH\x00\x12)\n\x0estart_standard\x18\x03 \x01(\x0b2\x0f.CarServer.VoidH\x00\x12*\n\x0fstart_max_range\x18\x04 \x01(\x0b2\x0f.CarServer.VoidH\x00\x12\x1f\n\x04stop\x18\x05 \x01(\x0b2\x0f.CarServer.VoidH\x00B\x11\n\x0fcharging_action".\n\x1fDrivingClearSpeedLimitPinAction\x12\x0b\n\x03pin\x18\x01 \x01(\t"/\n\x1aDrivingSetSpeedLimitAction\x12\x11\n\tlimit_mph\x18\x01 \x01(\x01"8\n\x17DrivingSpeedLimitAction\x12\x10\n\x08activate\x18\x01 \x01(\x08\x12\x0b\n\x03pin\x18\x02 \x01(\t";\n\x0eHvacAutoAction\x12\x10\n\x08power_on\x18\x01 \x01(\x08\x12\x17\n\x0fmanual_override\x18\x02 \x01(\x08"\xfc\x06\n\x15HvacSeatHeaterActions\x12S\n\x14hvacSeatHeaterAction\x18\x01 \x03(\x0b25.CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction\x1a\x8d\x06\n\x14HvacSeatHeaterAction\x12.\n\x13SEAT_HEATER_UNKNOWN\x18\x01 \x01(\x0b2\x0f.CarServer.VoidH\x00\x12*\n\x0fSEAT_HEATER_OFF\x18\x02 \x01(\x0b2\x0f.CarServer.VoidH\x00\x12*\n\x0fSEAT_HEATER_LOW\x18\x03 \x01(\x0b2\x0f.CarServer.VoidH\x00\x12*\n\x0fSEAT_HEATER_MED\x18\x04 \x01(\x0b2\x0f.CarServer.VoidH\x00\x12+\n\x10SEAT_HEATER_HIGH\x18\x05 \x01(\x0b2\x0f.CarServer.VoidH\x00\x12+\n\x10CAR_SEAT_UNKNOWN\x18\x06 \x01(\x0b2\x0f.CarServer.VoidH\x01\x12.\n\x13CAR_SEAT_FRONT_LEFT\x18\x07 \x01(\x0b2\x0f.CarServer.VoidH\x01\x12/\n\x14CAR_SEAT_FRONT_RIGHT\x18\x08 \x01(\x0b2\x0f.CarServer.VoidH\x01\x12-\n\x12CAR_SEAT_REAR_LEFT\x18\t \x01(\x0b2\x0f.CarServer.VoidH\x01\x122\n\x17CAR_SEAT_REAR_LEFT_BACK\x18\n \x01(\x0b2\x0f.CarServer.VoidH\x01\x12/\n\x14CAR_SEAT_REAR_CENTER\x18\x0b \x01(\x0b2\x0f.CarServer.VoidH\x01\x12.\n\x13CAR_SEAT_REAR_RIGHT\x18\x0c \x01(\x0b2\x0f.CarServer.VoidH\x01\x123\n\x18CAR_SEAT_REAR_RIGHT_BACK\x18\r \x01(\x0b2\x0f.CarServer.VoidH\x01\x122\n\x17CAR_SEAT_THIRD_ROW_LEFT\x18\x0e \x01(\x0b2\x0f.CarServer.VoidH\x01\x123\n\x18CAR_SEAT_THIRD_ROW_RIGHT\x18\x0f \x01(\x0b2\x0f.CarServer.VoidH\x01B\x13\n\x11seat_heater_levelB\x0f\n\rseat_position"\xbd\x05\n\x15HvacSeatCoolerActions\x12S\n\x14hvacSeatCoolerAction\x18\x01 \x03(\x0b25.CarServer.HvacSeatCoolerActions.HvacSeatCoolerAction\x1a\xbb\x01\n\x14HvacSeatCoolerAction\x12Q\n\x11seat_cooler_level\x18\x01 \x01(\x0e26.CarServer.HvacSeatCoolerActions.HvacSeatCoolerLevel_E\x12P\n\rseat_position\x18\x02 \x01(\x0e29.CarServer.HvacSeatCoolerActions.HvacSeatCoolerPosition_E"\xad\x01\n\x15HvacSeatCoolerLevel_E\x12\x1f\n\x1bHvacSeatCoolerLevel_Unknown\x10\x00\x12\x1b\n\x17HvacSeatCoolerLevel_Off\x10\x01\x12\x1b\n\x17HvacSeatCoolerLevel_Low\x10\x02\x12\x1b\n\x17HvacSeatCoolerLevel_Med\x10\x03\x12\x1c\n\x18HvacSeatCoolerLevel_High\x10\x04"\xe0\x01\n\x18HvacSeatCoolerPosition_E\x12"\n\x1eHvacSeatCoolerPosition_Unknown\x10\x00\x12$\n HvacSeatCoolerPosition_FrontLeft\x10\x01\x12%\n!HvacSeatCoolerPosition_FrontRight\x10\x02\x12(\n$HvacSeatCoolerPosition_SecondRowLeft\x10\x03\x12)\n%HvacSeatCoolerPosition_SecondRowRight\x10\x04"\xde\x01\n\x1fHvacSetPreconditioningMaxAction\x12\n\n\x02on\x18\x01 \x01(\x08\x12\x17\n\x0fmanual_override\x18\x02 \x01(\x08\x12]\n\x14manual_override_mode\x18\x03 \x03(\x0e2?.CarServer.HvacSetPreconditioningMaxAction.ManualOverrideMode_E"7\n\x14ManualOverrideMode_E\x12\x0b\n\x07DogMode\x10\x00\x12\x07\n\x03Soc\x10\x01\x12\t\n\x05Doors\x10\x02"1\n\x1dHvacSteeringWheelHeaterAction\x12\x10\n\x08power_on\x18\x01 \x01(\x08"\xb3\x05\n\x1fHvacTemperatureAdjustmentAction\x12\x15\n\rdelta_celsius\x18\x01 \x01(\x02\x12\x15\n\rdelta_percent\x18\x02 \x01(\x11\x12\x18\n\x10absolute_celsius\x18\x03 \x01(\x02\x12E\n\x05level\x18\x05 \x01(\x0b26.CarServer.HvacTemperatureAdjustmentAction.Temperature\x12]\n\x15hvac_temperature_zone\x18\x04 \x03(\x0b2>.CarServer.HvacTemperatureAdjustmentAction.HvacTemperatureZone\x12\x1b\n\x13driver_temp_celsius\x18\x06 \x01(\x02\x12\x1e\n\x16passenger_temp_celsius\x18\x07 \x01(\x02\x1a\x88\x01\n\x0bTemperature\x12\'\n\x0cTEMP_UNKNOWN\x18\x01 \x01(\x0b2\x0f.CarServer.VoidH\x00\x12#\n\x08TEMP_MIN\x18\x02 \x01(\x0b2\x0f.CarServer.VoidH\x00\x12#\n\x08TEMP_MAX\x18\x03 \x01(\x0b2\x0f.CarServer.VoidH\x00B\x06\n\x04type\x1a\xd9\x01\n\x13HvacTemperatureZone\x12,\n\x11TEMP_ZONE_UNKNOWN\x18\x01 \x01(\x0b2\x0f.CarServer.VoidH\x00\x12/\n\x14TEMP_ZONE_FRONT_LEFT\x18\x02 \x01(\x0b2\x0f.CarServer.VoidH\x00\x120\n\x15TEMP_ZONE_FRONT_RIGHT\x18\x03 \x01(\x0b2\x0f.CarServer.VoidH\x00\x12)\n\x0eTEMP_ZONE_REAR\x18\x04 \x01(\x0b2\x0f.CarServer.VoidH\x00B\x06\n\x04type"R\n\x16GetNearbyChargingSites\x12\x19\n\x11include_meta_data\x18\x01 \x01(\x08\x12\x0e\n\x06radius\x18\x02 \x01(\x05\x12\r\n\x05count\x18\x03 \x01(\x05"\xda\x01\n\x13NearbyChargingSites\x12-\n\ttimestamp\x18\x01 \x01(\x0b2\x1a.google.protobuf.Timestamp\x12<\n\x14destination_charging\x18\x02 \x03(\x0b2\x1e.CarServer.DestinationCharging\x12/\n\rsuperchargers\x18\x03 \x03(\x0b2\x18.CarServer.Superchargers\x12%\n\x1dcongestion_sync_time_utc_secs\x18\x04 \x01(\x03"p\n\x13DestinationCharging\x12\x16\n\x0edistance_miles\x18\x05 \x01(\x02\x12\x13\n\x0bpostal_code\x18\t \x01(\t\x12\x16\n\x0estreet_address\x18\x0b \x01(\t\x12\x14\n\x0cwithin_range\x18\x0c \x01(\x08"\xcb\x03\n\rSuperchargers\x12\n\n\x02id\x18\x01 \x01(\x03\x12\x11\n\tamenities\x18\x02 \x01(\t\x12\x18\n\x10available_stalls\x18\x03 \x01(\x05\x12\x14\n\x0cbilling_info\x18\x04 \x01(\t\x12\x14\n\x0cbilling_time\x18\x05 \x01(\t\x12\x0c\n\x04city\x18\x06 \x01(\t\x12\x0f\n\x07country\x18\x07 \x01(\t\x12\x16\n\x0edistance_miles\x18\x08 \x01(\x02\x12\x10\n\x08district\x18\t \x01(\t\x12$\n\x08location\x18\n \x01(\x0b2\x12.CarServer.LatLong\x12\x0c\n\x04name\x18\x0b \x01(\t\x12\x13\n\x0bpostal_code\x18\x0c \x01(\t\x12\x13\n\x0bsite_closed\x18\r \x01(\x08\x12\r\n\x05state\x18\x0e \x01(\t\x12\x16\n\x0estreet_address\x18\x0f \x01(\t\x12\x14\n\x0ctotal_stalls\x18\x10 \x01(\x05\x12\x14\n\x0cwithin_range\x18\x11 \x01(\x08\x12\x14\n\x0cmax_power_kw\x18\x12 \x01(\x05\x12"\n\x1aout_of_order_stalls_number\x18\x13 \x01(\x05\x12!\n\x19out_of_order_stalls_names\x18\x14 \x01(\t"\x11\n\x0fMediaPlayAction"b\n\x11MediaUpdateVolume\x12\x16\n\x0cvolume_delta\x18\x01 \x01(\x11H\x00\x12\x1f\n\x15volume_absolute_float\x18\x03 \x01(\x02H\x00B\x0e\n\x0cmedia_volumeJ\x04\x08\x02\x10\x03"\x13\n\x11MediaNextFavorite"\x17\n\x15MediaPreviousFavorite"\x10\n\x0eMediaNextTrack"\x14\n\x12MediaPreviousTrack"*\n(VehicleControlCancelSoftwareUpdateAction"!\n\x1fVehicleControlFlashLightsAction"\x1e\n\x1cVehicleControlHonkHornAction"#\n!VehicleControlResetValetPinAction"@\n*VehicleControlScheduleSoftwareUpdateAction\x12\x12\n\noffset_sec\x18\x01 \x01(\x05"/\n!VehicleControlSetSentryModeAction\x12\n\n\x02on\x18\x01 \x01(\x08"@\n VehicleControlSetValetModeAction\x12\n\n\x02on\x18\x01 \x01(\x08\x12\x10\n\x08password\x18\x02 \x01(\t"\xd6\x01\n$VehicleControlSunroofOpenCloseAction\x12\x18\n\x0eabsolute_level\x18\x01 \x01(\x05H\x00\x12\x15\n\x0bdelta_level\x18\x02 \x01(\x11H\x00\x12\x1f\n\x04vent\x18\x03 \x01(\x0b2\x0f.CarServer.VoidH\x01\x12 \n\x05close\x18\x04 \x01(\x0b2\x0f.CarServer.VoidH\x01\x12\x1f\n\x04open\x18\x05 \x01(\x0b2\x0f.CarServer.VoidH\x01B\x0f\n\rsunroof_levelB\x08\n\x06action"Z\n#VehicleControlTriggerHomelinkAction\x12$\n\x08location\x18\x01 \x01(\x0b2\x12.CarServer.LatLong\x12\r\n\x05token\x18\x02 \x01(\t"\x93\x01\n\x1aVehicleControlWindowAction\x12"\n\x07unknown\x18\x02 \x01(\x0b2\x0f.CarServer.VoidH\x00\x12\x1f\n\x04vent\x18\x03 \x01(\x0b2\x0f.CarServer.VoidH\x00\x12 \n\x05close\x18\x04 \x01(\x0b2\x0f.CarServer.VoidH\x00B\x08\n\x06actionJ\x04\x08\x01\x10\x02">\n\x17HvacBioweaponModeAction\x12\n\n\x02on\x18\x01 \x01(\x08\x12\x17\n\x0fmanual_override\x18\x02 \x01(\x08"\xaa\x02\n\x15AutoSeatClimateAction\x129\n\x07carseat\x18\x01 \x03(\x0b2(.CarServer.AutoSeatClimateAction.CarSeat\x1aa\n\x07CarSeat\x12\n\n\x02on\x18\x01 \x01(\x08\x12J\n\rseat_position\x18\x02 \x01(\x0e23.CarServer.AutoSeatClimateAction.AutoSeatPosition_E"s\n\x12AutoSeatPosition_E\x12\x1c\n\x18AutoSeatPosition_Unknown\x10\x00\x12\x1e\n\x1aAutoSeatPosition_FrontLeft\x10\x01\x12\x1f\n\x1bAutoSeatPosition_FrontRight\x10\x02"\x87\x01\n\x04Ping\x12\x0f\n\x07ping_id\x18\x01 \x01(\x05\x123\n\x0flocal_timestamp\x18\x02 \x01(\x0b2\x1a.google.protobuf.Timestamp\x129\n\x15last_remote_timestamp\x18\x03 \x01(\x0b2\x1a.google.protobuf.Timestamp"A\n\x17ScheduledChargingAction\x12\x0f\n\x07enabled\x18\x01 \x01(\x08\x12\x15\n\rcharging_time\x18\x02 \x01(\x05"\xe6\x01\n\x18ScheduledDepartureAction\x12\x0f\n\x07enabled\x18\x01 \x01(\x08\x12\x16\n\x0edeparture_time\x18\x02 \x01(\x05\x12>\n\x15preconditioning_times\x18\x03 \x01(\x0b2\x1f.CarServer.PreconditioningTimes\x12@\n\x17off_peak_charging_times\x18\x04 \x01(\x0b2\x1f.CarServer.OffPeakChargingTimes\x12\x1f\n\x17off_peak_hours_end_time\x18\x05 \x01(\x05"\x98\x03\n\x17HvacClimateKeeperAction\x12U\n\x13ClimateKeeperAction\x18\x01 \x01(\x0e28.CarServer.HvacClimateKeeperAction.ClimateKeeperAction_E\x12\x17\n\x0fmanual_override\x18\x02 \x01(\x08\x12U\n\x14manual_override_mode\x18\x03 \x03(\x0e27.CarServer.HvacClimateKeeperAction.ManualOverrideMode_E"\x8b\x01\n\x15ClimateKeeperAction_E\x12\x1b\n\x17ClimateKeeperAction_Off\x10\x00\x12\x1a\n\x16ClimateKeeperAction_On\x10\x01\x12\x1b\n\x17ClimateKeeperAction_Dog\x10\x02\x12\x1c\n\x18ClimateKeeperAction_Camp\x10\x03"(\n\x14ManualOverrideMode_E\x12\x07\n\x03Soc\x10\x00\x12\x07\n\x03Cpd\x10\x01"%\n\x17HvacRecirculationAction\x12\n\n\x02on\x18\x01 \x01(\x08".\n\x15SetChargingAmpsAction\x12\x15\n\rcharging_amps\x18\x01 \x01(\x05"(\n\x1aRemoveChargeScheduleAction\x12\n\n\x02id\x18\x01 \x01(\x04"M\n BatchRemoveChargeSchedulesAction\x12\x0c\n\x04home\x18\x01 \x01(\x08\x12\x0c\n\x04work\x18\x02 \x01(\x08\x12\r\n\x05other\x18\x03 \x01(\x08"S\n&BatchRemovePreconditionSchedulesAction\x12\x0c\n\x04home\x18\x01 \x01(\x08\x12\x0c\n\x04work\x18\x02 \x01(\x08\x12\r\n\x05other\x18\x03 \x01(\x08".\n RemovePreconditionScheduleAction\x12\n\n\x02id\x18\x01 \x01(\x04"@\n SetCabinOverheatProtectionAction\x12\n\n\x02on\x18\x01 \x01(\x08\x12\x10\n\x08fan_only\x18\x02 \x01(\x08"+\n\x14SetVehicleNameAction\x12\x13\n\x0bvehicleName\x18\x01 \x01(\t"\x15\n\x13ChargePortDoorClose"\x14\n\x12ChargePortDoorOpen"\x1e\n\rBoomboxAction\x12\r\n\x05sound\x18\x01 \x01(\r"X\n\x10SetCopTempAction\x12D\n\x11copActivationTemp\x18\x01 \x01(\x0e2).CarServer.ClimateState.CopActivationTemp"A\n!VehicleControlSetPinToDriveAction\x12\n\n\x02on\x18\x01 \x01(\x08\x12\x10\n\x08password\x18\x02 \x01(\t"%\n#VehicleControlResetPinToDriveAction"\x12\n\x10RemoteStartDrive")\n\x13CreateStreamSession\x12\x12\n\nsession_id\x18\x01 \x01(\t"1\n\rStreamMessage\x12\x12\n\nsession_id\x18\x01 \x01(\t\x12\x0c\n\x04data\x18\x02 \x01(\x0c"7\n\x11NavigationRequest\x12\x13\n\x0bdestination\x18\x01 \x01(\t\x12\r\n\x05order\x18\x02 \x01(\x05".\n\x1dNavigationSuperchargerRequest\x12\r\n\x05order\x18\x01 \x01(\x05"5\n\x1cUiSetUpcomingCalendarEntries\x12\x15\n\rcalendar_data\x18\x01 \x01(\t"\xd1\x06\n\x17VehicleDataSubscription\x12I\n\x0fpii_key_request\x18\r \x01(\x0b20.CarServer.VehicleDataSubscription.PiiKeyRequest\x12\x1f\n\x17subscription_duration_s\x18\x03 \x01(\x05\x12\x1b\n\x13subscription_ping_s\x18\x0c \x01(\x05\x12\'\n\x1fgui_settings_max_update_rate_ms\x18\x04 \x01(\x05\x12\'\n\x1fcharge_state_max_update_rate_ms\x18\x05 \x01(\x05\x12(\n climate_state_max_update_rate_ms\x18\x06 \x01(\x05\x12&\n\x1edrive_state_max_update_rate_ms\x18\x07 \x01(\x05\x12(\n vehicle_state_max_update_rate_ms\x18\x08 \x01(\x05\x12)\n!vehicle_config_max_update_rate_ms\x18\t \x01(\x05\x12)\n!location_state_max_update_rate_ms\x18\n \x01(\x05\x12)\n!closures_state_max_update_rate_ms\x18\x0b \x01(\x05\x121\n)parked_accessory_state_max_update_rate_ms\x18\x0e \x01(\x05\x120\n(charge_schedule_state_max_update_rate_ms\x18\x0f \x01(\x05\x129\n1preconditioning_schedule_state_max_update_rate_ms\x18\x10 \x01(\x05\x12&\n\x1ealert_state_max_update_rate_ms\x18\x11 \x01(\x05\x12+\n#suspension_state_max_update_rate_ms\x18\x12 \x01(\x05\x129\n1child_presence_detection_state_max_update_rate_ms\x18\x13 \x01(\x05\x1a.\n\rPiiKeyRequest\x12\x1d\n\x15subscriber_public_key\x18\x01 \x01(\t"\xef\x06\n\x0eVehicleDataAck\x12:\n\x16charge_state_timestamp\x18\x02 \x01(\x0b2\x1a.google.protobuf.Timestamp\x12;\n\x17climate_state_timestamp\x18\x03 \x01(\x0b2\x1a.google.protobuf.Timestamp\x12<\n\x18closures_state_timestamp\x18\x04 \x01(\x0b2\x1a.google.protobuf.Timestamp\x129\n\x15drive_state_timestamp\x18\x05 \x01(\x0b2\x1a.google.protobuf.Timestamp\x12:\n\x16gui_settings_timestamp\x18\x06 \x01(\x0b2\x1a.google.protobuf.Timestamp\x12<\n\x18location_state_timestamp\x18\x07 \x01(\x0b2\x1a.google.protobuf.Timestamp\x12<\n\x18vehicle_config_timestamp\x18\x08 \x01(\x0b2\x1a.google.protobuf.Timestamp\x12;\n\x17vehicle_state_timestamp\x18\t \x01(\x0b2\x1a.google.protobuf.Timestamp\x12D\n parked_accessory_state_timestamp\x18\x0b \x01(\x0b2\x1a.google.protobuf.Timestamp\x12C\n\x1fcharge_schedule_state_timestamp\x18\x0c \x01(\x0b2\x1a.google.protobuf.Timestamp\x12L\n(preconditioning_schedule_state_timestamp\x18\r \x01(\x0b2\x1a.google.protobuf.Timestamp\x129\n\x15alert_state_timestamp\x18\x0e \x01(\x0b2\x1a.google.protobuf.Timestamp\x12>\n\x1asuspension_state_timestamp\x18\x0f \x01(\x0b2\x1a.google.protobuf.Timestamp\x12"\n\x16decryption_error_field\x18\n \x03(\x05B\x02\x10\x01"(\n\x12VitalsSubscription\x12\x12\n\nsession_id\x18\x01 \x01(\x05"\x0b\n\tVitalsAck"\x17\n\x15DashcamSaveClipAction"f\n\rPiiKeyRequest\x12\x1d\n\x15subscriber_public_key\x18\x02 \x01(\t\x126\n\x12pii_key_expiration\x18\x04 \x01(\x0b2\x1a.google.protobuf.Timestamp";\n\x14PseudonymSyncRequest\x12#\n\x1blast_known_pseudonym_hashed\x18\x01 \x01(\x0c"\x95\x02\n\x14NavigationGpsRequest\x12\x0b\n\x03lat\x18\x01 \x01(\x01\x12\x0b\n\x03lon\x18\x02 \x01(\x01\x12A\n\x05order\x18\x03 \x01(\x0e22.CarServer.NavigationGpsRequest.RemoteNavTripOrder"\x9f\x01\n\x12RemoteNavTripOrder\x12!\n\x1dREMOTE_NAV_TRIP_ORDER_UNKNOWN\x10\x00\x12!\n\x1dREMOTE_NAV_TRIP_ORDER_REPLACE\x10\x01\x12!\n\x1dREMOTE_NAV_TRIP_ORDER_PREPEND\x10\x02\x12 \n\x1cREMOTE_NAV_TRIP_ORDER_APPEND\x10\x03"\x90\x0c\n\x14SetRateTariffRequest\x128\n\x07seasons\x18\r \x01(\x0b2\'.CarServer.SetRateTariffRequest.Seasons\x126\n\x06tariff\x18\x0e \x01(\x0b2&.CarServer.SetRateTariffRequest.Tariff\x1a\x89\x01\n\tTOUPeriod\x12\x18\n\x10from_day_of_week\x18\x01 \x01(\x05\x12\x16\n\x0eto_day_of_week\x18\x02 \x01(\x05\x12\x11\n\tfrom_hour\x18\x03 \x01(\x05\x12\x13\n\x0bfrom_minute\x18\x04 \x01(\x05\x12\x0f\n\x07to_hour\x18\x05 \x01(\x05\x12\x11\n\tto_minute\x18\x06 \x01(\x05\x1a\x89\x02\n\nTOUPeriods\x12:\n\x07ON_PEAK\x18\x01 \x03(\x0b2).CarServer.SetRateTariffRequest.TOUPeriod\x12?\n\x0cPARTIAL_PEAK\x18\x02 \x03(\x0b2).CarServer.SetRateTariffRequest.TOUPeriod\x12;\n\x08OFF_PEAK\x18\x03 \x03(\x0b2).CarServer.SetRateTariffRequest.TOUPeriod\x12A\n\x0eSUPER_OFF_PEAK\x18\x04 \x03(\x0b2).CarServer.SetRateTariffRequest.TOUPeriod\x1a\x91\x01\n\x06Season\x12\x10\n\x08from_day\x18\x01 \x01(\x05\x12\x0e\n\x06to_day\x18\x02 \x01(\x05\x12\x12\n\nfrom_month\x18\x03 \x01(\x05\x12\x10\n\x08to_month\x18\x04 \x01(\x05\x12?\n\x0btou_periods\x18\x05 \x01(\x0b2*.CarServer.SetRateTariffRequest.TOUPeriods\x1a\xa4\x02\n\x07Seasons\x126\n\x06Summer\x18\x01 \x01(\x0b2&.CarServer.SetRateTariffRequest.Season\x126\n\x06Winter\x18\x02 \x01(\x0b2&.CarServer.SetRateTariffRequest.Season\x127\n\x07Season3\x18\x03 \x01(\x0b2&.CarServer.SetRateTariffRequest.Season\x127\n\x07Season4\x18\x04 \x01(\x0b2&.CarServer.SetRateTariffRequest.Season\x127\n\x07Season5\x18\x05 \x01(\x0b2&.CarServer.SetRateTariffRequest.Season\x1a\x1a\n\x0bFixedCharge\x12\x0b\n\x03ALL\x18\x01 \x01(\x01\x1ah\n\x08RateBand\x12\x0b\n\x03ALL\x18\x01 \x01(\x01\x12\x0f\n\x07ON_PEAK\x18\x02 \x01(\x01\x12\x14\n\x0cPARTIAL_PEAK\x18\x03 \x01(\x01\x12\x10\n\x08OFF_PEAK\x18\x04 \x01(\x01\x12\x16\n\x0eSUPER_OFF_PEAK\x18\x05 \x01(\x01\x1a\xe8\x02\n\x07Charges\x128\n\x03ALL\x18\x01 \x01(\x0b2+.CarServer.SetRateTariffRequest.FixedCharge\x128\n\x06Summer\x18\x02 \x01(\x0b2(.CarServer.SetRateTariffRequest.RateBand\x128\n\x06Winter\x18\x03 \x01(\x0b2(.CarServer.SetRateTariffRequest.RateBand\x129\n\x07Season3\x18\x04 \x01(\x0b2(.CarServer.SetRateTariffRequest.RateBand\x129\n\x07Season4\x18\x05 \x01(\x0b2(.CarServer.SetRateTariffRequest.RateBand\x129\n\x07Season5\x18\x06 \x01(\x0b2(.CarServer.SetRateTariffRequest.RateBand\x1aB\n\x06Tariff\x128\n\x07seasons\x18\r \x01(\x0b2\'.CarServer.SetRateTariffRequest.Seasons"\x16\n\x14GetRateTariffRequest"!\n\x12VideoRequestAction\x12\x0b\n\x03url\x18\x01 \x01(\t"#\n\x13TakeDrivenoteAction\x12\x0c\n\x04note\x18\x01 \x01(\t"H\n\x1eBluetoothClassicPairingRequest\x12\x11\n\tutf8_name\x18\x01 \x01(\t\x12\x13\n\x0bmac_address\x18\x02 \x01(\x0c"M\n\x1dAddManagedChargingSiteRequest\x12,\n\x04site\x18\x01 \x01(\x0b2\x1e.CarServer.ManagedChargingSite"|\n\x13ManagedChargingSite\x12\x12\n\npublic_key\x18\x01 \x01(\t\x12,\n\x0cmanager_type\x18\x02 \x01(\x0b2\x16.CarServer.ManagerType\x12#\n\x07lat_lon\x18\x03 \x01(\x0b2\x12.CarServer.LatLong"A\n\x0bManagerType\x122\n\x0fsite_controller\x18\x01 \x01(\x0b2\x19.CarServer.SiteController"\x10\n\x0eSiteController"6\n RemoveManagedChargingSiteRequest\x12\x12\n\npublic_key\x18\x01 \x01(\t"\x17\n\x15NavigationRouteAction"\x1f\n\x11AutoStwHeatAction\x12\n\n\x02on\x18\x01 \x01(\x08"E\n\x12StwHeatLevelAction\x12/\n\x0estw_heat_level\x18\x01 \x01(\x0e2\x17.CarServer.StwHeatLevel" \n\x1eGetManagedChargingSitesRequest"]\n!UpdateChargeOnSolarFeatureRequest\x128\n\x0fcharge_on_solar\x18\x01 \x01(\x0b2\x1f.CarServer.ChargeOnSolarFeature" \n\x1eGetChargeOnSolarFeatureRequest"_\n\x14ChargeOnSolarFeature\x12\x0f\n\x07enabled\x18\x01 \x01(\x08\x12\x1a\n\x12lower_charge_limit\x18\x02 \x01(\x02\x12\x1a\n\x12upper_charge_limit\x18\x03 \x01(\x02"&\n$DrivingClearSpeedLimitPinAdminAction"\xe0\x01\n\x15SetOutletsOnOffAction\x12F\n\x0eoutlet_request\x18\x01 \x01(\x0e2..CarServer.SetOutletsOnOffAction.OutletRequest"\x7f\n\rOutletRequest\x12\x1a\n\x16OUTLET_REQUEST_UNKNOWN\x10\x00\x12\x16\n\x12OUTLET_REQUEST_OFF\x10\x01\x12 \n\x1cOUTLET_REQUEST_CABIN_AND_BED\x10\x02\x12\x18\n\x14OUTLET_REQUEST_CABIN\x10\x03"+\n\x14SetOutletTimerAction\x12\x13\n\x0bnum_minutes\x18\x01 \x01(\x05"*\n\x17SetOutletSocLimitAction\x12\x0f\n\x07percent\x18\x01 \x01(\x05"\xa3\x02\n\x17SetPowerFeedOnOffAction\x12O\n\x12power_feed_request\x18\x01 \x01(\x0e23.CarServer.SetPowerFeedOnOffAction.PowerFeedRequest"\xb6\x01\n\x10PowerFeedRequest\x12\x1e\n\x1aPOWER_FEED_REQUEST_UNKNOWN\x10\x00\x12\x1a\n\x16POWER_FEED_REQUEST_OFF\x10\x01\x12\x1d\n\x19POWER_FEED_REQUEST_FEED_1\x10\x02\x12\x1d\n\x19POWER_FEED_REQUEST_FEED_2\x10\x03\x12(\n$POWER_FEED_REQUEST_FEED_1_AND_FEED_2\x10\x04".\n\x17SetPowerFeedTimerAction\x12\x13\n\x0bnum_minutes\x18\x01 \x01(\x05"-\n\x1aSetPowerFeedSocLimitAction\x12\x0f\n\x07percent\x18\x01 \x01(\x05"8\n"SetTrailerLightTestStartStopAction\x12\x12\n\nstart_stop\x18\x01 \x01(\x08"6\n\x1fSetTruckBedLightAutoStateAction\x12\x13\n\x0bpower_state\x18\x01 \x01(\x08"6\n SetTruckBedLightBrightnessAction\x12\x12\n\nbrightness\x18\x01 \x01(\r"*\n(VehicleControlResetPinToDriveAdminAction"\xd4\x01\n\x1aNavigationWaypointsRequest\x12\x11\n\twaypoints\x18\x01 \x01(\t\x12P\n\x11trip_plan_options\x18\x02 \x01(\x0b25.CarServer.NavigationWaypointsRequest.TripPlanOptions\x1aQ\n\x0fTripPlanOptions\x12\x1d\n\x15destination_start_soe\x18\x01 \x01(\x05\x12\x1f\n\x17destination_arrival_soe\x18\x02 \x01(\x05"\x8c\x02\n\x1aSetPowershareFeatureAction\x12b\n\x1apowershare_feature_request\x18\x01 \x01(\x0e2>.CarServer.SetPowershareFeatureAction.PowershareFeatureRequest"\x89\x01\n\x18PowershareFeatureRequest\x12&\n"POWERSHARE_FEATURE_REQUEST_UNKNOWN\x10\x00\x12"\n\x1ePOWERSHARE_FEATURE_REQUEST_OFF\x10\x01\x12!\n\x1dPOWERSHARE_FEATURE_REQUEST_ON\x10\x02"G\n!SetPowershareDischargeLimitAction\x12"\n\x1apowershare_discharge_limit\x18\x01 \x01(\x05"\xdd\x01\n\x1aSetPowershareRequestAction\x12S\n\x12powershare_request\x18\x01 \x01(\x0e27.CarServer.SetPowershareRequestAction.PowershareRequest"j\n\x11PowershareRequest\x12\x1e\n\x1aPOWERSHARE_REQUEST_UNKNOWN\x10\x00\x12\x1a\n\x16POWERSHARE_REQUEST_OFF\x10\x01\x12\x19\n\x15POWERSHARE_REQUEST_ON\x10\x02"&\n\x18SetTentModeRequestAction\x12\n\n\x02on\x18\x01 \x01(\x08"\xf4\x01\n\x19SetZoneLightRequestAction\x12Q\n\x12zone_light_request\x18\x01 \x01(\x0e25.CarServer.SetZoneLightRequestAction.ZoneLightRequest"\x83\x01\n\x10ZoneLightRequest\x12\x1a\n\x16ZONE_LIGHT_REQUEST_OFF\x10\x00\x12\x1a\n\x16ZONE_LIGHT_REQUEST_LOW\x10\x01\x12\x1a\n\x16ZONE_LIGHT_REQUEST_MED\x10\x02\x12\x1b\n\x17ZONE_LIGHT_REQUEST_HIGH\x10\x03"9\n\x1bSetLightbarBrightnessAction\x12\x1a\n\x12brightness_request\x18\x01 \x01(\r"7\n\x17SetLightbarMiddleAction\x12\x1c\n\x14middle_light_request\x18\x01 \x01(\x08"6\n\x16SetLightbarDitchAction\x12\x1c\n\x14ditch_lights_request\x18\x01 \x01(\x08"\x13\n\x11GetMessagesAction"\xa7\x01\n\x17TeslaAuthResponseAction\x12\x11\n\tclient_id\x18\x01 \x01(\t\x12\r\n\x05scope\x18\x02 \x01(\t\x12\x14\n\x0caccess_token\x18\x03 \x01(\t\x12\x15\n\rrefresh_token\x18\x04 \x01(\t\x12\x18\n\x10expiry_timestamp\x18\x05 \x01(\x03\x12\r\n\x05error\x18\x06 \x01(\t\x12\x14\n\x0cscoped_token\x18\x07 \x01(\t"\xc0\x02\n\x1fNavigationGpsDestinationRequest\x12\x0b\n\x03lat\x18\x01 \x01(\x01\x12\x0b\n\x03lon\x18\x02 \x01(\x01\x12\x13\n\x0bdestination\x18\x03 \x01(\t\x12L\n\x05order\x18\x04 \x01(\x0e2=.CarServer.NavigationGpsDestinationRequest.RemoteNavTripOrder"\x9f\x01\n\x12RemoteNavTripOrder\x12!\n\x1dREMOTE_NAV_TRIP_ORDER_UNKNOWN\x10\x00\x12!\n\x1dREMOTE_NAV_TRIP_ORDER_REPLACE\x10\x01\x12!\n\x1dREMOTE_NAV_TRIP_ORDER_PREPEND\x10\x02\x12 \n\x1cREMOTE_NAV_TRIP_ORDER_APPEND\x10\x03"-\n\x1eParentalControlsClearPinAction\x12\x0b\n\x03pin\x18\x01 \x01(\t"%\n#ParentalControlsClearPinAdminAction"7\n\x16ParentalControlsAction\x12\x10\n\x08activate\x18\x01 \x01(\x08\x12\x0b\n\x03pin\x18\x02 \x01(\t"\xad\x02\n$ParentalControlsEnableSettingsAction\x12Z\n\x07setting\x18\x01 \x01(\x0e2I.CarServer.ParentalControlsEnableSettingsAction.ParentalControlsSetting_E\x12\x0e\n\x06enable\x18\x02 \x01(\x08"\x98\x01\n\x19ParentalControlsSetting_E\x12\x0e\n\nSpeedLimit\x10\x00\x12\x10\n\x0cAcceleration\x10\x01\x12\x12\n\x0eSafetyFeatures\x10\x02\x12\n\n\x06Curfew\x10\x03\x12\x12\n\x0eBrowserBlocked\x10\x04\x12\x12\n\x0eTheaterBlocked\x10\x05\x12\x11\n\rArcadeBlocked\x10\x06"8\n#ParentalControlsSetSpeedLimitAction\x12\x11\n\tlimit_mph\x18\x01 \x01(\x01"\x15\n\x13CancelSohTestAction"\x15\n\x13StopLightShowAction"c\n\x14StartLightShowAction\x12\x12\n\nshow_index\x18\x01 \x01(\x05\x12\x12\n\nstart_time\x18\x02 \x01(\x03\x12\x0e\n\x06volume\x18\x03 \x01(\x02\x12\x13\n\x0bdance_moves\x18\x04 \x01(\x08"\xc7\x02\n\x18SetSuspensionLevelAction\x12M\n\x10suspension_level\x18\x01 \x01(\x0e23.CarServer.SetSuspensionLevelAction.SuspensionLevel"\xdb\x01\n\x0fSuspensionLevel\x12\x1c\n\x18SUSPENSION_LEVEL_INVALID\x10\x00\x12\x1a\n\x16SUSPENSION_LEVEL_ENTRY\x10\x01\x12\x18\n\x14SUSPENSION_LEVEL_LOW\x10\x02\x12\x1b\n\x17SUSPENSION_LEVEL_MEDIUM\x10\x03\x12\x19\n\x15SUSPENSION_LEVEL_HIGH\x10\x04\x12\x1e\n\x1aSUSPENSION_LEVEL_VERY_HIGH\x10\x05\x12\x1c\n\x18SUSPENSION_LEVEL_EXTRACT\x10\x06"2\n\x17SetDischargeLimitAction\x12\x17\n\x0fdischarge_limit\x18\x01 \x01(\x05"/\n\x15SetLowPowerModeAction\x12\x16\n\x0elow_power_mode\x18\x01 \x01(\x08"\x81\x01\n\x18SetTemperatureUnitAction\x126\n\x04unit\x18\x01 \x01(\x0e2(.CarServer.SetTemperatureUnitAction.Unit"-\n\x04Unit\x12\x13\n\x0fUNIT_FAHRENHEIT\x10\x00\x12\x10\n\x0cUNIT_CELSIUS\x10\x01"y\n\x15SetDistanceUnitAction\x123\n\x04unit\x18\x01 \x01(\x0e2%.CarServer.SetDistanceUnitAction.Unit"+\n\x04Unit\x12\x0e\n\nUNIT_MILES\x10\x00\x12\x13\n\x0fUNIT_KILOMETERS\x10\x01"\x8c\x01\n\x1aSetTimeDisplayFormatAction\x12<\n\x06format\x18\x01 \x01(\x0e2,.CarServer.SetTimeDisplayFormatAction.Format"0\n\x06Format\x12\x12\n\x0eFORMAT_12_HOUR\x10\x00\x12\x12\n\x0eFORMAT_24_HOUR\x10\x01"x\n\x19SetTirePressureUnitAction\x127\n\x04unit\x18\x01 \x01(\x0e2).CarServer.SetTirePressureUnitAction.Unit""\n\x04Unit\x12\x0c\n\x08UNIT_PSI\x10\x00\x12\x0c\n\x08UNIT_BAR\x10\x01"\x94\x01\n\x1cSetEnergyDisplayFormatAction\x12>\n\x06format\x18\x01 \x01(\x0e2..CarServer.SetEnergyDisplayFormatAction.Format"4\n\x06Format\x12\x15\n\x11FORMAT_PERCENTAGE\x10\x00\x12\x13\n\x0fFORMAT_DISTANCE\x10\x01"D\n\x1fSetKeepAccessoryPowerModeAction\x12!\n\x19keep_accessory_power_mode\x18\x01 \x01(\x08"\x8d\x01\n+SetupCloudProfileWithLocalProfileUuidAction\x12\x18\n\x10cloud_vault_uuid\x18\x01 \x01(\t\x12\x1a\n\x12local_profile_uuid\x18\x02 \x01(\t\x12(\n delete_local_profile_after_setup\x18\x03 \x01(\x08"8\n"GetLocalProfilesForVaultUuidAction\x12\x12\n\nvault_uuid\x18\x01 \x01(\t"\x15\n\x13FetchKeysInfoAction"0\n\x18DeleteDashcamClipsAction\x12\x14\n\x0cdelete_clips\x18\x01 \x01(\x08"%\n\x0fFormatUSBAction\x12\x12\n\nformat_usb\x18\x01 \x01(\x08"\'\n\rBandwidthTest\x12\x16\n\x0erequested_size\x18\x01 \x01(\r"\x98\x01\n\x14PhoneUnitPreferences\x12<\n\rdistance_unit\x18\x01 \x01(\x0e2%.CarServer.SetDistanceUnitAction.Unit\x12B\n\x10temperature_unit\x18\x02 \x01(\x0e2(.CarServer.SetTemperatureUnitAction.Unit"\xdf\x01\n SetPhoneSettingPreferencesAction\x12G\n\tfont_size\x18\x01 \x01(\x0e24.CarServer.SetPhoneSettingPreferencesAction.FontSize\x129\n\x10unit_preferences\x18\x03 \x01(\x0b2\x1f.CarServer.PhoneUnitPreferences"7\n\x08FontSize\x12\x16\n\x12FONT_SIZE_STANDARD\x10\x00\x12\x13\n\x0fFONT_SIZE_LARGE\x10\x01"\x1f\n\x1dCancelVehicleDataSubscription*F\n\x11OperationStatus_E\x12\x16\n\x12OPERATIONSTATUS_OK\x10\x00\x12\x19\n\x15OPERATIONSTATUS_ERROR\x10\x01Bn\n$com.tesla.generated.carserver.serverZFgithub.com/teslamotors/vehicle-command/pkg/protocol/protobuf/carserverb\x06proto3')
|
|
14
|
+
_globals = globals()
|
|
15
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
16
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'car_server_pb2', _globals)
|
|
17
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
18
|
+
_globals['DESCRIPTOR']._loaded_options = None
|
|
19
|
+
_globals['DESCRIPTOR']._serialized_options = b'\n$com.tesla.generated.carserver.serverZFgithub.com/teslamotors/vehicle-command/pkg/protocol/protobuf/carserver'
|
|
20
|
+
_globals['_VEHICLEDATAACK'].fields_by_name['decryption_error_field']._loaded_options = None
|
|
21
|
+
_globals['_VEHICLEDATAACK'].fields_by_name['decryption_error_field']._serialized_options = b'\x10\x01'
|
|
22
|
+
_globals['_OPERATIONSTATUS_E']._serialized_start = 29659
|
|
23
|
+
_globals['_OPERATIONSTATUS_E']._serialized_end = 29729
|
|
24
|
+
_globals['_ACTION']._serialized_start = 111
|
|
25
|
+
_globals['_ACTION']._serialized_end = 190
|
|
26
|
+
_globals['_VEHICLEACTION']._serialized_start = 193
|
|
27
|
+
_globals['_VEHICLEACTION']._serialized_end = 9827
|
|
28
|
+
_globals['_GETVEHICLEDATA']._serialized_start = 9830
|
|
29
|
+
_globals['_GETVEHICLEDATA']._serialized_end = 11080
|
|
30
|
+
_globals['_GETGUISETTINGS']._serialized_start = 11082
|
|
31
|
+
_globals['_GETGUISETTINGS']._serialized_end = 11098
|
|
32
|
+
_globals['_GETPARKEDACCESSORYSTATE']._serialized_start = 11100
|
|
33
|
+
_globals['_GETPARKEDACCESSORYSTATE']._serialized_end = 11125
|
|
34
|
+
_globals['_GETVEHICLESTATE']._serialized_start = 11127
|
|
35
|
+
_globals['_GETVEHICLESTATE']._serialized_end = 11144
|
|
36
|
+
_globals['_GETALERTSTATE']._serialized_start = 11146
|
|
37
|
+
_globals['_GETALERTSTATE']._serialized_end = 11161
|
|
38
|
+
_globals['_GETLIGHTSHOWSTATE']._serialized_start = 11163
|
|
39
|
+
_globals['_GETLIGHTSHOWSTATE']._serialized_end = 11182
|
|
40
|
+
_globals['_GETVEHICLEIMAGESTATE']._serialized_start = 11184
|
|
41
|
+
_globals['_GETVEHICLEIMAGESTATE']._serialized_end = 11261
|
|
42
|
+
_globals['_GETSUSPENSIONSTATE']._serialized_start = 11263
|
|
43
|
+
_globals['_GETSUSPENSIONSTATE']._serialized_end = 11283
|
|
44
|
+
_globals['_GETCHILDPRESENCEDETECTIONSTATE']._serialized_start = 11285
|
|
45
|
+
_globals['_GETCHILDPRESENCEDETECTIONSTATE']._serialized_end = 11317
|
|
46
|
+
_globals['_VEHICLEIMAGEDATACHUNKREQUEST']._serialized_start = 11319
|
|
47
|
+
_globals['_VEHICLEIMAGEDATACHUNKREQUEST']._serialized_end = 11391
|
|
48
|
+
_globals['_VEHICLEIMAGEREQUEST']._serialized_start = 11394
|
|
49
|
+
_globals['_VEHICLEIMAGEREQUEST']._serialized_end = 11612
|
|
50
|
+
_globals['_VEHICLEIMAGEREQUEST_TYPE']._serialized_start = 11588
|
|
51
|
+
_globals['_VEHICLEIMAGEREQUEST_TYPE']._serialized_end = 11612
|
|
52
|
+
_globals['_GETTIREPRESSURESTATE']._serialized_start = 11614
|
|
53
|
+
_globals['_GETTIREPRESSURESTATE']._serialized_end = 11636
|
|
54
|
+
_globals['_GETMEDIASTATE']._serialized_start = 11638
|
|
55
|
+
_globals['_GETMEDIASTATE']._serialized_end = 11653
|
|
56
|
+
_globals['_GETMEDIADETAILSTATE']._serialized_start = 11655
|
|
57
|
+
_globals['_GETMEDIADETAILSTATE']._serialized_end = 11676
|
|
58
|
+
_globals['_GETSOFTWAREUPDATESTATE']._serialized_start = 11678
|
|
59
|
+
_globals['_GETSOFTWAREUPDATESTATE']._serialized_end = 11702
|
|
60
|
+
_globals['_GETCHARGESTATE']._serialized_start = 11704
|
|
61
|
+
_globals['_GETCHARGESTATE']._serialized_end = 11720
|
|
62
|
+
_globals['_GETCLIMATESTATE']._serialized_start = 11722
|
|
63
|
+
_globals['_GETCLIMATESTATE']._serialized_end = 11739
|
|
64
|
+
_globals['_GETDRIVESTATE']._serialized_start = 11741
|
|
65
|
+
_globals['_GETDRIVESTATE']._serialized_end = 11756
|
|
66
|
+
_globals['_GETLOCATIONSTATE']._serialized_start = 11758
|
|
67
|
+
_globals['_GETLOCATIONSTATE']._serialized_end = 11776
|
|
68
|
+
_globals['_GETCLOSURESSTATE']._serialized_start = 11778
|
|
69
|
+
_globals['_GETCLOSURESSTATE']._serialized_end = 11796
|
|
70
|
+
_globals['_GETCHARGESCHEDULESTATE']._serialized_start = 11798
|
|
71
|
+
_globals['_GETCHARGESCHEDULESTATE']._serialized_end = 11822
|
|
72
|
+
_globals['_GETPRECONDITIONINGSCHEDULESTATE']._serialized_start = 11824
|
|
73
|
+
_globals['_GETPRECONDITIONINGSCHEDULESTATE']._serialized_end = 11857
|
|
74
|
+
_globals['_GETPARENTALCONTROLSSTATE']._serialized_start = 11859
|
|
75
|
+
_globals['_GETPARENTALCONTROLSSTATE']._serialized_end = 11885
|
|
76
|
+
_globals['_ERASEUSERDATAACTION']._serialized_start = 11887
|
|
77
|
+
_globals['_ERASEUSERDATAACTION']._serialized_end = 11949
|
|
78
|
+
_globals['_RESPONSE']._serialized_start = 11952
|
|
79
|
+
_globals['_RESPONSE']._serialized_end = 12230
|
|
80
|
+
_globals['_ACTIONSTATUS']._serialized_start = 12232
|
|
81
|
+
_globals['_ACTIONSTATUS']._serialized_end = 12340
|
|
82
|
+
_globals['_RESULTREASON']._serialized_start = 12342
|
|
83
|
+
_globals['_RESULTREASON']._serialized_end = 12388
|
|
84
|
+
_globals['_ENCRYPTEDDATA']._serialized_start = 12390
|
|
85
|
+
_globals['_ENCRYPTEDDATA']._serialized_end = 12460
|
|
86
|
+
_globals['_CHARGINGSETLIMITACTION']._serialized_start = 12462
|
|
87
|
+
_globals['_CHARGINGSETLIMITACTION']._serialized_end = 12521
|
|
88
|
+
_globals['_CHARGINGSTARTSTOPACTION']._serialized_start = 12524
|
|
89
|
+
_globals['_CHARGINGSTARTSTOPACTION']._serialized_end = 12758
|
|
90
|
+
_globals['_DRIVINGCLEARSPEEDLIMITPINACTION']._serialized_start = 12760
|
|
91
|
+
_globals['_DRIVINGCLEARSPEEDLIMITPINACTION']._serialized_end = 12806
|
|
92
|
+
_globals['_DRIVINGSETSPEEDLIMITACTION']._serialized_start = 12808
|
|
93
|
+
_globals['_DRIVINGSETSPEEDLIMITACTION']._serialized_end = 12855
|
|
94
|
+
_globals['_DRIVINGSPEEDLIMITACTION']._serialized_start = 12857
|
|
95
|
+
_globals['_DRIVINGSPEEDLIMITACTION']._serialized_end = 12913
|
|
96
|
+
_globals['_HVACAUTOACTION']._serialized_start = 12915
|
|
97
|
+
_globals['_HVACAUTOACTION']._serialized_end = 12974
|
|
98
|
+
_globals['_HVACSEATHEATERACTIONS']._serialized_start = 12977
|
|
99
|
+
_globals['_HVACSEATHEATERACTIONS']._serialized_end = 13869
|
|
100
|
+
_globals['_HVACSEATHEATERACTIONS_HVACSEATHEATERACTION']._serialized_start = 13088
|
|
101
|
+
_globals['_HVACSEATHEATERACTIONS_HVACSEATHEATERACTION']._serialized_end = 13869
|
|
102
|
+
_globals['_HVACSEATCOOLERACTIONS']._serialized_start = 13872
|
|
103
|
+
_globals['_HVACSEATCOOLERACTIONS']._serialized_end = 14573
|
|
104
|
+
_globals['_HVACSEATCOOLERACTIONS_HVACSEATCOOLERACTION']._serialized_start = 13983
|
|
105
|
+
_globals['_HVACSEATCOOLERACTIONS_HVACSEATCOOLERACTION']._serialized_end = 14170
|
|
106
|
+
_globals['_HVACSEATCOOLERACTIONS_HVACSEATCOOLERLEVEL_E']._serialized_start = 14173
|
|
107
|
+
_globals['_HVACSEATCOOLERACTIONS_HVACSEATCOOLERLEVEL_E']._serialized_end = 14346
|
|
108
|
+
_globals['_HVACSEATCOOLERACTIONS_HVACSEATCOOLERPOSITION_E']._serialized_start = 14349
|
|
109
|
+
_globals['_HVACSEATCOOLERACTIONS_HVACSEATCOOLERPOSITION_E']._serialized_end = 14573
|
|
110
|
+
_globals['_HVACSETPRECONDITIONINGMAXACTION']._serialized_start = 14576
|
|
111
|
+
_globals['_HVACSETPRECONDITIONINGMAXACTION']._serialized_end = 14798
|
|
112
|
+
_globals['_HVACSETPRECONDITIONINGMAXACTION_MANUALOVERRIDEMODE_E']._serialized_start = 14743
|
|
113
|
+
_globals['_HVACSETPRECONDITIONINGMAXACTION_MANUALOVERRIDEMODE_E']._serialized_end = 14798
|
|
114
|
+
_globals['_HVACSTEERINGWHEELHEATERACTION']._serialized_start = 14800
|
|
115
|
+
_globals['_HVACSTEERINGWHEELHEATERACTION']._serialized_end = 14849
|
|
116
|
+
_globals['_HVACTEMPERATUREADJUSTMENTACTION']._serialized_start = 14852
|
|
117
|
+
_globals['_HVACTEMPERATUREADJUSTMENTACTION']._serialized_end = 15543
|
|
118
|
+
_globals['_HVACTEMPERATUREADJUSTMENTACTION_TEMPERATURE']._serialized_start = 15187
|
|
119
|
+
_globals['_HVACTEMPERATUREADJUSTMENTACTION_TEMPERATURE']._serialized_end = 15323
|
|
120
|
+
_globals['_HVACTEMPERATUREADJUSTMENTACTION_HVACTEMPERATUREZONE']._serialized_start = 15326
|
|
121
|
+
_globals['_HVACTEMPERATUREADJUSTMENTACTION_HVACTEMPERATUREZONE']._serialized_end = 15543
|
|
122
|
+
_globals['_GETNEARBYCHARGINGSITES']._serialized_start = 15545
|
|
123
|
+
_globals['_GETNEARBYCHARGINGSITES']._serialized_end = 15627
|
|
124
|
+
_globals['_NEARBYCHARGINGSITES']._serialized_start = 15630
|
|
125
|
+
_globals['_NEARBYCHARGINGSITES']._serialized_end = 15848
|
|
126
|
+
_globals['_DESTINATIONCHARGING']._serialized_start = 15850
|
|
127
|
+
_globals['_DESTINATIONCHARGING']._serialized_end = 15962
|
|
128
|
+
_globals['_SUPERCHARGERS']._serialized_start = 15965
|
|
129
|
+
_globals['_SUPERCHARGERS']._serialized_end = 16424
|
|
130
|
+
_globals['_MEDIAPLAYACTION']._serialized_start = 16426
|
|
131
|
+
_globals['_MEDIAPLAYACTION']._serialized_end = 16443
|
|
132
|
+
_globals['_MEDIAUPDATEVOLUME']._serialized_start = 16445
|
|
133
|
+
_globals['_MEDIAUPDATEVOLUME']._serialized_end = 16543
|
|
134
|
+
_globals['_MEDIANEXTFAVORITE']._serialized_start = 16545
|
|
135
|
+
_globals['_MEDIANEXTFAVORITE']._serialized_end = 16564
|
|
136
|
+
_globals['_MEDIAPREVIOUSFAVORITE']._serialized_start = 16566
|
|
137
|
+
_globals['_MEDIAPREVIOUSFAVORITE']._serialized_end = 16589
|
|
138
|
+
_globals['_MEDIANEXTTRACK']._serialized_start = 16591
|
|
139
|
+
_globals['_MEDIANEXTTRACK']._serialized_end = 16607
|
|
140
|
+
_globals['_MEDIAPREVIOUSTRACK']._serialized_start = 16609
|
|
141
|
+
_globals['_MEDIAPREVIOUSTRACK']._serialized_end = 16629
|
|
142
|
+
_globals['_VEHICLECONTROLCANCELSOFTWAREUPDATEACTION']._serialized_start = 16631
|
|
143
|
+
_globals['_VEHICLECONTROLCANCELSOFTWAREUPDATEACTION']._serialized_end = 16673
|
|
144
|
+
_globals['_VEHICLECONTROLFLASHLIGHTSACTION']._serialized_start = 16675
|
|
145
|
+
_globals['_VEHICLECONTROLFLASHLIGHTSACTION']._serialized_end = 16708
|
|
146
|
+
_globals['_VEHICLECONTROLHONKHORNACTION']._serialized_start = 16710
|
|
147
|
+
_globals['_VEHICLECONTROLHONKHORNACTION']._serialized_end = 16740
|
|
148
|
+
_globals['_VEHICLECONTROLRESETVALETPINACTION']._serialized_start = 16742
|
|
149
|
+
_globals['_VEHICLECONTROLRESETVALETPINACTION']._serialized_end = 16777
|
|
150
|
+
_globals['_VEHICLECONTROLSCHEDULESOFTWAREUPDATEACTION']._serialized_start = 16779
|
|
151
|
+
_globals['_VEHICLECONTROLSCHEDULESOFTWAREUPDATEACTION']._serialized_end = 16843
|
|
152
|
+
_globals['_VEHICLECONTROLSETSENTRYMODEACTION']._serialized_start = 16845
|
|
153
|
+
_globals['_VEHICLECONTROLSETSENTRYMODEACTION']._serialized_end = 16892
|
|
154
|
+
_globals['_VEHICLECONTROLSETVALETMODEACTION']._serialized_start = 16894
|
|
155
|
+
_globals['_VEHICLECONTROLSETVALETMODEACTION']._serialized_end = 16958
|
|
156
|
+
_globals['_VEHICLECONTROLSUNROOFOPENCLOSEACTION']._serialized_start = 16961
|
|
157
|
+
_globals['_VEHICLECONTROLSUNROOFOPENCLOSEACTION']._serialized_end = 17175
|
|
158
|
+
_globals['_VEHICLECONTROLTRIGGERHOMELINKACTION']._serialized_start = 17177
|
|
159
|
+
_globals['_VEHICLECONTROLTRIGGERHOMELINKACTION']._serialized_end = 17267
|
|
160
|
+
_globals['_VEHICLECONTROLWINDOWACTION']._serialized_start = 17270
|
|
161
|
+
_globals['_VEHICLECONTROLWINDOWACTION']._serialized_end = 17417
|
|
162
|
+
_globals['_HVACBIOWEAPONMODEACTION']._serialized_start = 17419
|
|
163
|
+
_globals['_HVACBIOWEAPONMODEACTION']._serialized_end = 17481
|
|
164
|
+
_globals['_AUTOSEATCLIMATEACTION']._serialized_start = 17484
|
|
165
|
+
_globals['_AUTOSEATCLIMATEACTION']._serialized_end = 17782
|
|
166
|
+
_globals['_AUTOSEATCLIMATEACTION_CARSEAT']._serialized_start = 17568
|
|
167
|
+
_globals['_AUTOSEATCLIMATEACTION_CARSEAT']._serialized_end = 17665
|
|
168
|
+
_globals['_AUTOSEATCLIMATEACTION_AUTOSEATPOSITION_E']._serialized_start = 17667
|
|
169
|
+
_globals['_AUTOSEATCLIMATEACTION_AUTOSEATPOSITION_E']._serialized_end = 17782
|
|
170
|
+
_globals['_PING']._serialized_start = 17785
|
|
171
|
+
_globals['_PING']._serialized_end = 17920
|
|
172
|
+
_globals['_SCHEDULEDCHARGINGACTION']._serialized_start = 17922
|
|
173
|
+
_globals['_SCHEDULEDCHARGINGACTION']._serialized_end = 17987
|
|
174
|
+
_globals['_SCHEDULEDDEPARTUREACTION']._serialized_start = 17990
|
|
175
|
+
_globals['_SCHEDULEDDEPARTUREACTION']._serialized_end = 18220
|
|
176
|
+
_globals['_HVACCLIMATEKEEPERACTION']._serialized_start = 18223
|
|
177
|
+
_globals['_HVACCLIMATEKEEPERACTION']._serialized_end = 18631
|
|
178
|
+
_globals['_HVACCLIMATEKEEPERACTION_CLIMATEKEEPERACTION_E']._serialized_start = 18450
|
|
179
|
+
_globals['_HVACCLIMATEKEEPERACTION_CLIMATEKEEPERACTION_E']._serialized_end = 18589
|
|
180
|
+
_globals['_HVACCLIMATEKEEPERACTION_MANUALOVERRIDEMODE_E']._serialized_start = 18591
|
|
181
|
+
_globals['_HVACCLIMATEKEEPERACTION_MANUALOVERRIDEMODE_E']._serialized_end = 18631
|
|
182
|
+
_globals['_HVACRECIRCULATIONACTION']._serialized_start = 18633
|
|
183
|
+
_globals['_HVACRECIRCULATIONACTION']._serialized_end = 18670
|
|
184
|
+
_globals['_SETCHARGINGAMPSACTION']._serialized_start = 18672
|
|
185
|
+
_globals['_SETCHARGINGAMPSACTION']._serialized_end = 18718
|
|
186
|
+
_globals['_REMOVECHARGESCHEDULEACTION']._serialized_start = 18720
|
|
187
|
+
_globals['_REMOVECHARGESCHEDULEACTION']._serialized_end = 18760
|
|
188
|
+
_globals['_BATCHREMOVECHARGESCHEDULESACTION']._serialized_start = 18762
|
|
189
|
+
_globals['_BATCHREMOVECHARGESCHEDULESACTION']._serialized_end = 18839
|
|
190
|
+
_globals['_BATCHREMOVEPRECONDITIONSCHEDULESACTION']._serialized_start = 18841
|
|
191
|
+
_globals['_BATCHREMOVEPRECONDITIONSCHEDULESACTION']._serialized_end = 18924
|
|
192
|
+
_globals['_REMOVEPRECONDITIONSCHEDULEACTION']._serialized_start = 18926
|
|
193
|
+
_globals['_REMOVEPRECONDITIONSCHEDULEACTION']._serialized_end = 18972
|
|
194
|
+
_globals['_SETCABINOVERHEATPROTECTIONACTION']._serialized_start = 18974
|
|
195
|
+
_globals['_SETCABINOVERHEATPROTECTIONACTION']._serialized_end = 19038
|
|
196
|
+
_globals['_SETVEHICLENAMEACTION']._serialized_start = 19040
|
|
197
|
+
_globals['_SETVEHICLENAMEACTION']._serialized_end = 19083
|
|
198
|
+
_globals['_CHARGEPORTDOORCLOSE']._serialized_start = 19085
|
|
199
|
+
_globals['_CHARGEPORTDOORCLOSE']._serialized_end = 19106
|
|
200
|
+
_globals['_CHARGEPORTDOOROPEN']._serialized_start = 19108
|
|
201
|
+
_globals['_CHARGEPORTDOOROPEN']._serialized_end = 19128
|
|
202
|
+
_globals['_BOOMBOXACTION']._serialized_start = 19130
|
|
203
|
+
_globals['_BOOMBOXACTION']._serialized_end = 19160
|
|
204
|
+
_globals['_SETCOPTEMPACTION']._serialized_start = 19162
|
|
205
|
+
_globals['_SETCOPTEMPACTION']._serialized_end = 19250
|
|
206
|
+
_globals['_VEHICLECONTROLSETPINTODRIVEACTION']._serialized_start = 19252
|
|
207
|
+
_globals['_VEHICLECONTROLSETPINTODRIVEACTION']._serialized_end = 19317
|
|
208
|
+
_globals['_VEHICLECONTROLRESETPINTODRIVEACTION']._serialized_start = 19319
|
|
209
|
+
_globals['_VEHICLECONTROLRESETPINTODRIVEACTION']._serialized_end = 19356
|
|
210
|
+
_globals['_REMOTESTARTDRIVE']._serialized_start = 19358
|
|
211
|
+
_globals['_REMOTESTARTDRIVE']._serialized_end = 19376
|
|
212
|
+
_globals['_CREATESTREAMSESSION']._serialized_start = 19378
|
|
213
|
+
_globals['_CREATESTREAMSESSION']._serialized_end = 19419
|
|
214
|
+
_globals['_STREAMMESSAGE']._serialized_start = 19421
|
|
215
|
+
_globals['_STREAMMESSAGE']._serialized_end = 19470
|
|
216
|
+
_globals['_NAVIGATIONREQUEST']._serialized_start = 19472
|
|
217
|
+
_globals['_NAVIGATIONREQUEST']._serialized_end = 19527
|
|
218
|
+
_globals['_NAVIGATIONSUPERCHARGERREQUEST']._serialized_start = 19529
|
|
219
|
+
_globals['_NAVIGATIONSUPERCHARGERREQUEST']._serialized_end = 19575
|
|
220
|
+
_globals['_UISETUPCOMINGCALENDARENTRIES']._serialized_start = 19577
|
|
221
|
+
_globals['_UISETUPCOMINGCALENDARENTRIES']._serialized_end = 19630
|
|
222
|
+
_globals['_VEHICLEDATASUBSCRIPTION']._serialized_start = 19633
|
|
223
|
+
_globals['_VEHICLEDATASUBSCRIPTION']._serialized_end = 20482
|
|
224
|
+
_globals['_VEHICLEDATASUBSCRIPTION_PIIKEYREQUEST']._serialized_start = 20436
|
|
225
|
+
_globals['_VEHICLEDATASUBSCRIPTION_PIIKEYREQUEST']._serialized_end = 20482
|
|
226
|
+
_globals['_VEHICLEDATAACK']._serialized_start = 20485
|
|
227
|
+
_globals['_VEHICLEDATAACK']._serialized_end = 21364
|
|
228
|
+
_globals['_VITALSSUBSCRIPTION']._serialized_start = 21366
|
|
229
|
+
_globals['_VITALSSUBSCRIPTION']._serialized_end = 21406
|
|
230
|
+
_globals['_VITALSACK']._serialized_start = 21408
|
|
231
|
+
_globals['_VITALSACK']._serialized_end = 21419
|
|
232
|
+
_globals['_DASHCAMSAVECLIPACTION']._serialized_start = 21421
|
|
233
|
+
_globals['_DASHCAMSAVECLIPACTION']._serialized_end = 21444
|
|
234
|
+
_globals['_PIIKEYREQUEST']._serialized_start = 21446
|
|
235
|
+
_globals['_PIIKEYREQUEST']._serialized_end = 21548
|
|
236
|
+
_globals['_PSEUDONYMSYNCREQUEST']._serialized_start = 21550
|
|
237
|
+
_globals['_PSEUDONYMSYNCREQUEST']._serialized_end = 21609
|
|
238
|
+
_globals['_NAVIGATIONGPSREQUEST']._serialized_start = 21612
|
|
239
|
+
_globals['_NAVIGATIONGPSREQUEST']._serialized_end = 21889
|
|
240
|
+
_globals['_NAVIGATIONGPSREQUEST_REMOTENAVTRIPORDER']._serialized_start = 21730
|
|
241
|
+
_globals['_NAVIGATIONGPSREQUEST_REMOTENAVTRIPORDER']._serialized_end = 21889
|
|
242
|
+
_globals['_SETRATETARIFFREQUEST']._serialized_start = 21892
|
|
243
|
+
_globals['_SETRATETARIFFREQUEST']._serialized_end = 23444
|
|
244
|
+
_globals['_SETRATETARIFFREQUEST_TOUPERIOD']._serialized_start = 22031
|
|
245
|
+
_globals['_SETRATETARIFFREQUEST_TOUPERIOD']._serialized_end = 22168
|
|
246
|
+
_globals['_SETRATETARIFFREQUEST_TOUPERIODS']._serialized_start = 22171
|
|
247
|
+
_globals['_SETRATETARIFFREQUEST_TOUPERIODS']._serialized_end = 22436
|
|
248
|
+
_globals['_SETRATETARIFFREQUEST_SEASON']._serialized_start = 22439
|
|
249
|
+
_globals['_SETRATETARIFFREQUEST_SEASON']._serialized_end = 22584
|
|
250
|
+
_globals['_SETRATETARIFFREQUEST_SEASONS']._serialized_start = 22587
|
|
251
|
+
_globals['_SETRATETARIFFREQUEST_SEASONS']._serialized_end = 22879
|
|
252
|
+
_globals['_SETRATETARIFFREQUEST_FIXEDCHARGE']._serialized_start = 22881
|
|
253
|
+
_globals['_SETRATETARIFFREQUEST_FIXEDCHARGE']._serialized_end = 22907
|
|
254
|
+
_globals['_SETRATETARIFFREQUEST_RATEBAND']._serialized_start = 22909
|
|
255
|
+
_globals['_SETRATETARIFFREQUEST_RATEBAND']._serialized_end = 23013
|
|
256
|
+
_globals['_SETRATETARIFFREQUEST_CHARGES']._serialized_start = 23016
|
|
257
|
+
_globals['_SETRATETARIFFREQUEST_CHARGES']._serialized_end = 23376
|
|
258
|
+
_globals['_SETRATETARIFFREQUEST_TARIFF']._serialized_start = 23378
|
|
259
|
+
_globals['_SETRATETARIFFREQUEST_TARIFF']._serialized_end = 23444
|
|
260
|
+
_globals['_GETRATETARIFFREQUEST']._serialized_start = 23446
|
|
261
|
+
_globals['_GETRATETARIFFREQUEST']._serialized_end = 23468
|
|
262
|
+
_globals['_VIDEOREQUESTACTION']._serialized_start = 23470
|
|
263
|
+
_globals['_VIDEOREQUESTACTION']._serialized_end = 23503
|
|
264
|
+
_globals['_TAKEDRIVENOTEACTION']._serialized_start = 23505
|
|
265
|
+
_globals['_TAKEDRIVENOTEACTION']._serialized_end = 23540
|
|
266
|
+
_globals['_BLUETOOTHCLASSICPAIRINGREQUEST']._serialized_start = 23542
|
|
267
|
+
_globals['_BLUETOOTHCLASSICPAIRINGREQUEST']._serialized_end = 23614
|
|
268
|
+
_globals['_ADDMANAGEDCHARGINGSITEREQUEST']._serialized_start = 23616
|
|
269
|
+
_globals['_ADDMANAGEDCHARGINGSITEREQUEST']._serialized_end = 23693
|
|
270
|
+
_globals['_MANAGEDCHARGINGSITE']._serialized_start = 23695
|
|
271
|
+
_globals['_MANAGEDCHARGINGSITE']._serialized_end = 23819
|
|
272
|
+
_globals['_MANAGERTYPE']._serialized_start = 23821
|
|
273
|
+
_globals['_MANAGERTYPE']._serialized_end = 23886
|
|
274
|
+
_globals['_SITECONTROLLER']._serialized_start = 23888
|
|
275
|
+
_globals['_SITECONTROLLER']._serialized_end = 23904
|
|
276
|
+
_globals['_REMOVEMANAGEDCHARGINGSITEREQUEST']._serialized_start = 23906
|
|
277
|
+
_globals['_REMOVEMANAGEDCHARGINGSITEREQUEST']._serialized_end = 23960
|
|
278
|
+
_globals['_NAVIGATIONROUTEACTION']._serialized_start = 23962
|
|
279
|
+
_globals['_NAVIGATIONROUTEACTION']._serialized_end = 23985
|
|
280
|
+
_globals['_AUTOSTWHEATACTION']._serialized_start = 23987
|
|
281
|
+
_globals['_AUTOSTWHEATACTION']._serialized_end = 24018
|
|
282
|
+
_globals['_STWHEATLEVELACTION']._serialized_start = 24020
|
|
283
|
+
_globals['_STWHEATLEVELACTION']._serialized_end = 24089
|
|
284
|
+
_globals['_GETMANAGEDCHARGINGSITESREQUEST']._serialized_start = 24091
|
|
285
|
+
_globals['_GETMANAGEDCHARGINGSITESREQUEST']._serialized_end = 24123
|
|
286
|
+
_globals['_UPDATECHARGEONSOLARFEATUREREQUEST']._serialized_start = 24125
|
|
287
|
+
_globals['_UPDATECHARGEONSOLARFEATUREREQUEST']._serialized_end = 24218
|
|
288
|
+
_globals['_GETCHARGEONSOLARFEATUREREQUEST']._serialized_start = 24220
|
|
289
|
+
_globals['_GETCHARGEONSOLARFEATUREREQUEST']._serialized_end = 24252
|
|
290
|
+
_globals['_CHARGEONSOLARFEATURE']._serialized_start = 24254
|
|
291
|
+
_globals['_CHARGEONSOLARFEATURE']._serialized_end = 24349
|
|
292
|
+
_globals['_DRIVINGCLEARSPEEDLIMITPINADMINACTION']._serialized_start = 24351
|
|
293
|
+
_globals['_DRIVINGCLEARSPEEDLIMITPINADMINACTION']._serialized_end = 24389
|
|
294
|
+
_globals['_SETOUTLETSONOFFACTION']._serialized_start = 24392
|
|
295
|
+
_globals['_SETOUTLETSONOFFACTION']._serialized_end = 24616
|
|
296
|
+
_globals['_SETOUTLETSONOFFACTION_OUTLETREQUEST']._serialized_start = 24489
|
|
297
|
+
_globals['_SETOUTLETSONOFFACTION_OUTLETREQUEST']._serialized_end = 24616
|
|
298
|
+
_globals['_SETOUTLETTIMERACTION']._serialized_start = 24618
|
|
299
|
+
_globals['_SETOUTLETTIMERACTION']._serialized_end = 24661
|
|
300
|
+
_globals['_SETOUTLETSOCLIMITACTION']._serialized_start = 24663
|
|
301
|
+
_globals['_SETOUTLETSOCLIMITACTION']._serialized_end = 24705
|
|
302
|
+
_globals['_SETPOWERFEEDONOFFACTION']._serialized_start = 24708
|
|
303
|
+
_globals['_SETPOWERFEEDONOFFACTION']._serialized_end = 24999
|
|
304
|
+
_globals['_SETPOWERFEEDONOFFACTION_POWERFEEDREQUEST']._serialized_start = 24817
|
|
305
|
+
_globals['_SETPOWERFEEDONOFFACTION_POWERFEEDREQUEST']._serialized_end = 24999
|
|
306
|
+
_globals['_SETPOWERFEEDTIMERACTION']._serialized_start = 25001
|
|
307
|
+
_globals['_SETPOWERFEEDTIMERACTION']._serialized_end = 25047
|
|
308
|
+
_globals['_SETPOWERFEEDSOCLIMITACTION']._serialized_start = 25049
|
|
309
|
+
_globals['_SETPOWERFEEDSOCLIMITACTION']._serialized_end = 25094
|
|
310
|
+
_globals['_SETTRAILERLIGHTTESTSTARTSTOPACTION']._serialized_start = 25096
|
|
311
|
+
_globals['_SETTRAILERLIGHTTESTSTARTSTOPACTION']._serialized_end = 25152
|
|
312
|
+
_globals['_SETTRUCKBEDLIGHTAUTOSTATEACTION']._serialized_start = 25154
|
|
313
|
+
_globals['_SETTRUCKBEDLIGHTAUTOSTATEACTION']._serialized_end = 25208
|
|
314
|
+
_globals['_SETTRUCKBEDLIGHTBRIGHTNESSACTION']._serialized_start = 25210
|
|
315
|
+
_globals['_SETTRUCKBEDLIGHTBRIGHTNESSACTION']._serialized_end = 25264
|
|
316
|
+
_globals['_VEHICLECONTROLRESETPINTODRIVEADMINACTION']._serialized_start = 25266
|
|
317
|
+
_globals['_VEHICLECONTROLRESETPINTODRIVEADMINACTION']._serialized_end = 25308
|
|
318
|
+
_globals['_NAVIGATIONWAYPOINTSREQUEST']._serialized_start = 25311
|
|
319
|
+
_globals['_NAVIGATIONWAYPOINTSREQUEST']._serialized_end = 25523
|
|
320
|
+
_globals['_NAVIGATIONWAYPOINTSREQUEST_TRIPPLANOPTIONS']._serialized_start = 25442
|
|
321
|
+
_globals['_NAVIGATIONWAYPOINTSREQUEST_TRIPPLANOPTIONS']._serialized_end = 25523
|
|
322
|
+
_globals['_SETPOWERSHAREFEATUREACTION']._serialized_start = 25526
|
|
323
|
+
_globals['_SETPOWERSHAREFEATUREACTION']._serialized_end = 25794
|
|
324
|
+
_globals['_SETPOWERSHAREFEATUREACTION_POWERSHAREFEATUREREQUEST']._serialized_start = 25657
|
|
325
|
+
_globals['_SETPOWERSHAREFEATUREACTION_POWERSHAREFEATUREREQUEST']._serialized_end = 25794
|
|
326
|
+
_globals['_SETPOWERSHAREDISCHARGELIMITACTION']._serialized_start = 25796
|
|
327
|
+
_globals['_SETPOWERSHAREDISCHARGELIMITACTION']._serialized_end = 25867
|
|
328
|
+
_globals['_SETPOWERSHAREREQUESTACTION']._serialized_start = 25870
|
|
329
|
+
_globals['_SETPOWERSHAREREQUESTACTION']._serialized_end = 26091
|
|
330
|
+
_globals['_SETPOWERSHAREREQUESTACTION_POWERSHAREREQUEST']._serialized_start = 25985
|
|
331
|
+
_globals['_SETPOWERSHAREREQUESTACTION_POWERSHAREREQUEST']._serialized_end = 26091
|
|
332
|
+
_globals['_SETTENTMODEREQUESTACTION']._serialized_start = 26093
|
|
333
|
+
_globals['_SETTENTMODEREQUESTACTION']._serialized_end = 26131
|
|
334
|
+
_globals['_SETZONELIGHTREQUESTACTION']._serialized_start = 26134
|
|
335
|
+
_globals['_SETZONELIGHTREQUESTACTION']._serialized_end = 26378
|
|
336
|
+
_globals['_SETZONELIGHTREQUESTACTION_ZONELIGHTREQUEST']._serialized_start = 26247
|
|
337
|
+
_globals['_SETZONELIGHTREQUESTACTION_ZONELIGHTREQUEST']._serialized_end = 26378
|
|
338
|
+
_globals['_SETLIGHTBARBRIGHTNESSACTION']._serialized_start = 26380
|
|
339
|
+
_globals['_SETLIGHTBARBRIGHTNESSACTION']._serialized_end = 26437
|
|
340
|
+
_globals['_SETLIGHTBARMIDDLEACTION']._serialized_start = 26439
|
|
341
|
+
_globals['_SETLIGHTBARMIDDLEACTION']._serialized_end = 26494
|
|
342
|
+
_globals['_SETLIGHTBARDITCHACTION']._serialized_start = 26496
|
|
343
|
+
_globals['_SETLIGHTBARDITCHACTION']._serialized_end = 26550
|
|
344
|
+
_globals['_GETMESSAGESACTION']._serialized_start = 26552
|
|
345
|
+
_globals['_GETMESSAGESACTION']._serialized_end = 26571
|
|
346
|
+
_globals['_TESLAAUTHRESPONSEACTION']._serialized_start = 26574
|
|
347
|
+
_globals['_TESLAAUTHRESPONSEACTION']._serialized_end = 26741
|
|
348
|
+
_globals['_NAVIGATIONGPSDESTINATIONREQUEST']._serialized_start = 26744
|
|
349
|
+
_globals['_NAVIGATIONGPSDESTINATIONREQUEST']._serialized_end = 27064
|
|
350
|
+
_globals['_NAVIGATIONGPSDESTINATIONREQUEST_REMOTENAVTRIPORDER']._serialized_start = 21730
|
|
351
|
+
_globals['_NAVIGATIONGPSDESTINATIONREQUEST_REMOTENAVTRIPORDER']._serialized_end = 21889
|
|
352
|
+
_globals['_PARENTALCONTROLSCLEARPINACTION']._serialized_start = 27066
|
|
353
|
+
_globals['_PARENTALCONTROLSCLEARPINACTION']._serialized_end = 27111
|
|
354
|
+
_globals['_PARENTALCONTROLSCLEARPINADMINACTION']._serialized_start = 27113
|
|
355
|
+
_globals['_PARENTALCONTROLSCLEARPINADMINACTION']._serialized_end = 27150
|
|
356
|
+
_globals['_PARENTALCONTROLSACTION']._serialized_start = 27152
|
|
357
|
+
_globals['_PARENTALCONTROLSACTION']._serialized_end = 27207
|
|
358
|
+
_globals['_PARENTALCONTROLSENABLESETTINGSACTION']._serialized_start = 27210
|
|
359
|
+
_globals['_PARENTALCONTROLSENABLESETTINGSACTION']._serialized_end = 27511
|
|
360
|
+
_globals['_PARENTALCONTROLSENABLESETTINGSACTION_PARENTALCONTROLSSETTING_E']._serialized_start = 27359
|
|
361
|
+
_globals['_PARENTALCONTROLSENABLESETTINGSACTION_PARENTALCONTROLSSETTING_E']._serialized_end = 27511
|
|
362
|
+
_globals['_PARENTALCONTROLSSETSPEEDLIMITACTION']._serialized_start = 27513
|
|
363
|
+
_globals['_PARENTALCONTROLSSETSPEEDLIMITACTION']._serialized_end = 27569
|
|
364
|
+
_globals['_CANCELSOHTESTACTION']._serialized_start = 27571
|
|
365
|
+
_globals['_CANCELSOHTESTACTION']._serialized_end = 27592
|
|
366
|
+
_globals['_STOPLIGHTSHOWACTION']._serialized_start = 27594
|
|
367
|
+
_globals['_STOPLIGHTSHOWACTION']._serialized_end = 27615
|
|
368
|
+
_globals['_STARTLIGHTSHOWACTION']._serialized_start = 27617
|
|
369
|
+
_globals['_STARTLIGHTSHOWACTION']._serialized_end = 27716
|
|
370
|
+
_globals['_SETSUSPENSIONLEVELACTION']._serialized_start = 27719
|
|
371
|
+
_globals['_SETSUSPENSIONLEVELACTION']._serialized_end = 28046
|
|
372
|
+
_globals['_SETSUSPENSIONLEVELACTION_SUSPENSIONLEVEL']._serialized_start = 27827
|
|
373
|
+
_globals['_SETSUSPENSIONLEVELACTION_SUSPENSIONLEVEL']._serialized_end = 28046
|
|
374
|
+
_globals['_SETDISCHARGELIMITACTION']._serialized_start = 28048
|
|
375
|
+
_globals['_SETDISCHARGELIMITACTION']._serialized_end = 28098
|
|
376
|
+
_globals['_SETLOWPOWERMODEACTION']._serialized_start = 28100
|
|
377
|
+
_globals['_SETLOWPOWERMODEACTION']._serialized_end = 28147
|
|
378
|
+
_globals['_SETTEMPERATUREUNITACTION']._serialized_start = 28150
|
|
379
|
+
_globals['_SETTEMPERATUREUNITACTION']._serialized_end = 28279
|
|
380
|
+
_globals['_SETTEMPERATUREUNITACTION_UNIT']._serialized_start = 28234
|
|
381
|
+
_globals['_SETTEMPERATUREUNITACTION_UNIT']._serialized_end = 28279
|
|
382
|
+
_globals['_SETDISTANCEUNITACTION']._serialized_start = 28281
|
|
383
|
+
_globals['_SETDISTANCEUNITACTION']._serialized_end = 28402
|
|
384
|
+
_globals['_SETDISTANCEUNITACTION_UNIT']._serialized_start = 28359
|
|
385
|
+
_globals['_SETDISTANCEUNITACTION_UNIT']._serialized_end = 28402
|
|
386
|
+
_globals['_SETTIMEDISPLAYFORMATACTION']._serialized_start = 28405
|
|
387
|
+
_globals['_SETTIMEDISPLAYFORMATACTION']._serialized_end = 28545
|
|
388
|
+
_globals['_SETTIMEDISPLAYFORMATACTION_FORMAT']._serialized_start = 28497
|
|
389
|
+
_globals['_SETTIMEDISPLAYFORMATACTION_FORMAT']._serialized_end = 28545
|
|
390
|
+
_globals['_SETTIREPRESSUREUNITACTION']._serialized_start = 28547
|
|
391
|
+
_globals['_SETTIREPRESSUREUNITACTION']._serialized_end = 28667
|
|
392
|
+
_globals['_SETTIREPRESSUREUNITACTION_UNIT']._serialized_start = 28633
|
|
393
|
+
_globals['_SETTIREPRESSUREUNITACTION_UNIT']._serialized_end = 28667
|
|
394
|
+
_globals['_SETENERGYDISPLAYFORMATACTION']._serialized_start = 28670
|
|
395
|
+
_globals['_SETENERGYDISPLAYFORMATACTION']._serialized_end = 28818
|
|
396
|
+
_globals['_SETENERGYDISPLAYFORMATACTION_FORMAT']._serialized_start = 28766
|
|
397
|
+
_globals['_SETENERGYDISPLAYFORMATACTION_FORMAT']._serialized_end = 28818
|
|
398
|
+
_globals['_SETKEEPACCESSORYPOWERMODEACTION']._serialized_start = 28820
|
|
399
|
+
_globals['_SETKEEPACCESSORYPOWERMODEACTION']._serialized_end = 28888
|
|
400
|
+
_globals['_SETUPCLOUDPROFILEWITHLOCALPROFILEUUIDACTION']._serialized_start = 28891
|
|
401
|
+
_globals['_SETUPCLOUDPROFILEWITHLOCALPROFILEUUIDACTION']._serialized_end = 29032
|
|
402
|
+
_globals['_GETLOCALPROFILESFORVAULTUUIDACTION']._serialized_start = 29034
|
|
403
|
+
_globals['_GETLOCALPROFILESFORVAULTUUIDACTION']._serialized_end = 29090
|
|
404
|
+
_globals['_FETCHKEYSINFOACTION']._serialized_start = 29092
|
|
405
|
+
_globals['_FETCHKEYSINFOACTION']._serialized_end = 29113
|
|
406
|
+
_globals['_DELETEDASHCAMCLIPSACTION']._serialized_start = 29115
|
|
407
|
+
_globals['_DELETEDASHCAMCLIPSACTION']._serialized_end = 29163
|
|
408
|
+
_globals['_FORMATUSBACTION']._serialized_start = 29165
|
|
409
|
+
_globals['_FORMATUSBACTION']._serialized_end = 29202
|
|
410
|
+
_globals['_BANDWIDTHTEST']._serialized_start = 29204
|
|
411
|
+
_globals['_BANDWIDTHTEST']._serialized_end = 29243
|
|
412
|
+
_globals['_PHONEUNITPREFERENCES']._serialized_start = 29246
|
|
413
|
+
_globals['_PHONEUNITPREFERENCES']._serialized_end = 29398
|
|
414
|
+
_globals['_SETPHONESETTINGPREFERENCESACTION']._serialized_start = 29401
|
|
415
|
+
_globals['_SETPHONESETTINGPREFERENCESACTION']._serialized_end = 29624
|
|
416
|
+
_globals['_SETPHONESETTINGPREFERENCESACTION_FONTSIZE']._serialized_start = 29569
|
|
417
|
+
_globals['_SETPHONESETTINGPREFERENCESACTION_FONTSIZE']._serialized_end = 29624
|
|
418
|
+
_globals['_CANCELVEHICLEDATASUBSCRIPTION']._serialized_start = 29626
|
|
419
|
+
_globals['_CANCELVEHICLEDATASUBSCRIPTION']._serialized_end = 29657
|