@voice-ping/cognitive-services-speech
Version:
VoicePing Cognitive Services Speech SDK for JavaScript forked from Microsoft
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