{"version":3,"sources":["src/sdk/AvatarWebRTCConnectionResult.ts"],"names":[],"mappings":"AAGA,OAAO,EACH,YAAY,EACZ,kBAAkB,EAClB,eAAe,EAClB,MAAM,cAAc,CAAC;AAEtB;;;;;;GAMG;AACH,qBAAa,4BAA6B,SAAQ,eAAe;IAC7D,OAAO,CAAC,QAAQ,CAAC,aAAa,CAA4B;IAE1D;;;;;;;;OAQG;gBACgB,SAAS,CAAC,EAAE,yBAAyB,EAAE,QAAQ,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,YAAY,EAAE,YAAY,CAAC,EAAE,MAAM,EAAE,UAAU,CAAC,EAAE,kBAAkB;IAK1J;;;;;;OAMG;IACH,IAAW,SAAS,IAAI,yBAAyB,CAEhD;CACJ","file":"AvatarWebRTCConnectionResult.d.ts","sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved.\n// Licensed under the MIT license.\n\nimport {\n    ResultReason,\n    PropertyCollection,\n    SynthesisResult\n} from \"./Exports.js\";\n\n/**\n * Defines the avatar WebRTC connection result.\n * @class AvatarWebRTCConnectionResult\n * Added in version 1.33.0\n *\n * @experimental This feature is experimental and might change in the future.\n */\nexport class AvatarWebRTCConnectionResult extends SynthesisResult {\n    private readonly privSDPAnswer: RTCSessionDescriptionInit;\n\n    /**\n     * Creates and initializes an instance of this class.\n     * @constructor\n     * @param {RTCSessionDescriptionInit} SDPAnswer - The SDP answer of WebRTC connection.\n     * @param {string} resultId - The result id.\n     * @param {ResultReason} reason - The reason.\n     * @param {string} errorDetails - Error details, if provided.\n     * @param {PropertyCollection} properties - Additional properties, if provided.\n     */\n    public constructor(SDPAnswer?: RTCSessionDescriptionInit, resultId?: string, reason?: ResultReason, errorDetails?: string, properties?: PropertyCollection) {\n        super(resultId, reason, errorDetails, properties);\n        this.privSDPAnswer = SDPAnswer;\n    }\n\n    /**\n     * Specifies SDP (Session Description Protocol) answer of WebRTC connection.\n     * @member AvatarWebRTCConnectionResult.prototype.SDPAnswer\n     * @function\n     * @public\n     * @returns {RTCSessionDescriptionInit} Specifies the SDP answer of WebRTC connection.\n     */\n    public get SDPAnswer(): RTCSessionDescriptionInit {\n        return this.privSDPAnswer;\n    }\n}\n"]}