namespace AppleAuth.Enums
{
///
/// ASAuthorizationError
///
public enum AuthorizationErrorCode
{
///
/// The authorization attempt failed for an unknown reason
///
Unknown = 1000,
///
/// The user canceled the authorization attempt
///
Canceled = 1001,
///
/// The authorization request received an invalid response
///
InvalidResponse = 1002,
///
/// The authorization request wasn't handled
///
NotHandled = 1003,
///
/// The authorization attempt failed
///
Failed = 1004,
}
}