tencentcloud-sdk-python-trtc 3.0.1201__tar.gz → 3.0.1203__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of tencentcloud-sdk-python-trtc might be problematic. Click here for more details.
- {tencentcloud-sdk-python-trtc-3.0.1201 → tencentcloud-sdk-python-trtc-3.0.1203}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-trtc-3.0.1201 → tencentcloud-sdk-python-trtc-3.0.1203}/setup.py +1 -1
- {tencentcloud-sdk-python-trtc-3.0.1201 → tencentcloud-sdk-python-trtc-3.0.1203}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-trtc-3.0.1201 → tencentcloud-sdk-python-trtc-3.0.1203}/tencentcloud/trtc/v20190722/models.py +13 -0
- {tencentcloud-sdk-python-trtc-3.0.1201 → tencentcloud-sdk-python-trtc-3.0.1203}/tencentcloud_sdk_python_trtc.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-trtc-3.0.1203/tencentcloud_sdk_python_trtc.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-trtc-3.0.1201/tencentcloud_sdk_python_trtc.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-trtc-3.0.1201 → tencentcloud-sdk-python-trtc-3.0.1203}/README.rst +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1201 → tencentcloud-sdk-python-trtc-3.0.1203}/setup.cfg +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1201 → tencentcloud-sdk-python-trtc-3.0.1203}/tencentcloud/trtc/__init__.py +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1201 → tencentcloud-sdk-python-trtc-3.0.1203}/tencentcloud/trtc/v20190722/__init__.py +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1201 → tencentcloud-sdk-python-trtc-3.0.1203}/tencentcloud/trtc/v20190722/errorcodes.py +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1201 → tencentcloud-sdk-python-trtc-3.0.1203}/tencentcloud/trtc/v20190722/trtc_client.py +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1201 → tencentcloud-sdk-python-trtc-3.0.1203}/tencentcloud_sdk_python_trtc.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1201 → tencentcloud-sdk-python-trtc-3.0.1203}/tencentcloud_sdk_python_trtc.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1201 → tencentcloud-sdk-python-trtc-3.0.1203}/tencentcloud_sdk_python_trtc.egg-info/top_level.txt +0 -0
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-trtc',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1203"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Trtc SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -5916,8 +5916,12 @@ class McuUserInfoParams(AbstractModel):
|
|
|
5916
5916
|
r"""
|
|
5917
5917
|
:param _UserInfo: 用户参数。
|
|
5918
5918
|
:type UserInfo: :class:`tencentcloud.trtc.v20190722.models.MixUserInfo`
|
|
5919
|
+
:param _SoundLevel: 混音的音量调整:取值范围是0到100,100为原始上行音量,不填默认为100,值越小则音量越低。
|
|
5920
|
+
注:该参数只在音量白名单下配置生效,其他场景配置无效。
|
|
5921
|
+
:type SoundLevel: int
|
|
5919
5922
|
"""
|
|
5920
5923
|
self._UserInfo = None
|
|
5924
|
+
self._SoundLevel = None
|
|
5921
5925
|
|
|
5922
5926
|
@property
|
|
5923
5927
|
def UserInfo(self):
|
|
@@ -5927,11 +5931,20 @@ class McuUserInfoParams(AbstractModel):
|
|
|
5927
5931
|
def UserInfo(self, UserInfo):
|
|
5928
5932
|
self._UserInfo = UserInfo
|
|
5929
5933
|
|
|
5934
|
+
@property
|
|
5935
|
+
def SoundLevel(self):
|
|
5936
|
+
return self._SoundLevel
|
|
5937
|
+
|
|
5938
|
+
@SoundLevel.setter
|
|
5939
|
+
def SoundLevel(self, SoundLevel):
|
|
5940
|
+
self._SoundLevel = SoundLevel
|
|
5941
|
+
|
|
5930
5942
|
|
|
5931
5943
|
def _deserialize(self, params):
|
|
5932
5944
|
if params.get("UserInfo") is not None:
|
|
5933
5945
|
self._UserInfo = MixUserInfo()
|
|
5934
5946
|
self._UserInfo._deserialize(params.get("UserInfo"))
|
|
5947
|
+
self._SoundLevel = params.get("SoundLevel")
|
|
5935
5948
|
memeber_set = set(params.keys())
|
|
5936
5949
|
for name, value in vars(self).items():
|
|
5937
5950
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1203
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1201
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|