Speech To Text Info
Voice speech-to-text info.
Contains the conversion status, converted text content, and visibility flag.
Usage Example:
override fun onSpeechToTextCompleted(info: SpeechToTextInfo, messageId: String, error: NCError?) {
if (error == null && info.status == SpeechToTextStatus.SUCCESS) {
println("speech-to-text Success: ${info.text}")
}
}Content copied to clipboard