UNPKG

ibm-watson

Version:
4,433 lines 287 kB
"use strict";
/**
 * (C) Copyright IBM Corp. 2025.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
var __extends = (this && this.__extends) || (function () {
    var extendStatics = function (d, b) {
        extendStatics = Object.setPrototypeOf ||
            ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
            function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
        return extendStatics(d, b);
    };
    return function (d, b) {
        if (typeof b !== "function" && b !== null)
            throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
        extendStatics(d, b);
        function __() { this.constructor = d; }
        d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
    };
})();
var __assign = (this && this.__assign) || function () {
    __assign = Object.assign || function(t) {
        for (var s, i = 1, n = arguments.length; i < n; i++) {
            s = arguments[i];
            for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
                t[p] = s[p];
        }
        return t;
    };
    return __assign.apply(this, arguments);
};
/**
 * IBM OpenAPI SDK Code Generator Version: 3.105.0-3c13b041-20250605-193116
 */
var extend = require("extend");
var ibm_cloud_sdk_core_1 = require("ibm-cloud-sdk-core");
var common_1 = require("../lib/common");
/**
 * The IBM Watson&trade; Speech to Text service provides APIs that use IBM's speech-recognition capabilities to produce
 * transcripts of spoken audio. The service can transcribe speech from various languages and audio formats. In addition
 * to basic transcription, the service can produce detailed information about many different aspects of the audio. It
 * returns all JSON response content in the UTF-8 character set.
 *
 * The service supports two types of models: previous-generation models that include the terms `Broadband` and
 * `Narrowband` in their names, and next-generation models that include the terms `Multimedia` and `Telephony` in their
 * names. Broadband and multimedia models have minimum sampling rates of 16 kHz. Narrowband and telephony models have
 * minimum sampling rates of 8 kHz. The next-generation models offer high throughput and greater transcription accuracy.
 *
 *
 * Effective **31 July 2023**, all previous-generation models will be removed from the service and the documentation.
 * Most previous-generation models were deprecated on 15 March 2022. You must migrate to the equivalent large speech
 * model or next-generation model by 31 July 2023. For more information, see [Migrating to large speech
 * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-models-migrate).{: deprecated}
 *
 * For speech recognition, the service supports synchronous and asynchronous HTTP Representational State Transfer (REST)
 * interfaces. It also supports a WebSocket interface that provides a full-duplex, low-latency communication channel:
 * Clients send requests and audio to the service and receive results over a single connection asynchronously.
 *
 * The service also offers two customization interfaces. Use language model customization to expand the vocabulary of a
 * base model with domain-specific terminology. Use acoustic model customization to adapt a base model for the acoustic
 * characteristics of your audio. For language model customization, the service also supports grammars. A grammar is a
 * formal language specification that lets you restrict the phrases that the service can recognize.
 *
 * Language model customization and grammars are available for most previous- and next-generation models. Acoustic model
 * customization is available for all previous-generation models.
 *
 * API Version: 1.0.0
 * See: https://cloud.ibm.com/docs/speech-to-text
 */
