UNPKG

microsoft-cognitiveservices-speech-sdk

Version:
20 lines (18 loc) 1.09 kB
"use strict"; // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT license. // Multi-device Conversation is a Preview feature. Object.defineProperty(exports, "__esModule", { value: true }); exports.ParticipantChangedReason = void 0; var ParticipantChangedReason; (function (ParticipantChangedReason) { /** Participant has joined the conversation. */ ParticipantChangedReason[ParticipantChangedReason["JoinedConversation"] = 0] = "JoinedConversation"; /** Participant has left the conversation. This could be voluntary, or involuntary * (e.g. they are experiencing networking issues). */ ParticipantChangedReason[ParticipantChangedReason["LeftConversation"] = 1] = "LeftConversation"; /** The participants' state has changed (e.g. they became muted, changed their nickname). */ ParticipantChangedReason[ParticipantChangedReason["Updated"] = 2] = "Updated"; })(ParticipantChangedReason = exports.ParticipantChangedReason || (exports.ParticipantChangedReason = {})); //# sourceMappingURL=ParticipantChangedReason.js.map