FeatureStatus

@objc
public enum FeatureStatus : Int, CaseIterable

Enumeration to describe the state for a specific security feature. The status indicates whether the feature is currently enabled or disabled within the runtime.

  • The feature is enabled.

    Declaration

    Swift

    case enabled
  • The feature is disabled.

    Declaration

    Swift

    case disabled
  • The status of the feature can’t be determined or is not available in the current deployment or environment.

    Declaration

    Swift

    case unavailable