tencentcloud-sdk-python-ess 3.1.57__tar.gz → 3.1.59__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_ess-3.1.57 → tencentcloud_sdk_python_ess-3.1.59}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_ess-3.1.57 → tencentcloud_sdk_python_ess-3.1.59}/setup.py +1 -1
- {tencentcloud_sdk_python_ess-3.1.57 → tencentcloud_sdk_python_ess-3.1.59}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_ess-3.1.57 → tencentcloud_sdk_python_ess-3.1.59}/tencentcloud/ess/v20201111/models.py +238 -16
- {tencentcloud_sdk_python_ess-3.1.57 → tencentcloud_sdk_python_ess-3.1.59}/tencentcloud_sdk_python_ess.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_ess-3.1.59/tencentcloud_sdk_python_ess.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_ess-3.1.57/tencentcloud_sdk_python_ess.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_ess-3.1.57 → tencentcloud_sdk_python_ess-3.1.59}/README.rst +0 -0
- {tencentcloud_sdk_python_ess-3.1.57 → tencentcloud_sdk_python_ess-3.1.59}/setup.cfg +0 -0
- {tencentcloud_sdk_python_ess-3.1.57 → tencentcloud_sdk_python_ess-3.1.59}/tencentcloud/ess/__init__.py +0 -0
- {tencentcloud_sdk_python_ess-3.1.57 → tencentcloud_sdk_python_ess-3.1.59}/tencentcloud/ess/v20201111/__init__.py +0 -0
- {tencentcloud_sdk_python_ess-3.1.57 → tencentcloud_sdk_python_ess-3.1.59}/tencentcloud/ess/v20201111/errorcodes.py +0 -0
- {tencentcloud_sdk_python_ess-3.1.57 → tencentcloud_sdk_python_ess-3.1.59}/tencentcloud/ess/v20201111/ess_client.py +0 -0
- {tencentcloud_sdk_python_ess-3.1.57 → tencentcloud_sdk_python_ess-3.1.59}/tencentcloud/ess/v20201111/ess_client_async.py +0 -0
- {tencentcloud_sdk_python_ess-3.1.57 → tencentcloud_sdk_python_ess-3.1.59}/tencentcloud_sdk_python_ess.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_ess-3.1.57 → tencentcloud_sdk_python_ess-3.1.59}/tencentcloud_sdk_python_ess.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_ess-3.1.57 → tencentcloud_sdk_python_ess-3.1.59}/tencentcloud_sdk_python_ess.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-ess
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.59
|
|
4
4
|
Summary: Tencent Cloud Ess SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.59
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-ess',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.59,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Ess SDK for Python',
|
|
@@ -1696,11 +1696,15 @@ class AuthRecord(AbstractModel):
|
|
|
1696
1696
|
<li> **4**:AI识别中</li>
|
|
1697
1697
|
<li> **5**:客户确认AI信息</li></ul>
|
|
1698
1698
|
:type AuditStatus: int
|
|
1699
|
+
:param _Reason: 审核失败原因,
|
|
1700
|
+
当 AuditStatus 返回2时,则会返回具体的原因。
|
|
1701
|
+
:type Reason: str
|
|
1699
1702
|
"""
|
|
1700
1703
|
self._OperatorName = None
|
|
1701
1704
|
self._OperatorMobile = None
|
|
1702
1705
|
self._AuthType = None
|
|
1703
1706
|
self._AuditStatus = None
|
|
1707
|
+
self._Reason = None
|
|
1704
1708
|
|
|
1705
1709
|
@property
|
|
1706
1710
|
def OperatorName(self):
|
|
@@ -1756,12 +1760,25 @@ class AuthRecord(AbstractModel):
|
|
|
1756
1760
|
def AuditStatus(self, AuditStatus):
|
|
1757
1761
|
self._AuditStatus = AuditStatus
|
|
1758
1762
|
|
|
1763
|
+
@property
|
|
1764
|
+
def Reason(self):
|
|
1765
|
+
r"""审核失败原因,
|
|
1766
|
+
当 AuditStatus 返回2时,则会返回具体的原因。
|
|
1767
|
+
:rtype: str
|
|
1768
|
+
"""
|
|
1769
|
+
return self._Reason
|
|
1770
|
+
|
|
1771
|
+
@Reason.setter
|
|
1772
|
+
def Reason(self, Reason):
|
|
1773
|
+
self._Reason = Reason
|
|
1774
|
+
|
|
1759
1775
|
|
|
1760
1776
|
def _deserialize(self, params):
|
|
1761
1777
|
self._OperatorName = params.get("OperatorName")
|
|
1762
1778
|
self._OperatorMobile = params.get("OperatorMobile")
|
|
1763
1779
|
self._AuthType = params.get("AuthType")
|
|
1764
1780
|
self._AuditStatus = params.get("AuditStatus")
|
|
1781
|
+
self._Reason = params.get("Reason")
|
|
1765
1782
|
memeber_set = set(params.keys())
|
|
1766
1783
|
for name, value in vars(self).items():
|
|
1767
1784
|
property_name = name[1:]
|
|
@@ -2051,10 +2068,13 @@ class BatchOrganizationRegistrationTasksDetails(AbstractModel):
|
|
|
2051
2068
|
:type Status: str
|
|
2052
2069
|
:param _ErrorMessage: 如果任务失败,会返回错误信息
|
|
2053
2070
|
:type ErrorMessage: str
|
|
2071
|
+
:param _AuthorizationInfoId: 认证流 Id 是指在企业认证过程中,当前操作人的认证流程的唯一标识。每个企业在认证过程中只能有一条认证流认证成功。这意味着在同一认证过程内,一个企业只能有一个认证流程处于成功状态,以确保认证的唯一性和有效性。认证流 Id可以通过回调[授权书认证审核结果回调](https://qian.tencent.com/developers/company/callback_types_staffs/#%E5%8D%81%E5%85%AD-%E6%8E%88%E6%9D%83%E4%B9%A6%E8%AE%A4%E8%AF%81%E5%AE%A1%E6%A0%B8%E7%BB%93%E6%9E%9C%E5%9B%9E%E8%B0%83)
|
|
2072
|
+
:type AuthorizationInfoId: str
|
|
2054
2073
|
"""
|
|
2055
2074
|
self._TaskId = None
|
|
2056
2075
|
self._Status = None
|
|
2057
2076
|
self._ErrorMessage = None
|
|
2077
|
+
self._AuthorizationInfoId = None
|
|
2058
2078
|
|
|
2059
2079
|
@property
|
|
2060
2080
|
def TaskId(self):
|
|
@@ -2114,11 +2134,23 @@ class BatchOrganizationRegistrationTasksDetails(AbstractModel):
|
|
|
2114
2134
|
def ErrorMessage(self, ErrorMessage):
|
|
2115
2135
|
self._ErrorMessage = ErrorMessage
|
|
2116
2136
|
|
|
2137
|
+
@property
|
|
2138
|
+
def AuthorizationInfoId(self):
|
|
2139
|
+
r"""认证流 Id 是指在企业认证过程中,当前操作人的认证流程的唯一标识。每个企业在认证过程中只能有一条认证流认证成功。这意味着在同一认证过程内,一个企业只能有一个认证流程处于成功状态,以确保认证的唯一性和有效性。认证流 Id可以通过回调[授权书认证审核结果回调](https://qian.tencent.com/developers/company/callback_types_staffs/#%E5%8D%81%E5%85%AD-%E6%8E%88%E6%9D%83%E4%B9%A6%E8%AE%A4%E8%AF%81%E5%AE%A1%E6%A0%B8%E7%BB%93%E6%9E%9C%E5%9B%9E%E8%B0%83)
|
|
2140
|
+
:rtype: str
|
|
2141
|
+
"""
|
|
2142
|
+
return self._AuthorizationInfoId
|
|
2143
|
+
|
|
2144
|
+
@AuthorizationInfoId.setter
|
|
2145
|
+
def AuthorizationInfoId(self, AuthorizationInfoId):
|
|
2146
|
+
self._AuthorizationInfoId = AuthorizationInfoId
|
|
2147
|
+
|
|
2117
2148
|
|
|
2118
2149
|
def _deserialize(self, params):
|
|
2119
2150
|
self._TaskId = params.get("TaskId")
|
|
2120
2151
|
self._Status = params.get("Status")
|
|
2121
2152
|
self._ErrorMessage = params.get("ErrorMessage")
|
|
2153
|
+
self._AuthorizationInfoId = params.get("AuthorizationInfoId")
|
|
2122
2154
|
memeber_set = set(params.keys())
|
|
2123
2155
|
for name, value in vars(self).items():
|
|
2124
2156
|
property_name = name[1:]
|
|
@@ -5310,9 +5342,9 @@ class CreateBatchContractReviewTaskRequest(AbstractModel):
|
|
|
5310
5342
|
:param _Operator: 执行合同审查任务的员工信息。
|
|
5311
5343
|
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
|
5312
5344
|
:type Operator: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
|
5313
|
-
:param _ResourceIds: 合同审查的PDF文件资源编号列表,通过[UploadFiles](https://qian.tencent.com/developers/companyApis/templatesAndFiles/UploadFiles)接口获取PDF文件资源编号。
|
|
5345
|
+
:param _ResourceIds: 合同审查的PDF、WORD文件资源编号列表,通过[UploadFiles](https://qian.tencent.com/developers/companyApis/templatesAndFiles/UploadFiles)接口获取PDF、WORD文件资源编号。
|
|
5314
5346
|
|
|
5315
|
-
注: `目前,此接口仅支持5个文件发起。每个文件限制在10M以下,文件必须是PDF格式`
|
|
5347
|
+
注: `目前,此接口仅支持5个文件发起。每个文件限制在10M以下,文件必须是PDF、WORD格式`
|
|
5316
5348
|
:type ResourceIds: list of str
|
|
5317
5349
|
:param _PolicyType: 合同审查的审查尺度。默认为`0`严格尺度
|
|
5318
5350
|
|
|
@@ -5323,11 +5355,16 @@ class CreateBatchContractReviewTaskRequest(AbstractModel):
|
|
|
5323
5355
|
<li>**2** - 【宽松】以促成交易为核心,对合同条款的修改要求较为宽松,倾向于接受对方提出的条款,以尽快达成合作。</li>
|
|
5324
5356
|
</ul>
|
|
5325
5357
|
:type PolicyType: int
|
|
5326
|
-
:param _Role:
|
|
5358
|
+
:param _Role: 该字段已不再使用!
|
|
5359
|
+
合同审查中的角色信息,通过明确入参角色的名称和描述,可以提高合同审查的效率和准确性。用户不做配置时大模型会根据合同内容推荐出风险识别角色的名称和描述信息。
|
|
5327
5360
|
:type Role: :class:`tencentcloud.ess.v20201111.models.RiskIdentificationRoleInfo`
|
|
5328
|
-
:param
|
|
5329
|
-
|
|
5361
|
+
:param _Roles: 合同审查中的角色信息,通过明确入参角色的名称和描述,可以提高合同审查的效率和准确性。用户不做配置时大模型会根据合同内容推荐出风险识别角色的名称和描述信息。
|
|
5362
|
+
:type Roles: list of RiskIdentificationRoleInfo
|
|
5363
|
+
:param _ChecklistId: 该字段已不再使用!
|
|
5364
|
+
用户配置的审查清单ID,基于此清单ID批量创建合同审查任务,为32位字符串。[点击查看审查清单ID在控制台上的位置](https://qcloudimg.tencent-cloud.cn/raw/2c6588549e28ca49bd8bb7f4a072b19e.png)。如果用户不做此配置大模型会根据合同内容在当前企业下的审查清单和系统默认的清单中选择一个清单进行审查。
|
|
5330
5365
|
:type ChecklistId: str
|
|
5366
|
+
:param _ChecklistIds: 用户配置的审查清单ID,基于此清单ID批量创建合同审查任务,为32位字符串。[点击查看审查清单ID在控制台上的位置](https://qcloudimg.tencent-cloud.cn/raw/2c6588549e28ca49bd8bb7f4a072b19e.png)。如果用户不做此配置大模型会根据合同内容在当前企业下的审查清单和系统默认的清单中选择一个清单进行审查。
|
|
5367
|
+
:type ChecklistIds: list of str
|
|
5331
5368
|
:param _Agent: 代理企业和员工的信息。
|
|
5332
5369
|
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
|
5333
5370
|
:type Agent: :class:`tencentcloud.ess.v20201111.models.Agent`
|
|
@@ -5348,7 +5385,9 @@ class CreateBatchContractReviewTaskRequest(AbstractModel):
|
|
|
5348
5385
|
self._ResourceIds = None
|
|
5349
5386
|
self._PolicyType = None
|
|
5350
5387
|
self._Role = None
|
|
5388
|
+
self._Roles = None
|
|
5351
5389
|
self._ChecklistId = None
|
|
5390
|
+
self._ChecklistIds = None
|
|
5352
5391
|
self._Agent = None
|
|
5353
5392
|
self._Comment = None
|
|
5354
5393
|
self._UserData = None
|
|
@@ -5368,9 +5407,9 @@ class CreateBatchContractReviewTaskRequest(AbstractModel):
|
|
|
5368
5407
|
|
|
5369
5408
|
@property
|
|
5370
5409
|
def ResourceIds(self):
|
|
5371
|
-
r"""合同审查的PDF文件资源编号列表,通过[UploadFiles](https://qian.tencent.com/developers/companyApis/templatesAndFiles/UploadFiles)接口获取PDF文件资源编号。
|
|
5410
|
+
r"""合同审查的PDF、WORD文件资源编号列表,通过[UploadFiles](https://qian.tencent.com/developers/companyApis/templatesAndFiles/UploadFiles)接口获取PDF、WORD文件资源编号。
|
|
5372
5411
|
|
|
5373
|
-
注: `目前,此接口仅支持5个文件发起。每个文件限制在10M以下,文件必须是PDF格式`
|
|
5412
|
+
注: `目前,此接口仅支持5个文件发起。每个文件限制在10M以下,文件必须是PDF、WORD格式`
|
|
5374
5413
|
:rtype: list of str
|
|
5375
5414
|
"""
|
|
5376
5415
|
return self._ResourceIds
|
|
@@ -5399,7 +5438,8 @@ class CreateBatchContractReviewTaskRequest(AbstractModel):
|
|
|
5399
5438
|
|
|
5400
5439
|
@property
|
|
5401
5440
|
def Role(self):
|
|
5402
|
-
r"""
|
|
5441
|
+
r"""该字段已不再使用!
|
|
5442
|
+
合同审查中的角色信息,通过明确入参角色的名称和描述,可以提高合同审查的效率和准确性。用户不做配置时大模型会根据合同内容推荐出风险识别角色的名称和描述信息。
|
|
5403
5443
|
:rtype: :class:`tencentcloud.ess.v20201111.models.RiskIdentificationRoleInfo`
|
|
5404
5444
|
"""
|
|
5405
5445
|
return self._Role
|
|
@@ -5408,10 +5448,21 @@ class CreateBatchContractReviewTaskRequest(AbstractModel):
|
|
|
5408
5448
|
def Role(self, Role):
|
|
5409
5449
|
self._Role = Role
|
|
5410
5450
|
|
|
5451
|
+
@property
|
|
5452
|
+
def Roles(self):
|
|
5453
|
+
r"""合同审查中的角色信息,通过明确入参角色的名称和描述,可以提高合同审查的效率和准确性。用户不做配置时大模型会根据合同内容推荐出风险识别角色的名称和描述信息。
|
|
5454
|
+
:rtype: list of RiskIdentificationRoleInfo
|
|
5455
|
+
"""
|
|
5456
|
+
return self._Roles
|
|
5457
|
+
|
|
5458
|
+
@Roles.setter
|
|
5459
|
+
def Roles(self, Roles):
|
|
5460
|
+
self._Roles = Roles
|
|
5461
|
+
|
|
5411
5462
|
@property
|
|
5412
5463
|
def ChecklistId(self):
|
|
5413
|
-
r"""
|
|
5414
|
-
[点击查看审查清单ID在控制台上的位置](https://qcloudimg.tencent-cloud.cn/raw/2c6588549e28ca49bd8bb7f4a072b19e.png)。如果用户不做此配置大模型会根据合同内容在当前企业下的审查清单和系统默认的清单中选择一个清单进行审查。
|
|
5464
|
+
r"""该字段已不再使用!
|
|
5465
|
+
用户配置的审查清单ID,基于此清单ID批量创建合同审查任务,为32位字符串。[点击查看审查清单ID在控制台上的位置](https://qcloudimg.tencent-cloud.cn/raw/2c6588549e28ca49bd8bb7f4a072b19e.png)。如果用户不做此配置大模型会根据合同内容在当前企业下的审查清单和系统默认的清单中选择一个清单进行审查。
|
|
5415
5466
|
:rtype: str
|
|
5416
5467
|
"""
|
|
5417
5468
|
return self._ChecklistId
|
|
@@ -5420,6 +5471,17 @@ class CreateBatchContractReviewTaskRequest(AbstractModel):
|
|
|
5420
5471
|
def ChecklistId(self, ChecklistId):
|
|
5421
5472
|
self._ChecklistId = ChecklistId
|
|
5422
5473
|
|
|
5474
|
+
@property
|
|
5475
|
+
def ChecklistIds(self):
|
|
5476
|
+
r"""用户配置的审查清单ID,基于此清单ID批量创建合同审查任务,为32位字符串。[点击查看审查清单ID在控制台上的位置](https://qcloudimg.tencent-cloud.cn/raw/2c6588549e28ca49bd8bb7f4a072b19e.png)。如果用户不做此配置大模型会根据合同内容在当前企业下的审查清单和系统默认的清单中选择一个清单进行审查。
|
|
5477
|
+
:rtype: list of str
|
|
5478
|
+
"""
|
|
5479
|
+
return self._ChecklistIds
|
|
5480
|
+
|
|
5481
|
+
@ChecklistIds.setter
|
|
5482
|
+
def ChecklistIds(self, ChecklistIds):
|
|
5483
|
+
self._ChecklistIds = ChecklistIds
|
|
5484
|
+
|
|
5423
5485
|
@property
|
|
5424
5486
|
def Agent(self):
|
|
5425
5487
|
r"""代理企业和员工的信息。
|
|
@@ -5481,7 +5543,14 @@ class CreateBatchContractReviewTaskRequest(AbstractModel):
|
|
|
5481
5543
|
if params.get("Role") is not None:
|
|
5482
5544
|
self._Role = RiskIdentificationRoleInfo()
|
|
5483
5545
|
self._Role._deserialize(params.get("Role"))
|
|
5546
|
+
if params.get("Roles") is not None:
|
|
5547
|
+
self._Roles = []
|
|
5548
|
+
for item in params.get("Roles"):
|
|
5549
|
+
obj = RiskIdentificationRoleInfo()
|
|
5550
|
+
obj._deserialize(item)
|
|
5551
|
+
self._Roles.append(obj)
|
|
5484
5552
|
self._ChecklistId = params.get("ChecklistId")
|
|
5553
|
+
self._ChecklistIds = params.get("ChecklistIds")
|
|
5485
5554
|
if params.get("Agent") is not None:
|
|
5486
5555
|
self._Agent = Agent()
|
|
5487
5556
|
self._Agent._deserialize(params.get("Agent"))
|
|
@@ -9910,6 +9979,8 @@ class CreateFlowByFilesRequest(AbstractModel):
|
|
|
9910
9979
|
:type OpenDynamicSignFlow: bool
|
|
9911
9980
|
:param _Workflow: 是否开启发起合同审批,默认:false(不开启),开启后,发起合同(StartFlow),会提交电子签内置的审批流
|
|
9912
9981
|
:type Workflow: bool
|
|
9982
|
+
:param _FlowOperateLimit: 发起合同流程时对合同流程的部分操作加以限制的配置。
|
|
9983
|
+
:type FlowOperateLimit: :class:`tencentcloud.ess.v20201111.models.FlowOperateLimit`
|
|
9913
9984
|
"""
|
|
9914
9985
|
self._Operator = None
|
|
9915
9986
|
self._FlowName = None
|
|
@@ -9935,6 +10006,7 @@ class CreateFlowByFilesRequest(AbstractModel):
|
|
|
9935
10006
|
self._FlowDisplayType = None
|
|
9936
10007
|
self._OpenDynamicSignFlow = None
|
|
9937
10008
|
self._Workflow = None
|
|
10009
|
+
self._FlowOperateLimit = None
|
|
9938
10010
|
|
|
9939
10011
|
@property
|
|
9940
10012
|
def Operator(self):
|
|
@@ -10270,6 +10342,17 @@ class CreateFlowByFilesRequest(AbstractModel):
|
|
|
10270
10342
|
def Workflow(self, Workflow):
|
|
10271
10343
|
self._Workflow = Workflow
|
|
10272
10344
|
|
|
10345
|
+
@property
|
|
10346
|
+
def FlowOperateLimit(self):
|
|
10347
|
+
r"""发起合同流程时对合同流程的部分操作加以限制的配置。
|
|
10348
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.FlowOperateLimit`
|
|
10349
|
+
"""
|
|
10350
|
+
return self._FlowOperateLimit
|
|
10351
|
+
|
|
10352
|
+
@FlowOperateLimit.setter
|
|
10353
|
+
def FlowOperateLimit(self, FlowOperateLimit):
|
|
10354
|
+
self._FlowOperateLimit = FlowOperateLimit
|
|
10355
|
+
|
|
10273
10356
|
|
|
10274
10357
|
def _deserialize(self, params):
|
|
10275
10358
|
if params.get("Operator") is not None:
|
|
@@ -10315,6 +10398,9 @@ class CreateFlowByFilesRequest(AbstractModel):
|
|
|
10315
10398
|
self._FlowDisplayType = params.get("FlowDisplayType")
|
|
10316
10399
|
self._OpenDynamicSignFlow = params.get("OpenDynamicSignFlow")
|
|
10317
10400
|
self._Workflow = params.get("Workflow")
|
|
10401
|
+
if params.get("FlowOperateLimit") is not None:
|
|
10402
|
+
self._FlowOperateLimit = FlowOperateLimit()
|
|
10403
|
+
self._FlowOperateLimit._deserialize(params.get("FlowOperateLimit"))
|
|
10318
10404
|
memeber_set = set(params.keys())
|
|
10319
10405
|
for name, value in vars(self).items():
|
|
10320
10406
|
property_name = name[1:]
|
|
@@ -12272,6 +12358,8 @@ class CreateFlowRequest(AbstractModel):
|
|
|
12272
12358
|
:type FlowDisplayType: int
|
|
12273
12359
|
:param _Workflow: 是否开启发起合同审批,默认:false(不开启),开启后,发起合同(StartFlow),会提交电子签内置的审批流
|
|
12274
12360
|
:type Workflow: bool
|
|
12361
|
+
:param _FlowOperateLimit: 发起合同流程时对合同流程的部分操作加以限制的配置。
|
|
12362
|
+
:type FlowOperateLimit: :class:`tencentcloud.ess.v20201111.models.FlowOperateLimit`
|
|
12275
12363
|
"""
|
|
12276
12364
|
self._Operator = None
|
|
12277
12365
|
self._FlowName = None
|
|
@@ -12292,6 +12380,7 @@ class CreateFlowRequest(AbstractModel):
|
|
|
12292
12380
|
self._CallbackUrl = None
|
|
12293
12381
|
self._FlowDisplayType = None
|
|
12294
12382
|
self._Workflow = None
|
|
12383
|
+
self._FlowOperateLimit = None
|
|
12295
12384
|
|
|
12296
12385
|
@property
|
|
12297
12386
|
def Operator(self):
|
|
@@ -12562,6 +12651,17 @@ class CreateFlowRequest(AbstractModel):
|
|
|
12562
12651
|
def Workflow(self, Workflow):
|
|
12563
12652
|
self._Workflow = Workflow
|
|
12564
12653
|
|
|
12654
|
+
@property
|
|
12655
|
+
def FlowOperateLimit(self):
|
|
12656
|
+
r"""发起合同流程时对合同流程的部分操作加以限制的配置。
|
|
12657
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.FlowOperateLimit`
|
|
12658
|
+
"""
|
|
12659
|
+
return self._FlowOperateLimit
|
|
12660
|
+
|
|
12661
|
+
@FlowOperateLimit.setter
|
|
12662
|
+
def FlowOperateLimit(self, FlowOperateLimit):
|
|
12663
|
+
self._FlowOperateLimit = FlowOperateLimit
|
|
12664
|
+
|
|
12565
12665
|
|
|
12566
12666
|
def _deserialize(self, params):
|
|
12567
12667
|
if params.get("Operator") is not None:
|
|
@@ -12597,6 +12697,9 @@ class CreateFlowRequest(AbstractModel):
|
|
|
12597
12697
|
self._CallbackUrl = params.get("CallbackUrl")
|
|
12598
12698
|
self._FlowDisplayType = params.get("FlowDisplayType")
|
|
12599
12699
|
self._Workflow = params.get("Workflow")
|
|
12700
|
+
if params.get("FlowOperateLimit") is not None:
|
|
12701
|
+
self._FlowOperateLimit = FlowOperateLimit()
|
|
12702
|
+
self._FlowOperateLimit._deserialize(params.get("FlowOperateLimit"))
|
|
12600
12703
|
memeber_set = set(params.keys())
|
|
12601
12704
|
for name, value in vars(self).items():
|
|
12602
12705
|
property_name = name[1:]
|
|
@@ -18866,6 +18969,8 @@ class CreateSchemeUrlRequest(AbstractModel):
|
|
|
18866
18969
|
:type UrlUseEnv: str
|
|
18867
18970
|
:param _PickUpAfterJoined: 在动态签署人场景预设了“企业名称”时,可通过该参数控制“已认证身份才可领取”,即在加入了预设的企业后才可领取。默认值:false,无须先加入企业。
|
|
18868
18971
|
:type PickUpAfterJoined: bool
|
|
18972
|
+
:param _CanSkipReadFlow: 是否允许此链接中签署方批量确认已读文件。 <ul><li>false (默认): 不允许批量确认已读文件。</li> <li>true : 允许批量确认已读文件。</li></ul> 注:`1. 此功能为白名单功能,使用前请联系对应客户经理进行开通。2. 使用此功能时,FlowIds参数必传。3. 对于企业签署方,如果对印章/签名控件有限制要求,需要保证所有印章/签名签署控件限制要求(印章id或印章/签名类型限制)一致,否则无法使用此功能。`
|
|
18973
|
+
:type CanSkipReadFlow: bool
|
|
18869
18974
|
"""
|
|
18870
18975
|
self._Operator = None
|
|
18871
18976
|
self._OrganizationName = None
|
|
@@ -18884,6 +18989,7 @@ class CreateSchemeUrlRequest(AbstractModel):
|
|
|
18884
18989
|
self._FlowGroupUrlInfo = None
|
|
18885
18990
|
self._UrlUseEnv = None
|
|
18886
18991
|
self._PickUpAfterJoined = None
|
|
18992
|
+
self._CanSkipReadFlow = None
|
|
18887
18993
|
|
|
18888
18994
|
@property
|
|
18889
18995
|
def Operator(self):
|
|
@@ -19112,6 +19218,17 @@ class CreateSchemeUrlRequest(AbstractModel):
|
|
|
19112
19218
|
def PickUpAfterJoined(self, PickUpAfterJoined):
|
|
19113
19219
|
self._PickUpAfterJoined = PickUpAfterJoined
|
|
19114
19220
|
|
|
19221
|
+
@property
|
|
19222
|
+
def CanSkipReadFlow(self):
|
|
19223
|
+
r"""是否允许此链接中签署方批量确认已读文件。 <ul><li>false (默认): 不允许批量确认已读文件。</li> <li>true : 允许批量确认已读文件。</li></ul> 注:`1. 此功能为白名单功能,使用前请联系对应客户经理进行开通。2. 使用此功能时,FlowIds参数必传。3. 对于企业签署方,如果对印章/签名控件有限制要求,需要保证所有印章/签名签署控件限制要求(印章id或印章/签名类型限制)一致,否则无法使用此功能。`
|
|
19224
|
+
:rtype: bool
|
|
19225
|
+
"""
|
|
19226
|
+
return self._CanSkipReadFlow
|
|
19227
|
+
|
|
19228
|
+
@CanSkipReadFlow.setter
|
|
19229
|
+
def CanSkipReadFlow(self, CanSkipReadFlow):
|
|
19230
|
+
self._CanSkipReadFlow = CanSkipReadFlow
|
|
19231
|
+
|
|
19115
19232
|
|
|
19116
19233
|
def _deserialize(self, params):
|
|
19117
19234
|
if params.get("Operator") is not None:
|
|
@@ -19137,6 +19254,7 @@ class CreateSchemeUrlRequest(AbstractModel):
|
|
|
19137
19254
|
self._FlowGroupUrlInfo._deserialize(params.get("FlowGroupUrlInfo"))
|
|
19138
19255
|
self._UrlUseEnv = params.get("UrlUseEnv")
|
|
19139
19256
|
self._PickUpAfterJoined = params.get("PickUpAfterJoined")
|
|
19257
|
+
self._CanSkipReadFlow = params.get("CanSkipReadFlow")
|
|
19140
19258
|
memeber_set = set(params.keys())
|
|
19141
19259
|
for name, value in vars(self).items():
|
|
19142
19260
|
property_name = name[1:]
|
|
@@ -24340,8 +24458,11 @@ class DescribeContractReviewTaskResponse(AbstractModel):
|
|
|
24340
24458
|
|
|
24341
24459
|
def __init__(self):
|
|
24342
24460
|
r"""
|
|
24343
|
-
:param _ChecklistId:
|
|
24461
|
+
:param _ChecklistId: 该字段已不再使用!
|
|
24462
|
+
用于审查任务的审查清单ID。注意:如果用户没有配置清单时此值可能为空,需要等大模型根据合同内容推荐出可以使用的审查清单。
|
|
24344
24463
|
:type ChecklistId: str
|
|
24464
|
+
:param _ChecklistIds: 用于审查任务的审查清单ID。注意:如果用户没有配置清单时此值可能为空,需要等大模型根据合同内容推荐出可以使用的审查清单。
|
|
24465
|
+
:type ChecklistIds: list of str
|
|
24345
24466
|
:param _CreatedOn: 合同审查任务创建时间。
|
|
24346
24467
|
:type CreatedOn: int
|
|
24347
24468
|
:param _FinishedOn: 合同审查任务完成时间。
|
|
@@ -24355,15 +24476,18 @@ class DescribeContractReviewTaskResponse(AbstractModel):
|
|
|
24355
24476
|
<li>**2** - 【宽松】以促成交易为核心,对合同条款的修改要求较为宽松,倾向于接受对方提出的条款,以尽快达成合作。</li>
|
|
24356
24477
|
</ul>
|
|
24357
24478
|
:type PolicyType: int
|
|
24358
|
-
:param _ResourceId: 合同审查的PDF文件资源ID。
|
|
24479
|
+
:param _ResourceId: 合同审查的PDF、WORD文件资源ID。
|
|
24359
24480
|
:type ResourceId: str
|
|
24360
24481
|
:param _Risks: 合同审查识别出的PDF文件风险信息,如果是空数组表示无风险。
|
|
24361
24482
|
|
|
24362
24483
|
注意:`审查结果由AI生成,仅供参考。请结合相关法律法规和公司制度要求综合判断。`
|
|
24363
24484
|
:type Risks: list of OutputRisk
|
|
24364
|
-
:param _Role:
|
|
24485
|
+
:param _Role: 该字段已不再使用!
|
|
24486
|
+
合同审查中的角色信息。注意: `如果用户没有配置审查角色时此值可能为null,需要等大模型根据合同内容推荐出审查角色信息。`
|
|
24365
24487
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
24366
24488
|
:type Role: :class:`tencentcloud.ess.v20201111.models.RiskIdentificationRoleInfo`
|
|
24489
|
+
:param _Roles: 合同审查中的角色信息。注意: `如果用户没有配置审查角色时此值可能为null,需要等大模型根据合同内容推荐出审查角色信息。`
|
|
24490
|
+
:type Roles: list of RiskIdentificationRoleInfo
|
|
24367
24491
|
:param _Status: 合同审查任务状态。
|
|
24368
24492
|
状态如下:
|
|
24369
24493
|
<ul>
|
|
@@ -24395,12 +24519,14 @@ class DescribeContractReviewTaskResponse(AbstractModel):
|
|
|
24395
24519
|
:type RequestId: str
|
|
24396
24520
|
"""
|
|
24397
24521
|
self._ChecklistId = None
|
|
24522
|
+
self._ChecklistIds = None
|
|
24398
24523
|
self._CreatedOn = None
|
|
24399
24524
|
self._FinishedOn = None
|
|
24400
24525
|
self._PolicyType = None
|
|
24401
24526
|
self._ResourceId = None
|
|
24402
24527
|
self._Risks = None
|
|
24403
24528
|
self._Role = None
|
|
24529
|
+
self._Roles = None
|
|
24404
24530
|
self._Status = None
|
|
24405
24531
|
self._TaskId = None
|
|
24406
24532
|
self._Comment = None
|
|
@@ -24413,7 +24539,8 @@ class DescribeContractReviewTaskResponse(AbstractModel):
|
|
|
24413
24539
|
|
|
24414
24540
|
@property
|
|
24415
24541
|
def ChecklistId(self):
|
|
24416
|
-
r"""
|
|
24542
|
+
r"""该字段已不再使用!
|
|
24543
|
+
用于审查任务的审查清单ID。注意:如果用户没有配置清单时此值可能为空,需要等大模型根据合同内容推荐出可以使用的审查清单。
|
|
24417
24544
|
:rtype: str
|
|
24418
24545
|
"""
|
|
24419
24546
|
return self._ChecklistId
|
|
@@ -24422,6 +24549,17 @@ class DescribeContractReviewTaskResponse(AbstractModel):
|
|
|
24422
24549
|
def ChecklistId(self, ChecklistId):
|
|
24423
24550
|
self._ChecklistId = ChecklistId
|
|
24424
24551
|
|
|
24552
|
+
@property
|
|
24553
|
+
def ChecklistIds(self):
|
|
24554
|
+
r"""用于审查任务的审查清单ID。注意:如果用户没有配置清单时此值可能为空,需要等大模型根据合同内容推荐出可以使用的审查清单。
|
|
24555
|
+
:rtype: list of str
|
|
24556
|
+
"""
|
|
24557
|
+
return self._ChecklistIds
|
|
24558
|
+
|
|
24559
|
+
@ChecklistIds.setter
|
|
24560
|
+
def ChecklistIds(self, ChecklistIds):
|
|
24561
|
+
self._ChecklistIds = ChecklistIds
|
|
24562
|
+
|
|
24425
24563
|
@property
|
|
24426
24564
|
def CreatedOn(self):
|
|
24427
24565
|
r"""合同审查任务创建时间。
|
|
@@ -24464,7 +24602,7 @@ class DescribeContractReviewTaskResponse(AbstractModel):
|
|
|
24464
24602
|
|
|
24465
24603
|
@property
|
|
24466
24604
|
def ResourceId(self):
|
|
24467
|
-
r"""合同审查的PDF文件资源ID。
|
|
24605
|
+
r"""合同审查的PDF、WORD文件资源ID。
|
|
24468
24606
|
:rtype: str
|
|
24469
24607
|
"""
|
|
24470
24608
|
return self._ResourceId
|
|
@@ -24488,7 +24626,8 @@ class DescribeContractReviewTaskResponse(AbstractModel):
|
|
|
24488
24626
|
|
|
24489
24627
|
@property
|
|
24490
24628
|
def Role(self):
|
|
24491
|
-
r"""
|
|
24629
|
+
r"""该字段已不再使用!
|
|
24630
|
+
合同审查中的角色信息。注意: `如果用户没有配置审查角色时此值可能为null,需要等大模型根据合同内容推荐出审查角色信息。`
|
|
24492
24631
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
24493
24632
|
:rtype: :class:`tencentcloud.ess.v20201111.models.RiskIdentificationRoleInfo`
|
|
24494
24633
|
"""
|
|
@@ -24498,6 +24637,17 @@ class DescribeContractReviewTaskResponse(AbstractModel):
|
|
|
24498
24637
|
def Role(self, Role):
|
|
24499
24638
|
self._Role = Role
|
|
24500
24639
|
|
|
24640
|
+
@property
|
|
24641
|
+
def Roles(self):
|
|
24642
|
+
r"""合同审查中的角色信息。注意: `如果用户没有配置审查角色时此值可能为null,需要等大模型根据合同内容推荐出审查角色信息。`
|
|
24643
|
+
:rtype: list of RiskIdentificationRoleInfo
|
|
24644
|
+
"""
|
|
24645
|
+
return self._Roles
|
|
24646
|
+
|
|
24647
|
+
@Roles.setter
|
|
24648
|
+
def Roles(self, Roles):
|
|
24649
|
+
self._Roles = Roles
|
|
24650
|
+
|
|
24501
24651
|
@property
|
|
24502
24652
|
def Status(self):
|
|
24503
24653
|
r"""合同审查任务状态。
|
|
@@ -24611,6 +24761,7 @@ class DescribeContractReviewTaskResponse(AbstractModel):
|
|
|
24611
24761
|
|
|
24612
24762
|
def _deserialize(self, params):
|
|
24613
24763
|
self._ChecklistId = params.get("ChecklistId")
|
|
24764
|
+
self._ChecklistIds = params.get("ChecklistIds")
|
|
24614
24765
|
self._CreatedOn = params.get("CreatedOn")
|
|
24615
24766
|
self._FinishedOn = params.get("FinishedOn")
|
|
24616
24767
|
self._PolicyType = params.get("PolicyType")
|
|
@@ -24624,6 +24775,12 @@ class DescribeContractReviewTaskResponse(AbstractModel):
|
|
|
24624
24775
|
if params.get("Role") is not None:
|
|
24625
24776
|
self._Role = RiskIdentificationRoleInfo()
|
|
24626
24777
|
self._Role._deserialize(params.get("Role"))
|
|
24778
|
+
if params.get("Roles") is not None:
|
|
24779
|
+
self._Roles = []
|
|
24780
|
+
for item in params.get("Roles"):
|
|
24781
|
+
obj = RiskIdentificationRoleInfo()
|
|
24782
|
+
obj._deserialize(item)
|
|
24783
|
+
self._Roles.append(obj)
|
|
24627
24784
|
self._Status = params.get("Status")
|
|
24628
24785
|
self._TaskId = params.get("TaskId")
|
|
24629
24786
|
self._Comment = params.get("Comment")
|
|
@@ -27650,11 +27807,21 @@ class DescribeOrganizationAuthStatusRequest(AbstractModel):
|
|
|
27650
27807
|
:type UniformSocialCreditCode: str
|
|
27651
27808
|
:param _LegalName: 法人姓名
|
|
27652
27809
|
:type LegalName: str
|
|
27810
|
+
:param _AuthorizationInfoId: 认证流 Id 是指在企业认证过程中,当前操作人的认证流程的唯一标识。每个企业在认证过程中只能有一条认证流认证成功。这意味着在同一认证过程内,一个企业只能有一个认证流程处于成功状态,以确保认证的唯一性和有效性。
|
|
27811
|
+
|
|
27812
|
+
|
|
27813
|
+
认证流 Id可以通过回调[授权书认证审核结果回调](https://qian.tencent.com/developers/company/callback_types_staffs/#%E5%8D%81%E5%85%AD-%E6%8E%88%E6%9D%83%E4%B9%A6%E8%AE%A4%E8%AF%81%E5%AE%A1%E6%A0%B8%E7%BB%93%E6%9E%9C%E5%9B%9E%E8%B0%83)获取
|
|
27814
|
+
|
|
27815
|
+
注意:
|
|
27816
|
+
如果传递了认证流Id,则下面的参数 超管二要素不会生效
|
|
27817
|
+
示例值:yDCHHUUckpbdaiqbUxJVsHWy99WG6kTY
|
|
27818
|
+
:type AuthorizationInfoId: str
|
|
27653
27819
|
"""
|
|
27654
27820
|
self._Operator = None
|
|
27655
27821
|
self._OrganizationName = None
|
|
27656
27822
|
self._UniformSocialCreditCode = None
|
|
27657
27823
|
self._LegalName = None
|
|
27824
|
+
self._AuthorizationInfoId = None
|
|
27658
27825
|
|
|
27659
27826
|
@property
|
|
27660
27827
|
def Operator(self):
|
|
@@ -27701,6 +27868,24 @@ class DescribeOrganizationAuthStatusRequest(AbstractModel):
|
|
|
27701
27868
|
def LegalName(self, LegalName):
|
|
27702
27869
|
self._LegalName = LegalName
|
|
27703
27870
|
|
|
27871
|
+
@property
|
|
27872
|
+
def AuthorizationInfoId(self):
|
|
27873
|
+
r"""认证流 Id 是指在企业认证过程中,当前操作人的认证流程的唯一标识。每个企业在认证过程中只能有一条认证流认证成功。这意味着在同一认证过程内,一个企业只能有一个认证流程处于成功状态,以确保认证的唯一性和有效性。
|
|
27874
|
+
|
|
27875
|
+
|
|
27876
|
+
认证流 Id可以通过回调[授权书认证审核结果回调](https://qian.tencent.com/developers/company/callback_types_staffs/#%E5%8D%81%E5%85%AD-%E6%8E%88%E6%9D%83%E4%B9%A6%E8%AE%A4%E8%AF%81%E5%AE%A1%E6%A0%B8%E7%BB%93%E6%9E%9C%E5%9B%9E%E8%B0%83)获取
|
|
27877
|
+
|
|
27878
|
+
注意:
|
|
27879
|
+
如果传递了认证流Id,则下面的参数 超管二要素不会生效
|
|
27880
|
+
示例值:yDCHHUUckpbdaiqbUxJVsHWy99WG6kTY
|
|
27881
|
+
:rtype: str
|
|
27882
|
+
"""
|
|
27883
|
+
return self._AuthorizationInfoId
|
|
27884
|
+
|
|
27885
|
+
@AuthorizationInfoId.setter
|
|
27886
|
+
def AuthorizationInfoId(self, AuthorizationInfoId):
|
|
27887
|
+
self._AuthorizationInfoId = AuthorizationInfoId
|
|
27888
|
+
|
|
27704
27889
|
|
|
27705
27890
|
def _deserialize(self, params):
|
|
27706
27891
|
if params.get("Operator") is not None:
|
|
@@ -27709,6 +27894,7 @@ class DescribeOrganizationAuthStatusRequest(AbstractModel):
|
|
|
27709
27894
|
self._OrganizationName = params.get("OrganizationName")
|
|
27710
27895
|
self._UniformSocialCreditCode = params.get("UniformSocialCreditCode")
|
|
27711
27896
|
self._LegalName = params.get("LegalName")
|
|
27897
|
+
self._AuthorizationInfoId = params.get("AuthorizationInfoId")
|
|
27712
27898
|
memeber_set = set(params.keys())
|
|
27713
27899
|
for name, value in vars(self).items():
|
|
27714
27900
|
property_name = name[1:]
|
|
@@ -34381,6 +34567,42 @@ class FlowGroupUrlInfo(AbstractModel):
|
|
|
34381
34567
|
|
|
34382
34568
|
|
|
34383
34569
|
|
|
34570
|
+
class FlowOperateLimit(AbstractModel):
|
|
34571
|
+
r"""发起合同流程时对合同流程的部分操作加以限制的配置。
|
|
34572
|
+
|
|
34573
|
+
"""
|
|
34574
|
+
|
|
34575
|
+
def __init__(self):
|
|
34576
|
+
r"""
|
|
34577
|
+
:param _NoRelease: 发起合同流程时,对签署完成后是否能发起对应的解除合同加以限制:<ul><li><b>false(默认值)</b>: 合同流程完成签署后,支持发起对应的解除协议。</li><li><b>true </b>: 合同流程完成签署后,<b>不支持</b>发起对应的解除协议。</li></ul>
|
|
34578
|
+
:type NoRelease: bool
|
|
34579
|
+
"""
|
|
34580
|
+
self._NoRelease = None
|
|
34581
|
+
|
|
34582
|
+
@property
|
|
34583
|
+
def NoRelease(self):
|
|
34584
|
+
r"""发起合同流程时,对签署完成后是否能发起对应的解除合同加以限制:<ul><li><b>false(默认值)</b>: 合同流程完成签署后,支持发起对应的解除协议。</li><li><b>true </b>: 合同流程完成签署后,<b>不支持</b>发起对应的解除协议。</li></ul>
|
|
34585
|
+
:rtype: bool
|
|
34586
|
+
"""
|
|
34587
|
+
return self._NoRelease
|
|
34588
|
+
|
|
34589
|
+
@NoRelease.setter
|
|
34590
|
+
def NoRelease(self, NoRelease):
|
|
34591
|
+
self._NoRelease = NoRelease
|
|
34592
|
+
|
|
34593
|
+
|
|
34594
|
+
def _deserialize(self, params):
|
|
34595
|
+
self._NoRelease = params.get("NoRelease")
|
|
34596
|
+
memeber_set = set(params.keys())
|
|
34597
|
+
for name, value in vars(self).items():
|
|
34598
|
+
property_name = name[1:]
|
|
34599
|
+
if property_name in memeber_set:
|
|
34600
|
+
memeber_set.remove(property_name)
|
|
34601
|
+
if len(memeber_set) > 0:
|
|
34602
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
34603
|
+
|
|
34604
|
+
|
|
34605
|
+
|
|
34384
34606
|
class FormField(AbstractModel):
|
|
34385
34607
|
r"""电子文档的控件填充信息。按照控件类型进行相应的填充。
|
|
34386
34608
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-ess
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.59
|
|
4
4
|
Summary: Tencent Cloud Ess SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.59
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.59
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.57
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|