namespace AppleAuth.Enums { /// /// ASUserDetectionStatus /// public enum RealUserStatus { /// /// The system can't determine this user's status as a real person. /// Unsupported = 0, /// /// The system hasn't determined whether the user might be a real person. /// Unknown = 1, /// /// The user appears to be a real person. /// LikelyReal = 2, } }