tencentcloud-sdk-python-ess 3.1.63__tar.gz → 3.1.65__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.63 → tencentcloud_sdk_python_ess-3.1.65}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_ess-3.1.63 → tencentcloud_sdk_python_ess-3.1.65}/setup.py +1 -1
- {tencentcloud_sdk_python_ess-3.1.63 → tencentcloud_sdk_python_ess-3.1.65}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_ess-3.1.63 → tencentcloud_sdk_python_ess-3.1.65}/tencentcloud/ess/v20201111/ess_client.py +46 -0
- {tencentcloud_sdk_python_ess-3.1.63 → tencentcloud_sdk_python_ess-3.1.65}/tencentcloud/ess/v20201111/ess_client_async.py +36 -0
- {tencentcloud_sdk_python_ess-3.1.63 → tencentcloud_sdk_python_ess-3.1.65}/tencentcloud/ess/v20201111/models.py +319 -2
- {tencentcloud_sdk_python_ess-3.1.63 → tencentcloud_sdk_python_ess-3.1.65}/tencentcloud_sdk_python_ess.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_ess-3.1.65/tencentcloud_sdk_python_ess.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_ess-3.1.63/tencentcloud_sdk_python_ess.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_ess-3.1.63 → tencentcloud_sdk_python_ess-3.1.65}/README.rst +0 -0
- {tencentcloud_sdk_python_ess-3.1.63 → tencentcloud_sdk_python_ess-3.1.65}/setup.cfg +0 -0
- {tencentcloud_sdk_python_ess-3.1.63 → tencentcloud_sdk_python_ess-3.1.65}/tencentcloud/ess/__init__.py +0 -0
- {tencentcloud_sdk_python_ess-3.1.63 → tencentcloud_sdk_python_ess-3.1.65}/tencentcloud/ess/v20201111/__init__.py +0 -0
- {tencentcloud_sdk_python_ess-3.1.63 → tencentcloud_sdk_python_ess-3.1.65}/tencentcloud/ess/v20201111/errorcodes.py +0 -0
- {tencentcloud_sdk_python_ess-3.1.63 → tencentcloud_sdk_python_ess-3.1.65}/tencentcloud_sdk_python_ess.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_ess-3.1.63 → tencentcloud_sdk_python_ess-3.1.65}/tencentcloud_sdk_python_ess.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_ess-3.1.63 → tencentcloud_sdk_python_ess-3.1.65}/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.65
|
|
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.65
|
|
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.65,<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
|
|
|
@@ -3008,6 +3031,29 @@ class EssClient(AbstractClient):
|
|
|
3008
3031
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
3009
3032
|
|
|
3010
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
|
+
|
|
3011
3057
|
def DescribeEnterpriseContractReviewChecklists(self, request):
|
|
3012
3058
|
r"""本接口(DescribeEnterpriseContractReviewChecklists)用于获取企业全部审查要点清单。
|
|
3013
3059
|
|
|
@@ -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,
|
|
@@ -2537,6 +2555,24 @@ class EssClient(AbstractClient):
|
|
|
2537
2555
|
|
|
2538
2556
|
return await self.call_and_deserialize(**kwargs)
|
|
2539
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
|
+
|
|
2540
2576
|
async def DescribeEnterpriseContractReviewChecklists(
|
|
2541
2577
|
self,
|
|
2542
2578
|
request: models.DescribeEnterpriseContractReviewChecklistsRequest,
|
|
@@ -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: 起草要求
|
|
8619
|
+
:type Requirement: str
|
|
8620
|
+
:param _ReferenceTemplateId: 参考模板文件资源id(PDF/Word格式)
|
|
8621
|
+
:type ReferenceTemplateId: str
|
|
8622
|
+
:param _RequirementFileIds: 相关规定文件资源id列表(PDF/Word格式)
|
|
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"""起草要求
|
|
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格式)
|
|
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格式)
|
|
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
|
|
|
@@ -25227,6 +25370,147 @@ class DescribeContractReviewWebUrlResponse(AbstractModel):
|
|
|
25227
25370
|
self._RequestId = params.get("RequestId")
|
|
25228
25371
|
|
|
25229
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 _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
25442
|
+
:type RequestId: str
|
|
25443
|
+
"""
|
|
25444
|
+
self._Status = None
|
|
25445
|
+
self._Message = None
|
|
25446
|
+
self._ContractName = None
|
|
25447
|
+
self._ResourceId = None
|
|
25448
|
+
self._RequestId = None
|
|
25449
|
+
|
|
25450
|
+
@property
|
|
25451
|
+
def Status(self):
|
|
25452
|
+
r"""任务状态,枚举,0 已创建,1 执行中,2 成功,3 失败
|
|
25453
|
+
:rtype: int
|
|
25454
|
+
"""
|
|
25455
|
+
return self._Status
|
|
25456
|
+
|
|
25457
|
+
@Status.setter
|
|
25458
|
+
def Status(self, Status):
|
|
25459
|
+
self._Status = Status
|
|
25460
|
+
|
|
25461
|
+
@property
|
|
25462
|
+
def Message(self):
|
|
25463
|
+
r"""任务错误信息,仅在失败时返回
|
|
25464
|
+
:rtype: str
|
|
25465
|
+
"""
|
|
25466
|
+
return self._Message
|
|
25467
|
+
|
|
25468
|
+
@Message.setter
|
|
25469
|
+
def Message(self, Message):
|
|
25470
|
+
self._Message = Message
|
|
25471
|
+
|
|
25472
|
+
@property
|
|
25473
|
+
def ContractName(self):
|
|
25474
|
+
r"""生成的合同名称
|
|
25475
|
+
:rtype: str
|
|
25476
|
+
"""
|
|
25477
|
+
return self._ContractName
|
|
25478
|
+
|
|
25479
|
+
@ContractName.setter
|
|
25480
|
+
def ContractName(self, ContractName):
|
|
25481
|
+
self._ContractName = ContractName
|
|
25482
|
+
|
|
25483
|
+
@property
|
|
25484
|
+
def ResourceId(self):
|
|
25485
|
+
r"""生成的合同文件资源id
|
|
25486
|
+
:rtype: str
|
|
25487
|
+
"""
|
|
25488
|
+
return self._ResourceId
|
|
25489
|
+
|
|
25490
|
+
@ResourceId.setter
|
|
25491
|
+
def ResourceId(self, ResourceId):
|
|
25492
|
+
self._ResourceId = ResourceId
|
|
25493
|
+
|
|
25494
|
+
@property
|
|
25495
|
+
def RequestId(self):
|
|
25496
|
+
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
25497
|
+
:rtype: str
|
|
25498
|
+
"""
|
|
25499
|
+
return self._RequestId
|
|
25500
|
+
|
|
25501
|
+
@RequestId.setter
|
|
25502
|
+
def RequestId(self, RequestId):
|
|
25503
|
+
self._RequestId = RequestId
|
|
25504
|
+
|
|
25505
|
+
|
|
25506
|
+
def _deserialize(self, params):
|
|
25507
|
+
self._Status = params.get("Status")
|
|
25508
|
+
self._Message = params.get("Message")
|
|
25509
|
+
self._ContractName = params.get("ContractName")
|
|
25510
|
+
self._ResourceId = params.get("ResourceId")
|
|
25511
|
+
self._RequestId = params.get("RequestId")
|
|
25512
|
+
|
|
25513
|
+
|
|
25230
25514
|
class DescribeEnterpriseContractReviewChecklistsRequest(AbstractModel):
|
|
25231
25515
|
r"""DescribeEnterpriseContractReviewChecklists请求参数结构体
|
|
25232
25516
|
|
|
@@ -42200,7 +42484,7 @@ class RegisterInfoOption(AbstractModel):
|
|
|
42200
42484
|
def __init__(self):
|
|
42201
42485
|
r"""
|
|
42202
42486
|
:param _LegalNameSame: 是否允许编辑企业注册时的法人姓名。
|
|
42203
|
-
<br/>true
|
|
42487
|
+
<br/>true:不允许编辑<br/>false:允许编辑(默认值)<br/>
|
|
42204
42488
|
|
|
42205
42489
|
注意:
|
|
42206
42490
|
RegisterInfo 中的LegalName值不为空的时候,才可设置为不可编辑。
|
|
@@ -42223,15 +42507,25 @@ RegisterInfo 中的UnifiedSocialCreditCode值不为空的时候,才可设置
|
|
|
42223
42507
|
注意:
|
|
42224
42508
|
RegisterInfo 中的OrganizationIdCardType值不为空的时候,才可设置为不可编辑。
|
|
42225
42509
|
:type OrganizationIdCardTypeSame: bool
|
|
42510
|
+
:param _UnifiedSocialCreditCodeSame: 是否允许编辑企业注册时统一社会信用代码。
|
|
42511
|
+
<br/>true:不允许编辑。
|
|
42512
|
+
<br/>false:允许编辑(默认值)。
|
|
42513
|
+
<br/>
|
|
42514
|
+
|
|
42515
|
+
|
|
42516
|
+
注意:
|
|
42517
|
+
RegisterInfo 中的UnifiedSocialCreditCode值不为空的时候,才可设置为不可编辑。
|
|
42518
|
+
:type UnifiedSocialCreditCodeSame: bool
|
|
42226
42519
|
"""
|
|
42227
42520
|
self._LegalNameSame = None
|
|
42228
42521
|
self._UnifiedSocialCreditCodeCNameSame = None
|
|
42229
42522
|
self._OrganizationIdCardTypeSame = None
|
|
42523
|
+
self._UnifiedSocialCreditCodeSame = None
|
|
42230
42524
|
|
|
42231
42525
|
@property
|
|
42232
42526
|
def LegalNameSame(self):
|
|
42233
42527
|
r"""是否允许编辑企业注册时的法人姓名。
|
|
42234
|
-
<br/>true
|
|
42528
|
+
<br/>true:不允许编辑<br/>false:允许编辑(默认值)<br/>
|
|
42235
42529
|
|
|
42236
42530
|
注意:
|
|
42237
42531
|
RegisterInfo 中的LegalName值不为空的时候,才可设置为不可编辑。
|
|
@@ -42245,6 +42539,8 @@ RegisterInfo 中的LegalName值不为空的时候,才可设置为不可编辑
|
|
|
42245
42539
|
|
|
42246
42540
|
@property
|
|
42247
42541
|
def UnifiedSocialCreditCodeCNameSame(self):
|
|
42542
|
+
warnings.warn("parameter `UnifiedSocialCreditCodeCNameSame` is deprecated", DeprecationWarning)
|
|
42543
|
+
|
|
42248
42544
|
r"""是否允许编辑企业注册时统一社会信用代码。
|
|
42249
42545
|
<br/>true:不允许编辑。
|
|
42250
42546
|
<br/>false:允许编辑(默认值)。
|
|
@@ -42260,6 +42556,8 @@ RegisterInfo 中的UnifiedSocialCreditCode值不为空的时候,才可设置
|
|
|
42260
42556
|
|
|
42261
42557
|
@UnifiedSocialCreditCodeCNameSame.setter
|
|
42262
42558
|
def UnifiedSocialCreditCodeCNameSame(self, UnifiedSocialCreditCodeCNameSame):
|
|
42559
|
+
warnings.warn("parameter `UnifiedSocialCreditCodeCNameSame` is deprecated", DeprecationWarning)
|
|
42560
|
+
|
|
42263
42561
|
self._UnifiedSocialCreditCodeCNameSame = UnifiedSocialCreditCodeCNameSame
|
|
42264
42562
|
|
|
42265
42563
|
@property
|
|
@@ -42279,11 +42577,30 @@ RegisterInfo 中的OrganizationIdCardType值不为空的时候,才可设置为
|
|
|
42279
42577
|
def OrganizationIdCardTypeSame(self, OrganizationIdCardTypeSame):
|
|
42280
42578
|
self._OrganizationIdCardTypeSame = OrganizationIdCardTypeSame
|
|
42281
42579
|
|
|
42580
|
+
@property
|
|
42581
|
+
def UnifiedSocialCreditCodeSame(self):
|
|
42582
|
+
r"""是否允许编辑企业注册时统一社会信用代码。
|
|
42583
|
+
<br/>true:不允许编辑。
|
|
42584
|
+
<br/>false:允许编辑(默认值)。
|
|
42585
|
+
<br/>
|
|
42586
|
+
|
|
42587
|
+
|
|
42588
|
+
注意:
|
|
42589
|
+
RegisterInfo 中的UnifiedSocialCreditCode值不为空的时候,才可设置为不可编辑。
|
|
42590
|
+
:rtype: bool
|
|
42591
|
+
"""
|
|
42592
|
+
return self._UnifiedSocialCreditCodeSame
|
|
42593
|
+
|
|
42594
|
+
@UnifiedSocialCreditCodeSame.setter
|
|
42595
|
+
def UnifiedSocialCreditCodeSame(self, UnifiedSocialCreditCodeSame):
|
|
42596
|
+
self._UnifiedSocialCreditCodeSame = UnifiedSocialCreditCodeSame
|
|
42597
|
+
|
|
42282
42598
|
|
|
42283
42599
|
def _deserialize(self, params):
|
|
42284
42600
|
self._LegalNameSame = params.get("LegalNameSame")
|
|
42285
42601
|
self._UnifiedSocialCreditCodeCNameSame = params.get("UnifiedSocialCreditCodeCNameSame")
|
|
42286
42602
|
self._OrganizationIdCardTypeSame = params.get("OrganizationIdCardTypeSame")
|
|
42603
|
+
self._UnifiedSocialCreditCodeSame = params.get("UnifiedSocialCreditCodeSame")
|
|
42287
42604
|
memeber_set = set(params.keys())
|
|
42288
42605
|
for name, value in vars(self).items():
|
|
42289
42606
|
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.65
|
|
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.65
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.65
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.63
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|