UNPKG

@euirim/microsoft-cognitiveservices-speech-sdk

Version:
56 lines (54 loc) 1.95 kB
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT license. import { RecognitionStatus, SimpleSpeechPhrase } from "../../src/common.speech/Exports"; import { NoMatchReason } from "./Exports"; /** * Contains detailed information for NoMatch recognition results. * @class NoMatchDetails */ export class NoMatchDetails { /** * Creates and initializes an instance of this class. * @constructor * @param {NoMatchReason} reason - The no-match reason. */ constructor(reason) { this.privReason = reason; } /** * Creates an instance of NoMatchDetails object for the NoMatch SpeechRecognitionResults. * @member NoMatchDetails.fromResult * @function * @public * @param {SpeechRecognitionResult | IntentRecognitionResult | TranslationRecognitionResult} * result - The recognition result that was not recognized. * @returns {NoMatchDetails} The no match details object being created. */ static fromResult(result) { const simpleSpeech = SimpleSpeechPhrase.fromJSON(result.json); let reason = NoMatchReason.NotRecognized; switch (simpleSpeech.RecognitionStatus) { case RecognitionStatus.BabbleTimeout: reason = NoMatchReason.InitialBabbleTimeout; break; case RecognitionStatus.InitialSilenceTimeout: reason = NoMatchReason.InitialSilenceTimeout; break; default: reason = NoMatchReason.NotRecognized; break; } return new NoMatchDetails(reason); } /** * The reason the recognition was canceled. * @member NoMatchDetails.prototype.reason * @function * @public * @returns {NoMatchReason} Specifies the reason canceled. */ get reason() { return this.privReason; } } //# sourceMappingURL=NoMatchDetails.js.map