killapp/Assets/AppleAuth/Runtime/Enums/CredentialState.cs

29 lines
646 B
C#
Raw Normal View History

2026-06-18 09:38:23 +08:00
namespace AppleAuth.Enums
{
/// <summary>
/// ASAuthorizationAppleIDProvider.CredentialState
/// </summary>
public enum CredentialState
{
/// <summary>
/// Authorization for the given user has been revoked
/// </summary>
Revoked = 0,
/// <summary>
/// The user is authorized
/// </summary>
Authorized = 1,
/// <summary>
/// The user can't be found
/// </summary>
NotFound = 2,
/// <summary>
/// ASAuthorizationAppleIDProviderCredentialTransferred
/// </summary>
Transferred = 3,
}
}