DMEventType

@objc
public enum DMEventType : Int, RawRepresentable, Codable, CaseIterable

Safety event type enumeration.

  • Undocumented

    Declaration

    Swift

    case hardAcceleration
  • Undocumented

    Declaration

    Swift

    case hardBrake
  • Undocumented

    Declaration

    Swift

    case sharpTurn
  • Undocumented

    Declaration

    Swift

    case speeding
  • Undocumented

    Declaration

    Swift

    case driverDistraction
  • Declaration

    Swift

    public typealias RawValue = String
  • Declaration

    Swift

    public var rawValue: RawValue { get }
  • Undocumented

    Declaration

    Swift

    public var name: String { get }
  • Declaration

    Swift

    public init?(rawValue: RawValue)
  • Declaration

    Swift

    public init(from decoder: Decoder) throws
  • Undocumented

    Declaration

    Swift

    public var label: String { get }
  • Undocumented

    Declaration

    Swift

    public static func fromLabel(_ label: String) throws -> DMEventType