tencentcloud-sdk-python-ess 3.1.32__tar.gz → 3.1.35__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.32 → tencentcloud_sdk_python_ess-3.1.35}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_ess-3.1.32 → tencentcloud_sdk_python_ess-3.1.35}/setup.py +1 -1
- {tencentcloud_sdk_python_ess-3.1.32 → tencentcloud_sdk_python_ess-3.1.35}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_ess-3.1.32 → tencentcloud_sdk_python_ess-3.1.35}/tencentcloud/ess/v20201111/ess_client.py +25 -2
- {tencentcloud_sdk_python_ess-3.1.32 → tencentcloud_sdk_python_ess-3.1.35}/tencentcloud/ess/v20201111/ess_client_async.py +20 -2
- {tencentcloud_sdk_python_ess-3.1.32 → tencentcloud_sdk_python_ess-3.1.35}/tencentcloud/ess/v20201111/models.py +344 -22
- {tencentcloud_sdk_python_ess-3.1.32 → tencentcloud_sdk_python_ess-3.1.35}/tencentcloud_sdk_python_ess.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_ess-3.1.35/tencentcloud_sdk_python_ess.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_ess-3.1.32/tencentcloud_sdk_python_ess.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_ess-3.1.32 → tencentcloud_sdk_python_ess-3.1.35}/README.rst +0 -0
- {tencentcloud_sdk_python_ess-3.1.32 → tencentcloud_sdk_python_ess-3.1.35}/setup.cfg +0 -0
- {tencentcloud_sdk_python_ess-3.1.32 → tencentcloud_sdk_python_ess-3.1.35}/tencentcloud/ess/__init__.py +0 -0
- {tencentcloud_sdk_python_ess-3.1.32 → tencentcloud_sdk_python_ess-3.1.35}/tencentcloud/ess/v20201111/__init__.py +0 -0
- {tencentcloud_sdk_python_ess-3.1.32 → tencentcloud_sdk_python_ess-3.1.35}/tencentcloud/ess/v20201111/errorcodes.py +0 -0
- {tencentcloud_sdk_python_ess-3.1.32 → tencentcloud_sdk_python_ess-3.1.35}/tencentcloud_sdk_python_ess.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_ess-3.1.32 → tencentcloud_sdk_python_ess-3.1.35}/tencentcloud_sdk_python_ess.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_ess-3.1.32 → tencentcloud_sdk_python_ess-3.1.35}/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.35
|
|
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.35
|
|
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.35,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Ess SDK for Python',
|
|
@@ -94,7 +94,7 @@ class EssClient(AbstractClient):
|
|
|
94
94
|
1. 如果合同流程中的参与方均已签署完毕,则无法通过该接口撤销合同,签署完毕的合同需要双方走解除流程将合同作废,可以参考<a href="https://qian.tencent.com/developers/companyApis/operateFlows/CreateReleaseFlow" target="_blank">发起解除合同流程</a>接口。
|
|
95
95
|
|
|
96
96
|
2. 有对应合同撤销权限的人:
|
|
97
|
-
|
|
97
|
+

|
|
98
98
|
|
|
99
99
|
|
|
100
100
|
- 发起人所在企业的**超管、法人**
|
|
@@ -256,7 +256,7 @@ class EssClient(AbstractClient):
|
|
|
256
256
|
1. 如果合同流程中的参与方均已签署完毕,则无法通过该接口撤销合同,签署完毕的合同需要双方走解除流程将合同作废,可以参考<a href="https://qian.tencent.com/developers/companyApis/operateFlows/CreateReleaseFlow" target="_blank">发起解除合同流程</a>接口。
|
|
257
257
|
|
|
258
258
|
2. 有对应合同撤销权限的人:
|
|
259
|
-
|
|
259
|
+

