{"version":3,"sources":["src/sdk/SessionEventArgs.ts"],"names":[],"mappings":"AAGA;;;GAGG;AACH,qBAAa,gBAAgB;IACzB,OAAO,CAAC,aAAa,CAAS;IAE9B;;;;OAIG;gBACgB,SAAS,EAAE,MAAM;IAIpC;;;;;;OAMG;aACQ,SAAS,EAAI,MAAM;CAGjC","file":"SessionEventArgs.d.ts","sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved.\n// Licensed under the MIT license.\n\n/**\n * Defines content for session events like SessionStarted/Stopped, SoundStarted/Stopped.\n * @class SessionEventArgs\n */\nexport class SessionEventArgs {\n    private privSessionId: string;\n\n    /**\n     * Creates and initializes an instance of this class.\n     * @constructor\n     * @param {string} sessionId - The session id.\n     */\n    public constructor(sessionId: string) {\n        this.privSessionId = sessionId;\n    }\n\n    /**\n     * Represents the session identifier.\n     * @member SessionEventArgs.prototype.sessionId\n     * @function\n     * @public\n     * @returns {string} Represents the session identifier.\n     */\n    public get sessionId(): string {\n        return this.privSessionId;\n    }\n}\n"]}