namespace JustTrack { /// /// Represents the App Tracking Transparency authorization status on iOS. /// public enum AttAuthorizationStatus { /// /// The user has not yet received an authorization request to authorize access to app-related data. /// NotDetermined = 0, /// /// Authorization to access app-related data is restricted. /// Restricted = 1, /// /// The user denied authorization to access app-related data. /// Denied = 2, /// /// The user authorized access to app-related data. /// Authorized = 3, /// /// The authorization status is not available (e.g., on non-iOS platforms). /// NotAvailable = 4, } }