{"version":3,"sources":["src/common.speech/SpeakerRecognitionConfig.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AACvD,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AAEvC,qBAAa,wBAAwB;IACjC,OAAO,CAAC,cAAc,CAAqB;IAC3C,OAAO,CAAC,WAAW,CAAU;gBAGzB,OAAO,EAAE,OAAO,EAChB,UAAU,EAAE,kBAAkB;IAKlC,IAAW,UAAU,IAAI,kBAAkB,CAE1C;IAED,IAAW,OAAO,IAAI,OAAO,CAE5B;CACJ","file":"SpeakerRecognitionConfig.d.ts","sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved.\n// Licensed under the MIT license.\n\nimport { PropertyCollection } from \"../sdk/Exports.js\";\nimport { Context } from \"./Exports.js\";\n\nexport class SpeakerRecognitionConfig {\n    private privParameters: PropertyCollection;\n    private privContext: Context;\n\n    public constructor(\n        context: Context,\n        parameters: PropertyCollection) {\n        this.privContext = context ? context : new Context(null);\n        this.privParameters = parameters;\n    }\n\n    public get parameters(): PropertyCollection {\n        return this.privParameters;\n    }\n\n    public get Context(): Context {\n        return this.privContext;\n    }\n}\n"]}