UNPKG

microsoft-cognitiveservices-speech-sdk

Version:
51 lines (49 loc) 2.58 kB
"use strict"; // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT license. Object.defineProperty(exports, "__esModule", { value: true }); exports.TranslationRecognitionResult = void 0; const Exports_js_1 = require("./Exports.js"); /** * Translation text result. * @class TranslationRecognitionResult */ class TranslationRecognitionResult extends Exports_js_1.SpeechRecognitionResult { /** * Creates and initializes an instance of this class. * @constructor * @param {Translations} translations - The translations. * @param {string} resultId - The result id. * @param {ResultReason} reason - The reason. * @param {string} text - The recognized text. * @param {number} duration - The duration. * @param {number} offset - The offset into the stream. * @param {string} language - Primary Language detected, if provided. * @param {string} languageDetectionConfidence - Primary Language confidence ("Unknown," "Low," "Medium," "High"...), if provided. * @param {string} errorDetails - Error details, if provided. * @param {string} json - Additional Json, if provided. * @param {PropertyCollection} properties - Additional properties, if provided. */ constructor(translations, resultId, reason, text, duration, offset, language, languageDetectionConfidence, errorDetails, json, properties) { super(resultId, reason, text, duration, offset, language, languageDetectionConfidence, undefined, errorDetails, json, properties); this.privTranslations = translations; } static fromSpeechRecognitionResult(result) { return new TranslationRecognitionResult(undefined, result.resultId, result.reason, result.text, result.duration, result.offset, result.language, result.languageDetectionConfidence, result.errorDetails, result.json, result.properties); } /** * Presents the translation results. Each item in the dictionary represents * a translation result in one of target languages, where the key is the name * of the target language, in BCP-47 format, and the value is the translation * text in the specified language. * @member TranslationRecognitionResult.prototype.translations * @function * @public * @returns {Translations} the current translation map that holds all translations requested. */ get translations() { return this.privTranslations; } } exports.TranslationRecognitionResult = TranslationRecognitionResult; //# sourceMappingURL=TranslationRecognitionResult.js.map