namespace AppleAuth.Enums
{
///
/// ASAuthorizationAppleIDProvider.CredentialState
///
public enum CredentialState
{
///
/// Authorization for the given user has been revoked
///
Revoked = 0,
///
/// The user is authorized
///
Authorized = 1,
///
/// The user can't be found
///
NotFound = 2,
///
/// ASAuthorizationAppleIDProviderCredentialTransferred
///
Transferred = 3,
}
}