AirshipLogPrivacyLevel

@objc
public enum AirshipLogPrivacyLevel : Int, Sendable, CustomStringConvertible

Represents the possible log privacy level.

  • Private log privacy level. Set by default.

    Declaration

    Swift

    @objc(UALogPrivacyLevelPrivate)
    case `private` = 0
  • Public log privacy level. Logs publicly when set via the AirshipConfig.

    Declaration

    Swift

    @objc(UALogPrivacyLevelPublic)
    case `public` = 1
  • Declaration

    Swift

    public var description: String { get }