tencentcloud-sdk-python-ess 3.1.60__tar.gz → 3.1.72__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.60 → tencentcloud_sdk_python_ess-3.1.72}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_ess-3.1.60 → tencentcloud_sdk_python_ess-3.1.72}/setup.py +1 -1
- {tencentcloud_sdk_python_ess-3.1.60 → tencentcloud_sdk_python_ess-3.1.72}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_ess-3.1.60 → tencentcloud_sdk_python_ess-3.1.72}/tencentcloud/ess/v20201111/ess_client.py +92 -0
- {tencentcloud_sdk_python_ess-3.1.60 → tencentcloud_sdk_python_ess-3.1.72}/tencentcloud/ess/v20201111/ess_client_async.py +72 -0
- {tencentcloud_sdk_python_ess-3.1.60 → tencentcloud_sdk_python_ess-3.1.72}/tencentcloud/ess/v20201111/models.py +610 -16
- {tencentcloud_sdk_python_ess-3.1.60 → tencentcloud_sdk_python_ess-3.1.72}/tencentcloud_sdk_python_ess.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_ess-3.1.72/tencentcloud_sdk_python_ess.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_ess-3.1.60/tencentcloud_sdk_python_ess.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_ess-3.1.60 → tencentcloud_sdk_python_ess-3.1.72}/README.rst +0 -0
- {tencentcloud_sdk_python_ess-3.1.60 → tencentcloud_sdk_python_ess-3.1.72}/setup.cfg +0 -0
- {tencentcloud_sdk_python_ess-3.1.60 → tencentcloud_sdk_python_ess-3.1.72}/tencentcloud/ess/__init__.py +0 -0
- {tencentcloud_sdk_python_ess-3.1.60 → tencentcloud_sdk_python_ess-3.1.72}/tencentcloud/ess/v20201111/__init__.py +0 -0
- {tencentcloud_sdk_python_ess-3.1.60 → tencentcloud_sdk_python_ess-3.1.72}/tencentcloud/ess/v20201111/errorcodes.py +0 -0
- {tencentcloud_sdk_python_ess-3.1.60 → tencentcloud_sdk_python_ess-3.1.72}/tencentcloud_sdk_python_ess.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_ess-3.1.60 → tencentcloud_sdk_python_ess-3.1.72}/tencentcloud_sdk_python_ess.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_ess-3.1.60 → tencentcloud_sdk_python_ess-3.1.72}/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.72
|
|
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.72
|
|
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.72,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Ess SDK for Python',
|
|
@@ -741,6 +741,29 @@ class EssClient(AbstractClient):
|
|
|
741
741
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
742
742
|
|
|
743
743
|
|
|
744
|
+
def CreateDraftContractByPromptsTask(self, request):
|
|
745
|
+
r"""此接口(CreateDraftContractByPromptsTask)用于创建智能合同起草任务。
|
|
746
|
+
|
|
747
|
+
:param request: Request instance for CreateDraftContractByPromptsTask.
|
|
748
|
+
:type request: :class:`tencentcloud.ess.v20201111.models.CreateDraftContractByPromptsTaskRequest`
|
|
749
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.CreateDraftContractByPromptsTaskResponse`
|
|
750
|
+
|
|
751
|
+
"""
|
|
752
|
+
try:
|
|
753
|
+
params = request._serialize()
|
|
754
|
+
headers = request.headers
|
|
755
|
+
body = self.call("CreateDraftContractByPromptsTask", params, headers=headers)
|
|
756
|
+
response = json.loads(body)
|
|
757
|
+
model = models.CreateDraftContractByPromptsTaskResponse()
|
|
758
|
+
model._deserialize(response["Response"])
|
|
759
|
+
return model
|
|
760
|
+
except Exception as e:
|
|
761
|
+
if isinstance(e, TencentCloudSDKException):
|
|
762
|
+
raise
|
|
763
|
+
else:
|
|
764
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
765
|
+
|
|
766
|
+
|
|
744
767
|
def CreateDynamicFlowApprover(self, request):
|
|
745
768
|
r"""此接口(CreateDynamicFlowApprover)接口主要用于补充动态签署方2.0合同的签署方信息,包括但不限于名字、手机号和签署区域等信息。
|
|
746
769
|
|
|
@@ -2908,6 +2931,29 @@ class EssClient(AbstractClient):
|
|
|
2908
2931
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2909
2932
|
|
|
2910
2933
|
|
|
2934
|
+
def DescribeContractReviewMarkedRiskExportTask(self, request):
|
|
2935
|
+
r"""本接口(DescribeContractReviewMarkedRiskExportTask)用于查询由 ExportContractReviewMarkedRisk 接口创建的导出任务状态。
|
|
2936
|
+
|
|
2937
|
+
:param request: Request instance for DescribeContractReviewMarkedRiskExportTask.
|
|
2938
|
+
:type request: :class:`tencentcloud.ess.v20201111.models.DescribeContractReviewMarkedRiskExportTaskRequest`
|
|
2939
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.DescribeContractReviewMarkedRiskExportTaskResponse`
|
|
2940
|
+
|
|
2941
|
+
"""
|
|
2942
|
+
try:
|
|
2943
|
+
params = request._serialize()
|
|
2944
|
+
headers = request.headers
|
|
2945
|
+
body = self.call("DescribeContractReviewMarkedRiskExportTask", params, headers=headers)
|
|
2946
|
+
response = json.loads(body)
|
|
2947
|
+
model = models.DescribeContractReviewMarkedRiskExportTaskResponse()
|
|
2948
|
+
model._deserialize(response["Response"])
|
|
2949
|
+
return model
|
|
2950
|
+
except Exception as e:
|
|
2951
|
+
if isinstance(e, TencentCloudSDKException):
|
|
2952
|
+
raise
|
|
2953
|
+
else:
|
|
2954
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2955
|
+
|
|
2956
|
+
|
|
2911
2957
|
def DescribeContractReviewTask(self, request):
|
|
2912
2958
|
r"""本接口(DescribeContractReviewTask)用于获取合同审查任务详情,包括任务的状态和识别出的风险信息。
|
|
2913
2959
|
|
|
@@ -2985,6 +3031,29 @@ class EssClient(AbstractClient):
|
|
|
2985
3031
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2986
3032
|
|
|
2987
3033
|
|
|
3034
|
+
def DescribeDraftContractByPromptsTask(self, request):
|
|
3035
|
+
r"""此接口(DescribeDraftContractByPromptsTask)用于查询智能合同起草任务状态。
|
|
3036
|
+
|
|
3037
|
+
:param request: Request instance for DescribeDraftContractByPromptsTask.
|
|
3038
|
+
:type request: :class:`tencentcloud.ess.v20201111.models.DescribeDraftContractByPromptsTaskRequest`
|
|
3039
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.DescribeDraftContractByPromptsTaskResponse`
|
|
3040
|
+
|
|
3041
|
+
"""
|
|
3042
|
+
try:
|
|
3043
|
+
params = request._serialize()
|
|
3044
|
+
headers = request.headers
|
|
3045
|
+
body = self.call("DescribeDraftContractByPromptsTask", params, headers=headers)
|
|
3046
|
+
response = json.loads(body)
|
|
3047
|
+
model = models.DescribeDraftContractByPromptsTaskResponse()
|
|
3048
|
+
model._deserialize(response["Response"])
|
|
3049
|
+
return model
|
|
3050
|
+
except Exception as e:
|
|
3051
|
+
if isinstance(e, TencentCloudSDKException):
|
|
3052
|
+
raise
|
|
3053
|
+
else:
|
|
3054
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
3055
|
+
|
|
3056
|
+
|
|
2988
3057
|
def DescribeEnterpriseContractReviewChecklists(self, request):
|
|
2989
3058
|
r"""本接口(DescribeEnterpriseContractReviewChecklists)用于获取企业全部审查要点清单。
|
|
2990
3059
|
|
|
@@ -3821,6 +3890,29 @@ class EssClient(AbstractClient):
|
|
|
3821
3890
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
3822
3891
|
|
|
3823
3892
|
|
|
3893
|
+
def ExportContractReviewMarkedRisk(self, request):
|
|
3894
|
+
r"""本接口(ExportContractReviewMarkedRisk)用于创建导出任务,可以导出合同审查标注风险项,包括忽略的、标记错误的、人工标注的风险等
|
|
3895
|
+
|
|
3896
|
+
:param request: Request instance for ExportContractReviewMarkedRisk.
|
|
3897
|
+
:type request: :class:`tencentcloud.ess.v20201111.models.ExportContractReviewMarkedRiskRequest`
|
|
3898
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.ExportContractReviewMarkedRiskResponse`
|
|
3899
|
+
|
|
3900
|
+
"""
|
|
3901
|
+
try:
|
|
3902
|
+
params = request._serialize()
|
|
3903
|
+
headers = request.headers
|
|
3904
|
+
body = self.call("ExportContractReviewMarkedRisk", params, headers=headers)
|
|
3905
|
+
response = json.loads(body)
|
|
3906
|
+
model = models.ExportContractReviewMarkedRiskResponse()
|
|
3907
|
+
model._deserialize(response["Response"])
|
|
3908
|
+
return model
|
|
3909
|
+
except Exception as e:
|
|
3910
|
+
if isinstance(e, TencentCloudSDKException):
|
|
3911
|
+
raise
|
|
3912
|
+
else:
|
|
3913
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
3914
|
+
|
|
3915
|
+
|
|
3824
3916
|
def ExportContractReviewResult(self, request):
|
|
3825
3917
|
r"""本接口(ExportContractReviewResult)用于导出和同审查结果。支持选择 1 “带风险批注文件”、 2 “审查结果&摘要(.xIsx)”
|
|
3826
3918
|
|
|
@@ -630,6 +630,24 @@ class EssClient(AbstractClient):
|
|
|
630
630
|
|
|
631
631
|
return await self.call_and_deserialize(**kwargs)
|
|
632
632
|
|
|
633
|
+
async def CreateDraftContractByPromptsTask(
|
|
634
|
+
self,
|
|
635
|
+
request: models.CreateDraftContractByPromptsTaskRequest,
|
|
636
|
+
opts: Dict = None,
|
|
637
|
+
) -> models.CreateDraftContractByPromptsTaskResponse:
|
|
638
|
+
"""
|
|
639
|
+
此接口(CreateDraftContractByPromptsTask)用于创建智能合同起草任务。
|
|
640
|
+
"""
|
|
641
|
+
|
|
642
|
+
kwargs = {}
|
|
643
|
+
kwargs["action"] = "CreateDraftContractByPromptsTask"
|
|
644
|
+
kwargs["params"] = request._serialize()
|
|
645
|
+
kwargs["resp_cls"] = models.CreateDraftContractByPromptsTaskResponse
|
|
646
|
+
kwargs["headers"] = request.headers
|
|
647
|
+
kwargs["opts"] = opts or {}
|
|
648
|
+
|
|
649
|
+
return await self.call_and_deserialize(**kwargs)
|
|
650
|
+
|
|
633
651
|
async def CreateDynamicFlowApprover(
|
|
634
652
|
self,
|
|
635
653
|
request: models.CreateDynamicFlowApproverRequest,
|
|
@@ -2457,6 +2475,24 @@ class EssClient(AbstractClient):
|
|
|
2457
2475
|
|
|
2458
2476
|
return await self.call_and_deserialize(**kwargs)
|
|
2459
2477
|
|
|
2478
|
+
async def DescribeContractReviewMarkedRiskExportTask(
|
|
2479
|
+
self,
|
|
2480
|
+
request: models.DescribeContractReviewMarkedRiskExportTaskRequest,
|
|
2481
|
+
opts: Dict = None,
|
|
2482
|
+
) -> models.DescribeContractReviewMarkedRiskExportTaskResponse:
|
|
2483
|
+
"""
|
|
2484
|
+
本接口(DescribeContractReviewMarkedRiskExportTask)用于查询由 ExportContractReviewMarkedRisk 接口创建的导出任务状态。
|
|
2485
|
+
"""
|
|
2486
|
+
|
|
2487
|
+
kwargs = {}
|
|
2488
|
+
kwargs["action"] = "DescribeContractReviewMarkedRiskExportTask"
|
|
2489
|
+
kwargs["params"] = request._serialize()
|
|
2490
|
+
kwargs["resp_cls"] = models.DescribeContractReviewMarkedRiskExportTaskResponse
|
|
2491
|
+
kwargs["headers"] = request.headers
|
|
2492
|
+
kwargs["opts"] = opts or {}
|
|
2493
|
+
|
|
2494
|
+
return await self.call_and_deserialize(**kwargs)
|
|
2495
|
+
|
|
2460
2496
|
async def DescribeContractReviewTask(
|
|
2461
2497
|
self,
|
|
2462
2498
|
request: models.DescribeContractReviewTaskRequest,
|
|
@@ -2519,6 +2555,24 @@ class EssClient(AbstractClient):
|
|
|
2519
2555
|
|
|
2520
2556
|
return await self.call_and_deserialize(**kwargs)
|
|
2521
2557
|
|
|
2558
|
+
async def DescribeDraftContractByPromptsTask(
|
|
2559
|
+
self,
|
|
2560
|
+
request: models.DescribeDraftContractByPromptsTaskRequest,
|
|
2561
|
+
opts: Dict = None,
|
|
2562
|
+
) -> models.DescribeDraftContractByPromptsTaskResponse:
|
|
2563
|
+
"""
|
|
2564
|
+
此接口(DescribeDraftContractByPromptsTask)用于查询智能合同起草任务状态。
|
|
2565
|
+
"""
|
|
2566
|
+
|
|
2567
|
+
kwargs = {}
|
|
2568
|
+
kwargs["action"] = "DescribeDraftContractByPromptsTask"
|
|
2569
|
+
kwargs["params"] = request._serialize()
|
|
2570
|
+
kwargs["resp_cls"] = models.DescribeDraftContractByPromptsTaskResponse
|
|
2571
|
+
kwargs["headers"] = request.headers
|
|
2572
|
+
kwargs["opts"] = opts or {}
|
|
2573
|
+
|
|
2574
|
+
return await self.call_and_deserialize(**kwargs)
|
|
2575
|
+
|
|
2522
2576
|
async def DescribeEnterpriseContractReviewChecklists(
|
|
2523
2577
|
self,
|
|
2524
2578
|
request: models.DescribeEnterpriseContractReviewChecklistsRequest,
|
|
@@ -3205,6 +3259,24 @@ class EssClient(AbstractClient):
|
|
|
3205
3259
|
|
|
3206
3260
|
return await self.call_and_deserialize(**kwargs)
|
|
3207
3261
|
|
|
3262
|
+
async def ExportContractReviewMarkedRisk(
|
|
3263
|
+
self,
|
|
3264
|
+
request: models.ExportContractReviewMarkedRiskRequest,
|
|
3265
|
+
opts: Dict = None,
|
|
3266
|
+
) -> models.ExportContractReviewMarkedRiskResponse:
|
|
3267
|
+
"""
|
|
3268
|
+
本接口(ExportContractReviewMarkedRisk)用于创建导出任务,可以导出合同审查标注风险项,包括忽略的、标记错误的、人工标注的风险等
|
|
3269
|
+
"""
|
|
3270
|
+
|
|
3271
|
+
kwargs = {}
|
|
3272
|
+
kwargs["action"] = "ExportContractReviewMarkedRisk"
|
|
3273
|
+
kwargs["params"] = request._serialize()
|
|
3274
|
+
kwargs["resp_cls"] = models.ExportContractReviewMarkedRiskResponse
|
|
3275
|
+
kwargs["headers"] = request.headers
|
|
3276
|
+
kwargs["opts"] = opts or {}
|
|
3277
|
+
|
|
3278
|
+
return await self.call_and_deserialize(**kwargs)
|
|
3279
|
+
|
|
3208
3280
|
async def ExportContractReviewResult(
|
|
3209
3281
|
self,
|
|
3210
3282
|
request: models.ExportContractReviewResultRequest,
|
|
@@ -8606,6 +8606,149 @@ class CreateDocumentResponse(AbstractModel):
|
|
|
8606
8606
|
self._RequestId = params.get("RequestId")
|
|
8607
8607
|
|
|
8608
8608
|
|
|
8609
|
+
class CreateDraftContractByPromptsTaskRequest(AbstractModel):
|
|
8610
|
+
r"""CreateDraftContractByPromptsTask请求参数结构体
|
|
8611
|
+
|
|
8612
|
+
"""
|
|
8613
|
+
|
|
8614
|
+
def __init__(self):
|
|
8615
|
+
r"""
|
|
8616
|
+
:param _Operator: 执行本接口操作的员工信息。 注: 在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。
|
|
8617
|
+
:type Operator: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
|
8618
|
+
:param _Requirement: 起草要求,范围要求 5-1000 字
|
|
8619
|
+
:type Requirement: str
|
|
8620
|
+
:param _ReferenceTemplateId: 参考模板文件资源id(PDF/Word格式),大小不超过1M,通过[上传文件](https://qian.tencent.com/developers/companyApis/templatesAndFiles/UploadFiles)接口来获取。
|
|
8621
|
+
:type ReferenceTemplateId: str
|
|
8622
|
+
:param _RequirementFileIds: 相关规定文件资源id列表(PDF/Word格式),最多3个文件,每个大小不超过1M,通过[上传文件](https://qian.tencent.com/developers/companyApis/templatesAndFiles/UploadFiles)接口来获取。
|
|
8623
|
+
:type RequirementFileIds: list of str
|
|
8624
|
+
:param _ContractLanguage: 起草合同的语言要求(zh,en)默认zh
|
|
8625
|
+
:type ContractLanguage: str
|
|
8626
|
+
"""
|
|
8627
|
+
self._Operator = None
|
|
8628
|
+
self._Requirement = None
|
|
8629
|
+
self._ReferenceTemplateId = None
|
|
8630
|
+
self._RequirementFileIds = None
|
|
8631
|
+
self._ContractLanguage = None
|
|
8632
|
+
|
|
8633
|
+
@property
|
|
8634
|
+
def Operator(self):
|
|
8635
|
+
r"""执行本接口操作的员工信息。 注: 在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。
|
|
8636
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
|
8637
|
+
"""
|
|
8638
|
+
return self._Operator
|
|
8639
|
+
|
|
8640
|
+
@Operator.setter
|
|
8641
|
+
def Operator(self, Operator):
|
|
8642
|
+
self._Operator = Operator
|
|
8643
|
+
|
|
8644
|
+
@property
|
|
8645
|
+
def Requirement(self):
|
|
8646
|
+
r"""起草要求,范围要求 5-1000 字
|
|
8647
|
+
:rtype: str
|
|
8648
|
+
"""
|
|
8649
|
+
return self._Requirement
|
|
8650
|
+
|
|
8651
|
+
@Requirement.setter
|
|
8652
|
+
def Requirement(self, Requirement):
|
|
8653
|
+
self._Requirement = Requirement
|
|
8654
|
+
|
|
8655
|
+
@property
|
|
8656
|
+
def ReferenceTemplateId(self):
|
|
8657
|
+
r"""参考模板文件资源id(PDF/Word格式),大小不超过1M,通过[上传文件](https://qian.tencent.com/developers/companyApis/templatesAndFiles/UploadFiles)接口来获取。
|
|
8658
|
+
:rtype: str
|
|
8659
|
+
"""
|
|
8660
|
+
return self._ReferenceTemplateId
|
|
8661
|
+
|
|
8662
|
+
@ReferenceTemplateId.setter
|
|
8663
|
+
def ReferenceTemplateId(self, ReferenceTemplateId):
|
|
8664
|
+
self._ReferenceTemplateId = ReferenceTemplateId
|
|
8665
|
+
|
|
8666
|
+
@property
|
|
8667
|
+
def RequirementFileIds(self):
|
|
8668
|
+
r"""相关规定文件资源id列表(PDF/Word格式),最多3个文件,每个大小不超过1M,通过[上传文件](https://qian.tencent.com/developers/companyApis/templatesAndFiles/UploadFiles)接口来获取。
|
|
8669
|
+
:rtype: list of str
|
|
8670
|
+
"""
|
|
8671
|
+
return self._RequirementFileIds
|
|
8672
|
+
|
|
8673
|
+
@RequirementFileIds.setter
|
|
8674
|
+
def RequirementFileIds(self, RequirementFileIds):
|
|
8675
|
+
self._RequirementFileIds = RequirementFileIds
|
|
8676
|
+
|
|
8677
|
+
@property
|
|
8678
|
+
def ContractLanguage(self):
|
|
8679
|
+
r"""起草合同的语言要求(zh,en)默认zh
|
|
8680
|
+
:rtype: str
|
|
8681
|
+
"""
|
|
8682
|
+
return self._ContractLanguage
|
|
8683
|
+
|
|
8684
|
+
@ContractLanguage.setter
|
|
8685
|
+
def ContractLanguage(self, ContractLanguage):
|
|
8686
|
+
self._ContractLanguage = ContractLanguage
|
|
8687
|
+
|
|
8688
|
+
|
|
8689
|
+
def _deserialize(self, params):
|
|
8690
|
+
if params.get("Operator") is not None:
|
|
8691
|
+
self._Operator = UserInfo()
|
|
8692
|
+
self._Operator._deserialize(params.get("Operator"))
|
|
8693
|
+
self._Requirement = params.get("Requirement")
|
|
8694
|
+
self._ReferenceTemplateId = params.get("ReferenceTemplateId")
|
|
8695
|
+
self._RequirementFileIds = params.get("RequirementFileIds")
|
|
8696
|
+
self._ContractLanguage = params.get("ContractLanguage")
|
|
8697
|
+
memeber_set = set(params.keys())
|
|
8698
|
+
for name, value in vars(self).items():
|
|
8699
|
+
property_name = name[1:]
|
|
8700
|
+
if property_name in memeber_set:
|
|
8701
|
+
memeber_set.remove(property_name)
|
|
8702
|
+
if len(memeber_set) > 0:
|
|
8703
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
8704
|
+
|
|
8705
|
+
|
|
8706
|
+
|
|
8707
|
+
class CreateDraftContractByPromptsTaskResponse(AbstractModel):
|
|
8708
|
+
r"""CreateDraftContractByPromptsTask返回参数结构体
|
|
8709
|
+
|
|
8710
|
+
"""
|
|
8711
|
+
|
|
8712
|
+
def __init__(self):
|
|
8713
|
+
r"""
|
|
8714
|
+
:param _TaskId: 起草任务id
|
|
8715
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8716
|
+
:type TaskId: str
|
|
8717
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
8718
|
+
:type RequestId: str
|
|
8719
|
+
"""
|
|
8720
|
+
self._TaskId = None
|
|
8721
|
+
self._RequestId = None
|
|
8722
|
+
|
|
8723
|
+
@property
|
|
8724
|
+
def TaskId(self):
|
|
8725
|
+
r"""起草任务id
|
|
8726
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8727
|
+
:rtype: str
|
|
8728
|
+
"""
|
|
8729
|
+
return self._TaskId
|
|
8730
|
+
|
|
8731
|
+
@TaskId.setter
|
|
8732
|
+
def TaskId(self, TaskId):
|
|
8733
|
+
self._TaskId = TaskId
|
|
8734
|
+
|
|
8735
|
+
@property
|
|
8736
|
+
def RequestId(self):
|
|
8737
|
+
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
8738
|
+
:rtype: str
|
|
8739
|
+
"""
|
|
8740
|
+
return self._RequestId
|
|
8741
|
+
|
|
8742
|
+
@RequestId.setter
|
|
8743
|
+
def RequestId(self, RequestId):
|
|
8744
|
+
self._RequestId = RequestId
|
|
8745
|
+
|
|
8746
|
+
|
|
8747
|
+
def _deserialize(self, params):
|
|
8748
|
+
self._TaskId = params.get("TaskId")
|
|
8749
|
+
self._RequestId = params.get("RequestId")
|
|
8750
|
+
|
|
8751
|
+
|
|
8609
8752
|
class CreateDynamicFlowApproverRequest(AbstractModel):
|
|
8610
8753
|
r"""CreateDynamicFlowApprover请求参数结构体
|
|
8611
8754
|
|
|
@@ -24452,6 +24595,138 @@ class DescribeContractReviewChecklistsWebUrlResponse(AbstractModel):
|
|
|
24452
24595
|
self._RequestId = params.get("RequestId")
|
|
24453
24596
|
|
|
24454
24597
|
|
|
24598
|
+
class DescribeContractReviewMarkedRiskExportTaskRequest(AbstractModel):
|
|
24599
|
+
r"""DescribeContractReviewMarkedRiskExportTask请求参数结构体
|
|
24600
|
+
|
|
24601
|
+
"""
|
|
24602
|
+
|
|
24603
|
+
def __init__(self):
|
|
24604
|
+
r"""
|
|
24605
|
+
:param _Operator: 执行本接口操作的员工信息。
|
|
24606
|
+
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
|
24607
|
+
:type Operator: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
|
24608
|
+
:param _TaskId: 导出任务 ID。
|
|
24609
|
+
:type TaskId: str
|
|
24610
|
+
:param _Agent: 代理企业和员工的信息。
|
|
24611
|
+
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
|
24612
|
+
:type Agent: :class:`tencentcloud.ess.v20201111.models.Agent`
|
|
24613
|
+
"""
|
|
24614
|
+
self._Operator = None
|
|
24615
|
+
self._TaskId = None
|
|
24616
|
+
self._Agent = None
|
|
24617
|
+
|
|
24618
|
+
@property
|
|
24619
|
+
def Operator(self):
|
|
24620
|
+
r"""执行本接口操作的员工信息。
|
|
24621
|
+
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
|
24622
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
|
24623
|
+
"""
|
|
24624
|
+
return self._Operator
|
|
24625
|
+
|
|
24626
|
+
@Operator.setter
|
|
24627
|
+
def Operator(self, Operator):
|
|
24628
|
+
self._Operator = Operator
|
|
24629
|
+
|
|
24630
|
+
@property
|
|
24631
|
+
def TaskId(self):
|
|
24632
|
+
r"""导出任务 ID。
|
|
24633
|
+
:rtype: str
|
|
24634
|
+
"""
|
|
24635
|
+
return self._TaskId
|
|
24636
|
+
|
|
24637
|
+
@TaskId.setter
|
|
24638
|
+
def TaskId(self, TaskId):
|
|
24639
|
+
self._TaskId = TaskId
|
|
24640
|
+
|
|
24641
|
+
@property
|
|
24642
|
+
def Agent(self):
|
|
24643
|
+
r"""代理企业和员工的信息。
|
|
24644
|
+
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
|
24645
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.Agent`
|
|
24646
|
+
"""
|
|
24647
|
+
return self._Agent
|
|
24648
|
+
|
|
24649
|
+
@Agent.setter
|
|
24650
|
+
def Agent(self, Agent):
|
|
24651
|
+
self._Agent = Agent
|
|
24652
|
+
|
|
24653
|
+
|
|
24654
|
+
def _deserialize(self, params):
|
|
24655
|
+
if params.get("Operator") is not None:
|
|
24656
|
+
self._Operator = UserInfo()
|
|
24657
|
+
self._Operator._deserialize(params.get("Operator"))
|
|
24658
|
+
self._TaskId = params.get("TaskId")
|
|
24659
|
+
if params.get("Agent") is not None:
|
|
24660
|
+
self._Agent = Agent()
|
|
24661
|
+
self._Agent._deserialize(params.get("Agent"))
|
|
24662
|
+
memeber_set = set(params.keys())
|
|
24663
|
+
for name, value in vars(self).items():
|
|
24664
|
+
property_name = name[1:]
|
|
24665
|
+
if property_name in memeber_set:
|
|
24666
|
+
memeber_set.remove(property_name)
|
|
24667
|
+
if len(memeber_set) > 0:
|
|
24668
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
24669
|
+
|
|
24670
|
+
|
|
24671
|
+
|
|
24672
|
+
class DescribeContractReviewMarkedRiskExportTaskResponse(AbstractModel):
|
|
24673
|
+
r"""DescribeContractReviewMarkedRiskExportTask返回参数结构体
|
|
24674
|
+
|
|
24675
|
+
"""
|
|
24676
|
+
|
|
24677
|
+
def __init__(self):
|
|
24678
|
+
r"""
|
|
24679
|
+
:param _Url: 导出文件 url。
|
|
24680
|
+
:type Url: str
|
|
24681
|
+
:param _Status: 任务状态。未知 = 0; 创建完成 = 1; 队列中 = 2; 执行中 = 3; 执行成功 = 4; 失败 = 5; 终止 = 6;
|
|
24682
|
+
:type Status: int
|
|
24683
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
24684
|
+
:type RequestId: str
|
|
24685
|
+
"""
|
|
24686
|
+
self._Url = None
|
|
24687
|
+
self._Status = None
|
|
24688
|
+
self._RequestId = None
|
|
24689
|
+
|
|
24690
|
+
@property
|
|
24691
|
+
def Url(self):
|
|
24692
|
+
r"""导出文件 url。
|
|
24693
|
+
:rtype: str
|
|
24694
|
+
"""
|
|
24695
|
+
return self._Url
|
|
24696
|
+
|
|
24697
|
+
@Url.setter
|
|
24698
|
+
def Url(self, Url):
|
|
24699
|
+
self._Url = Url
|
|
24700
|
+
|
|
24701
|
+
@property
|
|
24702
|
+
def Status(self):
|
|
24703
|
+
r"""任务状态。未知 = 0; 创建完成 = 1; 队列中 = 2; 执行中 = 3; 执行成功 = 4; 失败 = 5; 终止 = 6;
|
|
24704
|
+
:rtype: int
|
|
24705
|
+
"""
|
|
24706
|
+
return self._Status
|
|
24707
|
+
|
|
24708
|
+
@Status.setter
|
|
24709
|
+
def Status(self, Status):
|
|
24710
|
+
self._Status = Status
|
|
24711
|
+
|
|
24712
|
+
@property
|
|
24713
|
+
def RequestId(self):
|
|
24714
|
+
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
24715
|
+
:rtype: str
|
|
24716
|
+
"""
|
|
24717
|
+
return self._RequestId
|
|
24718
|
+
|
|
24719
|
+
@RequestId.setter
|
|
24720
|
+
def RequestId(self, RequestId):
|
|
24721
|
+
self._RequestId = RequestId
|
|
24722
|
+
|
|
24723
|
+
|
|
24724
|
+
def _deserialize(self, params):
|
|
24725
|
+
self._Url = params.get("Url")
|
|
24726
|
+
self._Status = params.get("Status")
|
|
24727
|
+
self._RequestId = params.get("RequestId")
|
|
24728
|
+
|
|
24729
|
+
|
|
24455
24730
|
class DescribeContractReviewTaskListWebUrlRequest(AbstractModel):
|
|
24456
24731
|
r"""DescribeContractReviewTaskListWebUrl请求参数结构体
|
|
24457
24732
|
|
|
@@ -25095,6 +25370,162 @@ class DescribeContractReviewWebUrlResponse(AbstractModel):
|
|
|
25095
25370
|
self._RequestId = params.get("RequestId")
|
|
25096
25371
|
|
|
25097
25372
|
|
|
25373
|
+
class DescribeDraftContractByPromptsTaskRequest(AbstractModel):
|
|
25374
|
+
r"""DescribeDraftContractByPromptsTask请求参数结构体
|
|
25375
|
+
|
|
25376
|
+
"""
|
|
25377
|
+
|
|
25378
|
+
def __init__(self):
|
|
25379
|
+
r"""
|
|
25380
|
+
:param _Operator: 执行本接口操作的员工信息。 注: 在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。
|
|
25381
|
+
:type Operator: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
|
25382
|
+
:param _TaskId: 任务id
|
|
25383
|
+
:type TaskId: str
|
|
25384
|
+
"""
|
|
25385
|
+
self._Operator = None
|
|
25386
|
+
self._TaskId = None
|
|
25387
|
+
|
|
25388
|
+
@property
|
|
25389
|
+
def Operator(self):
|
|
25390
|
+
r"""执行本接口操作的员工信息。 注: 在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。
|
|
25391
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
|
25392
|
+
"""
|
|
25393
|
+
return self._Operator
|
|
25394
|
+
|
|
25395
|
+
@Operator.setter
|
|
25396
|
+
def Operator(self, Operator):
|
|
25397
|
+
self._Operator = Operator
|
|
25398
|
+
|
|
25399
|
+
@property
|
|
25400
|
+
def TaskId(self):
|
|
25401
|
+
r"""任务id
|
|
25402
|
+
:rtype: str
|
|
25403
|
+
"""
|
|
25404
|
+
return self._TaskId
|
|
25405
|
+
|
|
25406
|
+
@TaskId.setter
|
|
25407
|
+
def TaskId(self, TaskId):
|
|
25408
|
+
self._TaskId = TaskId
|
|
25409
|
+
|
|
25410
|
+
|
|
25411
|
+
def _deserialize(self, params):
|
|
25412
|
+
if params.get("Operator") is not None:
|
|
25413
|
+
self._Operator = UserInfo()
|
|
25414
|
+
self._Operator._deserialize(params.get("Operator"))
|
|
25415
|
+
self._TaskId = params.get("TaskId")
|
|
25416
|
+
memeber_set = set(params.keys())
|
|
25417
|
+
for name, value in vars(self).items():
|
|
25418
|
+
property_name = name[1:]
|
|
25419
|
+
if property_name in memeber_set:
|
|
25420
|
+
memeber_set.remove(property_name)
|
|
25421
|
+
if len(memeber_set) > 0:
|
|
25422
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
25423
|
+
|
|
25424
|
+
|
|
25425
|
+
|
|
25426
|
+
class DescribeDraftContractByPromptsTaskResponse(AbstractModel):
|
|
25427
|
+
r"""DescribeDraftContractByPromptsTask返回参数结构体
|
|
25428
|
+
|
|
25429
|
+
"""
|
|
25430
|
+
|
|
25431
|
+
def __init__(self):
|
|
25432
|
+
r"""
|
|
25433
|
+
:param _Status: 任务状态,枚举,0 已创建,1 执行中,2 成功,3 失败
|
|
25434
|
+
:type Status: int
|
|
25435
|
+
:param _Message: 任务错误信息,仅在失败时返回
|
|
25436
|
+
:type Message: str
|
|
25437
|
+
:param _ContractName: 生成的合同名称
|
|
25438
|
+
:type ContractName: str
|
|
25439
|
+
:param _ResourceId: 生成的合同文件资源id
|
|
25440
|
+
:type ResourceId: str
|
|
25441
|
+
:param _ContractUrl: 生成的合同文件下载链接,有效期2小时
|
|
25442
|
+
:type ContractUrl: str
|
|
25443
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
25444
|
+
:type RequestId: str
|
|
25445
|
+
"""
|
|
25446
|
+
self._Status = None
|
|
25447
|
+
self._Message = None
|
|
25448
|
+
self._ContractName = None
|
|
25449
|
+
self._ResourceId = None
|
|
25450
|
+
self._ContractUrl = None
|
|
25451
|
+
self._RequestId = None
|
|
25452
|
+
|
|
25453
|
+
@property
|
|
25454
|
+
def Status(self):
|
|
25455
|
+
r"""任务状态,枚举,0 已创建,1 执行中,2 成功,3 失败
|
|
25456
|
+
:rtype: int
|
|
25457
|
+
"""
|
|
25458
|
+
return self._Status
|
|
25459
|
+
|
|
25460
|
+
@Status.setter
|
|
25461
|
+
def Status(self, Status):
|
|
25462
|
+
self._Status = Status
|
|
25463
|
+
|
|
25464
|
+
@property
|
|
25465
|
+
def Message(self):
|
|
25466
|
+
r"""任务错误信息,仅在失败时返回
|
|
25467
|
+
:rtype: str
|
|
25468
|
+
"""
|
|
25469
|
+
return self._Message
|
|
25470
|
+
|
|
25471
|
+
@Message.setter
|
|
25472
|
+
def Message(self, Message):
|
|
25473
|
+
self._Message = Message
|
|
25474
|
+
|
|
25475
|
+
@property
|
|
25476
|
+
def ContractName(self):
|
|
25477
|
+
r"""生成的合同名称
|
|
25478
|
+
:rtype: str
|
|
25479
|
+
"""
|
|
25480
|
+
return self._ContractName
|
|
25481
|
+
|
|
25482
|
+
@ContractName.setter
|
|
25483
|
+
def ContractName(self, ContractName):
|
|
25484
|
+
self._ContractName = ContractName
|
|
25485
|
+
|
|
25486
|
+
@property
|
|
25487
|
+
def ResourceId(self):
|
|
25488
|
+
r"""生成的合同文件资源id
|
|
25489
|
+
:rtype: str
|
|
25490
|
+
"""
|
|
25491
|
+
return self._ResourceId
|
|
25492
|
+
|
|
25493
|
+
@ResourceId.setter
|
|
25494
|
+
def ResourceId(self, ResourceId):
|
|
25495
|
+
self._ResourceId = ResourceId
|
|
25496
|
+
|
|
25497
|
+
@property
|
|
25498
|
+
def ContractUrl(self):
|
|
25499
|
+
r"""生成的合同文件下载链接,有效期2小时
|
|
25500
|
+
:rtype: str
|
|
25501
|
+
"""
|
|
25502
|
+
return self._ContractUrl
|
|
25503
|
+
|
|
25504
|
+
@ContractUrl.setter
|
|
25505
|
+
def ContractUrl(self, ContractUrl):
|
|
25506
|
+
self._ContractUrl = ContractUrl
|
|
25507
|
+
|
|
25508
|
+
@property
|
|
25509
|
+
def RequestId(self):
|
|
25510
|
+
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
25511
|
+
:rtype: str
|
|
25512
|
+
"""
|
|
25513
|
+
return self._RequestId
|
|
25514
|
+
|
|
25515
|
+
@RequestId.setter
|
|
25516
|
+
def RequestId(self, RequestId):
|
|
25517
|
+
self._RequestId = RequestId
|
|
25518
|
+
|
|
25519
|
+
|
|
25520
|
+
def _deserialize(self, params):
|
|
25521
|
+
self._Status = params.get("Status")
|
|
25522
|
+
self._Message = params.get("Message")
|
|
25523
|
+
self._ContractName = params.get("ContractName")
|
|
25524
|
+
self._ResourceId = params.get("ResourceId")
|
|
25525
|
+
self._ContractUrl = params.get("ContractUrl")
|
|
25526
|
+
self._RequestId = params.get("RequestId")
|
|
25527
|
+
|
|
25528
|
+
|
|
25098
25529
|
class DescribeEnterpriseContractReviewChecklistsRequest(AbstractModel):
|
|
25099
25530
|
r"""DescribeEnterpriseContractReviewChecklists请求参数结构体
|
|
25100
25531
|
|
|
@@ -27384,6 +27815,7 @@ class DescribeIntegrationEmployeesRequest(AbstractModel):
|
|
|
27384
27815
|
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
|
27385
27816
|
:type Operator: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
|
27386
27817
|
:param _Limit: 指定分页每页返回的数据条数,单页最大支持 20。
|
|
27818
|
+
如果没有传递, 则为默认值20。
|
|
27387
27819
|
:type Limit: int
|
|
27388
27820
|
:param _Agent: 代理企业和员工的信息。
|
|
27389
27821
|
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
|
@@ -27423,6 +27855,7 @@ class DescribeIntegrationEmployeesRequest(AbstractModel):
|
|
|
27423
27855
|
@property
|
|
27424
27856
|
def Limit(self):
|
|
27425
27857
|
r"""指定分页每页返回的数据条数,单页最大支持 20。
|
|
27858
|
+
如果没有传递, 则为默认值20。
|
|
27426
27859
|
:rtype: int
|
|
27427
27860
|
"""
|
|
27428
27861
|
return self._Limit
|
|
@@ -30625,8 +31058,8 @@ class ExportContractComparisonTaskResponse(AbstractModel):
|
|
|
30625
31058
|
self._RequestId = params.get("RequestId")
|
|
30626
31059
|
|
|
30627
31060
|
|
|
30628
|
-
class
|
|
30629
|
-
r"""
|
|
31061
|
+
class ExportContractReviewMarkedRiskRequest(AbstractModel):
|
|
31062
|
+
r"""ExportContractReviewMarkedRisk请求参数结构体
|
|
30630
31063
|
|
|
30631
31064
|
"""
|
|
30632
31065
|
|
|
@@ -30635,17 +31068,17 @@ class ExportContractReviewResultRequest(AbstractModel):
|
|
|
30635
31068
|
:param _Operator: 执行本接口操作的员工信息。
|
|
30636
31069
|
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
|
30637
31070
|
:type Operator: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
|
30638
|
-
:param
|
|
30639
|
-
:type
|
|
30640
|
-
:param
|
|
30641
|
-
:type
|
|
31071
|
+
:param _FromDate: 开始日期。eg, "2006-01-02"
|
|
31072
|
+
:type FromDate: str
|
|
31073
|
+
:param _ToDate: 结束日期。eg,"2006-02-01"
|
|
31074
|
+
:type ToDate: str
|
|
30642
31075
|
:param _Agent: 代理企业和员工的信息。
|
|
30643
31076
|
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
|
30644
31077
|
:type Agent: :class:`tencentcloud.ess.v20201111.models.Agent`
|
|
30645
31078
|
"""
|
|
30646
31079
|
self._Operator = None
|
|
30647
|
-
self.
|
|
30648
|
-
self.
|
|
31080
|
+
self._FromDate = None
|
|
31081
|
+
self._ToDate = None
|
|
30649
31082
|
self._Agent = None
|
|
30650
31083
|
|
|
30651
31084
|
@property
|
|
@@ -30660,9 +31093,138 @@ class ExportContractReviewResultRequest(AbstractModel):
|
|
|
30660
31093
|
def Operator(self, Operator):
|
|
30661
31094
|
self._Operator = Operator
|
|
30662
31095
|
|
|
31096
|
+
@property
|
|
31097
|
+
def FromDate(self):
|
|
31098
|
+
r"""开始日期。eg, "2006-01-02"
|
|
31099
|
+
:rtype: str
|
|
31100
|
+
"""
|
|
31101
|
+
return self._FromDate
|
|
31102
|
+
|
|
31103
|
+
@FromDate.setter
|
|
31104
|
+
def FromDate(self, FromDate):
|
|
31105
|
+
self._FromDate = FromDate
|
|
31106
|
+
|
|
31107
|
+
@property
|
|
31108
|
+
def ToDate(self):
|
|
31109
|
+
r"""结束日期。eg,"2006-02-01"
|
|
31110
|
+
:rtype: str
|
|
31111
|
+
"""
|
|
31112
|
+
return self._ToDate
|
|
31113
|
+
|
|
31114
|
+
@ToDate.setter
|
|
31115
|
+
def ToDate(self, ToDate):
|
|
31116
|
+
self._ToDate = ToDate
|
|
31117
|
+
|
|
31118
|
+
@property
|
|
31119
|
+
def Agent(self):
|
|
31120
|
+
r"""代理企业和员工的信息。
|
|
31121
|
+
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
|
31122
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.Agent`
|
|
31123
|
+
"""
|
|
31124
|
+
return self._Agent
|
|
31125
|
+
|
|
31126
|
+
@Agent.setter
|
|
31127
|
+
def Agent(self, Agent):
|
|
31128
|
+
self._Agent = Agent
|
|
31129
|
+
|
|
31130
|
+
|
|
31131
|
+
def _deserialize(self, params):
|
|
31132
|
+
if params.get("Operator") is not None:
|
|
31133
|
+
self._Operator = UserInfo()
|
|
31134
|
+
self._Operator._deserialize(params.get("Operator"))
|
|
31135
|
+
self._FromDate = params.get("FromDate")
|
|
31136
|
+
self._ToDate = params.get("ToDate")
|
|
31137
|
+
if params.get("Agent") is not None:
|
|
31138
|
+
self._Agent = Agent()
|
|
31139
|
+
self._Agent._deserialize(params.get("Agent"))
|
|
31140
|
+
memeber_set = set(params.keys())
|
|
31141
|
+
for name, value in vars(self).items():
|
|
31142
|
+
property_name = name[1:]
|
|
31143
|
+
if property_name in memeber_set:
|
|
31144
|
+
memeber_set.remove(property_name)
|
|
31145
|
+
if len(memeber_set) > 0:
|
|
31146
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
31147
|
+
|
|
31148
|
+
|
|
31149
|
+
|
|
31150
|
+
class ExportContractReviewMarkedRiskResponse(AbstractModel):
|
|
31151
|
+
r"""ExportContractReviewMarkedRisk返回参数结构体
|
|
31152
|
+
|
|
31153
|
+
"""
|
|
31154
|
+
|
|
31155
|
+
def __init__(self):
|
|
31156
|
+
r"""
|
|
31157
|
+
:param _TaskId: 导出任务 id。
|
|
31158
|
+
:type TaskId: str
|
|
31159
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
31160
|
+
:type RequestId: str
|
|
31161
|
+
"""
|
|
31162
|
+
self._TaskId = None
|
|
31163
|
+
self._RequestId = None
|
|
31164
|
+
|
|
30663
31165
|
@property
|
|
30664
31166
|
def TaskId(self):
|
|
30665
|
-
r"""
|
|
31167
|
+
r"""导出任务 id。
|
|
31168
|
+
:rtype: str
|
|
31169
|
+
"""
|
|
31170
|
+
return self._TaskId
|
|
31171
|
+
|
|
31172
|
+
@TaskId.setter
|
|
31173
|
+
def TaskId(self, TaskId):
|
|
31174
|
+
self._TaskId = TaskId
|
|
31175
|
+
|
|
31176
|
+
@property
|
|
31177
|
+
def RequestId(self):
|
|
31178
|
+
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
31179
|
+
:rtype: str
|
|
31180
|
+
"""
|
|
31181
|
+
return self._RequestId
|
|
31182
|
+
|
|
31183
|
+
@RequestId.setter
|
|
31184
|
+
def RequestId(self, RequestId):
|
|
31185
|
+
self._RequestId = RequestId
|
|
31186
|
+
|
|
31187
|
+
|
|
31188
|
+
def _deserialize(self, params):
|
|
31189
|
+
self._TaskId = params.get("TaskId")
|
|
31190
|
+
self._RequestId = params.get("RequestId")
|
|
31191
|
+
|
|
31192
|
+
|
|
31193
|
+
class ExportContractReviewResultRequest(AbstractModel):
|
|
31194
|
+
r"""ExportContractReviewResult请求参数结构体
|
|
31195
|
+
|
|
31196
|
+
"""
|
|
31197
|
+
|
|
31198
|
+
def __init__(self):
|
|
31199
|
+
r"""
|
|
31200
|
+
:param _Operator: <p>执行本接口操作的员工信息。<br>注: <code>在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。</code></p>
|
|
31201
|
+
:type Operator: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
|
31202
|
+
:param _TaskId: <p>合同审查任务ID</p>
|
|
31203
|
+
:type TaskId: str
|
|
31204
|
+
:param _FileType: <p>导出文件类型</p><p>枚举值:</p><ul><li>1: WORD、PDF当前带风险批注文件</li><li>2: 审查结果&摘要(.xIsx)</li><li>3: WORD、PDF审查合同内容时的文件(最原始文件)</li><li>4: WORD、PDF当前无风险批注文件</li></ul>
|
|
31205
|
+
:type FileType: int
|
|
31206
|
+
:param _Agent: <p>代理企业和员工的信息。<br>在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。</p>
|
|
31207
|
+
:type Agent: :class:`tencentcloud.ess.v20201111.models.Agent`
|
|
31208
|
+
"""
|
|
31209
|
+
self._Operator = None
|
|
31210
|
+
self._TaskId = None
|
|
31211
|
+
self._FileType = None
|
|
31212
|
+
self._Agent = None
|
|
31213
|
+
|
|
31214
|
+
@property
|
|
31215
|
+
def Operator(self):
|
|
31216
|
+
r"""<p>执行本接口操作的员工信息。<br>注: <code>在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。</code></p>
|
|
31217
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
|
31218
|
+
"""
|
|
31219
|
+
return self._Operator
|
|
31220
|
+
|
|
31221
|
+
@Operator.setter
|
|
31222
|
+
def Operator(self, Operator):
|
|
31223
|
+
self._Operator = Operator
|
|
31224
|
+
|
|
31225
|
+
@property
|
|
31226
|
+
def TaskId(self):
|
|
31227
|
+
r"""<p>合同审查任务ID</p>
|
|
30666
31228
|
:rtype: str
|
|
30667
31229
|
"""
|
|
30668
31230
|
return self._TaskId
|
|
@@ -30673,7 +31235,7 @@ class ExportContractReviewResultRequest(AbstractModel):
|
|
|
30673
31235
|
|
|
30674
31236
|
@property
|
|
30675
31237
|
def FileType(self):
|
|
30676
|
-
r"""
|
|
31238
|
+
r"""<p>导出文件类型</p><p>枚举值:</p><ul><li>1: WORD、PDF当前带风险批注文件</li><li>2: 审查结果&摘要(.xIsx)</li><li>3: WORD、PDF审查合同内容时的文件(最原始文件)</li><li>4: WORD、PDF当前无风险批注文件</li></ul>
|
|
30677
31239
|
:rtype: int
|
|
30678
31240
|
"""
|
|
30679
31241
|
return self._FileType
|
|
@@ -30684,8 +31246,7 @@ class ExportContractReviewResultRequest(AbstractModel):
|
|
|
30684
31246
|
|
|
30685
31247
|
@property
|
|
30686
31248
|
def Agent(self):
|
|
30687
|
-
r"""
|
|
30688
|
-
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
|
31249
|
+
r"""<p>代理企业和员工的信息。<br>在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。</p>
|
|
30689
31250
|
:rtype: :class:`tencentcloud.ess.v20201111.models.Agent`
|
|
30690
31251
|
"""
|
|
30691
31252
|
return self._Agent
|
|
@@ -30721,7 +31282,7 @@ class ExportContractReviewResultResponse(AbstractModel):
|
|
|
30721
31282
|
|
|
30722
31283
|
def __init__(self):
|
|
30723
31284
|
r"""
|
|
30724
|
-
:param _Url:
|
|
31285
|
+
:param _Url: <p>文件下载链接</p>
|
|
30725
31286
|
:type Url: str
|
|
30726
31287
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
30727
31288
|
:type RequestId: str
|
|
@@ -30731,7 +31292,7 @@ class ExportContractReviewResultResponse(AbstractModel):
|
|
|
30731
31292
|
|
|
30732
31293
|
@property
|
|
30733
31294
|
def Url(self):
|
|
30734
|
-
r"""
|
|
31295
|
+
r"""<p>文件下载链接</p>
|
|
30735
31296
|
:rtype: str
|
|
30736
31297
|
"""
|
|
30737
31298
|
return self._Url
|
|
@@ -41936,7 +42497,7 @@ class RegisterInfoOption(AbstractModel):
|
|
|
41936
42497
|
def __init__(self):
|
|
41937
42498
|
r"""
|
|
41938
42499
|
:param _LegalNameSame: 是否允许编辑企业注册时的法人姓名。
|
|
41939
|
-
<br/>true
|
|
42500
|
+
<br/>true:不允许编辑<br/>false:允许编辑(默认值)<br/>
|
|
41940
42501
|
|
|
41941
42502
|
注意:
|
|
41942
42503
|
RegisterInfo 中的LegalName值不为空的时候,才可设置为不可编辑。
|
|
@@ -41959,15 +42520,25 @@ RegisterInfo 中的UnifiedSocialCreditCode值不为空的时候,才可设置
|
|
|
41959
42520
|
注意:
|
|
41960
42521
|
RegisterInfo 中的OrganizationIdCardType值不为空的时候,才可设置为不可编辑。
|
|
41961
42522
|
:type OrganizationIdCardTypeSame: bool
|
|
42523
|
+
:param _UnifiedSocialCreditCodeSame: 是否允许编辑企业注册时统一社会信用代码。
|
|
42524
|
+
<br/>true:不允许编辑。
|
|
42525
|
+
<br/>false:允许编辑(默认值)。
|
|
42526
|
+
<br/>
|
|
42527
|
+
|
|
42528
|
+
|
|
42529
|
+
注意:
|
|
42530
|
+
RegisterInfo 中的UnifiedSocialCreditCode值不为空的时候,才可设置为不可编辑。
|
|
42531
|
+
:type UnifiedSocialCreditCodeSame: bool
|
|
41962
42532
|
"""
|
|
41963
42533
|
self._LegalNameSame = None
|
|
41964
42534
|
self._UnifiedSocialCreditCodeCNameSame = None
|
|
41965
42535
|
self._OrganizationIdCardTypeSame = None
|
|
42536
|
+
self._UnifiedSocialCreditCodeSame = None
|
|
41966
42537
|
|
|
41967
42538
|
@property
|
|
41968
42539
|
def LegalNameSame(self):
|
|
41969
42540
|
r"""是否允许编辑企业注册时的法人姓名。
|
|
41970
|
-
<br/>true
|
|
42541
|
+
<br/>true:不允许编辑<br/>false:允许编辑(默认值)<br/>
|
|
41971
42542
|
|
|
41972
42543
|
注意:
|
|
41973
42544
|
RegisterInfo 中的LegalName值不为空的时候,才可设置为不可编辑。
|
|
@@ -41981,6 +42552,8 @@ RegisterInfo 中的LegalName值不为空的时候,才可设置为不可编辑
|
|
|
41981
42552
|
|
|
41982
42553
|
@property
|
|
41983
42554
|
def UnifiedSocialCreditCodeCNameSame(self):
|
|
42555
|
+
warnings.warn("parameter `UnifiedSocialCreditCodeCNameSame` is deprecated", DeprecationWarning)
|
|
42556
|
+
|
|
41984
42557
|
r"""是否允许编辑企业注册时统一社会信用代码。
|
|
41985
42558
|
<br/>true:不允许编辑。
|
|
41986
42559
|
<br/>false:允许编辑(默认值)。
|
|
@@ -41996,6 +42569,8 @@ RegisterInfo 中的UnifiedSocialCreditCode值不为空的时候,才可设置
|
|
|
41996
42569
|
|
|
41997
42570
|
@UnifiedSocialCreditCodeCNameSame.setter
|
|
41998
42571
|
def UnifiedSocialCreditCodeCNameSame(self, UnifiedSocialCreditCodeCNameSame):
|
|
42572
|
+
warnings.warn("parameter `UnifiedSocialCreditCodeCNameSame` is deprecated", DeprecationWarning)
|
|
42573
|
+
|
|
41999
42574
|
self._UnifiedSocialCreditCodeCNameSame = UnifiedSocialCreditCodeCNameSame
|
|
42000
42575
|
|
|
42001
42576
|
@property
|
|
@@ -42015,11 +42590,30 @@ RegisterInfo 中的OrganizationIdCardType值不为空的时候,才可设置为
|
|
|
42015
42590
|
def OrganizationIdCardTypeSame(self, OrganizationIdCardTypeSame):
|
|
42016
42591
|
self._OrganizationIdCardTypeSame = OrganizationIdCardTypeSame
|
|
42017
42592
|
|
|
42593
|
+
@property
|
|
42594
|
+
def UnifiedSocialCreditCodeSame(self):
|
|
42595
|
+
r"""是否允许编辑企业注册时统一社会信用代码。
|
|
42596
|
+
<br/>true:不允许编辑。
|
|
42597
|
+
<br/>false:允许编辑(默认值)。
|
|
42598
|
+
<br/>
|
|
42599
|
+
|
|
42600
|
+
|
|
42601
|
+
注意:
|
|
42602
|
+
RegisterInfo 中的UnifiedSocialCreditCode值不为空的时候,才可设置为不可编辑。
|
|
42603
|
+
:rtype: bool
|
|
42604
|
+
"""
|
|
42605
|
+
return self._UnifiedSocialCreditCodeSame
|
|
42606
|
+
|
|
42607
|
+
@UnifiedSocialCreditCodeSame.setter
|
|
42608
|
+
def UnifiedSocialCreditCodeSame(self, UnifiedSocialCreditCodeSame):
|
|
42609
|
+
self._UnifiedSocialCreditCodeSame = UnifiedSocialCreditCodeSame
|
|
42610
|
+
|
|
42018
42611
|
|
|
42019
42612
|
def _deserialize(self, params):
|
|
42020
42613
|
self._LegalNameSame = params.get("LegalNameSame")
|
|
42021
42614
|
self._UnifiedSocialCreditCodeCNameSame = params.get("UnifiedSocialCreditCodeCNameSame")
|
|
42022
42615
|
self._OrganizationIdCardTypeSame = params.get("OrganizationIdCardTypeSame")
|
|
42616
|
+
self._UnifiedSocialCreditCodeSame = params.get("UnifiedSocialCreditCodeSame")
|
|
42023
42617
|
memeber_set = set(params.keys())
|
|
42024
42618
|
for name, value in vars(self).items():
|
|
42025
42619
|
property_name = name[1:]
|
|
@@ -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.72
|
|
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.72
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.72
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.60
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|