AirshipLogPrivacyLevel

public enum AirshipLogPrivacyLevel : String, Sendable, Decodable

Represents the possible log privacy level.

  • Private log privacy level. Set by default.

    Declaration

    Swift

    case `private` = "private"
  • Public log privacy level. Logs publicly when set via the AirshipConfig.

    Declaration

    Swift

    case `public` = "public"
  • Declaration

    Swift

    public init(from decoder: any Decoder) throws