DriTypeConfig

public enum DriTypeConfig : Hashable, CustomStringConvertible

DRI type configuration.

  • DRI wifi beacon respects the EN4709-002 european regulation

    • operatorId: operator identifier

    Declaration

    Swift

    case en4709_002(operatorId: String = "")
  • DRI wifi beacon respects the ASTN F341122 US regulation.

    • operatorId: operator identifier

    Declaration

    Swift

    case astmF3411(operatorId: String = "")
  • DRI wifi beacon respects the french regulation.

    Declaration

    Swift

    case french
  • DRI type associated to this configuration.

    Declaration

    Swift

    public var type: DriType { get }
  • Verifies that the configuration is valid.

    For en4709_002, the configuration is considered invalid if the operator identifier does not conform to EN4709-002 standard.

    Declaration

    Swift

    public var isValid: Bool { get }
  • Debug description.

    Declaration

    Swift

    public var description: String { get }