RealUserStatus.cs 555 B

1234567891011121314151617181920212223
  1. namespace AppleAuth.Enums
  2. {
  3. /// <summary>
  4. /// ASUserDetectionStatus
  5. /// </summary>
  6. public enum RealUserStatus
  7. {
  8. /// <summary>
  9. /// The system can't determine this user's status as a real person.
  10. /// </summary>
  11. Unsupported = 0,
  12. /// <summary>
  13. /// The system hasn't determined whether the user might be a real person.
  14. /// </summary>
  15. Unknown = 1,
  16. /// <summary>
  17. /// The user appears to be a real person.
  18. /// </summary>
  19. LikelyReal = 2,
  20. }
  21. }