OSSSpeechKitAuthorizationStatus
public enum OSSSpeechKitAuthorizationStatus : Int
The authorization status of the Microphone and recording, imitating the native SFSpeechRecognizerAuthorizationStatus
-
The app’s authorization status has not yet been determined.
Declaration
Swift
case notDetermined = 0
-
The user denied your app’s request to perform speech recognition.
Declaration
Swift
case denied = 1
-
The device prevents your app from performing speech recognition.
Declaration
Swift
case restricted = 2
-
The user granted your app’s request to perform speech recognition.
Declaration
Swift
case authorized = 3
-
A public message that can be displayed to the user.
Declaration
Swift
public var message: String { get }