var SpeechToTextV1 = /** @class */ (function (_super) {
    __extends(SpeechToTextV1, _super);
    /**
     * Construct a SpeechToTextV1 object.
     *
     * @param {Object} options - Options for the service.
     * @param {string} [options.serviceUrl] - The base URL for the service
     * @param {OutgoingHttpHeaders} [options.headers] - Default headers that shall be included with every request to the service.
     * @param {string} [options.serviceName] - The name of the service to configure
     * @param {Authenticator} [options.authenticator] - The Authenticator object used to authenticate requests to the service. Defaults to environment if not set
     * @constructor
     * @returns {SpeechToTextV1}
     */
    function SpeechToTextV1(options) {
        var _this = this;
        options = options || {};
        if (!options.serviceName) {
            options.serviceName = SpeechToTextV1.DEFAULT_SERVICE_NAME;
        }
        // If the caller didn't supply an authenticator, construct one from external configuration.
        if (!options.authenticator) {
            options.authenticator = (0, ibm_cloud_sdk_core_1.getAuthenticatorFromEnvironment)(options.serviceName);
        }
        _this = _super.call(this, options) || this;
        _this.configureService(options.serviceName);
        if (options.serviceUrl) {
            _this.setServiceUrl(options.serviceUrl);
        }
        return _this;
    }
    /*************************
     * models
     ************************/
    /**
     * List models.
     *
     * Lists all language models that are available for use with the service. The information includes the name of the
     * model and its minimum sampling rate in Hertz, among other things. The ordering of the list of models can change
     * from call to call; do not rely on an alphabetized or static list of models.
     *
     * **See also:** [Listing all
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-models-list#models-list-all).
     *
     * @param {Object} [params] - The parameters to send to the service.
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.SpeechModels>>}
     */
    SpeechToTextV1.prototype.listModels = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = [];
        var _validParams = ['signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'listModels');
        var parameters = {
            options: {
                url: '/v1/models',
                method: 'GET',
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /**
     * Get a model.
     *
     * Gets information for a single specified language model that is available for use with the service. The information
     * includes the name of the model and its minimum sampling rate in Hertz, among other things.
     *
     * **See also:** [Listing a specific
     * model](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-models-list#models-list-specific).
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {string} params.modelId - The identifier of the model in the form of its name from the output of the [List
     * models](#listmodels) method.
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.SpeechModel>>}
     */
    SpeechToTextV1.prototype.getModel = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['modelId'];
        var _validParams = ['modelId', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var path = {
            'model_id': _params.modelId,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'getModel');
        var parameters = {
            options: {
                url: '/v1/models/{model_id}',
                method: 'GET',
                path: path,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /*************************
     * synchronous
     ************************/
    /**
     * Recognize audio.
     *
     * Sends audio and returns transcription results for a recognition request. You can pass a maximum of 100 MB and a
     * minimum of 100 bytes of audio with a request. The service automatically detects the endianness of the incoming
     * audio and, for audio that includes multiple channels, downmixes the audio to one-channel mono during transcoding.
     * The method returns only final results; to enable interim results, use the WebSocket API. (With the `curl` command,
     * use the `--data-binary` option to upload the file for the request.)
     *
     * **See also:** [Making a basic HTTP
     * request](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-http#HTTP-basic).
     *
     * ### Streaming mode
     *
     *  For requests to transcribe live audio as it becomes available, you must set the `Transfer-Encoding` header to
     * `chunked` to use streaming mode. In streaming mode, the service closes the connection (status code 408) if it does
     * not receive at least 15 seconds of audio (including silence) in any 30-second period. The service also closes the
     * connection (status code 400) if it detects no speech for `inactivity_timeout` seconds of streaming audio; use the
     * `inactivity_timeout` parameter to change the default of 30 seconds.
     *
     * **See also:**
     * * [Audio transmission](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-input#transmission)
     * * [Timeouts](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-input#timeouts)
     *
     * ### Audio formats (content types)
     *
     *  The service accepts audio in the following formats (MIME types).
     * * For formats that are labeled **Required**, you must use the `Content-Type` header with the request to specify the
     * format of the audio.
     * * For all other formats, you can omit the `Content-Type` header or specify `application/octet-stream` with the
     * header to have the service automatically detect the format of the audio. (With the `curl` command, you can specify
     * either `"Content-Type:"` or `"Content-Type: application/octet-stream"`.)
     *
     * Where indicated, the format that you specify must include the sampling rate and can optionally include the number
     * of channels and the endianness of the audio.
     * * `audio/alaw` (**Required.** Specify the sampling rate (`rate`) of the audio.)
     * * `audio/basic` (**Required.** Use only with narrowband models.)
     * * `audio/flac`
     * * `audio/g729` (Use only with narrowband models.)
     * * `audio/l16` (**Required.** Specify the sampling rate (`rate`) and optionally the number of channels (`channels`)
     * and endianness (`endianness`) of the audio.)
     * * `audio/mp3`
     * * `audio/mpeg`
     * * `audio/mulaw` (**Required.** Specify the sampling rate (`rate`) of the audio.)
     * * `audio/ogg` (The service automatically detects the codec of the input audio.)
     * * `audio/ogg;codecs=opus`
     * * `audio/ogg;codecs=vorbis`
     * * `audio/wav` (Provide audio with a maximum of nine channels.)
     * * `audio/webm` (The service automatically detects the codec of the input audio.)
     * * `audio/webm;codecs=opus`
     * * `audio/webm;codecs=vorbis`
     *
     * The sampling rate of the audio must match the sampling rate of the model for the recognition request: for broadband
     * models, at least 16 kHz; for narrowband models, at least 8 kHz. If the sampling rate of the audio is higher than
     * the minimum required rate, the service down-samples the audio to the appropriate rate. If the sampling rate of the
     * audio is lower than the minimum required rate, the request fails.
     *
     *  **See also:** [Supported audio
     * formats](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-audio-formats).
     *
     * ### Large speech models and Next-generation models
     *
     *  The service supports large speech models and next-generation `Multimedia` (16 kHz) and `Telephony` (8 kHz) models
     * for many languages. Large speech models and next-generation models have higher throughput than the service's
     * previous generation of `Broadband` and `Narrowband` models. When you use large speech models and next-generation
     * models, the service can return transcriptions more quickly and also provide noticeably better transcription
     * accuracy.
     *
     * You specify a large speech model or next-generation model by using the `model` query parameter, as you do a
     * previous-generation model. Only the next-generation models support the `low_latency` parameter, and all large
     * speech models and next-generation models support the `character_insertion_bias` parameter. These parameters are not
     * available with previous-generation models.
     *
     * Large speech models and next-generation models do not support all of the speech recognition parameters that are
     * available for use with previous-generation models. Next-generation models do not support the following parameters:
     * * `acoustic_customization_id`
     * * `keywords` and `keywords_threshold`
     * * `processing_metrics` and `processing_metrics_interval`
     * * `word_alternatives_threshold`
     *
     * **Important:** Effective **31 July 2023**, all previous-generation models will be removed from the service and the
     * documentation. Most previous-generation models were deprecated on 15 March 2022. You must migrate to the equivalent
     * large speech model or next-generation model by 31 July 2023. For more information, see [Migrating to large speech
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-models-migrate).
     *
     * **See also:**
     * * [Large speech languages and
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-models-large-speech-languages)
     * * [Supported features for large speech
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-models-large-speech-languages#models-lsm-supported-features)
     * * [Next-generation languages and models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-models-ng)
     * * [Supported features for next-generation
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-models-ng#models-ng-features)
     *
     * ### Multipart speech recognition
     *
     *  **Note:** The asynchronous HTTP interface, WebSocket interface, and Watson SDKs do not support multipart speech
     * recognition.
     *
     * The HTTP `POST` method of the service also supports multipart speech recognition. With multipart requests, you pass
     * all audio data as multipart form data. You specify some parameters as request headers and query parameters, but you
     * pass JSON metadata as form data to control most aspects of the transcription. You can use multipart recognition to
     * pass multiple audio files with a single request.
     *
     * Use the multipart approach with browsers for which JavaScript is disabled or when the parameters used with the
     * request are greater than the 8 KB limit imposed by most HTTP servers and proxies. You can encounter this limit, for
     * example, if you want to spot a very large number of keywords.
     *
     * **See also:** [Making a multipart HTTP
     * request](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-http#HTTP-multi).
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {NodeJS.ReadableStream | Buffer} params.audio - The audio to transcribe.
     * @param {string} [params.contentType] - The format (MIME type) of the audio. For more information about specifying
     * an audio format, see **Audio formats (content types)** in the method description.
     * @param {string} [params.model] - The model to use for speech recognition. If you omit the `model` parameter, the
     * service uses the US English `en-US_BroadbandModel` by default.
     *
     * _For IBM Cloud Pak for Data,_ if you do not install the `en-US_BroadbandModel`, you must either specify a model
     * with the request or specify a new default model for your installation of the service.
     *
     * **See also:**
     * * [Using a model for speech recognition](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-models-use)
     * * [Using the default
     * model](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-models-use#models-use-default).
     * @param {boolean} [params.speechBeginEvent] - If `true`, the service returns a response object `SpeechActivity`
     * which contains the time when a speech activity is detected in the stream. This can be used both in standard and low
     * latency mode. This feature enables client applications to know that some words/speech has been detected and the
     * service is in the process of decoding. This can be used in lieu of interim results in standard mode. See [Using
     * speech recognition
     * parameters](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-service-features#features-parameters).
     * @param {string} [params.languageCustomizationId] - The customization ID (GUID) of a custom language model that is
     * to be used with the recognition request. The base model of the specified custom language model must match the model
     * specified with the `model` parameter. You must make the request with credentials for the instance of the service
     * that owns the custom model. By default, no custom language model is used. See [Using a custom language model for
     * speech recognition](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-languageUse).
     *
     * **Note:** Use this parameter instead of the deprecated `customization_id` parameter.
     * @param {string} [params.acousticCustomizationId] - The customization ID (GUID) of a custom acoustic model that is
     * to be used with the recognition request. The base model of the specified custom acoustic model must match the model
     * specified with the `model` parameter. You must make the request with credentials for the instance of the service
     * that owns the custom model. By default, no custom acoustic model is used. See [Using a custom acoustic model for
     * speech recognition](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-acousticUse).
     * @param {string} [params.baseModelVersion] - The version of the specified base model that is to be used with the
     * recognition request. Multiple versions of a base model can exist when a model is updated for internal improvements.
     * The parameter is intended primarily for use with custom models that have been upgraded for a new base model. The
     * default value depends on whether the parameter is used with or without a custom model. See [Making speech
     * recognition requests with upgraded custom
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-custom-upgrade-use#custom-upgrade-use-recognition).
     * @param {number} [params.customizationWeight] - If you specify the customization ID (GUID) of a custom language
     * model with the recognition request, the customization weight tells the service how much weight to give to words
     * from the custom language model compared to those from the base model for the current request.
     *
     * Specify a value between 0.0 and 1.0. Unless a different customization weight was specified for the custom model
     * when the model was trained, the default value is:
     * * 0.5 for large speech models
     * * 0.3 for previous-generation models
     * * 0.2 for most next-generation models
     * * 0.1 for next-generation English and Japanese models
     *
     * A customization weight that you specify overrides a weight that was specified when the custom model was trained.
     * The default value yields the best performance in general. Assign a higher value if your audio makes frequent use of
     * OOV words from the custom model. Use caution when setting the weight: a higher value can improve the accuracy of
     * phrases from the custom model's domain, but it can negatively affect performance on non-domain phrases.
     *
     * See [Using customization
     * weight](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-languageUse#weight).
     * @param {number} [params.inactivityTimeout] - The time in seconds after which, if only silence (no speech) is
     * detected in streaming audio, the connection is closed with a 400 error. The parameter is useful for stopping audio
     * submission from a live microphone when a user simply walks away. Use `-1` for infinity. See [Inactivity
     * timeout](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-input#timeouts-inactivity).
     * @param {string[]} [params.keywords] - An array of keyword strings to spot in the audio. Each keyword string can
     * include one or more string tokens. Keywords are spotted only in the final results, not in interim hypotheses. If
     * you specify any keywords, you must also specify a keywords threshold. Omit the parameter or specify an empty array
     * if you do not need to spot keywords.
     *
     * You can spot a maximum of 1000 keywords with a single request. A single keyword can have a maximum length of 1024
     * characters, though the maximum effective length for double-byte languages might be shorter. Keywords are
     * case-insensitive.
     *
     * See [Keyword spotting](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-spotting#keyword-spotting).
     * @param {number} [params.keywordsThreshold] - A confidence value that is the lower bound for spotting a keyword. A
     * word is considered to match a keyword if its confidence is greater than or equal to the threshold. Specify a
     * probability between 0.0 and 1.0. If you specify a threshold, you must also specify one or more keywords. The
     * service performs no keyword spotting if you omit either parameter. See [Keyword
     * spotting](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-spotting#keyword-spotting).
     * @param {number} [params.maxAlternatives] - The maximum number of alternative transcripts that the service is to
     * return. By default, the service returns a single transcript. If you specify a value of `0`, the service uses the
     * default value, `1`. See [Maximum
     * alternatives](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-metadata#max-alternatives).
     * @param {number} [params.wordAlternativesThreshold] - A confidence value that is the lower bound for identifying a
     * hypothesis as a possible word alternative (also known as "Confusion Networks"). An alternative word is considered
     * if its confidence is greater than or equal to the threshold. Specify a probability between 0.0 and 1.0. By default,
     * the service computes no alternative words. See [Word
     * alternatives](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-spotting#word-alternatives).
     * @param {boolean} [params.wordConfidence] - If `true`, the service returns a confidence measure in the range of 0.0
     * to 1.0 for each word. By default, the service returns no word confidence scores. See [Word
     * confidence](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-metadata#word-confidence).
     * @param {boolean} [params.timestamps] - If `true`, the service returns time alignment for each word. By default, no
     * timestamps are returned. See [Word
     * timestamps](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-metadata#word-timestamps).
     * @param {boolean} [params.profanityFilter] - If `true`, the service filters profanity from all output except for
     * keyword results by replacing inappropriate words with a series of asterisks. Set the parameter to `false` to return
     * results with no censoring.
     *
     * **Note:** The parameter can be used with US English and Japanese transcription only. See [Profanity
     * filtering](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-formatting#profanity-filtering).
     * @param {boolean} [params.smartFormatting] - If `true`, the service converts dates, times, series of digits and
     * numbers, phone numbers, currency values, and internet addresses into more readable, conventional representations in
     * the final transcript of a recognition request. For US English, the service also converts certain keyword strings to
     * punctuation symbols. By default, the service performs no smart formatting.
     *
     * **Note:** The parameter can be used with US English, Japanese, and Spanish (all dialects) transcription only.
     *
     * See [Smart formatting](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-formatting#smart-formatting).
     * @param {number} [params.smartFormattingVersion] - Smart formatting version for large speech models and
     * next-generation models is supported in US English, Brazilian Portuguese, French, German, Spanish and French
     * Canadian languages.
     * @param {boolean} [params.speakerLabels] - If `true`, the response includes labels that identify which words were
     * spoken by which participants in a multi-person exchange. By default, the service returns no speaker labels. Setting
     * `speaker_labels` to `true` forces the `timestamps` parameter to be `true`, regardless of whether you specify
     * `false` for the parameter.
     * * _For previous-generation models,_ the parameter can be used with Australian English, US English, German,
     * Japanese, Korean, and Spanish (both broadband and narrowband models) and UK English (narrowband model)
     * transcription only.
     * * _For large speech models and next-generation models,_ the parameter can be used with all available languages.
     *
     * See [Speaker labels](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-speaker-labels).
     * @param {string} [params.grammarName] - The name of a grammar that is to be used with the recognition request. If
     * you specify a grammar, you must also use the `language_customization_id` parameter to specify the name of the
     * custom language model for which the grammar is defined. The service recognizes only strings that are recognized by
     * the specified grammar; it does not recognize other custom words from the model's words resource.
     *
     * See [Using a grammar for speech
     * recognition](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-grammarUse).
     * @param {boolean} [params.redaction] - If `true`, the service redacts, or masks, numeric data from final
     * transcripts. The feature redacts any number that has three or more consecutive digits by replacing each digit with
     * an `X` character. It is intended to redact sensitive numeric data, such as credit card numbers. By default, the
     * service performs no redaction.
     *
     * When you enable redaction, the service automatically enables smart formatting, regardless of whether you explicitly
     * disable that feature. To ensure maximum security, the service also disables keyword spotting (ignores the
     * `keywords` and `keywords_threshold` parameters) and returns only a single final transcript (forces the
     * `max_alternatives` parameter to be `1`).
     *
     * **Note:** The parameter can be used with US English, Japanese, and Korean transcription only.
     *
     * See [Numeric
     * redaction](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-formatting#numeric-redaction).
     * @param {boolean} [params.audioMetrics] - If `true`, requests detailed information about the signal characteristics
     * of the input audio. The service returns audio metrics with the final transcription results. By default, the service
     * returns no audio metrics.
     *
     * See [Audio metrics](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-metrics#audio-metrics).
     * @param {number} [params.endOfPhraseSilenceTime] - Specifies the duration of the pause interval at which the service
     * splits a transcript into multiple final results. If the service detects pauses or extended silence before it
     * reaches the end of the audio stream, its response can include multiple final results. Silence indicates a point at
     * which the speaker pauses between spoken words or phrases.
     *
     * Specify a value for the pause interval in the range of 0.0 to 120.0.
     * * A value greater than 0 specifies the interval that the service is to use for speech recognition.
     * * A value of 0 indicates that the service is to use the default interval. It is equivalent to omitting the
     * parameter.
     *
     * The default pause interval for most languages is 0.8 seconds; the default for Chinese is 0.6 seconds.
     *
     * See [End of phrase silence
     * time](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-parsing#silence-time).
     * @param {boolean} [params.splitTranscriptAtPhraseEnd] - If `true`, directs the service to split the transcript into
     * multiple final results based on semantic features of the input, for example, at the conclusion of meaningful
     * phrases such as sentences. The service bases its understanding of semantic features on the base language model that
     * you use with a request. Custom language models and grammars can also influence how and where the service splits a
     * transcript.
     *
     * By default, the service splits transcripts based solely on the pause interval. If the parameters are used together
     * on the same request, `end_of_phrase_silence_time` has precedence over `split_transcript_at_phrase_end`.
     *
     * See [Split transcript at phrase
     * end](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-parsing#split-transcript).
     * @param {number} [params.speechDetectorSensitivity] - The sensitivity of speech activity detection that the service
     * is to perform. Use the parameter to suppress word insertions from music, coughing, and other non-speech events. The
     * service biases the audio it passes for speech recognition by evaluating the input audio against prior models of
     * speech and non-speech activity.
     *
     * Specify a value between 0.0 and 1.0:
     * * 0.0 suppresses all audio (no speech is transcribed).
     * * 0.5 (the default) provides a reasonable compromise for the level of sensitivity.
     * * 1.0 suppresses no audio (speech detection sensitivity is disabled).
     *
     * The values increase on a monotonic curve. Specifying one or two decimal places of precision (for example, `0.55`)
     * is typically more than sufficient.
     *
     * The parameter is supported with all large speech models, next-generation models and with most previous-generation
     * models. See [Speech detector
     * sensitivity](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-detection#detection-parameters-sensitivity)
     * and [Language model
     * support](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-detection#detection-support).
     * @param {number} [params.backgroundAudioSuppression] - The level to which the service is to suppress background
     * audio based on its volume to prevent it from being transcribed as speech. Use the parameter to suppress side
     * conversations or background noise.
     *
     * Specify a value in the range of 0.0 to 1.0:
     * * 0.0 (the default) provides no suppression (background audio suppression is disabled).
     * * 0.5 provides a reasonable level of audio suppression for general usage.
     * * 1.0 suppresses all audio (no audio is transcribed).
     *
     * The values increase on a monotonic curve. Specifying one or two decimal places of precision (for example, `0.55`)
     * is typically more than sufficient.
     *
     * The parameter is supported with all large speech models, next-generation models and with most previous-generation
     * models. See [Background audio
     * suppression](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-detection#detection-parameters-suppression)
     * and [Language model
     * support](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-detection#detection-support).
     * @param {boolean} [params.lowLatency] - If `true` for next-generation `Multimedia` and `Telephony` models that
     * support low latency, directs the service to produce results even more quickly than it usually does. Next-generation
     * models produce transcription results faster than previous-generation models. The `low_latency` parameter causes the
     * models to produce results even more quickly, though the results might be less accurate when the parameter is used.
     *
     * The parameter is not available for large speech models and previous-generation `Broadband` and `Narrowband` models.
     * It is available for most next-generation models.
     * * For a list of next-generation models that support low latency, see [Supported next-generation language
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-models-ng#models-ng-supported).
     * * For more information about the `low_latency` parameter, see [Low
     * latency](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-interim#low-latency).
     * @param {number} [params.characterInsertionBias] - For large speech models and next-generation models, an indication
     * of whether the service is biased to recognize shorter or longer strings of characters when developing transcription
     * hypotheses. By default, the service is optimized to produce the best balance of strings of different lengths.
     *
     * The default bias is 0.0. The allowable range of values is -1.0 to 1.0.
     * * Negative values bias the service to favor hypotheses with shorter strings of characters.
     * * Positive values bias the service to favor hypotheses with longer strings of characters.
     *
     * As the value approaches -1.0 or 1.0, the impact of the parameter becomes more pronounced. To determine the most
     * effective value for your scenario, start by setting the value of the parameter to a small increment, such as -0.1,
     * -0.05, 0.05, or 0.1, and assess how the value impacts the transcription results. Then experiment with different
     * values as necessary, adjusting the value by small increments.
     *
     * The parameter is not available for previous-generation models.
     *
     * See [Character insertion
     * bias](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-parsing#insertion-bias).
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.SpeechRecognitionResults>>}
     */
    SpeechToTextV1.prototype.recognize = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['audio'];
        var _validParams = ['audio', 'contentType', 'model', 'speechBeginEvent', 'languageCustomizationId', 'acousticCustomizationId', 'baseModelVersion', 'customizationWeight', 'inactivityTimeout', 'keywords', 'keywordsThreshold', 'maxAlternatives', 'wordAlternativesThreshold', 'wordConfidence', 'timestamps', 'profanityFilter', 'smartFormatting', 'smartFormattingVersion', 'speakerLabels', 'grammarName', 'redaction', 'audioMetrics', 'endOfPhraseSilenceTime', 'splitTranscriptAtPhraseEnd', 'speechDetectorSensitivity', 'backgroundAudioSuppression', 'lowLatency', 'characterInsertionBias', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var body = _params.audio;
        var query = {
            'model': _params.model,
            'speech_begin_event': _params.speechBeginEvent,
            'language_customization_id': _params.languageCustomizationId,
            'acoustic_customization_id': _params.acousticCustomizationId,
            'base_model_version': _params.baseModelVersion,
            'customization_weight': _params.customizationWeight,
            'inactivity_timeout': _params.inactivityTimeout,
            'keywords': _params.keywords,
            'keywords_threshold': _params.keywordsThreshold,
            'max_alternatives': _params.maxAlternatives,
            'word_alternatives_threshold': _params.wordAlternativesThreshold,
            'word_confidence': _params.wordConfidence,
            'timestamps': _params.timestamps,
            'profanity_filter': _params.profanityFilter,
            'smart_formatting': _params.smartFormatting,
            'smart_formatting_version': _params.smartFormattingVersion,
            'speaker_labels': _params.speakerLabels,
            'grammar_name': _params.grammarName,
            'redaction': _params.redaction,
            'audio_metrics': _params.audioMetrics,
            'end_of_phrase_silence_time': _params.endOfPhraseSilenceTime,
            'split_transcript_at_phrase_end': _params.splitTranscriptAtPhraseEnd,
            'speech_detector_sensitivity': _params.speechDetectorSensitivity,
            'background_audio_suppression': _params.backgroundAudioSuppression,
            'low_latency': _params.lowLatency,
            'character_insertion_bias': _params.characterInsertionBias,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'recognize');
        var parameters = {
            options: {
                url: '/v1/recognize',
                method: 'POST',
                body: body,
                qs: query,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                    'Content-Type': _params.contentType,
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /*************************
     * asynchronous
     ************************/
    /**
     * Register a callback.
     *
     * Registers a callback URL with the service for use with subsequent asynchronous recognition requests. The service
     * attempts to register, or allowlist, the callback URL if it is not already registered by sending a `GET` request to
     * the callback URL. The service passes a random alphanumeric challenge string via the `challenge_string` parameter of
     * the request. The request includes an `Accept` header that specifies `text/plain` as the required response type.
     *
     * To be registered successfully, the callback URL must respond to the `GET` request from the service. The response
     * must send status code 200 and must include the challenge string in its body. Set the `Content-Type` response header
     * to `text/plain`. Upon receiving this response, the service responds to the original registration request with
     * response code 201.
     *
     * The service sends only a single `GET` request to the callback URL. If the service does not receive a reply with a
     * response code of 200 and a body that echoes the challenge string sent by the service within five seconds, it does
     * not allowlist the URL; it instead sends status code 400 in response to the request to register a callback. If the
     * requested callback URL is already allowlisted, the service responds to the initial registration request with
     * response code 200.
     *
     * If you specify a user secret with the request, the service uses it as a key to calculate an HMAC-SHA1 signature of
     * the challenge string in its response to the `POST` request. It sends this signature in the `X-Callback-Signature`
     * header of its `GET` request to the URL during registration. It also uses the secret to calculate a signature over
     * the payload of every callback notification that uses the URL. The signature provides authentication and data
     * integrity for HTTP communications.
     *
     * After you successfully register a callback URL, you can use it with an indefinite number of recognition requests.
     * You can register a maximum of 20 callback URLS in a one-hour span of time.
     *
     * **See also:** [Registering a callback
     * URL](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-async#register).
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {string} params.callbackUrl - An HTTP or HTTPS URL to which callback notifications are to be sent. To be
     * allowlisted, the URL must successfully echo the challenge string during URL verification. During verification, the
     * client can also check the signature that the service sends in the `X-Callback-Signature` header to verify the
     * origin of the request.
     * @param {string} [params.userSecret] - A user-specified string that the service uses to generate the HMAC-SHA1
     * signature that it sends via the `X-Callback-Signature` header. The service includes the header during URL
     * verification and with every notification sent to the callback URL. It calculates the signature over the payload of
     * the notification. If you omit the parameter, the service does not send the header.
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.RegisterStatus>>}
     */
    SpeechToTextV1.prototype.registerCallback = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['callbackUrl'];
        var _validParams = ['callbackUrl', 'userSecret', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var query = {
            'callback_url': _params.callbackUrl,
            'user_secret': _params.userSecret,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'registerCallback');
        var parameters = {
            options: {
                url: '/v1/register_callback',
                method: 'POST',
                qs: query,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /**
     * Unregister a callback.
     *
     * Unregisters a callback URL that was previously allowlisted with a [Register a callback](#registercallback) request
     * for use with the asynchronous interface. Once unregistered, the URL can no longer be used with asynchronous
     * recognition requests.
     *
     * **See also:** [Unregistering a callback
     * URL](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-async#unregister).
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {string} params.callbackUrl - The callback URL that is to be unregistered.
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.EmptyObject>>}
     */
    SpeechToTextV1.prototype.unregisterCallback = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['callbackUrl'];
        var _validParams = ['callbackUrl', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var query = {
            'callback_url': _params.callbackUrl,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'unregisterCallback');
        var parameters = {
            options: {
                url: '/v1/unregister_callback',
                method: 'POST',
                qs: query,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {}, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /**
     * Create a job.
     *
     * Creates a job for a new asynchronous recognition request. The job is owned by the instance of the service whose
     * credentials are used to create it. How you learn the status and results of a job depends on the parameters you
     * include with the job creation request:
     * * By callback notification: Include the `callback_url` parameter to specify a URL to which the service is to send
     * callback notifications when the status of the job changes. Optionally, you can also include the `events` and
     * `user_token` parameters to subscribe to specific events and to specify a string that is to be included with each
     * notification for the job.
     * * By polling the service: Omit the `callback_url`, `events`, and `user_token` parameters. You must then use the
     * [Check jobs](#checkjobs) or [Check a job](#checkjob) methods to check the status of the job, using the latter to
     * retrieve the results when the job is complete.
     *
     * The two approaches are not mutually exclusive. You can poll the service for job status or obtain results from the
     * service manually even if you include a callback URL. In both cases, you can include the `results_ttl` parameter to
     * specify how long the results are to remain available after the job is complete. Using the HTTPS [Check a
     * job](#checkjob) method to retrieve results is more secure than receiving them via callback notification over HTTP
     * because it provides confidentiality in addition to authentication and data integrity.
     *
     * The method supports the same basic parameters as other HTTP and WebSocket recognition requests. It also supports
     * the following parameters specific to the asynchronous interface:
     * * `callback_url`
     * * `events`
     * * `user_token`
     * * `results_ttl`
     *
     * You can pass a maximum of 1 GB and a minimum of 100 bytes of audio with a request. The service automatically
     * detects the endianness of the incoming audio and, for audio that includes multiple channels, downmixes the audio to
     * one-channel mono during transcoding. The method returns only final results; to enable interim results, use the
     * WebSocket API. (With the `curl` command, use the `--data-binary` option to upload the file for the request.)
     *
     * **See also:** [Creating a job](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-async#create).
     *
     * ### Streaming mode
     *
     *  For requests to transcribe live audio as it becomes available, you must set the `Transfer-Encoding` header to
     * `chunked` to use streaming mode. In streaming mode, the service closes the connection (status code 408) if it does
     * not receive at least 15 seconds of audio (including silence) in any 30-second period. The service also closes the
     * connection (status code 400) if it detects no speech for `inactivity_timeout` seconds of streaming audio; use the
     * `inactivity_timeout` parameter to change the default of 30 seconds.
     *
     * **See also:**
     * * [Audio transmission](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-input#transmission)
     * * [Timeouts](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-input#timeouts)
     *
     * ### Audio formats (content types)
     *
     *  The service accepts audio in the following formats (MIME types).
     * * For formats that are labeled **Required**, you must use the `Content-Type` header with the request to specify the
     * format of the audio.
     * * For all other formats, you can omit the `Content-Type` header or specify `application/octet-stream` with the
     * header to have the service automatically detect the format of the audio. (With the `curl` command, you can specify
     * either `"Content-Type:"` or `"Content-Type: application/octet-stream"`.)
     *
     * Where indicated, the format that you specify must include the sampling rate and can optionally include the number
     * of channels and the endianness of the audio.
     * * `audio/alaw` (**Required.** Specify the sampling rate (`rate`) of the audio.)
     * * `audio/basic` (**Required.** Use only with narrowband models.)
     * * `audio/flac`
     * * `audio/g729` (Use only with narrowband models.)
     * * `audio/l16` (**Required.** Specify the sampling rate (`rate`) and optionally the number of channels (`channels`)
     * and endianness (`endianness`) of the audio.)
     * * `audio/mp3`
     * * `audio/mpeg`
     * * `audio/mulaw` (**Required.** Specify the sampling rate (`rate`) of the audio.)
     * * `audio/ogg` (The service automatically detects the codec of the input audio.)
     * * `audio/ogg;codecs=opus`
     * * `audio/ogg;codecs=vorbis`
     * * `audio/wav` (Provide audio with a maximum of nine channels.)
     * * `audio/webm` (The service automatically detects the codec of the input audio.)
     * * `audio/webm;codecs=opus`
     * * `audio/webm;codecs=vorbis`
     *
     * The sampling rate of the audio must match the sampling rate of the model for the recognition request: for broadband
     * models, at least 16 kHz; for narrowband models, at least 8 kHz. If the sampling rate of the audio is higher than
     * the minimum required rate, the service down-samples the audio to the appropriate rate. If the sampling rate of the
     * audio is lower than the minimum required rate, the request fails.
     *
     *  **See also:** [Supported audio
     * formats](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-audio-formats).
     *
     * ### Large speech models and Next-generation models
     *
     *  The service supports large speech models and next-generation `Multimedia` (16 kHz) and `Telephony` (8 kHz) models
     * for many languages. Large speech models and next-generation models have higher throughput than the service's
     * previous generation of `Broadband` and `Narrowband` models. When you use large speech models and next-generation
     * models, the service can return transcriptions more quickly and also provide noticeably better transcription
     * accuracy.
     *
     * You specify a large speech model or next-generation model by using the `model` query parameter, as you do a
     * previous-generation model. Only the next-generation models support the `low_latency` parameter, and all large
     * speech models and next-generation models support the `character_insertion_bias` parameter. These parameters are not
     * available with previous-generation models.
     *
     * Large speech models and next-generation models do not support all of the speech recognition parameters that are
     * available for use with previous-generation models. Next-generation models do not support the following parameters:
     * * `acoustic_customization_id`
     * * `keywords` and `keywords_threshold`
     * * `processing_metrics` and `processing_metrics_interval`
     * * `word_alternatives_threshold`
     *
     * **Important:** Effective **31 July 2023**, all previous-generation models will be removed from the service and the
     * documentation. Most previous-generation models were deprecated on 15 March 2022. You must migrate to the equivalent
     * large speech model or next-generation model by 31 July 2023. For more information, see [Migrating to large speech
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-models-migrate).
     *
     * **See also:**
     * * [Large speech languages and
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-models-large-speech-languages)
     * * [Supported features for large speech
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-models-large-speech-languages#models-lsm-supported-features)
     * * [Next-generation languages and models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-models-ng)
     * * [Supported features for next-generation
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-models-ng#models-ng-features).
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {NodeJS.ReadableStream | Buffer} params.audio - The audio to transcribe.
     * @param {string} [params.contentType] - The format (MIME type) of the audio. For more information about specifying
     * an audio format, see **Audio formats (content types)** in the method description.
     * @param {string} [params.model] - The model to use for speech recognition. If you omit the `model` parameter, the
     * service uses the US English `en-US_BroadbandModel` by default.
     *
     * _For IBM Cloud Pak for Data,_ if you do not install the `en-US_BroadbandModel`, you must either specify a model
     * with the request or specify a new default model for your installation of the service.
     *
     * **See also:**
     * * [Using a model for speech recognition](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-models-use)
     * * [Using the default
     * model](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-models-use#models-use-default).
     * @param {string} [params.callbackUrl] - A URL to which callback notifications are to be sent. The URL must already
     * be successfully allowlisted by using the [Register a callback](#registercallback) method. You can include the same
     * callback URL with any number of job creation requests. Omit the parameter to poll the service for job completion
     * and results.
     *
     * Use the `user_token` parameter to specify a unique user-specified string with each job to differentiate the
     * callback notifications for the jobs.
     * @param {string} [params.events] - If the job includes a callback URL, a comma-separated list of notification events
     * to which to subscribe. Valid events are
     * * `recognitions.started` generates a callback notification when the service begins to process the job.
     * * `recognitions.completed` generates a callback notification when the job is complete. You must use the [Check a
     * job](#checkjob) method to retrieve the results before they time out or are deleted.
     * * `recognitions.completed_with_results` generates a callback notification when the job is complete. The
     * notification includes the results of the request.
     * * `recognitions.failed` generates a callback notification if the service experiences an error while processing the
     * job.
     *
     * The `recognitions.completed` and `recognitions.completed_with_results` events are incompatible. You can specify
     * only of the two events.
     *
     * If the job includes a callback URL, omit the parameter to subscribe to the default events: `recognitions.started`,
     * `recognitions.completed`, and `recognitions.failed`. If the job does not include a callback URL, omit the
     * parameter.
     * @param {string} [params.userToken] - If the job includes a callback URL, a user-specified string that the service
     * is to include with each callback notification for the job; the token allows the user to maintain an internal
     * mapping between jobs and notification events. If the job does not include a callback URL, omit the parameter.
     * @param {number} [params.resultsTtl] - The number of minutes for which the results are to be available after the job
     * has finished. If not delivered via a callback, the results must be retrieved within this time. Omit the parameter
     * to use a time to live of one week. The parameter is valid with or without a callback URL.
     * @param {string} [params.languageCustomizationId] - The customization ID (GUID) of a custom language model that is
     * to be used with the recognition request. The base model of the specified custom language model must match the model
     * specified with the `model` parameter. You must make the request with credentials for the instance of the service
     * that owns the custom model. By default, no custom language model is used. See [Using a custom language model for
     * speech recognition](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-languageUse).
     *
     * **Note:** Use this parameter instead of the deprecated `customization_id` parameter.
     * @param {string} [params.acousticCustomizationId] - The customization ID (GUID) of a custom acoustic model that is
     * to be used with the recognition request. The base model of the specified custom acoustic model must match the model
     * specified with the `model` parameter. You must make the request with credentials for the instance of the service
     * that owns the custom model. By default, no custom acoustic model is used. See [Using a custom acoustic model for
     * speech recognition](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-acousticUse).
     * @param {string} [params.baseModelVersion] - The version of the specified base model that is to be used with the
     * recognition request. Multiple versions of a base model can exist when a model is updated for internal improvements.
     * The parameter is intended primarily for use with custom models that have been upgraded for a new base model. The
     * default value depends on whether the parameter is used with or without a custom model. See [Making speech
     * recognition requests with upgraded custom
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-custom-upgrade-use#custom-upgrade-use-recognition).
     * @param {number} [params.customizationWeight] - If you specify the customization ID (GUID) of a custom language
     * model with the recognition request, the customization weight tells the service how much weight to give to words
     * from the custom language model compared to those from the base model for the current request.
     *
     * Specify a value between 0.0 and 1.0. Unless a different customization weight was specified for the custom model
     * when the model was trained, the default value is:
     * * 0.5 for large speech models
     * * 0.3 for previous-generation models
     * * 0.2 for most next-generation models
     * * 0.1 for next-generation English and Japanese models
     *
     * A customization weight that you specify overrides a weight that was specified when the custom model was trained.
     * The default value yields the best performance in general. Assign a higher value if your audio makes frequent use of
     * OOV words from the custom model. Use caution when setting the weight: a higher value can improve the accuracy of
     * phrases from the custom model's domain, but it can negatively affect performance on non-domain phrases.
     *
     * See [Using customization
     * weight](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-languageUse#weight).
     * @param {number} [params.inactivityTimeout] - The time in seconds after which, if only silence (no speech) is
     * detected in streaming audio, the connection is closed with a 400 error. The parameter is useful for stopping audio
     * submission from a live microphone when a user simply walks away. Use `-1` for infinity. See [Inactivity
     * timeout](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-input#timeouts-inactivity).
     * @param {string[]} [params.keywords] - An array of keyword strings to spot in the audio. Each keyword string can
     * include one or more string tokens. Keywords are spotted only in the final results, not in interim hypotheses. If
     * you specify any keywords, you must also specify a keywords threshold. Omit the parameter or specify an empty array
     * if you do not need to spot keywords.
     *
     * You can spot a maximum of 1000 keywords with a single request. A single keyword can have a maximum length of 1024
     * characters, though the maximum effective length for double-byte languages might be shorter. Keywords are
     * case-insensitive.
     *
     * See [Keyword spotting](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-spotting#keyword-spotting).
     * @param {number} [params.keywordsThreshold] - A confidence value that is the lower bound for spotting a keyword. A
     * word is considered to match a keyword if its confidence is greater than or equal to the threshold. Specify a
     * probability between 0.0 and 1.0. If you specify a threshold, you must also specify one or more keywords. The
     * service performs no keyword spotting if you omit either parameter. See [Keyword
     * spotting](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-spotting#keyword-spotting).
     * @param {number} [params.maxAlternatives] - The maximum number of alternative transcripts that the service is to
     * return. By default, the service returns a single transcript. If you specify a value of `0`, the service uses the
     * default value, `1`. See [Maximum
     * alternatives](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-metadata#max-alternatives).
     * @param {number} [params.wordAlternativesThreshold] - A confidence value that is the lower bound for identifying a
     * hypothesis as a possible word alternative (also known as "Confusion Networks"). An alternative word is considered
     * if its confidence is greater than or equal to the threshold. Specify a probability between 0.0 and 1.0. By default,
     * the service computes no alternative words. See [Word
     * alternatives](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-spotting#word-alternatives).
     * @param {boolean} [params.wordConfidence] - If `true`, the service returns a confidence measure in the range of 0.0
     * to 1.0 for each word. By default, the service returns no word confidence scores. See [Word
     * confidence](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-metadata#word-confidence).
     * @param {boolean} [params.timestamps] - If `true`, the service returns time alignment for each word. By default, no
     * timestamps are returned. See [Word
     * timestamps](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-metadata#word-timestamps).
     * @param {boolean} [params.profanityFilter] - If `true`, the service filters profanity from all output except for
     * keyword results by replacing inappropriate words with a series of asterisks. Set the parameter to `false` to return
     * results with no censoring.
     *
     * **Note:** The parameter can be used with US English and Japanese transcription only. See [Profanity
     * filtering](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-formatting#profanity-filtering).
     * @param {boolean} [params.smartFormatting] - If `true`, the service converts dates, times, series of digits and
     * numbers, phone numbers, currency values, and internet addresses into more readable, conventional representations in
     * the final transcript of a recognition request. For US English, the service also converts certain keyword strings to
     * punctuation symbols. By default, the service performs no smart formatting.
     *
     * **Note:** The parameter can be used with US English, Japanese, and Spanish (all dialects) transcription only.
     *
     * See [Smart formatting](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-formatting#smart-formatting).
     * @param {number} [params.smartFormattingVersion] - Smart formatting version for large speech models and
     * next-generation models is supported in US English, Brazilian Portuguese, French, German, Spanish and French
     * Canadian languages.
     * @param {boolean} [params.speakerLabels] - If `true`, the response includes labels that identify which words were
     * spoken by which participants in a multi-person exchange. By default, the service returns no speaker labels. Setting
     * `speaker_labels` to `true` forces the `timestamps` parameter to be `true`, regardless of whether you specify
     * `false` for the parameter.
     * * _For previous-generation models,_ the parameter can be used with Australian English, US English, German,
     * Japanese, Korean, and Spanish (both broadband and narrowband models) and UK English (narrowband model)
     * transcription only.
     * * _For large speech models and next-generation models,_ the parameter can be used with all available languages.
     *
     * See [Speaker labels](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-speaker-labels).
     * @param {string} [params.grammarName] - The name of a grammar that is to be used with the recognition request. If
     * you specify a grammar, you must also use the `language_customization_id` parameter to specify the name of the
     * custom language model for which the grammar is defined. The service recognizes only strings that are recognized by
     * the specified grammar; it does not recognize other custom words from the model's words resource.
     *
     * See [Using a grammar for speech
     * recognition](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-grammarUse).
     * @param {boolean} [params.redaction] - If `true`, the service redacts, or masks, numeric data from final
     * transcripts. The feature redacts any number that has three or more consecutive digits by replacing each digit with
     * an `X` character. It is intended to redact sensitive numeric data, such as credit card numbers. By default, the
     * service performs no redaction.
     *
     * When you enable redaction, the service automatically enables smart formatting, regardless of whether you explicitly
     * disable that feature. To ensure maximum security, the service also disables keyword spotting (ignores the
     * `keywords` and `keywords_threshold` parameters) and returns only a single final transcript (forces the
     * `max_alternatives` parameter to be `1`).
     *
     * **Note:** The parameter can be used with US English, Japanese, and Korean transcription only.
     *
     * See [Numeric
     * redaction](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-formatting#numeric-redaction).
     * @param {boolean} [params.processingMetrics] - If `true`, requests processing metrics about the service's
     * transcription of the input audio. The service returns processing metrics at the interval specified by the
     * `processing_metrics_interval` parameter. It also returns processing metrics for transcription events, for example,
     * for final and interim results. By default, the service returns no processing metrics.
     *
     * See [Processing
     * metrics](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-metrics#processing-metrics).
     * @param {number} [params.processingMetricsInterval] - Specifies the interval in real wall-clock seconds at which the
     * service is to return processing metrics. The parameter is ignored unless the `processing_metrics` parameter is set
     * to `true`.
     *
     * The parameter accepts a minimum value of 0.1 seconds. The level of precision is not restricted, so you can specify
     * values such as 0.25 and 0.125.
     *
     * The service does not impose a maximum value. If you want to receive processing metrics only for transcription
     * events instead of at periodic intervals, set the value to a large number. If the value is larger than the duration
     * of the audio, the service returns processing metrics only for transcription events.
     *
     * See [Processing
     * metrics](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-metrics#processing-metrics).
     * @param {boolean} [params.audioMetrics] - If `true`, requests detailed information about the signal characteristics
     * of the input audio. The service returns audio metrics with the final transcription results. By default, the service
     * returns no audio metrics.
     *
     * See [Audio metrics](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-metrics#audio-metrics).
     * @param {number} [params.endOfPhraseSilenceTime] - Specifies the duration of the pause interval at which the service
     * splits a transcript into multiple final results. If the service detects pauses or extended silence before it
     * reaches the end of the audio stream, its response can include multiple final results. Silence indicates a point at
     * which the speaker pauses between spoken words or phrases.
     *
     * Specify a value for the pause interval in the range of 0.0 to 120.0.
     * * A value greater than 0 specifies the interval that the service is to use for speech recognition.
     * * A value of 0 indicates that the service is to use the default interval. It is equivalent to omitting the
     * parameter.
     *
     * The default pause interval for most languages is 0.8 seconds; the default for Chinese is 0.6 seconds.
     *
     * See [End of phrase silence
     * time](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-parsing#silence-time).
     * @param {boolean} [params.splitTranscriptAtPhraseEnd] - If `true`, directs the service to split the transcript into
     * multiple final results based on semantic features of the input, for example, at the conclusion of meaningful
     * phrases such as sentences. The service bases its understanding of semantic features on the base language model that
     * you use with a request. Custom language models and grammars can also influence how and where the service splits a
     * transcript.
     *
     * By default, the service splits transcripts based solely on the pause interval. If the parameters are used together
     * on the same request, `end_of_phrase_silence_time` has precedence over `split_transcript_at_phrase_end`.
     *
     * See [Split transcript at phrase
     * end](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-parsing#split-transcript).
     * @param {number} [params.speechDetectorSensitivity] - The sensitivity of speech activity detection that the service
     * is to perform. Use the parameter to suppress word insertions from music, coughing, and other non-speech events. The
     * service biases the audio it passes for speech recognition by evaluating the input audio against prior models of
     * speech and non-speech activity.
     *
     * Specify a value between 0.0 and 1.0:
     * * 0.0 suppresses all audio (no speech is transcribed).
     * * 0.5 (the default) provides a reasonable compromise for the level of sensitivity.
     * * 1.0 suppresses no audio (speech detection sensitivity is disabled).
     *
     * The values increase on a monotonic curve. Specifying one or two decimal places of precision (for example, `0.55`)
     * is typically more than sufficient.
     *
     * The parameter is supported with all large speech models, next-generation models and with most previous-generation
     * models. See [Speech detector
     * sensitivity](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-detection#detection-parameters-sensitivity)
     * and [Language model
     * support](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-detection#detection-support).
     * @param {number} [params.backgroundAudioSuppression] - The level to which the service is to suppress background
     * audio based on its volume to prevent it from being transcribed as speech. Use the parameter to suppress side
     * conversations or background noise.
     *
     * Specify a value in the range of 0.0 to 1.0:
     * * 0.0 (the default) provides no suppression (background audio suppression is disabled).
     * * 0.5 provides a reasonable level of audio suppression for general usage.
     * * 1.0 suppresses all audio (no audio is transcribed).
     *
     * The values increase on a monotonic curve. Specifying one or two decimal places of precision (for example, `0.55`)
     * is typically more than sufficient.
     *
     * The parameter is supported with all large speech models, next-generation models and with most previous-generation
     * models. See [Background audio
     * suppression](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-detection#detection-parameters-suppression)
     * and [Language model
     * support](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-detection#detection-support).
     * @param {boolean} [params.lowLatency] - If `true` for next-generation `Multimedia` and `Telephony` models that
     * support low latency, directs the service to produce results even more quickly than it usually does. Next-generation
     * models produce transcription results faster than previous-generation models. The `low_latency` parameter causes the
     * models to produce results even more quickly, though the results might be less accurate when the parameter is used.
     *
     * The parameter is not available for large speech models and previous-generation `Broadband` and `Narrowband` models.
     * It is available for most next-generation models.
     * * For a list of next-generation models that support low latency, see [Supported next-generation language
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-models-ng#models-ng-supported).
     * * For more information about the `low_latency` parameter, see [Low
     * latency](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-interim#low-latency).
     * @param {number} [params.characterInsertionBias] - For large speech models and next-generation models, an indication
     * of whether the service is biased to recognize shorter or longer strings of characters when developing transcription
     * hypotheses. By default, the service is optimized to produce the best balance of strings of different lengths.
     *
     * The default bias is 0.0. The allowable range of values is -1.0 to 1.0.
     * * Negative values bias the service to favor hypotheses with shorter strings of characters.
     * * Positive values bias the service to favor hypotheses with longer strings of characters.
     *
     * As the value approaches -1.0 or 1.0, the impact of the parameter becomes more pronounced. To determine the most
     * effective value for your scenario, start by setting the value of the parameter to a small increment, such as -0.1,
     * -0.05, 0.05, or 0.1, and assess how the value impacts the transcription results. Then experiment with different
     * values as necessary, adjusting the value by small increments.
     *
     * The parameter is not available for previous-generation models.
     *
     * See [Character insertion
     * bias](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-parsing#insertion-bias).
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.RecognitionJob>>}
     */
    SpeechToTextV1.prototype.createJob = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['audio'];
        var _validParams = ['audio', 'contentType', 'model', 'callbackUrl', 'events', 'userToken', 'resultsTtl', 'languageCustomizationId', 'acousticCustomizationId', 'baseModelVersion', 'customizationWeight', 'inactivityTimeout', 'keywords', 'keywordsThreshold', 'maxAlternatives', 'wordAlternativesThreshold', 'wordConfidence', 'timestamps', 'profanityFilter', 'smartFormatting', 'smartFormattingVersion', 'speakerLabels', 'grammarName', 'redaction', 'processingMetrics', 'processingMetricsInterval', 'audioMetrics', 'endOfPhraseSilenceTime', 'splitTranscriptAtPhraseEnd', 'speechDetectorSensitivity', 'backgroundAudioSuppression', 'lowLatency', 'characterInsertionBias', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var body = _params.audio;
        var query = {
            'model': _params.model,
            'callback_url': _params.callbackUrl,
            'events': _params.events,
            'user_token': _params.userToken,
            'results_ttl': _params.resultsTtl,
            'language_customization_id': _params.languageCustomizationId,
            'acoustic_customization_id': _params.acousticCustomizationId,
            'base_model_version': _params.baseModelVersion,
            'customization_weight': _params.customizationWeight,
            'inactivity_timeout': _params.inactivityTimeout,
            'keywords': _params.keywords,
            'keywords_threshold': _params.keywordsThreshold,
            'max_alternatives': _params.maxAlternatives,
            'word_alternatives_threshold': _params.wordAlternativesThreshold,
            'word_confidence': _params.wordConfidence,
            'timestamps': _params.timestamps,
            'profanity_filter': _params.profanityFilter,
            'smart_formatting': _params.smartFormatting,
            'smart_formatting_version': _params.smartFormattingVersion,
            'speaker_labels': _params.speakerLabels,
            'grammar_name': _params.grammarName,
            'redaction': _params.redaction,
            'processing_metrics': _params.processingMetrics,
            'processing_metrics_interval': _params.processingMetricsInterval,
            'audio_metrics': _params.audioMetrics,
            'end_of_phrase_silence_time': _params.endOfPhraseSilenceTime,
            'split_transcript_at_phrase_end': _params.splitTranscriptAtPhraseEnd,
            'speech_detector_sensitivity': _params.speechDetectorSensitivity,
            'background_audio_suppression': _params.backgroundAudioSuppression,
            'low_latency': _params.lowLatency,
            'character_insertion_bias': _params.characterInsertionBias,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'createJob');
        var parameters = {
            options: {
                url: '/v1/recognitions',
                method: 'POST',
                body: body,
                qs: query,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                    'Content-Type': _params.contentType,
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /**
     * Check jobs.
     *
     * Returns the ID and status of the latest 100 outstanding jobs associated with the credentials with which it is
     * called. The method also returns the creation and update times of each job, and, if a job was created with a
     * callback URL and a user token, the user token for the job. To obtain the results for a job whose status is
     * `completed` or not one of the latest 100 outstanding jobs, use the [Check a job[(#checkjob) method. A job and its
     * results remain available until you delete them with the [Delete a job](#deletejob) method or until the job's time
     * to live expires, whichever comes first.
     *
     * **See also:** [Checking the status of the latest
     * jobs](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-async#jobs).
     *
     * @param {Object} [params] - The parameters to send to the service.
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.RecognitionJobs>>}
     */
    SpeechToTextV1.prototype.checkJobs = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = [];
        var _validParams = ['signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'checkJobs');
        var parameters = {
            options: {
                url: '/v1/recognitions',
                method: 'GET',
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /**
     * Check a job.
     *
     * Returns information about the specified job. The response always includes the status of the job and its creation
     * and update times. If the status is `completed`, the response includes the results of the recognition request. You
     * must use credentials for the instance of the service that owns a job to list information about it.
     *
     * You can use the method to retrieve the results of any job, regardless of whether it was submitted with a callback
     * URL and the `recognitions.completed_with_results` event, and you can retrieve the results multiple times for as
     * long as they remain available. Use the [Check jobs](#checkjobs) method to request information about the most recent
     * jobs associated with the calling credentials.
     *
     * **See also:** [Checking the status and retrieving the results of a
     * job](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-async#job).
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {string} params.id - The identifier of the asynchronous job that is to be used for the request. You must
     * make the request with credentials for the instance of the service that owns the job.
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.RecognitionJob>>}
     */
    SpeechToTextV1.prototype.checkJob = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['id'];
        var _validParams = ['id', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var path = {
            'id': _params.id,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'checkJob');
        var parameters = {
            options: {
                url: '/v1/recognitions/{id}',
                method: 'GET',
                path: path,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /**
     * Delete a job.
     *
     * Deletes the specified job. You cannot delete a job that the service is actively processing. Once you delete a job,
     * its results are no longer available. The service automatically deletes a job and its results when the time to live
     * for the results expires. You must use credentials for the instance of the service that owns a job to delete it.
     *
     * **See also:** [Deleting a job](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-async#delete-async).
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {string} params.id - The identifier of the asynchronous job that is to be used for the request. You must
     * make the request with credentials for the instance of the service that owns the job.
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.EmptyObject>>}
     */
    SpeechToTextV1.prototype.deleteJob = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['id'];
        var _validParams = ['id', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var path = {
            'id': _params.id,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'deleteJob');
        var parameters = {
            options: {
                url: '/v1/recognitions/{id}',
                method: 'DELETE',
                path: path,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {}, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /*************************
     * customLanguageModels
     ************************/
    /**
     * Create a custom language model.
     *
     * Creates a new custom language model for a specified base model. The custom language model can be used only with the
     * base model for which it is created. The model is owned by the instance of the service whose credentials are used to
     * create it.
     *
     * You can create a maximum of 1024 custom language models per owning credentials. The service returns an error if you
     * attempt to create more than 1024 models. You do not lose any models, but you cannot create any more until your
     * model count is below the limit.
     *
     * **Important:** Effective **31 July 2023**, all previous-generation models will be removed from the service and the
     * documentation. Most previous-generation models were deprecated on 15 March 2022. You must migrate to the equivalent
     * large speech model or next-generation model by 31 July 2023. For more information, see [Migrating to large speech
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-models-migrate).
     *
     * **See also:**
     * * [Create a custom language
     * model](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-languageCreate#createModel-language)
     * * [Language support for
     * customization](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-custom-support)
     *
     * ### Large speech models and Next-generation models
     *
     *  The service supports large speech models and next-generation `Multimedia` (16 kHz) and `Telephony` (8 kHz) models
     * for many languages. Large speech models and next-generation models have higher throughput than the service's
     * previous generation of `Broadband` and `Narrowband` models. When you use large speech models and next-generation
     * models, the service can return transcriptions more quickly and also provide noticeably better transcription
     * accuracy.
     *
     * You specify a large speech model or next-generation model by using the `model` query parameter, as you do a
     * previous-generation model. Only the next-generation models support the `low_latency` parameter, and all large
     * speech models and next-generation models support the `character_insertion_bias` parameter. These parameters are not
     * available with previous-generation models.
     *
     * Large speech models and next-generation models do not support all of the speech recognition parameters that are
     * available for use with previous-generation models. Next-generation models do not support the following parameters:
     * * `acoustic_customization_id`
     * * `keywords` and `keywords_threshold`
     * * `processing_metrics` and `processing_metrics_interval`
     * * `word_alternatives_threshold`
     *
     * **Important:** Effective **31 July 2023**, all previous-generation models will be removed from the service and the
     * documentation. Most previous-generation models were deprecated on 15 March 2022. You must migrate to the equivalent
     * large speech model or next-generation model by 31 July 2023. For more information, see [Migrating to large speech
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-models-migrate).
     *
     * **See also:**
     * * [Large speech languages and
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-models-large-speech-languages)
     * * [Supported features for large speech
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-models-large-speech-languages#models-lsm-supported-features)
     * * [Next-generation languages and models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-models-ng)
     * * [Supported features for next-generation
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-models-ng#models-ng-features).
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {string} params.name - A user-defined name for the new custom language model. Use a localized name that
     * matches the language of the custom model. Use a name that describes the domain of the custom model, such as
     * `Medical custom model` or `Legal custom model`. Use a name that is unique among all custom language models that you
     * own.
     *
     * Include a maximum of 256 characters in the name. Do not use backslashes, slashes, colons, equal signs, ampersands,
     * or question marks in the name.
     * @param {string} params.baseModelName - The name of the base language model that is to be customized by the new
     * custom language model. The new custom model can be used only with the base model that it customizes.
     *
     * To determine whether a base model supports language model customization, use the [Get a model](#getmodel) method
     * and check that the attribute `custom_language_model` is set to `true`. You can also refer to [Language support for
     * customization](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-custom-support).
     * @param {string} [params.dialect] - The dialect of the specified language that is to be used with the custom
     * language model. _For all languages, it is always safe to omit this field._ The service automatically uses the
     * language identifier from the name of the base model. For example, the service automatically uses `en-US` for all US
     * English models.
     *
     * If you specify the `dialect` for a new custom model, follow these guidelines. _For non-Spanish previous-generation
     * models and for next-generation models,_ you must specify a value that matches the five-character language
     * identifier from the name of the base model. _For Spanish previous-generation models,_ you must specify one of the
     * following values:
     * * `es-ES` for Castilian Spanish (`es-ES` models)
     * * `es-LA` for Latin American Spanish (`es-AR`, `es-CL`, `es-CO`, and `es-PE` models)
     * * `es-US` for Mexican (North American) Spanish (`es-MX` models)
     *
     * All values that you pass for the `dialect` field are case-insensitive.
     * @param {string} [params.description] - A recommended description of the new custom language model. Use a localized
     * description that matches the language of the custom model. Include a maximum of 128 characters in the description.
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.LanguageModel>>}
     */
    SpeechToTextV1.prototype.createLanguageModel = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['name', 'baseModelName'];
        var _validParams = ['name', 'baseModelName', 'dialect', 'description', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var body = {
            'name': _params.name,
            'base_model_name': _params.baseModelName,
            'dialect': _params.dialect,
            'description': _params.description,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'createLanguageModel');
        var parameters = {
            options: {
                url: '/v1/customizations',
                method: 'POST',
                body: body,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                    'Content-Type': 'application/json',
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /**
     * List custom language models.
     *
     * Lists information about all custom language models that are owned by an instance of the service. Use the `language`
     * parameter to see all custom language models for the specified language. Omit the parameter to see all custom
     * language models for all languages. You must use credentials for the instance of the service that owns a model to
     * list information about it.
     *
     * **See also:**
     * * [Listing custom language
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-manageLanguageModels#listModels-language)
     * * [Language support for
     * customization](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-custom-support).
     *
     * @param {Object} [params] - The parameters to send to the service.
     * @param {string} [params.language] - The identifier of the language for which custom language or custom acoustic
     * models are to be returned. Specify the five-character language identifier; for example, specify `en-US` to see all
     * custom language or custom acoustic models that are based on US English models. Omit the parameter to see all custom
     * language or custom acoustic models that are owned by the requesting credentials.
     *
     * To determine the languages for which customization is available, see [Language support for
     * customization](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-custom-support).
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.LanguageModels>>}
     */
    SpeechToTextV1.prototype.listLanguageModels = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = [];
        var _validParams = ['language', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var query = {
            'language': _params.language,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'listLanguageModels');
        var parameters = {
            options: {
                url: '/v1/customizations',
                method: 'GET',
                qs: query,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /**
     * Get a custom language model.
     *
     * Gets information about a specified custom language model. You must use credentials for the instance of the service
     * that owns a model to list information about it.
     *
     * **See also:**
     * * [Listing custom language
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-manageLanguageModels#listModels-language)
     * * [Language support for
     * customization](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-custom-support).
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {string} params.customizationId - The customization ID (GUID) of the custom language model that is to be
     * used for the request. You must make the request with credentials for the instance of the service that owns the
     * custom model.
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.LanguageModel>>}
     */
    SpeechToTextV1.prototype.getLanguageModel = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['customizationId'];
        var _validParams = ['customizationId', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var path = {
            'customization_id': _params.customizationId,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'getLanguageModel');
        var parameters = {
            options: {
                url: '/v1/customizations/{customization_id}',
                method: 'GET',
                path: path,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /**
     * Delete a custom language model.
     *
     * Deletes an existing custom language model. The custom model cannot be deleted if another request, such as adding a
     * corpus or grammar to the model, is currently being processed. You must use credentials for the instance of the
     * service that owns a model to delete it.
     *
     * **See also:**
     * * [Deleting a custom language
     * model](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-manageLanguageModels#deleteModel-language)
     * * [Language support for
     * customization](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-custom-support).
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {string} params.customizationId - The customization ID (GUID) of the custom language model that is to be
     * used for the request. You must make the request with credentials for the instance of the service that owns the
     * custom model.
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.EmptyObject>>}
     */
    SpeechToTextV1.prototype.deleteLanguageModel = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['customizationId'];
        var _validParams = ['customizationId', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var path = {
            'customization_id': _params.customizationId,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'deleteLanguageModel');
        var parameters = {
            options: {
                url: '/v1/customizations/{customization_id}',
                method: 'DELETE',
                path: path,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /**
     * Train a custom language model.
     *
     * Initiates the training of a custom language model with new resources such as corpora, grammars, and custom words.
     * After adding, modifying, or deleting resources for a custom language model, use this method to begin the actual
     * training of the model on the latest data. You can specify whether the custom language model is to be trained with
     * all words from its words resource or only with words that were added or modified by the user directly. You must use
     * credentials for the instance of the service that owns a model to train it.
     *
     * The training method is asynchronous. It can take on the order of minutes to complete depending on the amount of
     * data on which the service is being trained and the current load on the service. The method returns an HTTP 200
     * response code to indicate that the training process has begun.
     *
     * You can monitor the status of the training by using the [Get a custom language model](#getlanguagemodel) method to
     * poll the model's status. Use a loop to check the status every 10 seconds. If you added custom words directly to a
     * custom model that is based on a next-generation model, allow for some minutes of extra training time for the model.
     *
     *
     * The method returns a `LanguageModel` object that includes `status` and `progress` fields. A status of `available`
     * means that the custom model is trained and ready to use. The service cannot accept subsequent training requests or
     * requests to add new resources until the existing request completes.
     *
     * For custom models that are based on improved base language models, training also performs an automatic upgrade to a
     * newer version of the base model. You do not need to use the [Upgrade a custom language
     * model](#upgradelanguagemodel) method to perform the upgrade.
     *
     * **See also:**
     * * [Language support for
     * customization](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-custom-support)
     * * [Train the custom language
     * model](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-languageCreate#trainModel-language)
     * * [Upgrading custom language models that are based on improved next-generation
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-custom-upgrade#custom-upgrade-language-ng)
     *
     * ### Training failures
     *
     *  Training can fail to start for the following reasons:
     * * The service is currently handling another request for the custom model, such as another training request or a
     * request to add a corpus or grammar to the model.
     * * No training data have been added to the custom model.
     * * The custom model contains one or more invalid corpora, grammars, or words (for example, a custom word has an
     * invalid sounds-like pronunciation). You can correct the invalid resources or set the `strict` parameter to `false`
     * to exclude the invalid resources from the training. The model must contain at least one valid resource for training
     * to succeed.
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {string} params.customizationId - The customization ID (GUID) of the custom language model that is to be
     * used for the request. You must make the request with credentials for the instance of the service that owns the
     * custom model.
     * @param {string} [params.wordTypeToAdd] - _For custom models that are based on previous-generation models_, the type
     * of words from the custom language model's words resource on which to train the model:
     * * `all` (the default) trains the model on all new words, regardless of whether they were extracted from corpora or
     * grammars or were added or modified by the user.
     * * `user` trains the model only on custom words that were added or modified by the user directly. The model is not
     * trained on new words extracted from corpora or grammars.
     *
     * _For custom models that are based on large speech models and next-generation models_, the service ignores the
     * `word_type_to_add` parameter. The words resource contains only custom words that the user adds or modifies
     * directly, so the parameter is unnecessary.
     * @param {number} [params.customizationWeight] - Specifies a customization weight for the custom language model. The
     * customization weight tells the service how much weight to give to words from the custom language model compared to
     * those from the base model for speech recognition. Specify a value between 0.0 and 1.0. The default value is:
     * * 0.5 for large speech models
     * * 0.3 for previous-generation models
     * * 0.2 for most next-generation models
     * * 0.1 for next-generation English and Japanese models
     *
     * The default value yields the best performance in general. Assign a higher value if your audio makes frequent use of
     * OOV words from the custom model. Use caution when setting the weight: a higher value can improve the accuracy of
     * phrases from the custom model's domain, but it can negatively affect performance on non-domain phrases.
     *
     * The value that you assign is used for all recognition requests that use the model. You can override it for any
     * recognition request by specifying a customization weight for that request.
     *
     * See [Using customization
     * weight](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-languageUse#weight).
     * @param {boolean} [params.strict] - If `false`, allows training of the custom language model to proceed as long as
     * the model contains at least one valid resource. The method returns an array of `TrainingWarning` objects that lists
     * any invalid resources. By default (`true`), training of a custom language model fails (status code 400) if the
     * model contains one or more invalid resources (corpus files, grammar files, or custom words).
     * @param {boolean} [params.force] - If `true`, forces the training of the custom language model regardless of whether
     * it contains any changes (is in the `ready` or `available` state). By default (`false`), the model must be in the
     * `ready` state to be trained. You can use the parameter to train and thus upgrade a custom model that is based on an
     * improved next-generation model. *The parameter is available only for IBM Cloud, not for IBM Cloud Pak for Data.*
     *
     * See [Upgrading a custom language model based on an improved next-generation
     * model](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-custom-upgrade#custom-upgrade-language-ng).
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.TrainingResponse>>}
     */
    SpeechToTextV1.prototype.trainLanguageModel = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['customizationId'];
        var _validParams = ['customizationId', 'wordTypeToAdd', 'customizationWeight', 'strict', 'force', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var query = {
            'word_type_to_add': _params.wordTypeToAdd,
            'customization_weight': _params.customizationWeight,
            'strict': _params.strict,
            'force': _params.force,
        };
        var path = {
            'customization_id': _params.customizationId,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'trainLanguageModel');
        var parameters = {
            options: {
                url: '/v1/customizations/{customization_id}/train',
                method: 'POST',
                qs: query,
                path: path,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /**
     * Reset a custom language model.
     *
     * Resets a custom language model by removing all corpora, grammars, and words from the model. Resetting a custom
     * language model initializes the model to its state when it was first created. Metadata such as the name and language
     * of the model are preserved, but the model's words resource is removed and must be re-created. You must use
     * credentials for the instance of the service that owns a model to reset it.
     *
     * **See also:**
     * * [Resetting a custom language
     * model](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-manageLanguageModels#resetModel-language)
     * * [Language support for
     * customization](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-custom-support).
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {string} params.customizationId - The customization ID (GUID) of the custom language model that is to be
     * used for the request. You must make the request with credentials for the instance of the service that owns the
     * custom model.
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.EmptyObject>>}
     */
    SpeechToTextV1.prototype.resetLanguageModel = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['customizationId'];
        var _validParams = ['customizationId', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var path = {
            'customization_id': _params.customizationId,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'resetLanguageModel');
        var parameters = {
            options: {
                url: '/v1/customizations/{customization_id}/reset',
                method: 'POST',
                path: path,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /**
     * Upgrade a custom language model.
     *
     * Initiates the upgrade of a custom language model to the latest version of its base language model. The upgrade
     * method is asynchronous. It can take on the order of minutes to complete depending on the amount of data in the
     * custom model and the current load on the service. A custom model must be in the `ready` or `available` state to be
     * upgraded. You must use credentials for the instance of the service that owns a model to upgrade it.
     *
     * The method returns an HTTP 200 response code to indicate that the upgrade process has begun successfully. You can
     * monitor the status of the upgrade by using the [Get a custom language model](#getlanguagemodel) method to poll the
     * model's status. The method returns a `LanguageModel` object that includes `status` and `progress` fields. Use a
     * loop to check the status every 10 seconds.
     *
     * While it is being upgraded, the custom model has the status `upgrading`. When the upgrade is complete, the model
     * resumes the status that it had prior to upgrade. The service cannot accept subsequent requests for the model until
     * the upgrade completes.
     *
     * For custom models that are based on improved base language models, the [Train a custom language
     * model](#trainlanguagemodel) method also performs an automatic upgrade to a newer version of the base model. You do
     * not need to use the upgrade method.
     *
     * **See also:**
     * * [Language support for
     * customization](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-custom-support)
     * * [Upgrading a custom language
     * model](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-custom-upgrade#custom-upgrade-language)
     * * [Upgrading custom language models that are based on improved next-generation
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-custom-upgrade#custom-upgrade-language-ng).
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {string} params.customizationId - The customization ID (GUID) of the custom language model that is to be
     * used for the request. You must make the request with credentials for the instance of the service that owns the
     * custom model.
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.EmptyObject>>}
     */
    SpeechToTextV1.prototype.upgradeLanguageModel = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['customizationId'];
        var _validParams = ['customizationId', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var path = {
            'customization_id': _params.customizationId,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'upgradeLanguageModel');
        var parameters = {
            options: {
                url: '/v1/customizations/{customization_id}/upgrade_model',
                method: 'POST',
                path: path,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /*************************
     * customCorpora
     ************************/
    /**
     * List corpora.
     *
     * Lists information about all corpora from a custom language model. The information includes the name, status, and
     * total number of words for each corpus. _For custom models that are based on previous-generation models_, it also
     * includes the number of out-of-vocabulary (OOV) words from the corpus. You must use credentials for the instance of
     * the service that owns a model to list its corpora.
     *
     * **See also:** [Listing corpora for a custom language
     * model](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-manageCorpora#listCorpora).
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {string} params.customizationId - The customization ID (GUID) of the custom language model that is to be
     * used for the request. You must make the request with credentials for the instance of the service that owns the
     * custom model.
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.Corpora>>}
     */
    SpeechToTextV1.prototype.listCorpora = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['customizationId'];
        var _validParams = ['customizationId', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var path = {
            'customization_id': _params.customizationId,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'listCorpora');
        var parameters = {
            options: {
                url: '/v1/customizations/{customization_id}/corpora',
                method: 'GET',
                path: path,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /**
     * Add a corpus.
     *
     * Adds a single corpus text file of new training data to a custom language model. Use multiple requests to submit
     * multiple corpus text files. You must use credentials for the instance of the service that owns a model to add a
     * corpus to it. Adding a corpus does not affect the custom language model until you train the model for the new data
     * by using the [Train a custom language model](#trainlanguagemodel) method.
     *
     * Submit a plain text file that contains sample sentences from the domain of interest to enable the service to parse
     * the words in context. The more sentences you add that represent the context in which speakers use words from the
     * domain, the better the service's recognition accuracy.
     *
     * The call returns an HTTP 201 response code if the corpus is valid. The service then asynchronously processes and
     * automatically extracts data from the contents of the corpus. This operation can take on the order of minutes to
     * complete depending on the current load on the service, the total number of words in the corpus, and, _for custom
     * models that are based on previous-generation models_, the number of new (out-of-vocabulary) words in the corpus.
     * You cannot submit requests to add additional resources to the custom model or to train the model until the
     * service's analysis of the corpus for the current request completes. Use the [Get a corpus](#getcorpus) method to
     * check the status of the analysis.
     *
     * _For custom models that are based on large speech models_, the service parses and extracts word sequences from one
     * or multiple corpora files. The characters help the service learn and predict character sequences from audio.
     *
     * _For custom models that are based on previous-generation models_, the service auto-populates the model's words
     * resource with words from the corpus that are not found in its base vocabulary. These words are referred to as
     * out-of-vocabulary (OOV) words. After adding a corpus, you must validate the words resource to ensure that each OOV
     * word's definition is complete and valid. You can use the [List custom words](#listwords) method to examine the
     * words resource. You can use other words method to eliminate typos and modify how words are pronounced and displayed
     * as needed.
     *
     * To add a corpus file that has the same name as an existing corpus, set the `allow_overwrite` parameter to `true`;
     * otherwise, the request fails. Overwriting an existing corpus causes the service to process the corpus text file and
     * extract its data anew. _For a custom model that is based on a previous-generation model_, the service first removes
     * any OOV words that are associated with the existing corpus from the model's words resource unless they were also
     * added by another corpus or grammar, or they have been modified in some way with the [Add custom words](#addwords)
     * or [Add a custom word](#addword) method.
     *
     * The service limits the overall amount of data that you can add to a custom model to a maximum of 10 million total
     * words from all sources combined. _For a custom model that is based on a previous-generation model_, you can add no
     * more than 90 thousand custom (OOV) words to a model. This includes words that the service extracts from corpora and
     * grammars, and words that you add directly.
     *
     * **See also:**
     * * [Add a corpus to the custom language
     * model](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-languageCreate#addCorpus)
     * * [Working with corpora for previous-generation
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-corporaWords#workingCorpora)
     * * [Working with corpora for large speech models and next-generation
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-corporaWords-ng#workingCorpora-ng)
     * * [Validating a words resource for previous-generation
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-corporaWords#validateModel)
     * * [Validating a words resource for large speech models and next-generation
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-corporaWords-ng#validateModel-ng).
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {string} params.customizationId - The customization ID (GUID) of the custom language model that is to be
     * used for the request. You must make the request with credentials for the instance of the service that owns the
     * custom model.
     * @param {string} params.corpusName - The name of the new corpus for the custom language model. Use a localized name
     * that matches the language of the custom model and reflects the contents of the corpus.
     * * Include a maximum of 128 characters in the name.
     * * Do not use characters that need to be URL-encoded. For example, do not use spaces, slashes, backslashes, colons,
     * ampersands, double quotes, plus signs, equals signs, questions marks, and so on in the name. (The service does not
     * prevent the use of these characters. But because they must be URL-encoded wherever used, their use is strongly
     * discouraged.)
     * * Do not use the name of an existing corpus or grammar that is already defined for the custom model.
     * * Do not use the name `user`, which is reserved by the service to denote custom words that are added or modified by
     * the user.
     * * Do not use the name `base_lm` or `default_lm`. Both names are reserved for future use by the service.
     * @param {NodeJS.ReadableStream | Buffer} params.corpusFile - A plain text file that contains the training data for
     * the corpus. Encode the file in UTF-8 if it contains non-ASCII characters; the service assumes UTF-8 encoding if it
     * encounters non-ASCII characters.
     *
     * Make sure that you know the character encoding of the file. You must use that same encoding when working with the
     * words in the custom language model. For more information, see [Character encoding for custom
     * words](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-manageWords#charEncoding).
     *
     * With the `curl` command, use the `--data-binary` option to upload the file for the request.
     * @param {boolean} [params.allowOverwrite] - If `true`, the specified corpus overwrites an existing corpus with the
     * same name. If `false`, the request fails if a corpus with the same name already exists. The parameter has no effect
     * if a corpus with the same name does not already exist.
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.EmptyObject>>}
     */
    SpeechToTextV1.prototype.addCorpus = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['customizationId', 'corpusName', 'corpusFile'];
        var _validParams = ['customizationId', 'corpusName', 'corpusFile', 'allowOverwrite', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var formData = {
            'corpus_file': {
                data: _params.corpusFile,
                contentType: 'text/plain',
            },
        };
        var query = {
            'allow_overwrite': _params.allowOverwrite,
        };
        var path = {
            'customization_id': _params.customizationId,
            'corpus_name': _params.corpusName,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'addCorpus');
        var parameters = {
            options: {
                url: '/v1/customizations/{customization_id}/corpora/{corpus_name}',
                method: 'POST',
                qs: query,
                path: path,
                formData: formData,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                    'Content-Type': 'multipart/form-data',
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /**
     * Get a corpus.
     *
     * Gets information about a corpus from a custom language model. The information includes the name, status, and total
     * number of words for the corpus. _For custom models that are based on previous-generation models_, it also includes
     * the number of out-of-vocabulary (OOV) words from the corpus. You must use credentials for the instance of the
     * service that owns a model to list its corpora.
     *
     * **See also:** [Listing corpora for a custom language
     * model](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-manageCorpora#listCorpora).
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {string} params.customizationId - The customization ID (GUID) of the custom language model that is to be
     * used for the request. You must make the request with credentials for the instance of the service that owns the
     * custom model.
     * @param {string} params.corpusName - The name of the corpus for the custom language model.
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.Corpus>>}
     */
    SpeechToTextV1.prototype.getCorpus = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['customizationId', 'corpusName'];
        var _validParams = ['customizationId', 'corpusName', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var path = {
            'customization_id': _params.customizationId,
            'corpus_name': _params.corpusName,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'getCorpus');
        var parameters = {
            options: {
                url: '/v1/customizations/{customization_id}/corpora/{corpus_name}',
                method: 'GET',
                path: path,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /**
     * Delete a corpus.
     *
     * Deletes an existing corpus from a custom language model. Removing a corpus does not affect the custom model until
     * you train the model with the [Train a custom language model](#trainlanguagemodel) method. You must use credentials
     * for the instance of the service that owns a model to delete its corpora.
     *
     * _For custom models that are based on previous-generation models_, the service removes any out-of-vocabulary (OOV)
     * words that are associated with the corpus from the custom model's words resource unless they were also added by
     * another corpus or grammar, or they were modified in some way with the [Add custom words](#addwords) or [Add a
     * custom word](#addword) method.
     *
     *
     *
     * **See also:** [Deleting a corpus from a custom language
     * model](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-manageCorpora#deleteCorpus).
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {string} params.customizationId - The customization ID (GUID) of the custom language model that is to be
     * used for the request. You must make the request with credentials for the instance of the service that owns the
     * custom model.
     * @param {string} params.corpusName - The name of the corpus for the custom language model.
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.EmptyObject>>}
     */
    SpeechToTextV1.prototype.deleteCorpus = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['customizationId', 'corpusName'];
        var _validParams = ['customizationId', 'corpusName', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var path = {
            'customization_id': _params.customizationId,
            'corpus_name': _params.corpusName,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'deleteCorpus');
        var parameters = {
            options: {
                url: '/v1/customizations/{customization_id}/corpora/{corpus_name}',
                method: 'DELETE',
                path: path,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /*************************
     * customWords
     ************************/
    /**
     * List custom words.
     *
     * Lists information about custom words from a custom language model. You can list all words from the custom model's
     * words resource, only custom words that were added or modified by the user, or, _for a custom model that is based on
     * a previous-generation model_, only out-of-vocabulary (OOV) words that were extracted from corpora or are recognized
     * by grammars. _For a custom model that is based on a next-generation model_, you can list all words or only those
     * words that were added directly by a user, which return the same results.
     *
     * You can also indicate the order in which the service is to return words; by default, the service lists words in
     * ascending alphabetical order. You must use credentials for the instance of the service that owns a model to list
     * information about its words.
     *
     * **See also:** [Listing words from a custom language
     * model](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-manageWords#listWords).
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {string} params.customizationId - The customization ID (GUID) of the custom language model that is to be
     * used for the request. You must make the request with credentials for the instance of the service that owns the
     * custom model.
     * @param {string} [params.wordType] - The type of words to be listed from the custom language model's words resource:
     * * `all` (the default) shows all words.
     * * `user` shows only custom words that were added or modified by the user directly.
     * * `corpora` shows only OOV that were extracted from corpora.
     * * `grammars` shows only OOV words that are recognized by grammars.
     *
     * _For a custom model that is based on a next-generation model_, only `all` and `user` apply. Both options return the
     * same results. Words from other sources are not added to custom models that are based on next-generation models.
     * @param {string} [params.sort] - Indicates the order in which the words are to be listed, `alphabetical` or by
     * `count`. You can prepend an optional `+` or `-` to an argument to indicate whether the results are to be sorted in
     * ascending or descending order. By default, words are sorted in ascending alphabetical order. For alphabetical
     * ordering, the lexicographical precedence is numeric values, uppercase letters, and lowercase letters. For count
     * ordering, values with the same count are ordered alphabetically. With the `curl` command, URL-encode the `+` symbol
     * as `%2B`.
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.Words>>}
     */
    SpeechToTextV1.prototype.listWords = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['customizationId'];
        var _validParams = ['customizationId', 'wordType', 'sort', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var query = {
            'word_type': _params.wordType,
            'sort': _params.sort,
        };
        var path = {
            'customization_id': _params.customizationId,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'listWords');
        var parameters = {
            options: {
                url: '/v1/customizations/{customization_id}/words',
                method: 'GET',
                qs: query,
                path: path,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /**
     * Add custom words.
     *
     * Adds one or more custom words to a custom language model. You can use this method to add words or to modify
     * existing words in a custom model's words resource. _For custom models that are based on previous-generation
     * models_, the service populates the words resource for a custom model with out-of-vocabulary (OOV) words from each
     * corpus or grammar that is added to the model. You can use this method to modify OOV words in the model's words
     * resource.
     *
     * _For a custom model that is based on a previous-generation model_, the words resource for a model can contain a
     * maximum of 90 thousand custom (OOV) words. This includes words that the service extracts from corpora and grammars
     * and words that you add directly.
     *
     * You must use credentials for the instance of the service that owns a model to add or modify custom words for the
     * model. Adding or modifying custom words does not affect the custom model until you train the model for the new data
     * by using the [Train a custom language model](#trainlanguagemodel) method.
     *
     * You add custom words by providing a `CustomWords` object, which is an array of `CustomWord` objects, one per word.
     * Use the object's `word` parameter to identify the word that is to be added. You can also provide one or both of the
     * optional `display_as` or `sounds_like` fields for each word.
     * * The `display_as` field provides a different way of spelling the word in a transcript. Use the parameter when you
     * want the word to appear different from its usual representation or from its spelling in training data. For example,
     * you might indicate that the word `IBM` is to be displayed as `IBM&trade;`.
     * * The `sounds_like` field provides an array of one or more pronunciations for the word. Use the parameter to
     * specify how the word can be pronounced by users. Use the parameter for words that are difficult to pronounce,
     * foreign words, acronyms, and so on. For example, you might specify that the word `IEEE` can sound like `I triple
     * E`. You can specify a maximum of five sounds-like pronunciations for a word. _For a custom model that is based on a
     * previous-generation model_, if you omit the `sounds_like` field, the service attempts to set the field to its
     * pronunciation of the word. It cannot generate a pronunciation for all words, so you must review the word's
     * definition to ensure that it is complete and valid.
     * * The `mapping_only` field provides parameter for custom words. You can use the 'mapping_only' key in custom words
     * as a form of post processing. This key parameter has a boolean value to determine whether 'sounds_like' (for
     * non-Japanese models) or word (for Japanese) is not used for the model fine-tuning, but for the replacement for
     * 'display_as'. This feature helps you when you use custom words exclusively to map 'sounds_like' (or word) to
     * 'display_as' value. When you use custom words solely for post-processing purposes that does not need fine-tuning.
     *
     * If you add a custom word that already exists in the words resource for the custom model, the new definition
     * overwrites the existing data for the word. If the service encounters an error with the input data, it returns a
     * failure code and does not add any of the words to the words resource.
     *
     * The call returns an HTTP 201 response code if the input data is valid. It then asynchronously processes the words
     * to add them to the model's words resource. The time that it takes for the analysis to complete depends on the
     * number of new words that you add but is generally faster than adding a corpus or grammar.
     *
     * You can monitor the status of the request by using the [Get a custom language model](#getlanguagemodel) method to
     * poll the model's status. Use a loop to check the status every 10 seconds. The method returns a `Customization`
     * object that includes a `status` field. A status of `ready` means that the words have been added to the custom
     * model. The service cannot accept requests to add new data or to train the model until the existing request
     * completes.
     *
     * You can use the [List custom words](#listwords) or [Get a custom word](#getword) method to review the words that
     * you add. Words with an invalid `sounds_like` field include an `error` field that describes the problem. You can use
     * other words-related methods to correct errors, eliminate typos, and modify how words are pronounced as needed.
     *
     * **See also:**
     * * [Add words to the custom language
     * model](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-languageCreate#addWords)
     * * [Working with custom words for previous-generation
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-corporaWords#workingWords)
     * * [Working with custom words for large speech models and next-generation
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-corporaWords-ng#workingWords-ng)
     * * [Validating a words resource for previous-generation
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-corporaWords#validateModel)
     * * [Validating a words resource for large speech models and next-generation
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-corporaWords-ng#validateModel-ng).
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {string} params.customizationId - The customization ID (GUID) of the custom language model that is to be
     * used for the request. You must make the request with credentials for the instance of the service that owns the
     * custom model.
     * @param {CustomWord[]} params.words - An array of `CustomWord` objects that provides information about each custom
     * word that is to be added to or updated in the custom language model.
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.EmptyObject>>}
     */
    SpeechToTextV1.prototype.addWords = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['customizationId', 'words'];
        var _validParams = ['customizationId', 'words', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var body = {
            'words': _params.words,
        };
        var path = {
            'customization_id': _params.customizationId,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'addWords');
        var parameters = {
            options: {
                url: '/v1/customizations/{customization_id}/words',
                method: 'POST',
                body: body,
                path: path,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                    'Content-Type': 'application/json',
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /**
     * Add a custom word.
     *
     * Adds a custom word to a custom language model. You can use this method to add a word or to modify an existing word
     * in the words resource. _For custom models that are based on previous-generation models_, the service populates the
     * words resource for a custom model with out-of-vocabulary (OOV) words from each corpus or grammar that is added to
     * the model. You can use this method to modify OOV words in the model's words resource.
     *
     * _For a custom model that is based on a previous-generation models_, the words resource for a model can contain a
     * maximum of 90 thousand custom (OOV) words. This includes words that the service extracts from corpora and grammars
     * and words that you add directly.
     *
     * You must use credentials for the instance of the service that owns a model to add or modify a custom word for the
     * model. Adding or modifying a custom word does not affect the custom model until you train the model for the new
     * data by using the [Train a custom language model](#trainlanguagemodel) method.
     *
     * Use the `word_name` parameter to specify the custom word that is to be added or modified. Use the `CustomWord`
     * object to provide one or both of the optional `display_as` or `sounds_like` fields for the word.
     * * The `display_as` field provides a different way of spelling the word in a transcript. Use the parameter when you
     * want the word to appear different from its usual representation or from its spelling in training data. For example,
     * you might indicate that the word `IBM` is to be displayed as `IBM&trade;`.
     * * The `sounds_like` field provides an array of one or more pronunciations for the word. Use the parameter to
     * specify how the word can be pronounced by users. Use the parameter for words that are difficult to pronounce,
     * foreign words, acronyms, and so on. For example, you might specify that the word `IEEE` can sound like `i triple
     * e`. You can specify a maximum of five sounds-like pronunciations for a word. _For custom models that are based on
     * previous-generation models_, if you omit the `sounds_like` field, the service attempts to set the field to its
     * pronunciation of the word. It cannot generate a pronunciation for all words, so you must review the word's
     * definition to ensure that it is complete and valid.
     *
     * If you add a custom word that already exists in the words resource for the custom model, the new definition
     * overwrites the existing data for the word. If the service encounters an error, it does not add the word to the
     * words resource. Use the [Get a custom word](#getword) method to review the word that you add.
     *
     * **See also:**
     * * [Add words to the custom language
     * model](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-languageCreate#addWords)
     * * [Working with custom words for previous-generation
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-corporaWords#workingWords)
     * * [Working with custom words for large speech models and next-generation
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-corporaWords-ng#workingWords-ng)
     * * [Validating a words resource for previous-generation
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-corporaWords#validateModel)
     * * [Validating a words resource for large speech models and next-generation
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-corporaWords-ng#validateModel-ng).
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {string} params.customizationId - The customization ID (GUID) of the custom language model that is to be
     * used for the request. You must make the request with credentials for the instance of the service that owns the
     * custom model.
     * @param {string} params.wordName - The custom word that is to be added to or updated in the custom language model.
     * Do not use characters that need to be URL-encoded, for example, spaces, slashes, backslashes, colons, ampersands,
     * double quotes, plus signs, equals signs, or question marks. Use a `-` (dash) or `_` (underscore) to connect the
     * tokens of compound words. URL-encode the word if it includes non-ASCII characters. For more information, see
     * [Character encoding](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-corporaWords#charEncoding).
     * @param {string} [params.word] - For the [Add custom words](#addwords) method, you must specify the custom word that
     * is to be added to or updated in the custom model. Do not use characters that need to be URL-encoded, for example,
     * spaces, slashes, backslashes, colons, ampersands, double quotes, plus signs, equals signs, or question marks. Use a
     * `-` (dash) or `_` (underscore) to connect the tokens of compound words. A Japanese custom word can include at most
     * 25 characters, not including leading or trailing spaces.
     *
     * Omit this parameter for the [Add a custom word](#addword) method.
     * @param {string[]} [params.mappingOnly] - Parameter for custom words. You can use the 'mapping_only' key in custom
     * words as a form of post processing. This key parameter has a boolean value to determine whether 'sounds_like' (for
     * non-Japanese models) or word (for Japanese) is not used for the model fine-tuning, but for the replacement for
     * 'display_as'. This feature helps you when you use custom words exclusively to map 'sounds_like' (or word) to
     * 'display_as' value. When you use custom words solely for post-processing purposes that does not need fine-tuning.
     * @param {string[]} [params.soundsLike] - As array of sounds-like pronunciations for the custom word. Specify how
     * words that are difficult to pronounce, foreign words, acronyms, and so on can be pronounced by users.
     * * _For custom models that are based on previous-generation models_, for a word that is not in the service's base
     * vocabulary, omit the parameter to have the service automatically generate a sounds-like pronunciation for the word.
     * * For a word that is in the service's base vocabulary, use the parameter to specify additional pronunciations for
     * the word. You cannot override the default pronunciation of a word; pronunciations you add augment the pronunciation
     * from the base vocabulary.
     *
     * A word can have at most five sounds-like pronunciations. A pronunciation can include at most 40 characters, not
     * including leading or trailing spaces. A Japanese pronunciation can include at most 25 characters, not including
     * leading or trailing spaces.
     * @param {string} [params.displayAs] - An alternative spelling for the custom word when it appears in a transcript.
     * Use the parameter when you want the word to have a spelling that is different from its usual representation or from
     * its spelling in corpora training data.
     *
     * _For custom models that are based on next-generation models_, the service uses the spelling of the word as the
     * display-as value if you omit the field.
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.EmptyObject>>}
     */
    SpeechToTextV1.prototype.addWord = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['customizationId', 'wordName'];
        var _validParams = ['customizationId', 'wordName', 'word', 'mappingOnly', 'soundsLike', 'displayAs', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var body = {
            'word': _params.word,
            'mapping_only': _params.mappingOnly,
            'sounds_like': _params.soundsLike,
            'display_as': _params.displayAs,
        };
        var path = {
            'customization_id': _params.customizationId,
            'word_name': _params.wordName,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'addWord');
        var parameters = {
            options: {
                url: '/v1/customizations/{customization_id}/words/{word_name}',
                method: 'PUT',
                body: body,
                path: path,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                    'Content-Type': 'application/json',
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /**
     * Get a custom word.
     *
     * Gets information about a custom word from a custom language model. You must use credentials for the instance of the
     * service that owns a model to list information about its words.
     *
     * **See also:** [Listing words from a custom language
     * model](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-manageWords#listWords).
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {string} params.customizationId - The customization ID (GUID) of the custom language model that is to be
     * used for the request. You must make the request with credentials for the instance of the service that owns the
     * custom model.
     * @param {string} params.wordName - The custom word that is to be read from the custom language model. URL-encode the
     * word if it includes non-ASCII characters. For more information, see [Character
     * encoding](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-corporaWords#charEncoding).
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.Word>>}
     */
    SpeechToTextV1.prototype.getWord = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['customizationId', 'wordName'];
        var _validParams = ['customizationId', 'wordName', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var path = {
            'customization_id': _params.customizationId,
            'word_name': _params.wordName,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'getWord');
        var parameters = {
            options: {
                url: '/v1/customizations/{customization_id}/words/{word_name}',
                method: 'GET',
                path: path,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /**
     * Delete a custom word.
     *
     * Deletes a custom word from a custom language model. You can remove any word that you added to the custom model's
     * words resource via any means. However, if the word also exists in the service's base vocabulary, the service
     * removes the word only from the words resource; the word remains in the base vocabulary. Removing a custom word does
     * not affect the custom model until you train the model with the [Train a custom language model](#trainlanguagemodel)
     * method. You must use credentials for the instance of the service that owns a model to delete its words.
     *
     * **See also:** [Deleting a word from a custom language
     * model](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-manageWords#deleteWord).
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {string} params.customizationId - The customization ID (GUID) of the custom language model that is to be
     * used for the request. You must make the request with credentials for the instance of the service that owns the
     * custom model.
     * @param {string} params.wordName - The custom word that is to be deleted from the custom language model. URL-encode
     * the word if it includes non-ASCII characters. For more information, see [Character
     * encoding](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-corporaWords#charEncoding).
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.EmptyObject>>}
     */
    SpeechToTextV1.prototype.deleteWord = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['customizationId', 'wordName'];
        var _validParams = ['customizationId', 'wordName', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var path = {
            'customization_id': _params.customizationId,
            'word_name': _params.wordName,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'deleteWord');
        var parameters = {
            options: {
                url: '/v1/customizations/{customization_id}/words/{word_name}',
                method: 'DELETE',
                path: path,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /*************************
     * customGrammars
     ************************/
    /**
     * List grammars.
     *
     * Lists information about all grammars from a custom language model. For each grammar, the information includes the
     * name, status, and (for grammars that are based on previous-generation models) the total number of out-of-vocabulary
     * (OOV) words. You must use credentials for the instance of the service that owns a model to list its grammars.
     *
     * **See also:**
     * * [Listing grammars from a custom language
     * model](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-manageGrammars#listGrammars)
     * * [Language support for
     * customization](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-custom-support).
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {string} params.customizationId - The customization ID (GUID) of the custom language model that is to be
     * used for the request. You must make the request with credentials for the instance of the service that owns the
     * custom model.
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.Grammars>>}
     */
    SpeechToTextV1.prototype.listGrammars = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['customizationId'];
        var _validParams = ['customizationId', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var path = {
            'customization_id': _params.customizationId,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'listGrammars');
        var parameters = {
            options: {
                url: '/v1/customizations/{customization_id}/grammars',
                method: 'GET',
                path: path,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /**
     * Add a grammar.
     *
     * Adds a single grammar file to a custom language model. Submit a plain text file in UTF-8 format that defines the
     * grammar. Use multiple requests to submit multiple grammar files. You must use credentials for the instance of the
     * service that owns a model to add a grammar to it. Adding a grammar does not affect the custom language model until
     * you train the model for the new data by using the [Train a custom language model](#trainlanguagemodel) method.
     *
     * The call returns an HTTP 201 response code if the grammar is valid. The service then asynchronously processes the
     * contents of the grammar and automatically extracts new words that it finds. This operation can take a few seconds
     * or minutes to complete depending on the size and complexity of the grammar, as well as the current load on the
     * service. You cannot submit requests to add additional resources to the custom model or to train the model until the
     * service's analysis of the grammar for the current request completes. Use the [Get a grammar](#getgrammar) method to
     * check the status of the analysis.
     *
     * _For grammars that are based on previous-generation models,_ the service populates the model's words resource with
     * any word that is recognized by the grammar that is not found in the model's base vocabulary. These are referred to
     * as out-of-vocabulary (OOV) words. You can use the [List custom words](#listwords) method to examine the words
     * resource and use other words-related methods to eliminate typos and modify how words are pronounced as needed. _For
     * grammars that are based on next-generation models,_ the service extracts no OOV words from the grammars.
     *
     * To add a grammar that has the same name as an existing grammar, set the `allow_overwrite` parameter to `true`;
     * otherwise, the request fails. Overwriting an existing grammar causes the service to process the grammar file and
     * extract OOV words anew. Before doing so, it removes any OOV words associated with the existing grammar from the
     * model's words resource unless they were also added by another resource or they have been modified in some way with
     * the [Add custom words](#addwords) or [Add a custom word](#addword) method.
     *
     * _For grammars that are based on previous-generation models,_ the service limits the overall amount of data that you
     * can add to a custom model to a maximum of 10 million total words from all sources combined. Also, you can add no
     * more than 90 thousand OOV words to a model. This includes words that the service extracts from corpora and grammars
     * and words that you add directly.
     *
     * **See also:**
     * * [Understanding
     * grammars](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-grammarUnderstand#grammarUnderstand)
     * * [Add a grammar to the custom language
     * model](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-grammarAdd#addGrammar)
     * * [Language support for
     * customization](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-custom-support).
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {string} params.customizationId - The customization ID (GUID) of the custom language model that is to be
     * used for the request. You must make the request with credentials for the instance of the service that owns the
     * custom model.
     * @param {string} params.grammarName - The name of the new grammar for the custom language model. Use a localized
     * name that matches the language of the custom model and reflects the contents of the grammar.
     * * Include a maximum of 128 characters in the name.
     * * Do not use characters that need to be URL-encoded. For example, do not use spaces, slashes, backslashes, colons,
     * ampersands, double quotes, plus signs, equals signs, questions marks, and so on in the name. (The service does not
     * prevent the use of these characters. But because they must be URL-encoded wherever used, their use is strongly
     * discouraged.)
     * * Do not use the name of an existing grammar or corpus that is already defined for the custom model.
     * * Do not use the name `user`, which is reserved by the service to denote custom words that are added or modified by
     * the user.
     * * Do not use the name `base_lm` or `default_lm`. Both names are reserved for future use by the service.
     * @param {NodeJS.ReadableStream | Buffer} params.grammarFile - A plain text file that contains the grammar in the
     * format specified by the `Content-Type` header. Encode the file in UTF-8 (ASCII is a subset of UTF-8). Using any
     * other encoding can lead to issues when compiling the grammar or to unexpected results in decoding. The service
     * ignores an encoding that is specified in the header of the grammar.
     *
     * With the `curl` command, use the `--data-binary` option to upload the file for the request.
     * @param {string} params.contentType - The format (MIME type) of the grammar file:
     * * `application/srgs` for Augmented Backus-Naur Form (ABNF), which uses a plain-text representation that is similar
     * to traditional BNF grammars.
     * * `application/srgs+xml` for XML Form, which uses XML elements to represent the grammar.
     * @param {boolean} [params.allowOverwrite] - If `true`, the specified grammar overwrites an existing grammar with the
     * same name. If `false`, the request fails if a grammar with the same name already exists. The parameter has no
     * effect if a grammar with the same name does not already exist.
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.EmptyObject>>}
     */
    SpeechToTextV1.prototype.addGrammar = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['customizationId', 'grammarName', 'grammarFile', 'contentType'];
        var _validParams = ['customizationId', 'grammarName', 'grammarFile', 'contentType', 'allowOverwrite', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var body = _params.grammarFile;
        var query = {
            'allow_overwrite': _params.allowOverwrite,
        };
        var path = {
            'customization_id': _params.customizationId,
            'grammar_name': _params.grammarName,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'addGrammar');
        var parameters = {
            options: {
                url: '/v1/customizations/{customization_id}/grammars/{grammar_name}',
                method: 'POST',
                body: body,
                qs: query,
                path: path,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                    'Content-Type': _params.contentType,
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /**
     * Get a grammar.
     *
     * Gets information about a grammar from a custom language model. For each grammar, the information includes the name,
     * status, and (for grammars that are based on previous-generation models) the total number of out-of-vocabulary (OOV)
     * words. You must use credentials for the instance of the service that owns a model to list its grammars.
     *
     * **See also:**
     * * [Listing grammars from a custom language
     * model](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-manageGrammars#listGrammars)
     * * [Language support for
     * customization](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-custom-support).
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {string} params.customizationId - The customization ID (GUID) of the custom language model that is to be
     * used for the request. You must make the request with credentials for the instance of the service that owns the
     * custom model.
     * @param {string} params.grammarName - The name of the grammar for the custom language model.
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.Grammar>>}
     */
    SpeechToTextV1.prototype.getGrammar = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['customizationId', 'grammarName'];
        var _validParams = ['customizationId', 'grammarName', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var path = {
            'customization_id': _params.customizationId,
            'grammar_name': _params.grammarName,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'getGrammar');
        var parameters = {
            options: {
                url: '/v1/customizations/{customization_id}/grammars/{grammar_name}',
                method: 'GET',
                path: path,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /**
     * Delete a grammar.
     *
     * Deletes an existing grammar from a custom language model. _For grammars that are based on previous-generation
     * models,_ the service removes any out-of-vocabulary (OOV) words associated with the grammar from the custom model's
     * words resource unless they were also added by another resource or they were modified in some way with the [Add
     * custom words](#addwords) or [Add a custom word](#addword) method. Removing a grammar does not affect the custom
     * model until you train the model with the [Train a custom language model](#trainlanguagemodel) method. You must use
     * credentials for the instance of the service that owns a model to delete its grammar.
     *
     * **See also:**
     * * [Deleting a grammar from a custom language
     * model](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-manageGrammars#deleteGrammar)
     * * [Language support for
     * customization](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-custom-support).
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {string} params.customizationId - The customization ID (GUID) of the custom language model that is to be
     * used for the request. You must make the request with credentials for the instance of the service that owns the
     * custom model.
     * @param {string} params.grammarName - The name of the grammar for the custom language model.
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.EmptyObject>>}
     */
    SpeechToTextV1.prototype.deleteGrammar = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['customizationId', 'grammarName'];
        var _validParams = ['customizationId', 'grammarName', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var path = {
            'customization_id': _params.customizationId,
            'grammar_name': _params.grammarName,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'deleteGrammar');
        var parameters = {
            options: {
                url: '/v1/customizations/{customization_id}/grammars/{grammar_name}',
                method: 'DELETE',
                path: path,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /*************************
     * customAcousticModels
     ************************/
    /**
     * Create a custom acoustic model.
     *
     * Creates a new custom acoustic model for a specified base model. The custom acoustic model can be used only with the
     * base model for which it is created. The model is owned by the instance of the service whose credentials are used to
     * create it.
     *
     * You can create a maximum of 1024 custom acoustic models per owning credentials. The service returns an error if you
     * attempt to create more than 1024 models. You do not lose any models, but you cannot create any more until your
     * model count is below the limit.
     *
     * **Note:** Acoustic model customization is supported only for use with previous-generation models. It is not
     * supported for large speech models and next-generation models.
     *
     * **Important:** Effective **31 July 2023**, all previous-generation models will be removed from the service and the
     * documentation. Most previous-generation models were deprecated on 15 March 2022. You must migrate to the equivalent
     * large speech model or next-generation model by 31 July 2023. For more information, see [Migrating to large speech
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-models-migrate).
     *
     * **See also:** [Create a custom acoustic
     * model](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-acoustic#createModel-acoustic).
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {string} params.name - A user-defined name for the new custom acoustic model. Use a localized name that
     * matches the language of the custom model. Use a name that describes the acoustic environment of the custom model,
     * such as `Mobile custom model` or `Noisy car custom model`. Use a name that is unique among all custom acoustic
     * models that you own.
     *
     * Include a maximum of 256 characters in the name. Do not use backslashes, slashes, colons, equal signs, ampersands,
     * or question marks in the name.
     * @param {string} params.baseModelName - The name of the base language model that is to be customized by the new
     * custom acoustic model. The new custom model can be used only with the base model that it customizes.
     *
     * To determine whether a base model supports acoustic model customization, refer to [Language support for
     * customization](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-custom-support).
     * @param {string} [params.description] - A recommended description of the new custom acoustic model. Use a localized
     * description that matches the language of the custom model. Include a maximum of 128 characters in the description.
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.AcousticModel>>}
     */
    SpeechToTextV1.prototype.createAcousticModel = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['name', 'baseModelName'];
        var _validParams = ['name', 'baseModelName', 'description', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var body = {
            'name': _params.name,
            'base_model_name': _params.baseModelName,
            'description': _params.description,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'createAcousticModel');
        var parameters = {
            options: {
                url: '/v1/acoustic_customizations',
                method: 'POST',
                body: body,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                    'Content-Type': 'application/json',
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /**
     * List custom acoustic models.
     *
     * Lists information about all custom acoustic models that are owned by an instance of the service. Use the `language`
     * parameter to see all custom acoustic models for the specified language. Omit the parameter to see all custom
     * acoustic models for all languages. You must use credentials for the instance of the service that owns a model to
     * list information about it.
     *
     * **Note:** Acoustic model customization is supported only for use with previous-generation models. It is not
     * supported for large speech models and next-generation models.
     *
     * **See also:** [Listing custom acoustic
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-manageAcousticModels#listModels-acoustic).
     *
     * @param {Object} [params] - The parameters to send to the service.
     * @param {string} [params.language] - The identifier of the language for which custom language or custom acoustic
     * models are to be returned. Specify the five-character language identifier; for example, specify `en-US` to see all
     * custom language or custom acoustic models that are based on US English models. Omit the parameter to see all custom
     * language or custom acoustic models that are owned by the requesting credentials.
     *
     * To determine the languages for which customization is available, see [Language support for
     * customization](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-custom-support).
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.AcousticModels>>}
     */
    SpeechToTextV1.prototype.listAcousticModels = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = [];
        var _validParams = ['language', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var query = {
            'language': _params.language,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'listAcousticModels');
        var parameters = {
            options: {
                url: '/v1/acoustic_customizations',
                method: 'GET',
                qs: query,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /**
     * Get a custom acoustic model.
     *
     * Gets information about a specified custom acoustic model. You must use credentials for the instance of the service
     * that owns a model to list information about it.
     *
     * **Note:** Acoustic model customization is supported only for use with previous-generation models. It is not
     * supported for large speech models and next-generation models.
     *
     * **See also:** [Listing custom acoustic
     * models](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-manageAcousticModels#listModels-acoustic).
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {string} params.customizationId - The customization ID (GUID) of the custom acoustic model that is to be
     * used for the request. You must make the request with credentials for the instance of the service that owns the
     * custom model.
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.AcousticModel>>}
     */
    SpeechToTextV1.prototype.getAcousticModel = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['customizationId'];
        var _validParams = ['customizationId', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var path = {
            'customization_id': _params.customizationId,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'getAcousticModel');
        var parameters = {
            options: {
                url: '/v1/acoustic_customizations/{customization_id}',
                method: 'GET',
                path: path,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /**
     * Delete a custom acoustic model.
     *
     * Deletes an existing custom acoustic model. The custom model cannot be deleted if another request, such as adding an
     * audio resource to the model, is currently being processed. You must use credentials for the instance of the service
     * that owns a model to delete it.
     *
     * **Note:** Acoustic model customization is supported only for use with previous-generation models. It is not
     * supported for large speech models and next-generation models.
     *
     * **See also:** [Deleting a custom acoustic
     * model](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-manageAcousticModels#deleteModel-acoustic).
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {string} params.customizationId - The customization ID (GUID) of the custom acoustic model that is to be
     * used for the request. You must make the request with credentials for the instance of the service that owns the
     * custom model.
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.EmptyObject>>}
     */
    SpeechToTextV1.prototype.deleteAcousticModel = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['customizationId'];
        var _validParams = ['customizationId', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var path = {
            'customization_id': _params.customizationId,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'deleteAcousticModel');
        var parameters = {
            options: {
                url: '/v1/acoustic_customizations/{customization_id}',
                method: 'DELETE',
                path: path,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /**
     * Train a custom acoustic model.
     *
     * Initiates the training of a custom acoustic model with new or changed audio resources. After adding or deleting
     * audio resources for a custom acoustic model, use this method to begin the actual training of the model on the
     * latest audio data. The custom acoustic model does not reflect its changed data until you train it. You must use
     * credentials for the instance of the service that owns a model to train it.
     *
     * The training method is asynchronous. Training time depends on the cumulative amount of audio data that the custom
     * acoustic model contains and the current load on the service. When you train or retrain a model, the service uses
     * all of the model's audio data in the training. Training a custom acoustic model takes approximately as long as the
     * length of its cumulative audio data. For example, it takes approximately 2 hours to train a model that contains a
     * total of 2 hours of audio. The method returns an HTTP 200 response code to indicate that the training process has
     * begun.
     *
     * You can monitor the status of the training by using the [Get a custom acoustic model](#getacousticmodel) method to
     * poll the model's status. Use a loop to check the status once a minute. The method returns an `AcousticModel` object
     * that includes `status` and `progress` fields. A status of `available` indicates that the custom model is trained
     * and ready to use. The service cannot train a model while it is handling another request for the model. The service
     * cannot accept subsequent training requests, or requests to add new audio resources, until the existing training
     * request completes.
     *
     * You can use the optional `custom_language_model_id` parameter to specify the GUID of a separately created custom
     * language model that is to be used during training. Train with a custom language model if you have verbatim
     * transcriptions of the audio files that you have added to the custom model or you have either corpora (text files)
     * or a list of words that are relevant to the contents of the audio files. For training to succeed, both of the
     * custom models must be based on the same version of the same base model, and the custom language model must be fully
     * trained and available.
     *
     * **Note:** Acoustic model customization is supported only for use with previous-generation models. It is not
     * supported for large speech models and next-generation models.
     *
     * **See also:**
     * * [Train the custom acoustic
     * model](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-acoustic#trainModel-acoustic)
     * * [Using custom acoustic and custom language models
     * together](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-useBoth#useBoth)
     *
     * ### Training failures
     *
     *  Training can fail to start for the following reasons:
     * * The service is currently handling another request for the custom model, such as another training request or a
     * request to add audio resources to the model.
     * * The custom model contains less than 10 minutes of audio that includes speech, not silence.
     * * The custom model contains more than 50 hours of audio (for IBM Cloud) or more that 200 hours of audio (for IBM
     * Cloud Pak for Data). **Note:** For IBM Cloud, the maximum hours of audio for a custom acoustic model was reduced
     * from 200 to 50 hours in August and September 2022. For more information, see [Maximum hours of
     * audio](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-audioResources#audioMaximum).
     * * You passed a custom language model with the `custom_language_model_id` query parameter that is not in the
     * available state. A custom language model must be fully trained and available to be used to train a custom acoustic
     * model.
     * * You passed an incompatible custom language model with the `custom_language_model_id` query parameter. Both custom
     * models must be based on the same version of the same base model.
     * * The custom model contains one or more invalid audio resources. You can correct the invalid audio resources or set
     * the `strict` parameter to `false` to exclude the invalid resources from the training. The model must contain at
     * least one valid resource for training to succeed.
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {string} params.customizationId - The customization ID (GUID) of the custom acoustic model that is to be
     * used for the request. You must make the request with credentials for the instance of the service that owns the
     * custom model.
     * @param {string} [params.customLanguageModelId] - The customization ID (GUID) of a custom language model that is to
     * be used during training of the custom acoustic model. Specify a custom language model that has been trained with
     * verbatim transcriptions of the audio resources or that contains words that are relevant to the contents of the
     * audio resources. The custom language model must be based on the same version of the same base model as the custom
     * acoustic model, and the custom language model must be fully trained and available. The credentials specified with
     * the request must own both custom models.
     * @param {boolean} [params.strict] - If `false`, allows training of the custom acoustic model to proceed as long as
     * the model contains at least one valid audio resource. The method returns an array of `TrainingWarning` objects that
     * lists any invalid resources. By default (`true`), training of a custom acoustic model fails (status code 400) if
     * the model contains one or more invalid audio resources.
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.TrainingResponse>>}
     */
    SpeechToTextV1.prototype.trainAcousticModel = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['customizationId'];
        var _validParams = ['customizationId', 'customLanguageModelId', 'strict', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var query = {
            'custom_language_model_id': _params.customLanguageModelId,
            'strict': _params.strict,
        };
        var path = {
            'customization_id': _params.customizationId,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'trainAcousticModel');
        var parameters = {
            options: {
                url: '/v1/acoustic_customizations/{customization_id}/train',
                method: 'POST',
                qs: query,
                path: path,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /**
     * Reset a custom acoustic model.
     *
     * Resets a custom acoustic model by removing all audio resources from the model. Resetting a custom acoustic model
     * initializes the model to its state when it was first created. Metadata such as the name and language of the model
     * are preserved, but the model's audio resources are removed and must be re-created. The service cannot reset a model
     * while it is handling another request for the model. The service cannot accept subsequent requests for the model
     * until the existing reset request completes. You must use credentials for the instance of the service that owns a
     * model to reset it.
     *
     * **Note:** Acoustic model customization is supported only for use with previous-generation models. It is not
     * supported for large speech models and next-generation models.
     *
     * **See also:** [Resetting a custom acoustic
     * model](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-manageAcousticModels#resetModel-acoustic).
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {string} params.customizationId - The customization ID (GUID) of the custom acoustic model that is to be
     * used for the request. You must make the request with credentials for the instance of the service that owns the
     * custom model.
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.EmptyObject>>}
     */
    SpeechToTextV1.prototype.resetAcousticModel = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['customizationId'];
        var _validParams = ['customizationId', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var path = {
            'customization_id': _params.customizationId,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'resetAcousticModel');
        var parameters = {
            options: {
                url: '/v1/acoustic_customizations/{customization_id}/reset',
                method: 'POST',
                path: path,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /**
     * Upgrade a custom acoustic model.
     *
     * Initiates the upgrade of a custom acoustic model to the latest version of its base language model. The upgrade
     * method is asynchronous. It can take on the order of minutes or hours to complete depending on the amount of data in
     * the custom model and the current load on the service; typically, upgrade takes approximately twice the length of
     * the total audio contained in the custom model. A custom model must be in the `ready` or `available` state to be
     * upgraded. You must use credentials for the instance of the service that owns a model to upgrade it.
     *
     * The method returns an HTTP 200 response code to indicate that the upgrade process has begun successfully. You can
     * monitor the status of the upgrade by using the [Get a custom acoustic model](#getacousticmodel) method to poll the
     * model's status. The method returns an `AcousticModel` object that includes `status` and `progress` fields. Use a
     * loop to check the status once a minute.
     *
     * While it is being upgraded, the custom model has the status `upgrading`. When the upgrade is complete, the model
     * resumes the status that it had prior to upgrade. The service cannot upgrade a model while it is handling another
     * request for the model. The service cannot accept subsequent requests for the model until the existing upgrade
     * request completes.
     *
     * If the custom acoustic model was trained with a separately created custom language model, you must use the
     * `custom_language_model_id` parameter to specify the GUID of that custom language model. The custom language model
     * must be upgraded before the custom acoustic model can be upgraded. Omit the parameter if the custom acoustic model
     * was not trained with a custom language model.
     *
     * **Note:** Acoustic model customization is supported only for use with previous-generation models. It is not
     * supported for large speech models and next-generation models.
     *
     * **See also:** [Upgrading a custom acoustic
     * model](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-custom-upgrade#custom-upgrade-acoustic).
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {string} params.customizationId - The customization ID (GUID) of the custom acoustic model that is to be
     * used for the request. You must make the request with credentials for the instance of the service that owns the
     * custom model.
     * @param {string} [params.customLanguageModelId] - If the custom acoustic model was trained with a custom language
     * model, the customization ID (GUID) of that custom language model. The custom language model must be upgraded before
     * the custom acoustic model can be upgraded. The custom language model must be fully trained and available. The
     * credentials specified with the request must own both custom models.
     * @param {boolean} [params.force] - If `true`, forces the upgrade of a custom acoustic model for which no input data
     * has been modified since it was last trained. Use this parameter only to force the upgrade of a custom acoustic
     * model that is trained with a custom language model, and only if you receive a 400 response code and the message `No
     * input data modified since last training`. See [Upgrading a custom acoustic
     * model](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-custom-upgrade#custom-upgrade-acoustic).
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.EmptyObject>>}
     */
    SpeechToTextV1.prototype.upgradeAcousticModel = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['customizationId'];
        var _validParams = ['customizationId', 'customLanguageModelId', 'force', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var query = {
            'custom_language_model_id': _params.customLanguageModelId,
            'force': _params.force,
        };
        var path = {
            'customization_id': _params.customizationId,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'upgradeAcousticModel');
        var parameters = {
            options: {
                url: '/v1/acoustic_customizations/{customization_id}/upgrade_model',
                method: 'POST',
                qs: query,
                path: path,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /*************************
     * customAudioResources
     ************************/
    /**
     * List audio resources.
     *
     * Lists information about all audio resources from a custom acoustic model. The information includes the name of the
     * resource and information about its audio data, such as its duration. It also includes the status of the audio
     * resource, which is important for checking the service's analysis of the resource in response to a request to add it
     * to the custom acoustic model. You must use credentials for the instance of the service that owns a model to list
     * its audio resources.
     *
     * **Note:** Acoustic model customization is supported only for use with previous-generation models. It is not
     * supported for large speech models and next-generation models.
     *
     * **See also:** [Listing audio resources for a custom acoustic
     * model](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-manageAudio#listAudio).
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {string} params.customizationId - The customization ID (GUID) of the custom acoustic model that is to be
     * used for the request. You must make the request with credentials for the instance of the service that owns the
     * custom model.
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.AudioResources>>}
     */
    SpeechToTextV1.prototype.listAudio = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['customizationId'];
        var _validParams = ['customizationId', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var path = {
            'customization_id': _params.customizationId,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'listAudio');
        var parameters = {
            options: {
                url: '/v1/acoustic_customizations/{customization_id}/audio',
                method: 'GET',
                path: path,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /**
     * Add an audio resource.
     *
     * Adds an audio resource to a custom acoustic model. Add audio content that reflects the acoustic characteristics of
     * the audio that you plan to transcribe. You must use credentials for the instance of the service that owns a model
     * to add an audio resource to it. Adding audio data does not affect the custom acoustic model until you train the
     * model for the new data by using the [Train a custom acoustic model](#trainacousticmodel) method.
     *
     * You can add individual audio files or an archive file that contains multiple audio files. Adding multiple audio
     * files via a single archive file is significantly more efficient than adding each file individually. You can add
     * audio resources in any format that the service supports for speech recognition.
     *
     * You can use this method to add any number of audio resources to a custom model by calling the method once for each
     * audio or archive file. You can add multiple different audio resources at the same time. You must add a minimum of
     * 10 minutes of audio that includes speech, not just silence, to a custom acoustic model before you can train it. No
     * audio resource, audio- or archive-type, can be larger than 100 MB. To add an audio resource that has the same name
     * as an existing audio resource, set the `allow_overwrite` parameter to `true`; otherwise, the request fails. A
     * custom model can contain no more than 50 hours of audio (for IBM Cloud) or 200 hours of audio (for IBM Cloud Pak
     * for Data). **Note:** For IBM Cloud, the maximum hours of audio for a custom acoustic model was reduced from 200 to
     * 50 hours in August and September 2022. For more information, see [Maximum hours of
     * audio](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-audioResources#audioMaximum).
     *
     * The method is asynchronous. It can take several seconds or minutes to complete depending on the duration of the
     * audio and, in the case of an archive file, the total number of audio files being processed. The service returns a
     * 201 response code if the audio is valid. It then asynchronously analyzes the contents of the audio file or files
     * and automatically extracts information about the audio such as its length, sampling rate, and encoding. You cannot
     * submit requests to train or upgrade the model until the service's analysis of all audio resources for current
     * requests completes.
     *
     * To determine the status of the service's analysis of the audio, use the [Get an audio resource](#getaudio) method
     * to poll the status of the audio. The method accepts the customization ID of the custom model and the name of the
     * audio resource, and it returns the status of the resource. Use a loop to check the status of the audio every few
     * seconds until it becomes `ok`.
     *
     * **Note:** Acoustic model customization is supported only for use with previous-generation models. It is not
     * supported for large speech models and next-generation models.
     *
     * **See also:** [Add audio to the custom acoustic
     * model](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-acoustic#addAudio).
     *
     * ### Content types for audio-type resources
     *
     *  You can add an individual audio file in any format that the service supports for speech recognition. For an
     * audio-type resource, use the `Content-Type` parameter to specify the audio format (MIME type) of the audio file,
     * including specifying the sampling rate, channels, and endianness where indicated.
     * * `audio/alaw` (Specify the sampling rate (`rate`) of the audio.)
     * * `audio/basic` (Use only with narrowband models.)
     * * `audio/flac`
     * * `audio/g729` (Use only with narrowband models.)
     * * `audio/l16` (Specify the sampling rate (`rate`) and optionally the number of channels (`channels`) and endianness
     * (`endianness`) of the audio.)
     * * `audio/mp3`
     * * `audio/mpeg`
     * * `audio/mulaw` (Specify the sampling rate (`rate`) of the audio.)
     * * `audio/ogg` (The service automatically detects the codec of the input audio.)
     * * `audio/ogg;codecs=opus`
     * * `audio/ogg;codecs=vorbis`
     * * `audio/wav` (Provide audio with a maximum of nine channels.)
     * * `audio/webm` (The service automatically detects the codec of the input audio.)
     * * `audio/webm;codecs=opus`
     * * `audio/webm;codecs=vorbis`
     *
     * The sampling rate of an audio file must match the sampling rate of the base model for the custom model: for
     * broadband models, at least 16 kHz; for narrowband models, at least 8 kHz. If the sampling rate of the audio is
     * higher than the minimum required rate, the service down-samples the audio to the appropriate rate. If the sampling
     * rate of the audio is lower than the minimum required rate, the service labels the audio file as `invalid`.
     *
     *  **See also:** [Supported audio
     * formats](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-audio-formats).
     *
     * ### Content types for archive-type resources
     *
     *  You can add an archive file (**.zip** or **.tar.gz** file) that contains audio files in any format that the
     * service supports for speech recognition. For an archive-type resource, use the `Content-Type` parameter to specify
     * the media type of the archive file:
     * * `application/zip` for a **.zip** file
     * * `application/gzip` for a **.tar.gz** file.
     *
     * When you add an archive-type resource, the `Contained-Content-Type` header is optional depending on the format of
     * the files that you are adding:
     * * For audio files of type `audio/alaw`, `audio/basic`, `audio/l16`, or `audio/mulaw`, you must use the
     * `Contained-Content-Type` header to specify the format of the contained audio files. Include the `rate`, `channels`,
     * and `endianness` parameters where necessary. In this case, all audio files contained in the archive file must have
     * the same audio format.
     * * For audio files of all other types, you can omit the `Contained-Content-Type` header. In this case, the audio
     * files contained in the archive file can have any of the formats not listed in the previous bullet. The audio files
     * do not need to have the same format.
     *
     * Do not use the `Contained-Content-Type` header when adding an audio-type resource.
     *
     * ### Naming restrictions for embedded audio files
     *
     *  The name of an audio file that is contained in an archive-type resource can include a maximum of 128 characters.
     * This includes the file extension and all elements of the name (for example, slashes).
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {string} params.customizationId - The customization ID (GUID) of the custom acoustic model that is to be
     * used for the request. You must make the request with credentials for the instance of the service that owns the
     * custom model.
     * @param {string} params.audioName - The name of the new audio resource for the custom acoustic model. Use a
     * localized name that matches the language of the custom model and reflects the contents of the resource.
     * * Include a maximum of 128 characters in the name.
     * * Do not use characters that need to be URL-encoded. For example, do not use spaces, slashes, backslashes, colons,
     * ampersands, double quotes, plus signs, equals signs, questions marks, and so on in the name. (The service does not
     * prevent the use of these characters. But because they must be URL-encoded wherever used, their use is strongly
     * discouraged.)
     * * Do not use the name of an audio resource that has already been added to the custom model.
     * @param {NodeJS.ReadableStream | Buffer} params.audioResource - The audio resource that is to be added to the custom
     * acoustic model, an individual audio file or an archive file.
     *
     * With the `curl` command, use the `--data-binary` option to upload the file for the request.
     * @param {string} [params.contentType] - For an audio-type resource, the format (MIME type) of the audio. For more
     * information, see **Content types for audio-type resources** in the method description.
     *
     * For an archive-type resource, the media type of the archive file. For more information, see **Content types for
     * archive-type resources** in the method description.
     * @param {string} [params.containedContentType] - _For an archive-type resource_, specify the format of the audio
     * files that are contained in the archive file if they are of type `audio/alaw`, `audio/basic`, `audio/l16`, or
     * `audio/mulaw`. Include the `rate`, `channels`, and `endianness` parameters where necessary. In this case, all audio
     * files that are contained in the archive file must be of the indicated type.
     *
     * For all other audio formats, you can omit the header. In this case, the audio files can be of multiple types as
     * long as they are not of the types listed in the previous paragraph.
     *
     * The parameter accepts all of the audio formats that are supported for use with speech recognition. For more
     * information, see **Content types for audio-type resources** in the method description.
     *
     * _For an audio-type resource_, omit the header.
     * @param {boolean} [params.allowOverwrite] - If `true`, the specified audio resource overwrites an existing audio
     * resource with the same name. If `false`, the request fails if an audio resource with the same name already exists.
     * The parameter has no effect if an audio resource with the same name does not already exist.
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.EmptyObject>>}
     */
    SpeechToTextV1.prototype.addAudio = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['customizationId', 'audioName', 'audioResource'];
        var _validParams = ['customizationId', 'audioName', 'audioResource', 'contentType', 'containedContentType', 'allowOverwrite', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var body = _params.audioResource;
        var query = {
            'allow_overwrite': _params.allowOverwrite,
        };
        var path = {
            'customization_id': _params.customizationId,
            'audio_name': _params.audioName,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'addAudio');
        var parameters = {
            options: {
                url: '/v1/acoustic_customizations/{customization_id}/audio/{audio_name}',
                method: 'POST',
                body: body,
                qs: query,
                path: path,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                    'Content-Type': _params.contentType,
                    'Contained-Content-Type': _params.containedContentType,
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /**
     * Get an audio resource.
     *
     * Gets information about an audio resource from a custom acoustic model. The method returns an `AudioListing` object
     * whose fields depend on the type of audio resource that you specify with the method's `audio_name` parameter:
     * * _For an audio-type resource_, the object's fields match those of an `AudioResource` object: `duration`, `name`,
     * `details`, and `status`.
     * * _For an archive-type resource_, the object includes a `container` field whose fields match those of an
     * `AudioResource` object. It also includes an `audio` field, which contains an array of `AudioResource` objects that
     * provides information about the audio files that are contained in the archive.
     *
     * The information includes the status of the specified audio resource. The status is important for checking the
     * service's analysis of a resource that you add to the custom model.
     * * _For an audio-type resource_, the `status` field is located in the `AudioListing` object.
     * * _For an archive-type resource_, the `status` field is located in the `AudioResource` object that is returned in
     * the `container` field.
     *
     * You must use credentials for the instance of the service that owns a model to list its audio resources.
     *
     * **Note:** Acoustic model customization is supported only for use with previous-generation models. It is not
     * supported for large speech models and next-generation models.
     *
     * **See also:** [Listing audio resources for a custom acoustic
     * model](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-manageAudio#listAudio).
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {string} params.customizationId - The customization ID (GUID) of the custom acoustic model that is to be
     * used for the request. You must make the request with credentials for the instance of the service that owns the
     * custom model.
     * @param {string} params.audioName - The name of the audio resource for the custom acoustic model.
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.AudioListing>>}
     */
    SpeechToTextV1.prototype.getAudio = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['customizationId', 'audioName'];
        var _validParams = ['customizationId', 'audioName', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var path = {
            'customization_id': _params.customizationId,
            'audio_name': _params.audioName,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'getAudio');
        var parameters = {
            options: {
                url: '/v1/acoustic_customizations/{customization_id}/audio/{audio_name}',
                method: 'GET',
                path: path,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /**
     * Delete an audio resource.
     *
     * Deletes an existing audio resource from a custom acoustic model. Deleting an archive-type audio resource removes
     * the entire archive of files. The service does not allow deletion of individual files from an archive resource.
     *
     * Removing an audio resource does not affect the custom model until you train the model on its updated data by using
     * the [Train a custom acoustic model](#trainacousticmodel) method. You can delete an existing audio resource from a
     * model while a different resource is being added to the model. You must use credentials for the instance of the
     * service that owns a model to delete its audio resources.
     *
     * **Note:** Acoustic model customization is supported only for use with previous-generation models. It is not
     * supported for large speech models and next-generation models.
     *
     * **See also:** [Deleting an audio resource from a custom acoustic
     * model](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-manageAudio#deleteAudio).
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {string} params.customizationId - The customization ID (GUID) of the custom acoustic model that is to be
     * used for the request. You must make the request with credentials for the instance of the service that owns the
     * custom model.
     * @param {string} params.audioName - The name of the audio resource for the custom acoustic model.
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.EmptyObject>>}
     */
    SpeechToTextV1.prototype.deleteAudio = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['customizationId', 'audioName'];
        var _validParams = ['customizationId', 'audioName', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var path = {
            'customization_id': _params.customizationId,
            'audio_name': _params.audioName,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'deleteAudio');
        var parameters = {
            options: {
                url: '/v1/acoustic_customizations/{customization_id}/audio/{audio_name}',
                method: 'DELETE',
                path: path,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {
                    'Accept': 'application/json',
                }, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    /*************************
     * userData
     ************************/
    /**
     * Delete labeled data.
     *
     * Deletes all data that is associated with a specified customer ID. The method deletes all data for the customer ID,
     * regardless of the method by which the information was added. The method has no effect if no data is associated with
     * the customer ID. You must issue the request with credentials for the same instance of the service that was used to
     * associate the customer ID with the data. You associate a customer ID with data by passing the `X-Watson-Metadata`
     * header with a request that passes the data.
     *
     * **Note:** If you delete an instance of the service from the service console, all data associated with that service
     * instance is automatically deleted. This includes all custom language models, corpora, grammars, and words; all
     * custom acoustic models and audio resources; all registered endpoints for the asynchronous HTTP interface; and all
     * data related to speech recognition requests.
     *
     * **See also:** [Information
     * security](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-information-security#information-security).
     *
     * @param {Object} params - The parameters to send to the service.
     * @param {string} params.customerId - The customer ID for which all data is to be deleted.
     * @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
     * @returns {Promise<SpeechToTextV1.Response<SpeechToTextV1.EmptyObject>>}
     */
    SpeechToTextV1.prototype.deleteUserData = function (params) {
        var _params = __assign({}, params);
        var _requiredParams = ['customerId'];
        var _validParams = ['customerId', 'signal', 'headers'];
        var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
        if (_validationErrors) {
            return Promise.reject(_validationErrors);
        }
        var query = {
            'customer_id': _params.customerId,
        };
        var sdkHeaders = (0, common_1.getSdkHeaders)(SpeechToTextV1.DEFAULT_SERVICE_NAME, 'v1', 'deleteUserData');
        var parameters = {
            options: {
                url: '/v1/user_data',
                method: 'DELETE',
                qs: query,
            },
            defaultOptions: extend(true, {}, this.baseOptions, {
                headers: extend(true, sdkHeaders, this.baseOptions.headers, {}, _params.headers),
                axiosOptions: {
                    signal: _params.signal,
                },
            }),
        };
        return this.createRequest(parameters);
    };
    SpeechToTextV1.DEFAULT_SERVICE_URL = 'https://api.us-south.speech-to-text.watson.cloud.ibm.com';
    SpeechToTextV1.DEFAULT_SERVICE_NAME = 'speech_to_text';
    return SpeechToTextV1;
}(ibm_cloud_sdk_core_1.BaseService));
/*************************
 * interfaces
 ************************/
(function (SpeechToTextV1) {
    /** Constants for the `getModel` operation. */
    var GetModelConstants;
    (function (GetModelConstants) {
        /** The identifier of the model in the form of its name from the output of the [List models](#listmodels) method. */
        var ModelId;
        (function (ModelId) {
            ModelId["AR_MS_BROADBANDMODEL"] = "ar-MS_BroadbandModel";
            ModelId["AR_MS_TELEPHONY"] = "ar-MS_Telephony";
            ModelId["CS_CZ_TELEPHONY"] = "cs-CZ_Telephony";
            ModelId["DE_DE"] = "de-DE";
            ModelId["DE_DE_BROADBANDMODEL"] = "de-DE_BroadbandModel";
            ModelId["DE_DE_MULTIMEDIA"] = "de-DE_Multimedia";
            ModelId["DE_DE_NARROWBANDMODEL"] = "de-DE_NarrowbandModel";
            ModelId["DE_DE_TELEPHONY"] = "de-DE_Telephony";
            ModelId["EN_AU"] = "en-AU";
            ModelId["EN_AU_BROADBANDMODEL"] = "en-AU_BroadbandModel";
            ModelId["EN_AU_MULTIMEDIA"] = "en-AU_Multimedia";
            ModelId["EN_AU_NARROWBANDMODEL"] = "en-AU_NarrowbandModel";
            ModelId["EN_AU_TELEPHONY"] = "en-AU_Telephony";
            ModelId["EN_GB"] = "en-GB";
            ModelId["EN_GB_BROADBANDMODEL"] = "en-GB_BroadbandModel";
            ModelId["EN_GB_MULTIMEDIA"] = "en-GB_Multimedia";
            ModelId["EN_GB_NARROWBANDMODEL"] = "en-GB_NarrowbandModel";
            ModelId["EN_GB_TELEPHONY"] = "en-GB_Telephony";
            ModelId["EN_IN"] = "en-IN";
            ModelId["EN_IN_TELEPHONY"] = "en-IN_Telephony";
            ModelId["EN_US"] = "en-US";
            ModelId["EN_US_BROADBANDMODEL"] = "en-US_BroadbandModel";
            ModelId["EN_US_MULTIMEDIA"] = "en-US_Multimedia";
            ModelId["EN_US_NARROWBANDMODEL"] = "en-US_NarrowbandModel";
            ModelId["EN_US_SHORTFORM_NARROWBANDMODEL"] = "en-US_ShortForm_NarrowbandModel";
            ModelId["EN_US_TELEPHONY"] = "en-US_Telephony";
            ModelId["EN_WW_MEDICAL_TELEPHONY"] = "en-WW_Medical_Telephony";
            ModelId["ES_AR"] = "es-AR";
            ModelId["ES_AR_BROADBANDMODEL"] = "es-AR_BroadbandModel";
            ModelId["ES_AR_NARROWBANDMODEL"] = "es-AR_NarrowbandModel";
            ModelId["ES_CL"] = "es-CL";
            ModelId["ES_CL_BROADBANDMODEL"] = "es-CL_BroadbandModel";
            ModelId["ES_CL_NARROWBANDMODEL"] = "es-CL_NarrowbandModel";
            ModelId["ES_CO"] = "es-CO";
            ModelId["ES_CO_BROADBANDMODEL"] = "es-CO_BroadbandModel";
            ModelId["ES_CO_NARROWBANDMODEL"] = "es-CO_NarrowbandModel";
            ModelId["ES_ES"] = "es-ES";
            ModelId["ES_ES_BROADBANDMODEL"] = "es-ES_BroadbandModel";
            ModelId["ES_ES_NARROWBANDMODEL"] = "es-ES_NarrowbandModel";
            ModelId["ES_ES_MULTIMEDIA"] = "es-ES_Multimedia";
            ModelId["ES_ES_TELEPHONY"] = "es-ES_Telephony";
            ModelId["ES_LA_TELEPHONY"] = "es-LA_Telephony";
            ModelId["ES_MX"] = "es-MX";
            ModelId["ES_MX_BROADBANDMODEL"] = "es-MX_BroadbandModel";
            ModelId["ES_MX_NARROWBANDMODEL"] = "es-MX_NarrowbandModel";
            ModelId["ES_PE"] = "es-PE";
            ModelId["ES_PE_BROADBANDMODEL"] = "es-PE_BroadbandModel";
            ModelId["ES_PE_NARROWBANDMODEL"] = "es-PE_NarrowbandModel";
            ModelId["FR_CA"] = "fr-CA";
            ModelId["FR_CA_BROADBANDMODEL"] = "fr-CA_BroadbandModel";
            ModelId["FR_CA_MULTIMEDIA"] = "fr-CA_Multimedia";
            ModelId["FR_CA_NARROWBANDMODEL"] = "fr-CA_NarrowbandModel";
            ModelId["FR_CA_TELEPHONY"] = "fr-CA_Telephony";
            ModelId["FR_FR"] = "fr-FR";
            ModelId["FR_FR_BROADBANDMODEL"] = "fr-FR_BroadbandModel";
            ModelId["FR_FR_MULTIMEDIA"] = "fr-FR_Multimedia";
            ModelId["FR_FR_NARROWBANDMODEL"] = "fr-FR_NarrowbandModel";
            ModelId["FR_FR_TELEPHONY"] = "fr-FR_Telephony";
            ModelId["HI_IN_TELEPHONY"] = "hi-IN_Telephony";
            ModelId["IT_IT_BROADBANDMODEL"] = "it-IT_BroadbandModel";
            ModelId["IT_IT_NARROWBANDMODEL"] = "it-IT_NarrowbandModel";
            ModelId["IT_IT_MULTIMEDIA"] = "it-IT_Multimedia";
            ModelId["IT_IT_TELEPHONY"] = "it-IT_Telephony";
            ModelId["JA_JP"] = "ja-JP";
            ModelId["JA_JP_BROADBANDMODEL"] = "ja-JP_BroadbandModel";
            ModelId["JA_JP_MULTIMEDIA"] = "ja-JP_Multimedia";
            ModelId["JA_JP_NARROWBANDMODEL"] = "ja-JP_NarrowbandModel";
            ModelId["JA_JP_TELEPHONY"] = "ja-JP_Telephony";
            ModelId["KO_KR_BROADBANDMODEL"] = "ko-KR_BroadbandModel";
            ModelId["KO_KR_MULTIMEDIA"] = "ko-KR_Multimedia";
            ModelId["KO_KR_NARROWBANDMODEL"] = "ko-KR_NarrowbandModel";
            ModelId["KO_KR_TELEPHONY"] = "ko-KR_Telephony";
            ModelId["NL_BE_TELEPHONY"] = "nl-BE_Telephony";
            ModelId["NL_NL_BROADBANDMODEL"] = "nl-NL_BroadbandModel";
            ModelId["NL_NL_MULTIMEDIA"] = "nl-NL_Multimedia";
            ModelId["NL_NL_NARROWBANDMODEL"] = "nl-NL_NarrowbandModel";
            ModelId["NL_NL_TELEPHONY"] = "nl-NL_Telephony";
            ModelId["PT_BR"] = "pt-BR";
            ModelId["PT_BR_BROADBANDMODEL"] = "pt-BR_BroadbandModel";
            ModelId["PT_BR_MULTIMEDIA"] = "pt-BR_Multimedia";
            ModelId["PT_BR_NARROWBANDMODEL"] = "pt-BR_NarrowbandModel";
            ModelId["PT_BR_TELEPHONY"] = "pt-BR_Telephony";
            ModelId["SV_SE_TELEPHONY"] = "sv-SE_Telephony";
            ModelId["ZH_CN_BROADBANDMODEL"] = "zh-CN_BroadbandModel";
            ModelId["ZH_CN_NARROWBANDMODEL"] = "zh-CN_NarrowbandModel";
            ModelId["ZH_CN_TELEPHONY"] = "zh-CN_Telephony";
        })(ModelId = GetModelConstants.ModelId || (GetModelConstants.ModelId = {}));
    })(GetModelConstants = SpeechToTextV1.GetModelConstants || (SpeechToTextV1.GetModelConstants = {}));
    /** Constants for the `recognize` operation. */
    var RecognizeConstants;
    (function (RecognizeConstants) {
        /** The format (MIME type) of the audio. For more information about specifying an audio format, see **Audio formats (content types)** in the method description. */
        var ContentType;
        (function (ContentType) {
            ContentType["APPLICATION_OCTET_STREAM"] = "application/octet-stream";
            ContentType["AUDIO_ALAW"] = "audio/alaw";
            ContentType["AUDIO_BASIC"] = "audio/basic";
            ContentType["AUDIO_FLAC"] = "audio/flac";
            ContentType["AUDIO_G729"] = "audio/g729";
            ContentType["AUDIO_L16"] = "audio/l16";
            ContentType["AUDIO_MP3"] = "audio/mp3";
            ContentType["AUDIO_MPEG"] = "audio/mpeg";
            ContentType["AUDIO_MULAW"] = "audio/mulaw";
            ContentType["AUDIO_OGG"] = "audio/ogg";
            ContentType["AUDIO_OGG_CODECS_OPUS"] = "audio/ogg;codecs=opus";
            ContentType["AUDIO_OGG_CODECS_VORBIS"] = "audio/ogg;codecs=vorbis";
            ContentType["AUDIO_WAV"] = "audio/wav";
            ContentType["AUDIO_WEBM"] = "audio/webm";
            ContentType["AUDIO_WEBM_CODECS_OPUS"] = "audio/webm;codecs=opus";
            ContentType["AUDIO_WEBM_CODECS_VORBIS"] = "audio/webm;codecs=vorbis";
        })(ContentType = RecognizeConstants.ContentType || (RecognizeConstants.ContentType = {}));
        /** The model to use for speech recognition. If you omit the `model` parameter, the service uses the US English `en-US_BroadbandModel` by default. _For IBM Cloud Pak for Data,_ if you do not install the `en-US_BroadbandModel`, you must either specify a model with the request or specify a new default model for your installation of the service. **See also:** * [Using a model for speech recognition](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-models-use) * [Using the default model](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-models-use#models-use-default). */
        var Model;
        (function (Model) {
            Model["AR_MS_BROADBANDMODEL"] = "ar-MS_BroadbandModel";
            Model["AR_MS_TELEPHONY"] = "ar-MS_Telephony";
            Model["CS_CZ_TELEPHONY"] = "cs-CZ_Telephony";
            Model["DE_DE"] = "de-DE";
            Model["DE_DE_BROADBANDMODEL"] = "de-DE_BroadbandModel";
            Model["DE_DE_MULTIMEDIA"] = "de-DE_Multimedia";
            Model["DE_DE_NARROWBANDMODEL"] = "de-DE_NarrowbandModel";
            Model["DE_DE_TELEPHONY"] = "de-DE_Telephony";
            Model["EN_AU"] = "en-AU";
            Model["EN_AU_BROADBANDMODEL"] = "en-AU_BroadbandModel";
            Model["EN_AU_MULTIMEDIA"] = "en-AU_Multimedia";
            Model["EN_AU_NARROWBANDMODEL"] = "en-AU_NarrowbandModel";
            Model["EN_AU_TELEPHONY"] = "en-AU_Telephony";
            Model["EN_IN"] = "en-IN";
            Model["EN_IN_TELEPHONY"] = "en-IN_Telephony";
            Model["EN_GB"] = "en-GB";
            Model["EN_GB_BROADBANDMODEL"] = "en-GB_BroadbandModel";
            Model["EN_GB_MULTIMEDIA"] = "en-GB_Multimedia";
            Model["EN_GB_NARROWBANDMODEL"] = "en-GB_NarrowbandModel";
            Model["EN_GB_TELEPHONY"] = "en-GB_Telephony";
            Model["EN_US"] = "en-US";
            Model["EN_US_BROADBANDMODEL"] = "en-US_BroadbandModel";
            Model["EN_US_MULTIMEDIA"] = "en-US_Multimedia";
            Model["EN_US_NARROWBANDMODEL"] = "en-US_NarrowbandModel";
            Model["EN_US_SHORTFORM_NARROWBANDMODEL"] = "en-US_ShortForm_NarrowbandModel";
            Model["EN_US_TELEPHONY"] = "en-US_Telephony";
            Model["EN_WW_MEDICAL_TELEPHONY"] = "en-WW_Medical_Telephony";
            Model["ES_AR"] = "es-AR";
            Model["ES_AR_BROADBANDMODEL"] = "es-AR_BroadbandModel";
            Model["ES_AR_NARROWBANDMODEL"] = "es-AR_NarrowbandModel";
            Model["ES_CL"] = "es-CL";
            Model["ES_CL_BROADBANDMODEL"] = "es-CL_BroadbandModel";
            Model["ES_CL_NARROWBANDMODEL"] = "es-CL_NarrowbandModel";
            Model["ES_CO"] = "es-CO";
            Model["ES_CO_BROADBANDMODEL"] = "es-CO_BroadbandModel";
            Model["ES_CO_NARROWBANDMODEL"] = "es-CO_NarrowbandModel";
            Model["ES_ES"] = "es-ES";
            Model["ES_ES_BROADBANDMODEL"] = "es-ES_BroadbandModel";
            Model["ES_ES_NARROWBANDMODEL"] = "es-ES_NarrowbandModel";
            Model["ES_ES_MULTIMEDIA"] = "es-ES_Multimedia";
            Model["ES_ES_TELEPHONY"] = "es-ES_Telephony";
            Model["ES_LA_TELEPHONY"] = "es-LA_Telephony";
            Model["ES_MX"] = "es-MX";
            Model["ES_MX_BROADBANDMODEL"] = "es-MX_BroadbandModel";
            Model["ES_MX_NARROWBANDMODEL"] = "es-MX_NarrowbandModel";
            Model["ES_PE"] = "es-PE";
            Model["ES_PE_BROADBANDMODEL"] = "es-PE_BroadbandModel";
            Model["ES_PE_NARROWBANDMODEL"] = "es-PE_NarrowbandModel";
            Model["FR_CA"] = "fr-CA";
            Model["FR_CA_BROADBANDMODEL"] = "fr-CA_BroadbandModel";
            Model["FR_CA_MULTIMEDIA"] = "fr-CA_Multimedia";
            Model["FR_CA_NARROWBANDMODEL"] = "fr-CA_NarrowbandModel";
            Model["FR_CA_TELEPHONY"] = "fr-CA_Telephony";
            Model["FR_FR"] = "fr-FR";
            Model["FR_FR_BROADBANDMODEL"] = "fr-FR_BroadbandModel";
            Model["FR_FR_MULTIMEDIA"] = "fr-FR_Multimedia";
            Model["FR_FR_NARROWBANDMODEL"] = "fr-FR_NarrowbandModel";
            Model["FR_FR_TELEPHONY"] = "fr-FR_Telephony";
            Model["HI_IN_TELEPHONY"] = "hi-IN_Telephony";
            Model["IT_IT_BROADBANDMODEL"] = "it-IT_BroadbandModel";
            Model["IT_IT_NARROWBANDMODEL"] = "it-IT_NarrowbandModel";
            Model["IT_IT_MULTIMEDIA"] = "it-IT_Multimedia";
            Model["IT_IT_TELEPHONY"] = "it-IT_Telephony";
            Model["JA_JP"] = "ja-JP";
            Model["JA_JP_BROADBANDMODEL"] = "ja-JP_BroadbandModel";
            Model["JA_JP_MULTIMEDIA"] = "ja-JP_Multimedia";
            Model["JA_JP_NARROWBANDMODEL"] = "ja-JP_NarrowbandModel";
            Model["JA_JP_TELEPHONY"] = "ja-JP_Telephony";
            Model["KO_KR_BROADBANDMODEL"] = "ko-KR_BroadbandModel";
            Model["KO_KR_MULTIMEDIA"] = "ko-KR_Multimedia";
            Model["KO_KR_NARROWBANDMODEL"] = "ko-KR_NarrowbandModel";
            Model["KO_KR_TELEPHONY"] = "ko-KR_Telephony";
            Model["NL_BE_TELEPHONY"] = "nl-BE_Telephony";
            Model["NL_NL_BROADBANDMODEL"] = "nl-NL_BroadbandModel";
            Model["NL_NL_MULTIMEDIA"] = "nl-NL_Multimedia";
            Model["NL_NL_NARROWBANDMODEL"] = "nl-NL_NarrowbandModel";
            Model["NL_NL_TELEPHONY"] = "nl-NL_Telephony";
            Model["PT_BR"] = "pt-BR";
            Model["PT_BR_BROADBANDMODEL"] = "pt-BR_BroadbandModel";
            Model["PT_BR_MULTIMEDIA"] = "pt-BR_Multimedia";
            Model["PT_BR_NARROWBANDMODEL"] = "pt-BR_NarrowbandModel";
            Model["PT_BR_TELEPHONY"] = "pt-BR_Telephony";
            Model["SV_SE_TELEPHONY"] = "sv-SE_Telephony";
            Model["ZH_CN_BROADBANDMODEL"] = "zh-CN_BroadbandModel";
            Model["ZH_CN_NARROWBANDMODEL"] = "zh-CN_NarrowbandModel";
            Model["ZH_CN_TELEPHONY"] = "zh-CN_Telephony";
        })(Model = RecognizeConstants.Model || (RecognizeConstants.Model = {}));
    })(RecognizeConstants = SpeechToTextV1.RecognizeConstants || (SpeechToTextV1.RecognizeConstants = {}));
    /** Constants for the `createJob` operation. */
    var CreateJobConstants;
    (function (CreateJobConstants) {
        /** The format (MIME type) of the audio. For more information about specifying an audio format, see **Audio formats (content types)** in the method description. */
        var ContentType;
        (function (ContentType) {
            ContentType["APPLICATION_OCTET_STREAM"] = "application/octet-stream";
            ContentType["AUDIO_ALAW"] = "audio/alaw";
            ContentType["AUDIO_BASIC"] = "audio/basic";
            ContentType["AUDIO_FLAC"] = "audio/flac";
            ContentType["AUDIO_G729"] = "audio/g729";
            ContentType["AUDIO_L16"] = "audio/l16";
            ContentType["AUDIO_MP3"] = "audio/mp3";
            ContentType["AUDIO_MPEG"] = "audio/mpeg";
            ContentType["AUDIO_MULAW"] = "audio/mulaw";
            ContentType["AUDIO_OGG"] = "audio/ogg";
            ContentType["AUDIO_OGG_CODECS_OPUS"] = "audio/ogg;codecs=opus";
            ContentType["AUDIO_OGG_CODECS_VORBIS"] = "audio/ogg;codecs=vorbis";
            ContentType["AUDIO_WAV"] = "audio/wav";
            ContentType["AUDIO_WEBM"] = "audio/webm";
            ContentType["AUDIO_WEBM_CODECS_OPUS"] = "audio/webm;codecs=opus";
            ContentType["AUDIO_WEBM_CODECS_VORBIS"] = "audio/webm;codecs=vorbis";
        })(ContentType = CreateJobConstants.ContentType || (CreateJobConstants.ContentType = {}));
        /** The model to use for speech recognition. If you omit the `model` parameter, the service uses the US English `en-US_BroadbandModel` by default. _For IBM Cloud Pak for Data,_ if you do not install the `en-US_BroadbandModel`, you must either specify a model with the request or specify a new default model for your installation of the service. **See also:** * [Using a model for speech recognition](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-models-use) * [Using the default model](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-models-use#models-use-default). */
        var Model;
        (function (Model) {
            Model["AR_MS_BROADBANDMODEL"] = "ar-MS_BroadbandModel";
            Model["AR_MS_TELEPHONY"] = "ar-MS_Telephony";
            Model["CS_CZ_TELEPHONY"] = "cs-CZ_Telephony";
            Model["DE_DE"] = "de-DE";
            Model["DE_DE_BROADBANDMODEL"] = "de-DE_BroadbandModel";
            Model["DE_DE_MULTIMEDIA"] = "de-DE_Multimedia";
            Model["DE_DE_NARROWBANDMODEL"] = "de-DE_NarrowbandModel";
            Model["DE_DE_TELEPHONY"] = "de-DE_Telephony";
            Model["EN_AU"] = "en-AU";
            Model["EN_AU_BROADBANDMODEL"] = "en-AU_BroadbandModel";
            Model["EN_AU_MULTIMEDIA"] = "en-AU_Multimedia";
            Model["EN_AU_NARROWBANDMODEL"] = "en-AU_NarrowbandModel";
            Model["EN_AU_TELEPHONY"] = "en-AU_Telephony";
            Model["EN_IN"] = "en-IN";
            Model["EN_IN_TELEPHONY"] = "en-IN_Telephony";
            Model["EN_GB"] = "en-GB";
            Model["EN_GB_BROADBANDMODEL"] = "en-GB_BroadbandModel";
            Model["EN_GB_MULTIMEDIA"] = "en-GB_Multimedia";
            Model["EN_GB_NARROWBANDMODEL"] = "en-GB_NarrowbandModel";
            Model["EN_GB_TELEPHONY"] = "en-GB_Telephony";
            Model["EN_US"] = "en-US";
            Model["EN_US_BROADBANDMODEL"] = "en-US_BroadbandModel";
            Model["EN_US_MULTIMEDIA"] = "en-US_Multimedia";
            Model["EN_US_NARROWBANDMODEL"] = "en-US_NarrowbandModel";
            Model["EN_US_SHORTFORM_NARROWBANDMODEL"] = "en-US_ShortForm_NarrowbandModel";
            Model["EN_US_TELEPHONY"] = "en-US_Telephony";
            Model["EN_WW_MEDICAL_TELEPHONY"] = "en-WW_Medical_Telephony";
            Model["ES_AR"] = "es-AR";
            Model["ES_AR_BROADBANDMODEL"] = "es-AR_BroadbandModel";
            Model["ES_AR_NARROWBANDMODEL"] = "es-AR_NarrowbandModel";
            Model["ES_CL"] = "es-CL";
            Model["ES_CL_BROADBANDMODEL"] = "es-CL_BroadbandModel";
            Model["ES_CL_NARROWBANDMODEL"] = "es-CL_NarrowbandModel";
            Model["ES_CO"] = "es-CO";
            Model["ES_CO_BROADBANDMODEL"] = "es-CO_BroadbandModel";
            Model["ES_CO_NARROWBANDMODEL"] = "es-CO_NarrowbandModel";
            Model["ES_ES"] = "es-ES";
            Model["ES_ES_BROADBANDMODEL"] = "es-ES_BroadbandModel";
            Model["ES_ES_NARROWBANDMODEL"] = "es-ES_NarrowbandModel";
            Model["ES_ES_MULTIMEDIA"] = "es-ES_Multimedia";
            Model["ES_ES_TELEPHONY"] = "es-ES_Telephony";
            Model["ES_LA_TELEPHONY"] = "es-LA_Telephony";
            Model["ES_MX"] = "es-MX";
            Model["ES_MX_BROADBANDMODEL"] = "es-MX_BroadbandModel";
            Model["ES_MX_NARROWBANDMODEL"] = "es-MX_NarrowbandModel";
            Model["ES_PE"] = "es-PE";
            Model["ES_PE_BROADBANDMODEL"] = "es-PE_BroadbandModel";
            Model["ES_PE_NARROWBANDMODEL"] = "es-PE_NarrowbandModel";
            Model["FR_CA"] = "fr-CA";
            Model["FR_CA_BROADBANDMODEL"] = "fr-CA_BroadbandModel";
            Model["FR_CA_MULTIMEDIA"] = "fr-CA_Multimedia";
            Model["FR_CA_NARROWBANDMODEL"] = "fr-CA_NarrowbandModel";
            Model["FR_CA_TELEPHONY"] = "fr-CA_Telephony";
            Model["FR_FR"] = "fr-FR";
            Model["FR_FR_BROADBANDMODEL"] = "fr-FR_BroadbandModel";
            Model["FR_FR_MULTIMEDIA"] = "fr-FR_Multimedia";
            Model["FR_FR_NARROWBANDMODEL"] = "fr-FR_NarrowbandModel";
            Model["FR_FR_TELEPHONY"] = "fr-FR_Telephony";
            Model["HI_IN_TELEPHONY"] = "hi-IN_Telephony";
            Model["IT_IT_BROADBANDMODEL"] = "it-IT_BroadbandModel";
            Model["IT_IT_NARROWBANDMODEL"] = "it-IT_NarrowbandModel";
            Model["IT_IT_MULTIMEDIA"] = "it-IT_Multimedia";
            Model["IT_IT_TELEPHONY"] = "it-IT_Telephony";
            Model["JA_JP"] = "ja-JP";
            Model["JA_JP_BROADBANDMODEL"] = "ja-JP_BroadbandModel";
            Model["JA_JP_MULTIMEDIA"] = "ja-JP_Multimedia";
            Model["JA_JP_NARROWBANDMODEL"] = "ja-JP_NarrowbandModel";
            Model["JA_JP_TELEPHONY"] = "ja-JP_Telephony";
            Model["KO_KR_BROADBANDMODEL"] = "ko-KR_BroadbandModel";
            Model["KO_KR_MULTIMEDIA"] = "ko-KR_Multimedia";
            Model["KO_KR_NARROWBANDMODEL"] = "ko-KR_NarrowbandModel";
            Model["KO_KR_TELEPHONY"] = "ko-KR_Telephony";
            Model["NL_BE_TELEPHONY"] = "nl-BE_Telephony";
            Model["NL_NL_BROADBANDMODEL"] = "nl-NL_BroadbandModel";
            Model["NL_NL_MULTIMEDIA"] = "nl-NL_Multimedia";
            Model["NL_NL_NARROWBANDMODEL"] = "nl-NL_NarrowbandModel";
            Model["NL_NL_TELEPHONY"] = "nl-NL_Telephony";
            Model["PT_BR"] = "pt-BR";
            Model["PT_BR_BROADBANDMODEL"] = "pt-BR_BroadbandModel";
            Model["PT_BR_MULTIMEDIA"] = "pt-BR_Multimedia";
            Model["PT_BR_NARROWBANDMODEL"] = "pt-BR_NarrowbandModel";
            Model["PT_BR_TELEPHONY"] = "pt-BR_Telephony";
            Model["SV_SE_TELEPHONY"] = "sv-SE_Telephony";
            Model["ZH_CN_BROADBANDMODEL"] = "zh-CN_BroadbandModel";
            Model["ZH_CN_NARROWBANDMODEL"] = "zh-CN_NarrowbandModel";
            Model["ZH_CN_TELEPHONY"] = "zh-CN_Telephony";
        })(Model = CreateJobConstants.Model || (CreateJobConstants.Model = {}));
        /** If the job includes a callback URL, a comma-separated list of notification events to which to subscribe. Valid events are * `recognitions.started` generates a callback notification when the service begins to process the job. * `recognitions.completed` generates a callback notification when the job is complete. You must use the [Check a job](#checkjob) method to retrieve the results before they time out or are deleted. * `recognitions.completed_with_results` generates a callback notification when the job is complete. The notification includes the results of the request. * `recognitions.failed` generates a callback notification if the service experiences an error while processing the job. The `recognitions.completed` and `recognitions.completed_with_results` events are incompatible. You can specify only of the two events. If the job includes a callback URL, omit the parameter to subscribe to the default events: `recognitions.started`, `recognitions.completed`, and `recognitions.failed`. If the job does not include a callback URL, omit the parameter. */
        var Events;
        (function (Events) {
            Events["RECOGNITIONS_STARTED"] = "recognitions.started";
            Events["RECOGNITIONS_COMPLETED"] = "recognitions.completed";
            Events["RECOGNITIONS_COMPLETED_WITH_RESULTS"] = "recognitions.completed_with_results";
            Events["RECOGNITIONS_FAILED"] = "recognitions.failed";
        })(Events = CreateJobConstants.Events || (CreateJobConstants.Events = {}));
    })(CreateJobConstants = SpeechToTextV1.CreateJobConstants || (SpeechToTextV1.CreateJobConstants = {}));
    /** Constants for the `createLanguageModel` operation. */
    var CreateLanguageModelConstants;
    (function (CreateLanguageModelConstants) {
        /** The name of the base language model that is to be customized by the new custom language model. The new custom model can be used only with the base model that it customizes. To determine whether a base model supports language model customization, use the [Get a model](#getmodel) method and check that the attribute `custom_language_model` is set to `true`. You can also refer to [Language support for customization](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-custom-support). */
        var BaseModelName;
        (function (BaseModelName) {
            BaseModelName["AR_MS_TELEPHONY"] = "ar-MS_Telephony";
            BaseModelName["CS_CZ_TELEPHONY"] = "cs-CZ_Telephony";
            BaseModelName["DE_DE"] = "de-DE";
            BaseModelName["DE_DE_BROADBANDMODEL"] = "de-DE_BroadbandModel";
            BaseModelName["DE_DE_MULTIMEDIA"] = "de-DE_Multimedia";
            BaseModelName["DE_DE_NARROWBANDMODEL"] = "de-DE_NarrowbandModel";
            BaseModelName["DE_DE_TELEPHONY"] = "de-DE_Telephony";
            BaseModelName["EN_AU"] = "en-AU";
            BaseModelName["EN_AU_BROADBANDMODEL"] = "en-AU_BroadbandModel";
            BaseModelName["EN_AU_MULTIMEDIA"] = "en-AU_Multimedia";
            BaseModelName["EN_AU_NARROWBANDMODEL"] = "en-AU_NarrowbandModel";
            BaseModelName["EN_AU_TELEPHONY"] = "en-AU_Telephony";
            BaseModelName["EN_GB"] = "en-GB";
            BaseModelName["EN_GB_BROADBANDMODEL"] = "en-GB_BroadbandModel";
            BaseModelName["EN_GB_MULTIMEDIA"] = "en-GB_Multimedia";
            BaseModelName["EN_GB_NARROWBANDMODEL"] = "en-GB_NarrowbandModel";
            BaseModelName["EN_GB_TELEPHONY"] = "en-GB_Telephony";
            BaseModelName["EN_IN"] = "en-IN";
            BaseModelName["EN_IN_TELEPHONY"] = "en-IN_Telephony";
            BaseModelName["EN_US"] = "en-US";
            BaseModelName["EN_US_BROADBANDMODEL"] = "en-US_BroadbandModel";
            BaseModelName["EN_US_MULTIMEDIA"] = "en-US_Multimedia";
            BaseModelName["EN_US_NARROWBANDMODEL"] = "en-US_NarrowbandModel";
            BaseModelName["EN_US_SHORTFORM_NARROWBANDMODEL"] = "en-US_ShortForm_NarrowbandModel";
            BaseModelName["EN_US_TELEPHONY"] = "en-US_Telephony";
            BaseModelName["EN_WW_MEDICAL_TELEPHONY"] = "en-WW_Medical_Telephony";
            BaseModelName["ES_AR"] = "es-AR";
            BaseModelName["ES_AR_BROADBANDMODEL"] = "es-AR_BroadbandModel";
            BaseModelName["ES_AR_NARROWBANDMODEL"] = "es-AR_NarrowbandModel";
            BaseModelName["ES_CL"] = "es-CL";
            BaseModelName["ES_CL_BROADBANDMODEL"] = "es-CL_BroadbandModel";
            BaseModelName["ES_CL_NARROWBANDMODEL"] = "es-CL_NarrowbandModel";
            BaseModelName["ES_CO"] = "es-CO";
            BaseModelName["ES_CO_BROADBANDMODEL"] = "es-CO_BroadbandModel";
            BaseModelName["ES_CO_NARROWBANDMODEL"] = "es-CO_NarrowbandModel";
            BaseModelName["ES_ES"] = "es-ES";
            BaseModelName["ES_ES_BROADBANDMODEL"] = "es-ES_BroadbandModel";
            BaseModelName["ES_ES_NARROWBANDMODEL"] = "es-ES_NarrowbandModel";
            BaseModelName["ES_ES_MULTIMEDIA"] = "es-ES_Multimedia";
            BaseModelName["ES_ES_TELEPHONY"] = "es-ES_Telephony";
            BaseModelName["ES_LA_TELEPHONY"] = "es-LA_Telephony";
            BaseModelName["ES_MX"] = "es-MX";
            BaseModelName["ES_MX_BROADBANDMODEL"] = "es-MX_BroadbandModel";
            BaseModelName["ES_MX_NARROWBANDMODEL"] = "es-MX_NarrowbandModel";
            BaseModelName["ES_PE"] = "es-PE";
            BaseModelName["ES_PE_BROADBANDMODEL"] = "es-PE_BroadbandModel";
            BaseModelName["ES_PE_NARROWBANDMODEL"] = "es-PE_NarrowbandModel";
            BaseModelName["FR_CA"] = "fr-CA";
            BaseModelName["FR_CA_BROADBANDMODEL"] = "fr-CA_BroadbandModel";
            BaseModelName["FR_CA_MULTIMEDIA"] = "fr-CA_Multimedia";
            BaseModelName["FR_CA_NARROWBANDMODEL"] = "fr-CA_NarrowbandModel";
            BaseModelName["FR_CA_TELEPHONY"] = "fr-CA_Telephony";
            BaseModelName["FR_FR"] = "fr-FR";
            BaseModelName["FR_FR_BROADBANDMODEL"] = "fr-FR_BroadbandModel";
            BaseModelName["FR_FR_MULTIMEDIA"] = "fr-FR_Multimedia";
            BaseModelName["FR_FR_NARROWBANDMODEL"] = "fr-FR_NarrowbandModel";
            BaseModelName["FR_FR_TELEPHONY"] = "fr-FR_Telephony";
            BaseModelName["HI_IN_TELEPHONY"] = "hi-IN_Telephony";
            BaseModelName["IT_IT_BROADBANDMODEL"] = "it-IT_BroadbandModel";
            BaseModelName["IT_IT_NARROWBANDMODEL"] = "it-IT_NarrowbandModel";
            BaseModelName["IT_IT_MULTIMEDIA"] = "it-IT_Multimedia";
            BaseModelName["IT_IT_TELEPHONY"] = "it-IT_Telephony";
            BaseModelName["JA_JP"] = "ja-JP";
            BaseModelName["JA_JP_BROADBANDMODEL"] = "ja-JP_BroadbandModel";
            BaseModelName["JA_JP_MULTIMEDIA"] = "ja-JP_Multimedia";
            BaseModelName["JA_JP_NARROWBANDMODEL"] = "ja-JP_NarrowbandModel";
            BaseModelName["JA_JP_TELEPHONY"] = "ja-JP_Telephony";
            BaseModelName["KO_KR_BROADBANDMODEL"] = "ko-KR_BroadbandModel";
            BaseModelName["KO_KR_MULTIMEDIA"] = "ko-KR_Multimedia";
            BaseModelName["KO_KR_NARROWBANDMODEL"] = "ko-KR_NarrowbandModel";
            BaseModelName["KO_KR_TELEPHONY"] = "ko-KR_Telephony";
            BaseModelName["NL_BE_TELEPHONY"] = "nl-BE_Telephony";
            BaseModelName["NL_NL_BROADBANDMODEL"] = "nl-NL_BroadbandModel";
            BaseModelName["NL_NL_MULTIMEDIA"] = "nl-NL_Multimedia";
            BaseModelName["NL_NL_NARROWBANDMODEL"] = "nl-NL_NarrowbandModel";
            BaseModelName["NL_NL_TELEPHONY"] = "nl-NL_Telephony";
            BaseModelName["PT_BR"] = "pt-BR";
            BaseModelName["PT_BR_BROADBANDMODEL"] = "pt-BR_BroadbandModel";
            BaseModelName["PT_BR_MULTIMEDIA"] = "pt-BR_Multimedia";
            BaseModelName["PT_BR_NARROWBANDMODEL"] = "pt-BR_NarrowbandModel";
            BaseModelName["PT_BR_TELEPHONY"] = "pt-BR_Telephony";
            BaseModelName["SV_SE_TELEPHONY"] = "sv-SE_Telephony";
            BaseModelName["ZH_CN_TELEPHONY"] = "zh-CN_Telephony";
        })(BaseModelName = CreateLanguageModelConstants.BaseModelName || (CreateLanguageModelConstants.BaseModelName = {}));
    })(CreateLanguageModelConstants = SpeechToTextV1.CreateLanguageModelConstants || (SpeechToTextV1.CreateLanguageModelConstants = {}));
    /** Constants for the `listLanguageModels` operation. */
    var ListLanguageModelsConstants;
    (function (ListLanguageModelsConstants) {
        /** The identifier of the language for which custom language or custom acoustic models are to be returned. Specify the five-character language identifier; for example, specify `en-US` to see all custom language or custom acoustic models that are based on US English models. Omit the parameter to see all custom language or custom acoustic models that are owned by the requesting credentials. To determine the languages for which customization is available, see [Language support for customization](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-custom-support). */
        var Language;
        (function (Language) {
            Language["AR_MS"] = "ar-MS";
            Language["CS_CZ"] = "cs-CZ";
            Language["DE_DE"] = "de-DE";
            Language["EN_AU"] = "en-AU";
            Language["EN_GB"] = "en-GB";
            Language["EN_IN"] = "en-IN";
            Language["EN_US"] = "en-US";
            Language["EN_WW"] = "en-WW";
            Language["ES_AR"] = "es-AR";
            Language["ES_CL"] = "es-CL";
            Language["ES_CO"] = "es-CO";
            Language["ES_ES"] = "es-ES";
            Language["ES_LA"] = "es-LA";
            Language["ES_MX"] = "es-MX";
            Language["ES_PE"] = "es-PE";
            Language["FR_CA"] = "fr-CA";
            Language["FR_FR"] = "fr-FR";
            Language["HI_IN"] = "hi-IN";
            Language["IT_IT"] = "it-IT";
            Language["JA_JP"] = "ja-JP";
            Language["KO_KR"] = "ko-KR";
            Language["NL_BE"] = "nl-BE";
            Language["NL_NL"] = "nl-NL";
            Language["PT_BR"] = "pt-BR";
            Language["SV_SE"] = "sv-SE";
            Language["ZH_CN"] = "zh-CN";
        })(Language = ListLanguageModelsConstants.Language || (ListLanguageModelsConstants.Language = {}));
    })(ListLanguageModelsConstants = SpeechToTextV1.ListLanguageModelsConstants || (SpeechToTextV1.ListLanguageModelsConstants = {}));
    /** Constants for the `trainLanguageModel` operation. */
    var TrainLanguageModelConstants;
    (function (TrainLanguageModelConstants) {
        /** _For custom models that are based on previous-generation models_, the type of words from the custom language model's words resource on which to train the model: * `all` (the default) trains the model on all new words, regardless of whether they were extracted from corpora or grammars or were added or modified by the user. * `user` trains the model only on custom words that were added or modified by the user directly. The model is not trained on new words extracted from corpora or grammars. _For custom models that are based on large speech models and next-generation models_, the service ignores the `word_type_to_add` parameter. The words resource contains only custom words that the user adds or modifies directly, so the parameter is unnecessary. */
        var WordTypeToAdd;
        (function (WordTypeToAdd) {
            WordTypeToAdd["ALL"] = "all";
            WordTypeToAdd["USER"] = "user";
        })(WordTypeToAdd = TrainLanguageModelConstants.WordTypeToAdd || (TrainLanguageModelConstants.WordTypeToAdd = {}));
    })(TrainLanguageModelConstants = SpeechToTextV1.TrainLanguageModelConstants || (SpeechToTextV1.TrainLanguageModelConstants = {}));
    /** Constants for the `listWords` operation. */
    var ListWordsConstants;
    (function (ListWordsConstants) {
        /** The type of words to be listed from the custom language model's words resource: * `all` (the default) shows all words. * `user` shows only custom words that were added or modified by the user directly. * `corpora` shows only OOV that were extracted from corpora. * `grammars` shows only OOV words that are recognized by grammars. _For a custom model that is based on a next-generation model_, only `all` and `user` apply. Both options return the same results. Words from other sources are not added to custom models that are based on next-generation models. */
        var WordType;
        (function (WordType) {
            WordType["ALL"] = "all";
            WordType["USER"] = "user";
            WordType["CORPORA"] = "corpora";
            WordType["GRAMMARS"] = "grammars";
        })(WordType = ListWordsConstants.WordType || (ListWordsConstants.WordType = {}));
        /** Indicates the order in which the words are to be listed, `alphabetical` or by `count`. You can prepend an optional `+` or `-` to an argument to indicate whether the results are to be sorted in ascending or descending order. By default, words are sorted in ascending alphabetical order. For alphabetical ordering, the lexicographical precedence is numeric values, uppercase letters, and lowercase letters. For count ordering, values with the same count are ordered alphabetically. With the `curl` command, URL-encode the `+` symbol as `%2B`. */
        var Sort;
        (function (Sort) {
            Sort["ALPHABETICAL"] = "alphabetical";
            Sort["COUNT"] = "count";
        })(Sort = ListWordsConstants.Sort || (ListWordsConstants.Sort = {}));
    })(ListWordsConstants = SpeechToTextV1.ListWordsConstants || (SpeechToTextV1.ListWordsConstants = {}));
    /** Constants for the `addGrammar` operation. */
    var AddGrammarConstants;
    (function (AddGrammarConstants) {
        /** The format (MIME type) of the grammar file: * `application/srgs` for Augmented Backus-Naur Form (ABNF), which uses a plain-text representation that is similar to traditional BNF grammars. * `application/srgs+xml` for XML Form, which uses XML elements to represent the grammar. */
        var ContentType;
        (function (ContentType) {
            ContentType["APPLICATION_SRGS"] = "application/srgs";
            ContentType["APPLICATION_SRGS_XML"] = "application/srgs+xml";
        })(ContentType = AddGrammarConstants.ContentType || (AddGrammarConstants.ContentType = {}));
    })(AddGrammarConstants = SpeechToTextV1.AddGrammarConstants || (SpeechToTextV1.AddGrammarConstants = {}));
    /** Constants for the `createAcousticModel` operation. */
    var CreateAcousticModelConstants;
    (function (CreateAcousticModelConstants) {
        /** The name of the base language model that is to be customized by the new custom acoustic model. The new custom model can be used only with the base model that it customizes. To determine whether a base model supports acoustic model customization, refer to [Language support for customization](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-custom-support). */
        var BaseModelName;
        (function (BaseModelName) {
            BaseModelName["AR_MS_BROADBANDMODEL"] = "ar-MS_BroadbandModel";
            BaseModelName["DE_DE"] = "de-DE";
            BaseModelName["DE_DE_BROADBANDMODEL"] = "de-DE_BroadbandModel";
            BaseModelName["DE_DE_NARROWBANDMODEL"] = "de-DE_NarrowbandModel";
            BaseModelName["EN_AU_BROADBANDMODEL"] = "en-AU_BroadbandModel";
            BaseModelName["EN_AU_NARROWBANDMODEL"] = "en-AU_NarrowbandModel";
            BaseModelName["EN_GB_BROADBANDMODEL"] = "en-GB_BroadbandModel";
            BaseModelName["EN_GB_NARROWBANDMODEL"] = "en-GB_NarrowbandModel";
            BaseModelName["EN_US_BROADBANDMODEL"] = "en-US_BroadbandModel";
            BaseModelName["EN_US_NARROWBANDMODEL"] = "en-US_NarrowbandModel";
            BaseModelName["EN_US_SHORTFORM_NARROWBANDMODEL"] = "en-US_ShortForm_NarrowbandModel";
            BaseModelName["ES_AR"] = "es-AR";
            BaseModelName["ES_AR_BROADBANDMODEL"] = "es-AR_BroadbandModel";
            BaseModelName["ES_AR_NARROWBANDMODEL"] = "es-AR_NarrowbandModel";
            BaseModelName["ES_CL"] = "es-CL";
            BaseModelName["ES_CL_BROADBANDMODEL"] = "es-CL_BroadbandModel";
            BaseModelName["ES_CL_NARROWBANDMODEL"] = "es-CL_NarrowbandModel";
            BaseModelName["ES_CO"] = "es-CO";
            BaseModelName["ES_CO_BROADBANDMODEL"] = "es-CO_BroadbandModel";
            BaseModelName["ES_CO_NARROWBANDMODEL"] = "es-CO_NarrowbandModel";
            BaseModelName["ES_ES"] = "es-ES";
            BaseModelName["ES_ES_BROADBANDMODEL"] = "es-ES_BroadbandModel";
            BaseModelName["ES_ES_NARROWBANDMODEL"] = "es-ES_NarrowbandModel";
            BaseModelName["ES_MX"] = "es-MX";
            BaseModelName["ES_MX_BROADBANDMODEL"] = "es-MX_BroadbandModel";
            BaseModelName["ES_MX_NARROWBANDMODEL"] = "es-MX_NarrowbandModel";
            BaseModelName["ES_PE"] = "es-PE";
            BaseModelName["ES_PE_BROADBANDMODEL"] = "es-PE_BroadbandModel";
            BaseModelName["ES_PE_NARROWBANDMODEL"] = "es-PE_NarrowbandModel";
            BaseModelName["FR_CA_BROADBANDMODEL"] = "fr-CA_BroadbandModel";
            BaseModelName["FR_CA_NARROWBANDMODEL"] = "fr-CA_NarrowbandModel";
            BaseModelName["FR_FR_BROADBANDMODEL"] = "fr-FR_BroadbandModel";
            BaseModelName["FR_FR_NARROWBANDMODEL"] = "fr-FR_NarrowbandModel";
            BaseModelName["IT_IT_BROADBANDMODEL"] = "it-IT_BroadbandModel";
            BaseModelName["IT_IT_NARROWBANDMODEL"] = "it-IT_NarrowbandModel";
            BaseModelName["JA_JP_BROADBANDMODEL"] = "ja-JP_BroadbandModel";
            BaseModelName["JA_JP_NARROWBANDMODEL"] = "ja-JP_NarrowbandModel";
            BaseModelName["KO_KR_BROADBANDMODEL"] = "ko-KR_BroadbandModel";
            BaseModelName["KO_KR_NARROWBANDMODEL"] = "ko-KR_NarrowbandModel";
            BaseModelName["NL_NL_BROADBANDMODEL"] = "nl-NL_BroadbandModel";
            BaseModelName["NL_NL_NARROWBANDMODEL"] = "nl-NL_NarrowbandModel";
            BaseModelName["PT_BR"] = "pt-BR";
            BaseModelName["PT_BR_BROADBANDMODEL"] = "pt-BR_BroadbandModel";
            BaseModelName["PT_BR_NARROWBANDMODEL"] = "pt-BR_NarrowbandModel";
            BaseModelName["ZH_CN_BROADBANDMODEL"] = "zh-CN_BroadbandModel";
            BaseModelName["ZH_CN_NARROWBANDMODEL"] = "zh-CN_NarrowbandModel";
        })(BaseModelName = CreateAcousticModelConstants.BaseModelName || (CreateAcousticModelConstants.BaseModelName = {}));
    })(CreateAcousticModelConstants = SpeechToTextV1.CreateAcousticModelConstants || (SpeechToTextV1.CreateAcousticModelConstants = {}));
    /** Constants for the `listAcousticModels` operation. */
    var ListAcousticModelsConstants;
    (function (ListAcousticModelsConstants) {
        /** The identifier of the language for which custom language or custom acoustic models are to be returned. Specify the five-character language identifier; for example, specify `en-US` to see all custom language or custom acoustic models that are based on US English models. Omit the parameter to see all custom language or custom acoustic models that are owned by the requesting credentials. To determine the languages for which customization is available, see [Language support for customization](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-custom-support). */
        var Language;
        (function (Language) {
            Language["AR_MS"] = "ar-MS";
            Language["CS_CZ"] = "cs-CZ";
            Language["DE_DE"] = "de-DE";
            Language["EN_AU"] = "en-AU";
            Language["EN_GB"] = "en-GB";
            Language["EN_IN"] = "en-IN";
            Language["EN_US"] = "en-US";
            Language["EN_WW"] = "en-WW";
            Language["ES_AR"] = "es-AR";
            Language["ES_CL"] = "es-CL";
            Language["ES_CO"] = "es-CO";
            Language["ES_ES"] = "es-ES";
            Language["ES_LA"] = "es-LA";
            Language["ES_MX"] = "es-MX";
            Language["ES_PE"] = "es-PE";
            Language["FR_CA"] = "fr-CA";
            Language["FR_FR"] = "fr-FR";
            Language["HI_IN"] = "hi-IN";
            Language["IT_IT"] = "it-IT";
            Language["JA_JP"] = "ja-JP";
            Language["KO_KR"] = "ko-KR";
            Language["NL_BE"] = "nl-BE";
            Language["NL_NL"] = "nl-NL";
            Language["PT_BR"] = "pt-BR";
            Language["SV_SE"] = "sv-SE";
            Language["ZH_CN"] = "zh-CN";
        })(Language = ListAcousticModelsConstants.Language || (ListAcousticModelsConstants.Language = {}));
    })(ListAcousticModelsConstants = SpeechToTextV1.ListAcousticModelsConstants || (SpeechToTextV1.ListAcousticModelsConstants = {}));
    /** Constants for the `addAudio` operation. */
    var AddAudioConstants;
    (function (AddAudioConstants) {
        /** For an audio-type resource, the format (MIME type) of the audio. For more information, see **Content types for audio-type resources** in the method description. For an archive-type resource, the media type of the archive file. For more information, see **Content types for archive-type resources** in the method description. */
        var ContentType;
        (function (ContentType) {
            ContentType["APPLICATION_ZIP"] = "application/zip";
            ContentType["APPLICATION_GZIP"] = "application/gzip";
            ContentType["AUDIO_ALAW"] = "audio/alaw";
            ContentType["AUDIO_BASIC"] = "audio/basic";
            ContentType["AUDIO_FLAC"] = "audio/flac";
            ContentType["AUDIO_G729"] = "audio/g729";
            ContentType["AUDIO_L16"] = "audio/l16";
            ContentType["AUDIO_MP3"] = "audio/mp3";
            ContentType["AUDIO_MPEG"] = "audio/mpeg";
            ContentType["AUDIO_MULAW"] = "audio/mulaw";
            ContentType["AUDIO_OGG"] = "audio/ogg";
            ContentType["AUDIO_OGG_CODECS_OPUS"] = "audio/ogg;codecs=opus";
            ContentType["AUDIO_OGG_CODECS_VORBIS"] = "audio/ogg;codecs=vorbis";
            ContentType["AUDIO_WAV"] = "audio/wav";
            ContentType["AUDIO_WEBM"] = "audio/webm";
            ContentType["AUDIO_WEBM_CODECS_OPUS"] = "audio/webm;codecs=opus";
            ContentType["AUDIO_WEBM_CODECS_VORBIS"] = "audio/webm;codecs=vorbis";
        })(ContentType = AddAudioConstants.ContentType || (AddAudioConstants.ContentType = {}));
        /** _For an archive-type resource_, specify the format of the audio files that are contained in the archive file if they are of type `audio/alaw`, `audio/basic`, `audio/l16`, or `audio/mulaw`. Include the `rate`, `channels`, and `endianness` parameters where necessary. In this case, all audio files that are contained in the archive file must be of the indicated type. For all other audio formats, you can omit the header. In this case, the audio files can be of multiple types as long as they are not of the types listed in the previous paragraph. The parameter accepts all of the audio formats that are supported for use with speech recognition. For more information, see **Content types for audio-type resources** in the method description. _For an audio-type resource_, omit the header. */
        var ContainedContentType;
        (function (ContainedContentType) {
            ContainedContentType["AUDIO_ALAW"] = "audio/alaw";
            ContainedContentType["AUDIO_BASIC"] = "audio/basic";
            ContainedContentType["AUDIO_FLAC"] = "audio/flac";
            ContainedContentType["AUDIO_G729"] = "audio/g729";
            ContainedContentType["AUDIO_L16"] = "audio/l16";
            ContainedContentType["AUDIO_MP3"] = "audio/mp3";
            ContainedContentType["AUDIO_MPEG"] = "audio/mpeg";
            ContainedContentType["AUDIO_MULAW"] = "audio/mulaw";
            ContainedContentType["AUDIO_OGG"] = "audio/ogg";
            ContainedContentType["AUDIO_OGG_CODECS_OPUS"] = "audio/ogg;codecs=opus";
            ContainedContentType["AUDIO_OGG_CODECS_VORBIS"] = "audio/ogg;codecs=vorbis";
            ContainedContentType["AUDIO_WAV"] = "audio/wav";
            ContainedContentType["AUDIO_WEBM"] = "audio/webm";
            ContainedContentType["AUDIO_WEBM_CODECS_OPUS"] = "audio/webm;codecs=opus";
            ContainedContentType["AUDIO_WEBM_CODECS_VORBIS"] = "audio/webm;codecs=vorbis";
        })(ContainedContentType = AddAudioConstants.ContainedContentType || (AddAudioConstants.ContainedContentType = {}));
    })(AddAudioConstants = SpeechToTextV1.AddAudioConstants || (SpeechToTextV1.AddAudioConstants = {}));
    var AcousticModel;
    (function (AcousticModel) {
        var Constants;
        (function (Constants) {
            /** The current status of the custom acoustic model: * `pending`: The model was created but is waiting either for valid training data to be added or for the service to finish analyzing added data. * `ready`: The model contains valid data and is ready to be trained. If the model contains a mix of valid and invalid resources, you need to set the `strict` parameter to `false` for the training to proceed. * `training`: The model is currently being trained. * `available`: The model is trained and ready to use. * `upgrading`: The model is currently being upgraded. * `failed`: Training of the model failed. */
            var Status;
            (function (Status) {
                Status["PENDING"] = "pending";
                Status["READY"] = "ready";
                Status["TRAINING"] = "training";
                Status["AVAILABLE"] = "available";
                Status["UPGRADING"] = "upgrading";
                Status["FAILED"] = "failed";
            })(Status = Constants.Status || (Constants.Status = {}));
        })(Constants = AcousticModel.Constants || (AcousticModel.Constants = {}));
    })(AcousticModel = SpeechToTextV1.AcousticModel || (SpeechToTextV1.AcousticModel = {}));
    var AudioDetails;
    (function (AudioDetails) {
        var Constants;
        (function (Constants) {
            /** The type of the audio resource: * `audio` for an individual audio file * `archive` for an archive (**.zip** or **.tar.gz**) file that contains audio files * `undetermined` for a resource that the service cannot validate (for example, if the user mistakenly passes a file that does not contain audio, such as a JPEG file). */
            var Type;
            (function (Type) {
                Type["AUDIO"] = "audio";
                Type["ARCHIVE"] = "archive";
                Type["UNDETERMINED"] = "undetermined";
            })(Type = Constants.Type || (Constants.Type = {}));
            /** _For an archive-type resource_, the format of the compressed archive: * `zip` for a **.zip** file * `gzip` for a **.tar.gz** file Omitted for an audio-type resource. */
            var Compression;
            (function (Compression) {
                Compression["ZIP"] = "zip";
                Compression["GZIP"] = "gzip";
            })(Compression = Constants.Compression || (Constants.Compression = {}));
        })(Constants = AudioDetails.Constants || (AudioDetails.Constants = {}));
    })(AudioDetails = SpeechToTextV1.AudioDetails || (SpeechToTextV1.AudioDetails = {}));
    var AudioListing;
    (function (AudioListing) {
        var Constants;
        (function (Constants) {
            /** _For an audio-type resource_, the status of the resource: * `ok`: The service successfully analyzed the audio data. The data can be used to train the custom model. * `being_processed`: The service is still analyzing the audio data. The service cannot accept requests to add new audio resources or to train the custom model until its analysis is complete. * `invalid`: The audio data is not valid for training the custom model (possibly because it has the wrong format or sampling rate, or because it is corrupted). Omitted for an archive-type resource. */
            var Status;
            (function (Status) {
                Status["OK"] = "ok";
                Status["BEING_PROCESSED"] = "being_processed";
                Status["INVALID"] = "invalid";
            })(Status = Constants.Status || (Constants.Status = {}));
        })(Constants = AudioListing.Constants || (AudioListing.Constants = {}));
    })(AudioListing = SpeechToTextV1.AudioListing || (SpeechToTextV1.AudioListing = {}));
    var AudioResource;
    (function (AudioResource) {
        var Constants;
        (function (Constants) {
            /** The status of the audio resource: * `ok`: The service successfully analyzed the audio data. The data can be used to train the custom model. * `being_processed`: The service is still analyzing the audio data. The service cannot accept requests to add new audio resources or to train the custom model until its analysis is complete. * `invalid`: The audio data is not valid for training the custom model (possibly because it has the wrong format or sampling rate, or because it is corrupted). For an archive file, the entire archive is invalid if any of its audio files are invalid. */
            var Status;
            (function (Status) {
                Status["OK"] = "ok";
                Status["BEING_PROCESSED"] = "being_processed";
                Status["INVALID"] = "invalid";
            })(Status = Constants.Status || (Constants.Status = {}));
        })(Constants = AudioResource.Constants || (AudioResource.Constants = {}));
    })(AudioResource = SpeechToTextV1.AudioResource || (SpeechToTextV1.AudioResource = {}));
    var Corpus;
    (function (Corpus) {
        var Constants;
        (function (Constants) {
            /** The status of the corpus: * `analyzed`: The service successfully analyzed the corpus. The custom model can be trained with data from the corpus. * `being_processed`: The service is still analyzing the corpus. The service cannot accept requests to add new resources or to train the custom model. * `undetermined`: The service encountered an error while processing the corpus. The `error` field describes the failure. */
            var Status;
            (function (Status) {
                Status["ANALYZED"] = "analyzed";
                Status["BEING_PROCESSED"] = "being_processed";
                Status["UNDETERMINED"] = "undetermined";
            })(Status = Constants.Status || (Constants.Status = {}));
        })(Constants = Corpus.Constants || (Corpus.Constants = {}));
    })(Corpus = SpeechToTextV1.Corpus || (SpeechToTextV1.Corpus = {}));
    var Grammar;
    (function (Grammar) {
        var Constants;
        (function (Constants) {
            /** The status of the grammar: * `analyzed`: The service successfully analyzed the grammar. The custom model can be trained with data from the grammar. * `being_processed`: The service is still analyzing the grammar. The service cannot accept requests to add new resources or to train the custom model. * `undetermined`: The service encountered an error while processing the grammar. The `error` field describes the failure. */
            var Status;
            (function (Status) {
                Status["ANALYZED"] = "analyzed";
                Status["BEING_PROCESSED"] = "being_processed";
                Status["UNDETERMINED"] = "undetermined";
            })(Status = Constants.Status || (Constants.Status = {}));
        })(Constants = Grammar.Constants || (Grammar.Constants = {}));
    })(Grammar = SpeechToTextV1.Grammar || (SpeechToTextV1.Grammar = {}));
    var LanguageModel;
    (function (LanguageModel) {
        var Constants;
        (function (Constants) {
            /** The current status of the custom language model: * `pending`: The model was created but is waiting either for valid training data to be added or for the service to finish analyzing added data. * `ready`: The model contains valid data and is ready to be trained. If the model contains a mix of valid and invalid resources, you need to set the `strict` parameter to `false` for the training to proceed. * `training`: The model is currently being trained. * `available`: The model is trained and ready to use. * `upgrading`: The model is currently being upgraded. * `failed`: Training of the model failed. */
            var Status;
            (function (Status) {
                Status["PENDING"] = "pending";
                Status["READY"] = "ready";
                Status["TRAINING"] = "training";
                Status["AVAILABLE"] = "available";
                Status["UPGRADING"] = "upgrading";
                Status["FAILED"] = "failed";
            })(Status = Constants.Status || (Constants.Status = {}));
        })(Constants = LanguageModel.Constants || (LanguageModel.Constants = {}));
    })(LanguageModel = SpeechToTextV1.LanguageModel || (SpeechToTextV1.LanguageModel = {}));
    var RecognitionJob;
    (function (RecognitionJob) {
        var Constants;
        (function (Constants) {
            /** The current status of the job: * `waiting`: The service is preparing the job for processing. The service returns this status when the job is initially created or when it is waiting for capacity to process the job. The job remains in this state until the service has the capacity to begin processing it. * `processing`: The service is actively processing the job. * `completed`: The service has finished processing the job. If the job specified a callback URL and the event `recognitions.completed_with_results`, the service sent the results with the callback notification. Otherwise, you must retrieve the results by checking the individual job. * `failed`: The job failed. */
            var Status;
            (function (Status) {
                Status["WAITING"] = "waiting";
                Status["PROCESSING"] = "processing";
                Status["COMPLETED"] = "completed";
                Status["FAILED"] = "failed";
            })(Status = Constants.Status || (Constants.Status = {}));
        })(Constants = RecognitionJob.Constants || (RecognitionJob.Constants = {}));
    })(RecognitionJob = SpeechToTextV1.RecognitionJob || (SpeechToTextV1.RecognitionJob = {}));
    var RegisterStatus;
    (function (RegisterStatus) {
        var Constants;
        (function (Constants) {
            /** The current status of the job: * `created`: The service successfully allowlisted the callback URL as a result of the call. * `already created`: The URL was already allowlisted. */
            var Status;
            (function (Status) {
                Status["CREATED"] = "created";
                Status["ALREADY_CREATED"] = "already created";
            })(Status = Constants.Status || (Constants.Status = {}));
        })(Constants = RegisterStatus.Constants || (RegisterStatus.Constants = {}));
    })(RegisterStatus = SpeechToTextV1.RegisterStatus || (SpeechToTextV1.RegisterStatus = {}));
    var SpeechRecognitionResult;
    (function (SpeechRecognitionResult) {
        var Constants;
        (function (Constants) {
            /** If the `split_transcript_at_phrase_end` parameter is `true`, describes the reason for the split: * `end_of_data` - The end of the input audio stream. * `full_stop` - A full semantic stop, such as for the conclusion of a grammatical sentence. The insertion of splits is influenced by the base language model and biased by custom language models and grammars. * `reset` - The amount of audio that is currently being processed exceeds the two-minute maximum. The service splits the transcript to avoid excessive memory use. * `silence` - A pause or silence that is at least as long as the pause interval. */
            var EndOfUtterance;
            (function (EndOfUtterance) {
                EndOfUtterance["END_OF_DATA"] = "end_of_data";
                EndOfUtterance["FULL_STOP"] = "full_stop";
                EndOfUtterance["RESET"] = "reset";
                EndOfUtterance["SILENCE"] = "silence";
            })(EndOfUtterance = Constants.EndOfUtterance || (Constants.EndOfUtterance = {}));
        })(Constants = SpeechRecognitionResult.Constants || (SpeechRecognitionResult.Constants = {}));
    })(SpeechRecognitionResult = SpeechToTextV1.SpeechRecognitionResult || (SpeechToTextV1.SpeechRecognitionResult = {}));
    var TrainingWarning;
    (function (TrainingWarning) {
        var Constants;
        (function (Constants) {
            /** An identifier for the type of invalid resources listed in the `description` field. */
            var Code;
            (function (Code) {
                Code["INVALID_AUDIO_FILES"] = "invalid_audio_files";
                Code["INVALID_CORPUS_FILES"] = "invalid_corpus_files";
                Code["INVALID_GRAMMAR_FILES"] = "invalid_grammar_files";
                Code["INVALID_WORDS"] = "invalid_words";
            })(Code = Constants.Code || (Constants.Code = {}));
        })(Constants = TrainingWarning.Constants || (TrainingWarning.Constants = {}));
    })(TrainingWarning = SpeechToTextV1.TrainingWarning || (SpeechToTextV1.TrainingWarning = {}));
})(SpeechToTextV1 || (SpeechToTextV1 = {}));
module.exports = SpeechToTextV1;