microsoft-cognitiveservices-speech-sdk
Version:
Microsoft Cognitive Services Speech SDK for JavaScript
21 lines (19 loc) • 598 B
JavaScript
;
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
Object.defineProperty(exports, "__esModule", { value: true });
exports.ConnectionOpenResponse = void 0;
class ConnectionOpenResponse {
constructor(statusCode, reason) {
this.privStatusCode = statusCode;
this.privReason = reason;
}
get statusCode() {
return this.privStatusCode;
}
get reason() {
return this.privReason;
}
}
exports.ConnectionOpenResponse = ConnectionOpenResponse;
//# sourceMappingURL=ConnectionOpenResponse.js.map