AI-generated Key Takeaways
-
The
GMTDVehicleStopState
enum defines the possible states of a vehicle stop. -
GMTDVehicleStopStateUnspecified
represents an unspecified state with a value of 0. -
GMTDVehicleStopStateNew
indicates a new stop state. -
GMTDVehicleStopStateEnroute
signifies that the vehicle is currently en route. -
GMTDVehicleStopStateArrived
denotes that the vehicle has reached its stop.
GMTDVehicleStopState
enum GMTDVehicleStopState : NSUInteger {}
Enum representing all possible VehicleStop states.
-
Declaration
Swift
case unspecified = 0
Objective-C
GMTDVehicleStopStateUnspecified = 0
-
Declaration
Swift
case new = 1
Objective-C
GMTDVehicleStopStateNew
-
Declaration
Swift
case enroute = 2
Objective-C
GMTDVehicleStopStateEnroute
-
Declaration
Swift
case arrived = 3
Objective-C
GMTDVehicleStopStateArrived