---
title: SFSpeechRecognitionResult
framework: speech
role: symbol
role_heading: Class
path: speech/sfspeechrecognitionresult
---

# SFSpeechRecognitionResult

An object that contains the partial or final results of a speech recognition request.

## Declaration

```swift
class SFSpeechRecognitionResult
```

## Overview

Overview Use an SFSpeechRecognitionResult object to retrieve the results of a speech recognition request. You don’t create these objects directly. Instead, the Speech framework creates them and passes them to the handler block or delegate object you specified when starting your speech recognition task. A speech recognition result object contains one or more transcriptions of the current utterance. Each transcription has a confidence rating indicating how likely it is to be correct. You can also get the transcription with the highest rating directly from the bestTranscription property. If you requested partial results from the speech recognizer, the transcriptions may represent only part of the total audio content. Use the isFinal property to determine if the request contains partial or final results.

## Topics

### Getting transcriptions

- [bestTranscription](speech/sfspeechrecognitionresult/besttranscription.md)
- [transcriptions](speech/sfspeechrecognitionresult/transcriptions.md)
- [speechRecognitionMetadata](speech/sfspeechrecognitionresult/speechrecognitionmetadata.md)

### Determining whether transcriptions are final

- [isFinal](speech/sfspeechrecognitionresult/isfinal.md)

### Initializers

- [init(coder:)](speech/sfspeechrecognitionresult/init(coder:).md)

## Relationships

### Inherits From

- [NSObject](objectivec/nsobject-swift.class.md)

### Conforms To

- [CVarArg](swift/cvararg.md)
- [CustomDebugStringConvertible](swift/customdebugstringconvertible.md)
- [CustomStringConvertible](swift/customstringconvertible.md)
- [Equatable](swift/equatable.md)
- [Hashable](swift/hashable.md)
- [NSCoding](foundation/nscoding.md)
- [NSCopying](foundation/nscopying.md)
- [NSObjectProtocol](objectivec/nsobjectprotocol.md)
- [NSSecureCoding](foundation/nssecurecoding.md)

## See Also

### Transcription results

- [SFSpeechRecognitionMetadata](speech/sfspeechrecognitionmetadata.md)
- [SFTranscription](speech/sftranscription.md)
- [SFTranscriptionSegment](speech/sftranscriptionsegment.md)
