tencentcloud-sdk-python-ccc 3.0.1209__tar.gz → 3.0.1213__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.
- {tencentcloud-sdk-python-ccc-3.0.1209 → tencentcloud-sdk-python-ccc-3.0.1213}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-ccc-3.0.1209 → tencentcloud-sdk-python-ccc-3.0.1213}/setup.py +1 -1
- {tencentcloud-sdk-python-ccc-3.0.1209 → tencentcloud-sdk-python-ccc-3.0.1213}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-ccc-3.0.1209 → tencentcloud-sdk-python-ccc-3.0.1213}/tencentcloud/ccc/v20200210/models.py +12 -0
- {tencentcloud-sdk-python-ccc-3.0.1209 → tencentcloud-sdk-python-ccc-3.0.1213}/tencentcloud_sdk_python_ccc.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-ccc-3.0.1213/tencentcloud_sdk_python_ccc.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-ccc-3.0.1209/tencentcloud_sdk_python_ccc.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-ccc-3.0.1209 → tencentcloud-sdk-python-ccc-3.0.1213}/README.rst +0 -0
- {tencentcloud-sdk-python-ccc-3.0.1209 → tencentcloud-sdk-python-ccc-3.0.1213}/setup.cfg +0 -0
- {tencentcloud-sdk-python-ccc-3.0.1209 → tencentcloud-sdk-python-ccc-3.0.1213}/tencentcloud/ccc/__init__.py +0 -0
- {tencentcloud-sdk-python-ccc-3.0.1209 → tencentcloud-sdk-python-ccc-3.0.1213}/tencentcloud/ccc/v20200210/__init__.py +0 -0
- {tencentcloud-sdk-python-ccc-3.0.1209 → tencentcloud-sdk-python-ccc-3.0.1213}/tencentcloud/ccc/v20200210/ccc_client.py +0 -0
- {tencentcloud-sdk-python-ccc-3.0.1209 → tencentcloud-sdk-python-ccc-3.0.1213}/tencentcloud/ccc/v20200210/errorcodes.py +0 -0
- {tencentcloud-sdk-python-ccc-3.0.1209 → tencentcloud-sdk-python-ccc-3.0.1213}/tencentcloud_sdk_python_ccc.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-ccc-3.0.1209 → tencentcloud-sdk-python-ccc-3.0.1213}/tencentcloud_sdk_python_ccc.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-ccc-3.0.1209 → tencentcloud-sdk-python-ccc-3.0.1213}/tencentcloud_sdk_python_ccc.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-ccc',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1213"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Ccc SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -8003,6 +8003,8 @@ class ModifyStaffRequest(AbstractModel):
|
|
|
8003
8003
|
:type Phone: str
|
|
8004
8004
|
:param _Nick: 座席昵称
|
|
8005
8005
|
:type Nick: str
|
|
8006
|
+
:param _StaffNo: 座席工号
|
|
8007
|
+
:type StaffNo: str
|
|
8006
8008
|
:param _SkillGroupIds: 绑定技能组ID列表
|
|
8007
8009
|
:type SkillGroupIds: list of int
|
|
8008
8010
|
:param _UseMobileCallOut: 是否开启手机外呼开关
|
|
@@ -8015,6 +8017,7 @@ class ModifyStaffRequest(AbstractModel):
|
|
|
8015
8017
|
self._Name = None
|
|
8016
8018
|
self._Phone = None
|
|
8017
8019
|
self._Nick = None
|
|
8020
|
+
self._StaffNo = None
|
|
8018
8021
|
self._SkillGroupIds = None
|
|
8019
8022
|
self._UseMobileCallOut = None
|
|
8020
8023
|
self._UseMobileAccept = None
|
|
@@ -8059,6 +8062,14 @@ class ModifyStaffRequest(AbstractModel):
|
|
|
8059
8062
|
def Nick(self, Nick):
|
|
8060
8063
|
self._Nick = Nick
|
|
8061
8064
|
|
|
8065
|
+
@property
|
|
8066
|
+
def StaffNo(self):
|
|
8067
|
+
return self._StaffNo
|
|
8068
|
+
|
|
8069
|
+
@StaffNo.setter
|
|
8070
|
+
def StaffNo(self, StaffNo):
|
|
8071
|
+
self._StaffNo = StaffNo
|
|
8072
|
+
|
|
8062
8073
|
@property
|
|
8063
8074
|
def SkillGroupIds(self):
|
|
8064
8075
|
return self._SkillGroupIds
|
|
@@ -8090,6 +8101,7 @@ class ModifyStaffRequest(AbstractModel):
|
|
|
8090
8101
|
self._Name = params.get("Name")
|
|
8091
8102
|
self._Phone = params.get("Phone")
|
|
8092
8103
|
self._Nick = params.get("Nick")
|
|
8104
|
+
self._StaffNo = params.get("StaffNo")
|
|
8093
8105
|
self._SkillGroupIds = params.get("SkillGroupIds")
|
|
8094
8106
|
self._UseMobileCallOut = params.get("UseMobileCallOut")
|
|
8095
8107
|
self._UseMobileAccept = params.get("UseMobileAccept")
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1213
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1209
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|