DeviceBindingAuthenticationType
public enum DeviceBindingAuthenticationType : String, Codable, Sendable
An enum representing the type of device binding authentication.
-
Biometric authentication (Face ID or Touch ID) is required.
Declaration
Swift
case biometricOnly = "BIOMETRIC_ONLY" -
Biometric authentication (Face ID or Touch ID) with fallback to the device passcode.
Declaration
Swift
case biometricAllowFallback = "BIOMETRIC_ALLOW_FALLBACK" -
Application PIN authentication is required.
Declaration
Swift
case applicationPin = "APPLICATION_PIN" -
No user authentication is required.
Declaration
Swift
case none = "NONE"
View on GitHub