@euirim/microsoft-cognitiveservices-speech-sdk
Version:
Microsoft Cognitive Services Speech SDK for JavaScript
17 lines (15 loc) • 430 B
JavaScript
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
export class ConnectionOpenResponse {
constructor(statusCode, reason) {
this.privStatusCode = statusCode;
this.privReason = reason;
}
get statusCode() {
return this.privStatusCode;
}
get reason() {
return this.privReason;
}
}
//# sourceMappingURL=ConnectionOpenResponse.js.map