MoveConfig
MOVE Models
enum MoveDetectionService {
case Driving([DrivingService])
case Walking([WalkingService])
case Cycling
case Places
case PublicTransport
case PointsOfInterest
case AutomaticImpactDetection
case AssistanceCall
}
enum DrivingService {
case DistractionFreeDriving
case DrivingBehaviour
}
enum WalkingService {
case Location
}
var moveDetectionServices: List<MoveDetectionService>Last updated