|
|
260
260
|
|
|
261
261
|
|
|
262
262
|
- 发起人所在企业的**超管、法人**
|
|
@@ -2883,6 +2883,29 @@ class EssClient(AbstractClient):
|
|
|
2883
2883
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2884
2884
|
|
|
2885
2885
|
|
|
2886
|
+
def DescribeEnterpriseContractReviewChecklists(self, request):
|
|
2887
|
+
r"""本接口(DescribeEnterpriseContractReviewChecklists)用于获取企业全部审查要点清单。
|
|
2888
|
+
|
|
2889
|
+
:param request: Request instance for DescribeEnterpriseContractReviewChecklists.
|
|
2890
|
+
:type request: :class:`tencentcloud.ess.v20201111.models.DescribeEnterpriseContractReviewChecklistsRequest`
|
|
2891
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.DescribeEnterpriseContractReviewChecklistsResponse`
|
|
2892
|
+
|
|
2893
|
+
"""
|
|
2894
|
+
try:
|
|
2895
|
+
params = request._serialize()
|
|
2896
|
+
headers = request.headers
|
|
2897
|
+
body = self.call("DescribeEnterpriseContractReviewChecklists", params, headers=headers)
|
|
2898
|
+
response = json.loads(body)
|
|
2899
|
+
model = models.DescribeEnterpriseContractReviewChecklistsResponse()
|
|
2900
|
+
model._deserialize(response["Response"])
|
|
2901
|
+
return model
|
|
2902
|
+
except Exception as e:
|
|
2903
|
+
if isinstance(e, TencentCloudSDKException):
|
|
2904
|
+
raise
|
|
2905
|
+
else:
|
|
2906
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2907
|
+
|
|
2908
|
+
|
|
2886
2909
|
def DescribeExtendedServiceAuthDetail(self, request):
|
|
2887
2910
|
r"""查询企业扩展服务的授权详情(列表),当前支持查询以下内容:
|
|
2888
2911
|
1. 企业自动签(本企业授权、集团企业授权、合作企业授权)
|
|
@@ -88,7 +88,7 @@ class EssClient(AbstractClient):
|
|
|
88
88
|
1. 如果合同流程中的参与方均已签署完毕,则无法通过该接口撤销合同,签署完毕的合同需要双方走解除流程将合同作废,可以参考<a href="https://qian.tencent.com/developers/companyApis/operateFlows/CreateReleaseFlow" target="_blank">发起解除合同流程</a>接口。
|
|
89
89
|
|
|
90
90
|
2. 有对应合同撤销权限的人:
|
|
91
|
-
|
|
91
|
+

|
|
92
92
|
|
|
93
93
|
|
|
94
94
|
- 发起人所在企业的**超管、法人**
|
|
@@ -225,7 +225,7 @@ class EssClient(AbstractClient):
|
|
|
225
225
|
1. 如果合同流程中的参与方均已签署完毕,则无法通过该接口撤销合同,签署完毕的合同需要双方走解除流程将合同作废,可以参考<a href="https://qian.tencent.com/developers/companyApis/operateFlows/CreateReleaseFlow" target="_blank">发起解除合同流程</a>接口。
|
|
226
226
|
|
|
227
227
|
2. 有对应合同撤销权限的人:
|
|
228
|
-
|
|
228
|
+

|
|
229
229
|
|
|
230
230
|
|
|
231
231
|
- 发起人所在企业的**超管、法人**
|
|
@@ -2437,6 +2437,24 @@ class EssClient(AbstractClient):
|
|
|
2437
2437
|
|
|
2438
2438
|
return await self.call_and_deserialize(**kwargs)
|
|
2439
2439
|
|
|
2440
|
+
async def DescribeEnterpriseContractReviewChecklists(
|
|
2441
|
+
self,
|
|
2442
|
+
request: models.DescribeEnterpriseContractReviewChecklistsRequest,
|
|
2443
|
+
opts: Dict = None,
|
|
2444
|
+
) -> models.DescribeEnterpriseContractReviewChecklistsResponse:
|
|
2445
|
+
"""
|
|
2446
|
+
本接口(DescribeEnterpriseContractReviewChecklists)用于获取企业全部审查要点清单。
|
|
2447
|
+
"""
|
|
2448
|
+
|
|
2449
|
+
kwargs = {}
|
|
2450
|
+
kwargs["action"] = "DescribeEnterpriseContractReviewChecklists"
|
|
2451
|
+
kwargs["params"] = request._serialize()
|
|
2452
|
+
kwargs["resp_cls"] = models.DescribeEnterpriseContractReviewChecklistsResponse
|
|
2453
|
+
kwargs["headers"] = request.headers
|
|
2454
|
+
kwargs["opts"] = opts or {}
|
|
2455
|
+
|
|
2456
|
+
return await self.call_and_deserialize(**kwargs)
|
|
2457
|
+
|
|
2440
2458
|
async def DescribeExtendedServiceAuthDetail(
|
|
2441
2459
|
self,
|
|
2442
2460
|
request: models.DescribeExtendedServiceAuthDetailRequest,
|
|
@@ -3218,6 +3218,147 @@ class CcInfo(AbstractModel):
|
|
|
3218
3218
|
|
|
3219
3219
|
|
|
3220
3220
|
|
|
3221
|
+
class Checklist(AbstractModel):
|
|
3222
|
+
r"""合同审查清单
|
|
3223
|
+
|
|
3224
|
+
"""
|
|
3225
|
+
|
|
3226
|
+
def __init__(self):
|
|
3227
|
+
r"""
|
|
3228
|
+
:param _Id: 审查清单id
|
|
3229
|
+
:type Id: str
|
|
3230
|
+
:param _Name: 审查清单名称
|
|
3231
|
+
:type Name: str
|
|
3232
|
+
:param _Count: 审查点数量
|
|
3233
|
+
:type Count: int
|
|
3234
|
+
:param _Enabled: 启用状态
|
|
3235
|
+
:type Enabled: bool
|
|
3236
|
+
:param _Updater: 修改人
|
|
3237
|
+
:type Updater: str
|
|
3238
|
+
:param _ModifiedOn: 修改时间
|
|
3239
|
+
:type ModifiedOn: int
|
|
3240
|
+
:param _Official: 是否官方清单
|
|
3241
|
+
:type Official: bool
|
|
3242
|
+
:param _ConfigStatus: 配置状态,[0(未配置), 1(已配置)]
|
|
3243
|
+
:type ConfigStatus: int
|
|
3244
|
+
"""
|
|
3245
|
+
self._Id = None
|
|
3246
|
+
self._Name = None
|
|
3247
|
+
self._Count = None
|
|
3248
|
+
self._Enabled = None
|
|
3249
|
+
self._Updater = None
|
|
3250
|
+
self._ModifiedOn = None
|
|
3251
|
+
self._Official = None
|
|
3252
|
+
self._ConfigStatus = None
|
|
3253
|
+
|
|
3254
|
+
@property
|
|
3255
|
+
def Id(self):
|
|
3256
|
+
r"""审查清单id
|
|
3257
|
+
:rtype: str
|
|
3258
|
+
"""
|
|
3259
|
+
return self._Id
|
|
3260
|
+
|
|
3261
|
+
@Id.setter
|
|
3262
|
+
def Id(self, Id):
|
|
3263
|
+
self._Id = Id
|
|
3264
|
+
|
|
3265
|
+
@property
|
|
3266
|
+
def Name(self):
|
|
3267
|
+
r"""审查清单名称
|
|
3268
|
+
:rtype: str
|
|
3269
|
+
"""
|
|
3270
|
+
return self._Name
|
|
3271
|
+
|
|
3272
|
+
@Name.setter
|
|
3273
|
+
def Name(self, Name):
|
|
3274
|
+
self._Name = Name
|
|
3275
|
+
|
|
3276
|
+
@property
|
|
3277
|
+
def Count(self):
|
|
3278
|
+
r"""审查点数量
|
|
3279
|
+
:rtype: int
|
|
3280
|
+
"""
|
|
3281
|
+
return self._Count
|
|
3282
|
+
|
|
3283
|
+
@Count.setter
|
|
3284
|
+
def Count(self, Count):
|
|
3285
|
+
self._Count = Count
|
|
3286
|
+
|
|
3287
|
+
@property
|
|
3288
|
+
def Enabled(self):
|
|
3289
|
+
r"""启用状态
|
|
3290
|
+
:rtype: bool
|
|
3291
|
+
"""
|
|
3292
|
+
return self._Enabled
|
|
3293
|
+
|
|
3294
|
+
@Enabled.setter
|
|
3295
|
+
def Enabled(self, Enabled):
|
|
3296
|
+
self._Enabled = Enabled
|
|
3297
|
+
|
|
3298
|
+
@property
|
|
3299
|
+
def Updater(self):
|
|
3300
|
+
r"""修改人
|
|
3301
|
+
:rtype: str
|
|
3302
|
+
"""
|
|
3303
|
+
return self._Updater
|
|
3304
|
+
|
|
3305
|
+
@Updater.setter
|
|
3306
|
+
def Updater(self, Updater):
|
|
3307
|
+
self._Updater = Updater
|
|
3308
|
+
|
|
3309
|
+
@property
|
|
3310
|
+
def ModifiedOn(self):
|
|
3311
|
+
r"""修改时间
|
|
3312
|
+
:rtype: int
|
|
3313
|
+
"""
|
|
3314
|
+
return self._ModifiedOn
|
|
3315
|
+
|
|
3316
|
+
@ModifiedOn.setter
|
|
3317
|
+
def ModifiedOn(self, ModifiedOn):
|
|
3318
|
+
self._ModifiedOn = ModifiedOn
|
|
3319
|
+
|
|
3320
|
+
@property
|
|
3321
|
+
def Official(self):
|
|
3322
|
+
r"""是否官方清单
|
|
3323
|
+
:rtype: bool
|
|
3324
|
+
"""
|
|
3325
|
+
return self._Official
|
|
3326
|
+
|
|
3327
|
+
@Official.setter
|
|
3328
|
+
def Official(self, Official):
|
|
3329
|
+
self._Official = Official
|
|
3330
|
+
|
|
3331
|
+
@property
|
|
3332
|
+
def ConfigStatus(self):
|
|
3333
|
+
r"""配置状态,[0(未配置), 1(已配置)]
|
|
3334
|
+
:rtype: int
|
|
3335
|
+
"""
|
|
3336
|
+
return self._ConfigStatus
|
|
3337
|
+
|
|
3338
|
+
@ConfigStatus.setter
|
|
3339
|
+
def ConfigStatus(self, ConfigStatus):
|
|
3340
|
+
self._ConfigStatus = ConfigStatus
|
|
3341
|
+
|
|
3342
|
+
|
|
3343
|
+
def _deserialize(self, params):
|
|
3344
|
+
self._Id = params.get("Id")
|
|
3345
|
+
self._Name = params.get("Name")
|
|
3346
|
+
self._Count = params.get("Count")
|
|
3347
|
+
self._Enabled = params.get("Enabled")
|
|
3348
|
+
self._Updater = params.get("Updater")
|
|
3349
|
+
self._ModifiedOn = params.get("ModifiedOn")
|
|
3350
|
+
self._Official = params.get("Official")
|
|
3351
|
+
self._ConfigStatus = params.get("ConfigStatus")
|
|
3352
|
+
memeber_set = set(params.keys())
|
|
3353
|
+
for name, value in vars(self).items():
|
|
3354
|
+
property_name = name[1:]
|
|
3355
|
+
if property_name in memeber_set:
|
|
3356
|
+
memeber_set.remove(property_name)
|
|
3357
|
+
if len(memeber_set) > 0:
|
|
3358
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
3359
|
+
|
|
3360
|
+
|
|
3361
|
+
|
|
3221
3362
|
class ComparisonDetail(AbstractModel):
|
|
3222
3363
|
r"""合同对比差异结果详情。
|
|
3223
3364
|
|
|
@@ -13405,7 +13546,7 @@ class CreateIntegrationRoleRequest(AbstractModel):
|
|
|
13405
13546
|
:param _PermissionGroups: 权限树
|
|
13406
13547
|
:type PermissionGroups: list of PermissionGroup
|
|
13407
13548
|
:param _SubOrganizationIds: 集团角色的话,需要传递集团子企业列表,如果是全选,则传1
|
|
13408
|
-
:type SubOrganizationIds: str
|
|
13549
|
+
:type SubOrganizationIds: list of str
|
|
13409
13550
|
:param _Agent: 代理企业和员工的信息。
|
|
13410
13551
|
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
|
13411
13552
|
:type Agent: :class:`tencentcloud.ess.v20201111.models.Agent`
|
|
@@ -13480,7 +13621,7 @@ class CreateIntegrationRoleRequest(AbstractModel):
|
|
|
13480
13621
|
@property
|
|
13481
13622
|
def SubOrganizationIds(self):
|
|
13482
13623
|
r"""集团角色的话,需要传递集团子企业列表,如果是全选,则传1
|
|
13483
|
-
:rtype: str
|
|
13624
|
+
:rtype: list of str
|
|
13484
13625
|
"""
|
|
13485
13626
|
return self._SubOrganizationIds
|
|
13486
13627
|
|
|
@@ -16959,19 +17100,25 @@ class CreatePrepareFlowRequest(AbstractModel):
|
|
|
16959
17100
|
用于满足创建及页面操作过程中的个性化要求
|
|
16960
17101
|
具体定制化内容详见数据接口说明
|
|
16961
17102
|
:type FlowOption: :class:`tencentcloud.ess.v20201111.models.CreateFlowOption`
|
|
16962
|
-
:param _NeedSignReview:
|
|
16963
|
-
|
|
16964
|
-
|
|
16965
|
-
企业可以通过CreateFlowSignReview审批接口通知腾讯电子签平台企业内部审批结果
|
|
16966
|
-
<ul><li> 如果企业通知腾讯电子签平台审核通过,签署方可继续签署动作。</li>
|
|
16967
|
-
<li> 如果企业通知腾讯电子签平台审核未通过,平台将继续阻塞签署方的签署动作,直到企业通知平台审核通过。</li></ul>
|
|
16968
|
-
注:`此功能可用于与企业内部的审批流程进行关联,支持手动、静默签署合同`
|
|
16969
|
-
:type NeedSignReview: bool
|
|
16970
|
-
:param _NeedCreateReview: 发起方企业的签署人进行发起操作是否需要企业内部审批。使用此功能需要发起方企业有参与签署。
|
|
17103
|
+
:param _NeedSignReview: 发起方企业签署员工,在进行签署操作前,是否需要先通过企业内部审批流程 (签署审核)
|
|
17104
|
+
1. **false(默认)**: 无需审批,发起方企业签署员工可直接进行签署操作。
|
|
17105
|
+
2. **true**: 需要先走企业内部审批流程。 当流程进展到发起方企业签署员工时,其签署操作会被阻塞,等待企业内部审批结果。
|
|
16971
17106
|
|
|
16972
|
-
|
|
17107
|
+
企业应通过 <a href="https://qian.tencent.com/developers/companyApis/operateFlows/CreateFlowSignReview" target="_blank">提交签署流程审批结果</a>审批接口,将内部审批结果通知腾讯电子签平台:
|
|
17108
|
+
1. 若通知为“审核通过”,发起方企业签署员工可继续完成签署操作。
|
|
17109
|
+
2. 若通知为“审核未通过”,平台将继续阻塞该签署方的签署操作,直到企业再次通知平台审核通过为止。
|
|
16973
17110
|
|
|
17111
|
+
说明: 此能力可用于与企业内部审批流程打通,适用于手动签署和自动签署两种模式。
|
|
17112
|
+
:type NeedSignReview: bool
|
|
17113
|
+
:param _NeedCreateReview: 发起方在创建合同流程前,是否必须先通过企业内部审批流程 (发起审核)
|
|
16974
17114
|
|
|
17115
|
+
当设置为 `true` 时:
|
|
17116
|
+
1. 您需要在企业内部完成审批,并通过接口 <a href="https://qian.tencent.com/developers/companyApis/operateFlows/CreateFlowSignReview" target="_blank">提交签署流程审批结果</a> 将审批结果回传给腾讯电子签。
|
|
17117
|
+
2. 只有当审核状态为“通过”时,合同流程正常发起。
|
|
17118
|
+
3. 若未通过或未回传审核结果,发起操作将被阻塞,阻止合同流程。
|
|
17119
|
+
|
|
17120
|
+
当设置为 `false` (默认值)时:
|
|
17121
|
+
发起方无需经过企业内部审批,可直接发起合同流程。
|
|
16975
17122
|
:type NeedCreateReview: bool
|
|
16976
17123
|
:param _UserData: 调用方自定义的个性化字段(可自定义此名称),并以base64方式编码,支持的最大数据大小为 20480长度。
|
|
16977
17124
|
|
|
@@ -17181,13 +17328,15 @@ class CreatePrepareFlowRequest(AbstractModel):
|
|
|
17181
17328
|
|
|
17182
17329
|
@property
|
|
17183
17330
|
def NeedSignReview(self):
|
|
17184
|
-
r"""
|
|
17185
|
-
|
|
17186
|
-
|
|
17187
|
-
|
|
17188
|
-
<
|
|
17189
|
-
|
|
17190
|
-
|
|
17331
|
+
r"""发起方企业签署员工,在进行签署操作前,是否需要先通过企业内部审批流程 (签署审核)
|
|
17332
|
+
1. **false(默认)**: 无需审批,发起方企业签署员工可直接进行签署操作。
|
|
17333
|
+
2. **true**: 需要先走企业内部审批流程。 当流程进展到发起方企业签署员工时,其签署操作会被阻塞,等待企业内部审批结果。
|
|
17334
|
+
|
|
17335
|
+
企业应通过 <a href="https://qian.tencent.com/developers/companyApis/operateFlows/CreateFlowSignReview" target="_blank">提交签署流程审批结果</a>审批接口,将内部审批结果通知腾讯电子签平台:
|
|
17336
|
+
1. 若通知为“审核通过”,发起方企业签署员工可继续完成签署操作。
|
|
17337
|
+
2. 若通知为“审核未通过”,平台将继续阻塞该签署方的签署操作,直到企业再次通知平台审核通过为止。
|
|
17338
|
+
|
|
17339
|
+
说明: 此能力可用于与企业内部审批流程打通,适用于手动签署和自动签署两种模式。
|
|
17191
17340
|
:rtype: bool
|
|
17192
17341
|
"""
|
|
17193
17342
|
return self._NeedSignReview
|
|
@@ -17198,11 +17347,15 @@ class CreatePrepareFlowRequest(AbstractModel):
|
|
|
17198
17347
|
|
|
17199
17348
|
@property
|
|
17200
17349
|
def NeedCreateReview(self):
|
|
17201
|
-
r"""
|
|
17202
|
-
|
|
17203
|
-
若设置为true,发起审核结果需通过接口 CreateFlowSignReview 通知电子签,审核通过后,发起方企业签署人方可进行发起操作,否则会阻塞其发起操作。
|
|
17350
|
+
r"""发起方在创建合同流程前,是否必须先通过企业内部审批流程 (发起审核)
|
|
17204
17351
|
|
|
17352
|
+
当设置为 `true` 时:
|
|
17353
|
+
1. 您需要在企业内部完成审批,并通过接口 <a href="https://qian.tencent.com/developers/companyApis/operateFlows/CreateFlowSignReview" target="_blank">提交签署流程审批结果</a> 将审批结果回传给腾讯电子签。
|
|
17354
|
+
2. 只有当审核状态为“通过”时,合同流程正常发起。
|
|
17355
|
+
3. 若未通过或未回传审核结果,发起操作将被阻塞,阻止合同流程。
|
|
17205
17356
|
|
|
17357
|
+
当设置为 `false` (默认值)时:
|
|
17358
|
+
发起方无需经过企业内部审批,可直接发起合同流程。
|
|
17206
17359
|
:rtype: bool
|
|
17207
17360
|
"""
|
|
17208
17361
|
return self._NeedCreateReview
|
|
@@ -24003,6 +24156,175 @@ class DescribeContractReviewWebUrlResponse(AbstractModel):
|
|
|
24003
24156
|
self._RequestId = params.get("RequestId")
|
|
24004
24157
|
|
|
24005
24158
|
|
|
24159
|
+
class DescribeEnterpriseContractReviewChecklistsRequest(AbstractModel):
|
|
24160
|
+
r"""DescribeEnterpriseContractReviewChecklists请求参数结构体
|
|
24161
|
+
|
|
24162
|
+
"""
|
|
24163
|
+
|
|
24164
|
+
def __init__(self):
|
|
24165
|
+
r"""
|
|
24166
|
+
:param _Operator: 执行本接口操作的员工信息。
|
|
24167
|
+
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
|
24168
|
+
:type Operator: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
|
24169
|
+
:param _Agent: 代理企业和员工的信息。
|
|
24170
|
+
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
|
24171
|
+
:type Agent: :class:`tencentcloud.ess.v20201111.models.Agent`
|
|
24172
|
+
:param _Filters: 过滤条件
|
|
24173
|
+
:type Filters: :class:`tencentcloud.ess.v20201111.models.Filter`
|
|
24174
|
+
:param _Limit: 指定每页返回的数据条数,和Offset参数配合使用。
|
|
24175
|
+
:type Limit: int
|
|
24176
|
+
:param _Offset: 查询结果分页返回,指定从第几页返回数据,和Limit参数配合使用。
|
|
24177
|
+
:type Offset: int
|
|
24178
|
+
"""
|
|
24179
|
+
self._Operator = None
|
|
24180
|
+
self._Agent = None
|
|
24181
|
+
self._Filters = None
|
|
24182
|
+
self._Limit = None
|
|
24183
|
+
self._Offset = None
|
|
24184
|
+
|
|
24185
|
+
@property
|
|
24186
|
+
def Operator(self):
|
|
24187
|
+
r"""执行本接口操作的员工信息。
|
|
24188
|
+
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
|
24189
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
|
24190
|
+
"""
|
|
24191
|
+
return self._Operator
|
|
24192
|
+
|
|
24193
|
+
@Operator.setter
|
|
24194
|
+
def Operator(self, Operator):
|
|
24195
|
+
self._Operator = Operator
|
|
24196
|
+
|
|
24197
|
+
@property
|
|
24198
|
+
def Agent(self):
|
|
24199
|
+
r"""代理企业和员工的信息。
|
|
24200
|
+
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
|
24201
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.Agent`
|
|
24202
|
+
"""
|
|
24203
|
+
return self._Agent
|
|
24204
|
+
|
|
24205
|
+
@Agent.setter
|
|
24206
|
+
def Agent(self, Agent):
|
|
24207
|
+
self._Agent = Agent
|
|
24208
|
+
|
|
24209
|
+
@property
|
|
24210
|
+
def Filters(self):
|
|
24211
|
+
r"""过滤条件
|
|
24212
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.Filter`
|
|
24213
|
+
"""
|
|
24214
|
+
return self._Filters
|
|
24215
|
+
|
|
24216
|
+
@Filters.setter
|
|
24217
|
+
def Filters(self, Filters):
|
|
24218
|
+
self._Filters = Filters
|
|
24219
|
+
|
|
24220
|
+
@property
|
|
24221
|
+
def Limit(self):
|
|
24222
|
+
r"""指定每页返回的数据条数,和Offset参数配合使用。
|
|
24223
|
+
:rtype: int
|
|
24224
|
+
"""
|
|
24225
|
+
return self._Limit
|
|
24226
|
+
|
|
24227
|
+
@Limit.setter
|
|
24228
|
+
def Limit(self, Limit):
|
|
24229
|
+
self._Limit = Limit
|
|
24230
|
+
|
|
24231
|
+
@property
|
|
24232
|
+
def Offset(self):
|
|
24233
|
+
r"""查询结果分页返回,指定从第几页返回数据,和Limit参数配合使用。
|
|
24234
|
+
:rtype: int
|
|
24235
|
+
"""
|
|
24236
|
+
return self._Offset
|
|
24237
|
+
|
|
24238
|
+
@Offset.setter
|
|
24239
|
+
def Offset(self, Offset):
|
|
24240
|
+
self._Offset = Offset
|
|
24241
|
+
|
|
24242
|
+
|
|
24243
|
+
def _deserialize(self, params):
|
|
24244
|
+
if params.get("Operator") is not None:
|
|
24245
|
+
self._Operator = UserInfo()
|
|
24246
|
+
self._Operator._deserialize(params.get("Operator"))
|
|
24247
|
+
if params.get("Agent") is not None:
|
|
24248
|
+
self._Agent = Agent()
|
|
24249
|
+
self._Agent._deserialize(params.get("Agent"))
|
|
24250
|
+
if params.get("Filters") is not None:
|
|
24251
|
+
self._Filters = Filter()
|
|
24252
|
+
self._Filters._deserialize(params.get("Filters"))
|
|
24253
|
+
self._Limit = params.get("Limit")
|
|
24254
|
+
self._Offset = params.get("Offset")
|
|
24255
|
+
memeber_set = set(params.keys())
|
|
24256
|
+
for name, value in vars(self).items():
|
|
24257
|
+
property_name = name[1:]
|
|
24258
|
+
if property_name in memeber_set:
|
|
24259
|
+
memeber_set.remove(property_name)
|
|
24260
|
+
if len(memeber_set) > 0:
|
|
24261
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
24262
|
+
|
|
24263
|
+
|
|
24264
|
+
|
|
24265
|
+
class DescribeEnterpriseContractReviewChecklistsResponse(AbstractModel):
|
|
24266
|
+
r"""DescribeEnterpriseContractReviewChecklists返回参数结构体
|
|
24267
|
+
|
|
24268
|
+
"""
|
|
24269
|
+
|
|
24270
|
+
def __init__(self):
|
|
24271
|
+
r"""
|
|
24272
|
+
:param _Total: 查询的总条数
|
|
24273
|
+
:type Total: int
|
|
24274
|
+
:param _Checklists: 清单列表
|
|
24275
|
+
:type Checklists: list of Checklist
|
|
24276
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
24277
|
+
:type RequestId: str
|
|
24278
|
+
"""
|
|
24279
|
+
self._Total = None
|
|
24280
|
+
self._Checklists = None
|
|
24281
|
+
self._RequestId = None
|
|
24282
|
+
|
|
24283
|
+
@property
|
|
24284
|
+
def Total(self):
|
|
24285
|
+
r"""查询的总条数
|
|
24286
|
+
:rtype: int
|
|
24287
|
+
"""
|
|
24288
|
+
return self._Total
|
|
24289
|
+
|
|
24290
|
+
@Total.setter
|
|
24291
|
+
def Total(self, Total):
|
|
24292
|
+
self._Total = Total
|
|
24293
|
+
|
|
24294
|
+
@property
|
|
24295
|
+
def Checklists(self):
|
|
24296
|
+
r"""清单列表
|
|
24297
|
+
:rtype: list of Checklist
|
|
24298
|
+
"""
|
|
24299
|
+
return self._Checklists
|
|
24300
|
+
|
|
24301
|
+
@Checklists.setter
|
|
24302
|
+
def Checklists(self, Checklists):
|
|
24303
|
+
self._Checklists = Checklists
|
|
24304
|
+
|
|
24305
|
+
@property
|
|
24306
|
+
def RequestId(self):
|
|
24307
|
+
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
24308
|
+
:rtype: str
|
|
24309
|
+
"""
|
|
24310
|
+
return self._RequestId
|
|
24311
|
+
|
|
24312
|
+
@RequestId.setter
|
|
24313
|
+
def RequestId(self, RequestId):
|
|
24314
|
+
self._RequestId = RequestId
|
|
24315
|
+
|
|
24316
|
+
|
|
24317
|
+
def _deserialize(self, params):
|
|
24318
|
+
self._Total = params.get("Total")
|
|
24319
|
+
if params.get("Checklists") is not None:
|
|
24320
|
+
self._Checklists = []
|
|
24321
|
+
for item in params.get("Checklists"):
|
|
24322
|
+
obj = Checklist()
|
|
24323
|
+
obj._deserialize(item)
|
|
24324
|
+
self._Checklists.append(obj)
|
|
24325
|
+
self._RequestId = params.get("RequestId")
|
|
24326
|
+
|
|
24327
|
+
|
|
24006
24328
|
class DescribeExtendedServiceAuthDetailRequest(AbstractModel):
|
|
24007
24329
|
r"""DescribeExtendedServiceAuthDetail请求参数结构体
|
|
24008
24330
|
|
|
@@ -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.35
|
|
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.35
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.35
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.32
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|