Page Summary
-
This page defines the
GMTSVehicleStateenum, which is used to represent the different states of a vehicle. -
GMTSVehicleStateUnknownis a state represented by the value 0 and denotes an unknown vehicle state. -
GMTSVehicleStateOfflineis a state represented by the value 1, indicating that the vehicle is offline. -
GMTSVehicleStateOnlineis a state represented by the value 2 and indicates that the vehicle is online.
GMTSVehicleState
enum GMTSVehicleState : NSUInteger {}Enum that defines all vehicle states.
-
Declaration
Swift
case unknown = 0Objective-C
GMTSVehicleStateUnknown -
Declaration
Swift
case offline = 1Objective-C
GMTSVehicleStateOffline -
Declaration
Swift
case online = 2Objective-C
GMTSVehicleStateOnline