tencentcloud-sdk-python 3.0.1435__py2.py3-none-any.whl → 3.0.1436__py2.py3-none-any.whl
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.
Potentially problematic release.
This version of tencentcloud-sdk-python might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/autoscaling/v20180419/models.py +2 -2
- tencentcloud/cdn/v20180606/cdn_client.py +0 -575
- tencentcloud/cdn/v20180606/errorcodes.py +0 -48
- tencentcloud/cdn/v20180606/models.py +12881 -21511
- tencentcloud/cfs/v20190719/models.py +16 -18
- tencentcloud/cls/v20201016/models.py +22 -4
- tencentcloud/dlc/v20210125/dlc_client.py +529 -0
- tencentcloud/dlc/v20210125/errorcodes.py +30 -0
- tencentcloud/dlc/v20210125/models.py +7581 -2530
- tencentcloud/emr/v20190103/models.py +2 -2
- tencentcloud/es/v20250101/models.py +70 -0
- tencentcloud/ess/v20201111/ess_client.py +53 -1
- tencentcloud/ess/v20201111/models.py +680 -0
- tencentcloud/hunyuan/v20230901/errorcodes.py +0 -27
- tencentcloud/hunyuan/v20230901/hunyuan_client.py +0 -46
- tencentcloud/hunyuan/v20230901/models.py +0 -357
- tencentcloud/mps/v20190612/models.py +24 -8
- tencentcloud/mqtt/v20240516/models.py +150 -0
- tencentcloud/ocr/v20181119/models.py +4 -4
- tencentcloud/ssl/v20191205/models.py +6 -6
- tencentcloud/teo/v20220901/errorcodes.py +24 -0
- tencentcloud/teo/v20220901/models.py +3449 -431
- tencentcloud/teo/v20220901/teo_client.py +462 -0
- tencentcloud/tione/v20211111/models.py +15 -0
- tencentcloud/trtc/v20190722/models.py +70 -6
- tencentcloud/waf/v20180125/models.py +1029 -151
- tencentcloud/waf/v20180125/waf_client.py +92 -0
- {tencentcloud_sdk_python-3.0.1435.dist-info → tencentcloud_sdk_python-3.0.1436.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1435.dist-info → tencentcloud_sdk_python-3.0.1436.dist-info}/RECORD +33 -33
- {tencentcloud_sdk_python-3.0.1435.dist-info → tencentcloud_sdk_python-3.0.1436.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1435.dist-info → tencentcloud_sdk_python-3.0.1436.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1435.dist-info → tencentcloud_sdk_python-3.0.1436.dist-info}/top_level.txt +0 -0
|
@@ -4170,6 +4170,196 @@ class CreateBatchCancelFlowUrlResponse(AbstractModel):
|
|
|
4170
4170
|
self._RequestId = params.get("RequestId")
|
|
4171
4171
|
|
|
4172
4172
|
|
|
4173
|
+
class CreateBatchContractReviewTaskRequest(AbstractModel):
|
|
4174
|
+
"""CreateBatchContractReviewTask请求参数结构体
|
|
4175
|
+
|
|
4176
|
+
"""
|
|
4177
|
+
|
|
4178
|
+
def __init__(self):
|
|
4179
|
+
r"""
|
|
4180
|
+
:param _Operator: 执行合同审查任务的员工信息。
|
|
4181
|
+
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
|
4182
|
+
:type Operator: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
|
4183
|
+
:param _ResourceIds: 合同审查的PDF文件资源编号列表,通过[UploadFiles](https://qian.tencent.com/developers/companyApis/templatesAndFiles/UploadFiles)接口获取PDF文件资源编号。
|
|
4184
|
+
|
|
4185
|
+
注: `目前,此接口仅支持5个文件发起。每个文件限制在10M以下,文件必须是PDF格式`
|
|
4186
|
+
:type ResourceIds: list of str
|
|
4187
|
+
:param _PolicyType: 合同审查的审查立场方。
|
|
4188
|
+
|
|
4189
|
+
审查立场方如下:
|
|
4190
|
+
<ul>
|
|
4191
|
+
<li>**0** - 【严格】以保护己方利益为核心,对合同条款进行严格把控,尽可能争取对己方有利的条款,同时对对方提出的不合理条款可进行坚决修改或删除。</li>
|
|
4192
|
+
<li>**1** - 【中立】以公平合理为原则,平衡双方的权利义务,既不过分强调己方利益,也不过度让步,力求达成双方均可接受的条款。</li>
|
|
4193
|
+
<li>**2** - 【宽松】以促成交易为核心,对合同条款的修改要求较为宽松,倾向于接受对方提出的条款,以尽快达成合作。</li>
|
|
4194
|
+
</ul>
|
|
4195
|
+
:type PolicyType: int
|
|
4196
|
+
:param _Role: 合同审查中的角色信息,通过明确入参角色的名称和描述,可以提高合同审查的效率和准确性。
|
|
4197
|
+
:type Role: :class:`tencentcloud.ess.v20201111.models.RiskIdentificationRoleInfo`
|
|
4198
|
+
:param _ChecklistId: 用户配置的审查清单ID,基于此清单ID批量创建合同审查任务,为32位字符串。
|
|
4199
|
+
[点击查看审查清单ID在控制台上的位置](https://qcloudimg.tencent-cloud.cn/raw/2c6588549e28ca49bd8bb7f4a072b19e.png)
|
|
4200
|
+
:type ChecklistId: str
|
|
4201
|
+
:param _Agent: 代理企业和员工的信息。
|
|
4202
|
+
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
|
4203
|
+
:type Agent: :class:`tencentcloud.ess.v20201111.models.Agent`
|
|
4204
|
+
"""
|
|
4205
|
+
self._Operator = None
|
|
4206
|
+
self._ResourceIds = None
|
|
4207
|
+
self._PolicyType = None
|
|
4208
|
+
self._Role = None
|
|
4209
|
+
self._ChecklistId = None
|
|
4210
|
+
self._Agent = None
|
|
4211
|
+
|
|
4212
|
+
@property
|
|
4213
|
+
def Operator(self):
|
|
4214
|
+
"""执行合同审查任务的员工信息。
|
|
4215
|
+
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
|
4216
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
|
4217
|
+
"""
|
|
4218
|
+
return self._Operator
|
|
4219
|
+
|
|
4220
|
+
@Operator.setter
|
|
4221
|
+
def Operator(self, Operator):
|
|
4222
|
+
self._Operator = Operator
|
|
4223
|
+
|
|
4224
|
+
@property
|
|
4225
|
+
def ResourceIds(self):
|
|
4226
|
+
"""合同审查的PDF文件资源编号列表,通过[UploadFiles](https://qian.tencent.com/developers/companyApis/templatesAndFiles/UploadFiles)接口获取PDF文件资源编号。
|
|
4227
|
+
|
|
4228
|
+
注: `目前,此接口仅支持5个文件发起。每个文件限制在10M以下,文件必须是PDF格式`
|
|
4229
|
+
:rtype: list of str
|
|
4230
|
+
"""
|
|
4231
|
+
return self._ResourceIds
|
|
4232
|
+
|
|
4233
|
+
@ResourceIds.setter
|
|
4234
|
+
def ResourceIds(self, ResourceIds):
|
|
4235
|
+
self._ResourceIds = ResourceIds
|
|
4236
|
+
|
|
4237
|
+
@property
|
|
4238
|
+
def PolicyType(self):
|
|
4239
|
+
"""合同审查的审查立场方。
|
|
4240
|
+
|
|
4241
|
+
审查立场方如下:
|
|
4242
|
+
<ul>
|
|
4243
|
+
<li>**0** - 【严格】以保护己方利益为核心,对合同条款进行严格把控,尽可能争取对己方有利的条款,同时对对方提出的不合理条款可进行坚决修改或删除。</li>
|
|
4244
|
+
<li>**1** - 【中立】以公平合理为原则,平衡双方的权利义务,既不过分强调己方利益,也不过度让步,力求达成双方均可接受的条款。</li>
|
|
4245
|
+
<li>**2** - 【宽松】以促成交易为核心,对合同条款的修改要求较为宽松,倾向于接受对方提出的条款,以尽快达成合作。</li>
|
|
4246
|
+
</ul>
|
|
4247
|
+
:rtype: int
|
|
4248
|
+
"""
|
|
4249
|
+
return self._PolicyType
|
|
4250
|
+
|
|
4251
|
+
@PolicyType.setter
|
|
4252
|
+
def PolicyType(self, PolicyType):
|
|
4253
|
+
self._PolicyType = PolicyType
|
|
4254
|
+
|
|
4255
|
+
@property
|
|
4256
|
+
def Role(self):
|
|
4257
|
+
"""合同审查中的角色信息,通过明确入参角色的名称和描述,可以提高合同审查的效率和准确性。
|
|
4258
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.RiskIdentificationRoleInfo`
|
|
4259
|
+
"""
|
|
4260
|
+
return self._Role
|
|
4261
|
+
|
|
4262
|
+
@Role.setter
|
|
4263
|
+
def Role(self, Role):
|
|
4264
|
+
self._Role = Role
|
|
4265
|
+
|
|
4266
|
+
@property
|
|
4267
|
+
def ChecklistId(self):
|
|
4268
|
+
"""用户配置的审查清单ID,基于此清单ID批量创建合同审查任务,为32位字符串。
|
|
4269
|
+
[点击查看审查清单ID在控制台上的位置](https://qcloudimg.tencent-cloud.cn/raw/2c6588549e28ca49bd8bb7f4a072b19e.png)
|
|
4270
|
+
:rtype: str
|
|
4271
|
+
"""
|
|
4272
|
+
return self._ChecklistId
|
|
4273
|
+
|
|
4274
|
+
@ChecklistId.setter
|
|
4275
|
+
def ChecklistId(self, ChecklistId):
|
|
4276
|
+
self._ChecklistId = ChecklistId
|
|
4277
|
+
|
|
4278
|
+
@property
|
|
4279
|
+
def Agent(self):
|
|
4280
|
+
"""代理企业和员工的信息。
|
|
4281
|
+
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
|
4282
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.Agent`
|
|
4283
|
+
"""
|
|
4284
|
+
return self._Agent
|
|
4285
|
+
|
|
4286
|
+
@Agent.setter
|
|
4287
|
+
def Agent(self, Agent):
|
|
4288
|
+
self._Agent = Agent
|
|
4289
|
+
|
|
4290
|
+
|
|
4291
|
+
def _deserialize(self, params):
|
|
4292
|
+
if params.get("Operator") is not None:
|
|
4293
|
+
self._Operator = UserInfo()
|
|
4294
|
+
self._Operator._deserialize(params.get("Operator"))
|
|
4295
|
+
self._ResourceIds = params.get("ResourceIds")
|
|
4296
|
+
self._PolicyType = params.get("PolicyType")
|
|
4297
|
+
if params.get("Role") is not None:
|
|
4298
|
+
self._Role = RiskIdentificationRoleInfo()
|
|
4299
|
+
self._Role._deserialize(params.get("Role"))
|
|
4300
|
+
self._ChecklistId = params.get("ChecklistId")
|
|
4301
|
+
if params.get("Agent") is not None:
|
|
4302
|
+
self._Agent = Agent()
|
|
4303
|
+
self._Agent._deserialize(params.get("Agent"))
|
|
4304
|
+
memeber_set = set(params.keys())
|
|
4305
|
+
for name, value in vars(self).items():
|
|
4306
|
+
property_name = name[1:]
|
|
4307
|
+
if property_name in memeber_set:
|
|
4308
|
+
memeber_set.remove(property_name)
|
|
4309
|
+
if len(memeber_set) > 0:
|
|
4310
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
4311
|
+
|
|
4312
|
+
|
|
4313
|
+
|
|
4314
|
+
class CreateBatchContractReviewTaskResponse(AbstractModel):
|
|
4315
|
+
"""CreateBatchContractReviewTask返回参数结构体
|
|
4316
|
+
|
|
4317
|
+
"""
|
|
4318
|
+
|
|
4319
|
+
def __init__(self):
|
|
4320
|
+
r"""
|
|
4321
|
+
:param _TaskIds: 合同审查的任务ID列表,每个任务ID为32位字符串。
|
|
4322
|
+
建议开发者保存此任务ID,后续[查询合同审查任务取详情](https://qian.tencent.com/developers/companyApis/%E5%90%88%E5%90%8C%E6%99%BA%E8%83%BD%E7%9B%B8%E5%85%B3%E6%8E%A5%E5%8F%A3/DescribeContractReviewTask/)需要此任务ID。
|
|
4323
|
+
|
|
4324
|
+
注意:`返回的索引和ResourceIds数组一致`
|
|
4325
|
+
:type TaskIds: list of str
|
|
4326
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4327
|
+
:type RequestId: str
|
|
4328
|
+
"""
|
|
4329
|
+
self._TaskIds = None
|
|
4330
|
+
self._RequestId = None
|
|
4331
|
+
|
|
4332
|
+
@property
|
|
4333
|
+
def TaskIds(self):
|
|
4334
|
+
"""合同审查的任务ID列表,每个任务ID为32位字符串。
|
|
4335
|
+
建议开发者保存此任务ID,后续[查询合同审查任务取详情](https://qian.tencent.com/developers/companyApis/%E5%90%88%E5%90%8C%E6%99%BA%E8%83%BD%E7%9B%B8%E5%85%B3%E6%8E%A5%E5%8F%A3/DescribeContractReviewTask/)需要此任务ID。
|
|
4336
|
+
|
|
4337
|
+
注意:`返回的索引和ResourceIds数组一致`
|
|
4338
|
+
:rtype: list of str
|
|
4339
|
+
"""
|
|
4340
|
+
return self._TaskIds
|
|
4341
|
+
|
|
4342
|
+
@TaskIds.setter
|
|
4343
|
+
def TaskIds(self, TaskIds):
|
|
4344
|
+
self._TaskIds = TaskIds
|
|
4345
|
+
|
|
4346
|
+
@property
|
|
4347
|
+
def RequestId(self):
|
|
4348
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4349
|
+
:rtype: str
|
|
4350
|
+
"""
|
|
4351
|
+
return self._RequestId
|
|
4352
|
+
|
|
4353
|
+
@RequestId.setter
|
|
4354
|
+
def RequestId(self, RequestId):
|
|
4355
|
+
self._RequestId = RequestId
|
|
4356
|
+
|
|
4357
|
+
|
|
4358
|
+
def _deserialize(self, params):
|
|
4359
|
+
self._TaskIds = params.get("TaskIds")
|
|
4360
|
+
self._RequestId = params.get("RequestId")
|
|
4361
|
+
|
|
4362
|
+
|
|
4173
4363
|
class CreateBatchInformationExtractionTaskRequest(AbstractModel):
|
|
4174
4364
|
"""CreateBatchInformationExtractionTask请求参数结构体
|
|
4175
4365
|
|
|
@@ -20148,6 +20338,284 @@ class DescribeContractDiffTaskWebUrlResponse(AbstractModel):
|
|
|
20148
20338
|
self._RequestId = params.get("RequestId")
|
|
20149
20339
|
|
|
20150
20340
|
|
|
20341
|
+
class DescribeContractReviewTaskRequest(AbstractModel):
|
|
20342
|
+
"""DescribeContractReviewTask请求参数结构体
|
|
20343
|
+
|
|
20344
|
+
"""
|
|
20345
|
+
|
|
20346
|
+
def __init__(self):
|
|
20347
|
+
r"""
|
|
20348
|
+
:param _Operator: 执行本接口操作的员工信息。
|
|
20349
|
+
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
|
20350
|
+
:type Operator: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
|
20351
|
+
:param _TaskId: 合同审查任务ID,该参数通过调用接口[批量创建合同审查任务](https://qian.tencent.com/developers/companyApis/%E5%90%88%E5%90%8C%E6%99%BA%E8%83%BD%E7%9B%B8%E5%85%B3%E6%8E%A5%E5%8F%A3/CreateBatchContractReviewTask)获取。
|
|
20352
|
+
:type TaskId: str
|
|
20353
|
+
:param _Agent: 代理企业和员工的信息。
|
|
20354
|
+
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
|
20355
|
+
:type Agent: :class:`tencentcloud.ess.v20201111.models.Agent`
|
|
20356
|
+
"""
|
|
20357
|
+
self._Operator = None
|
|
20358
|
+
self._TaskId = None
|
|
20359
|
+
self._Agent = None
|
|
20360
|
+
|
|
20361
|
+
@property
|
|
20362
|
+
def Operator(self):
|
|
20363
|
+
"""执行本接口操作的员工信息。
|
|
20364
|
+
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
|
20365
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
|
20366
|
+
"""
|
|
20367
|
+
return self._Operator
|
|
20368
|
+
|
|
20369
|
+
@Operator.setter
|
|
20370
|
+
def Operator(self, Operator):
|
|
20371
|
+
self._Operator = Operator
|
|
20372
|
+
|
|
20373
|
+
@property
|
|
20374
|
+
def TaskId(self):
|
|
20375
|
+
"""合同审查任务ID,该参数通过调用接口[批量创建合同审查任务](https://qian.tencent.com/developers/companyApis/%E5%90%88%E5%90%8C%E6%99%BA%E8%83%BD%E7%9B%B8%E5%85%B3%E6%8E%A5%E5%8F%A3/CreateBatchContractReviewTask)获取。
|
|
20376
|
+
:rtype: str
|
|
20377
|
+
"""
|
|
20378
|
+
return self._TaskId
|
|
20379
|
+
|
|
20380
|
+
@TaskId.setter
|
|
20381
|
+
def TaskId(self, TaskId):
|
|
20382
|
+
self._TaskId = TaskId
|
|
20383
|
+
|
|
20384
|
+
@property
|
|
20385
|
+
def Agent(self):
|
|
20386
|
+
"""代理企业和员工的信息。
|
|
20387
|
+
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
|
20388
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.Agent`
|
|
20389
|
+
"""
|
|
20390
|
+
return self._Agent
|
|
20391
|
+
|
|
20392
|
+
@Agent.setter
|
|
20393
|
+
def Agent(self, Agent):
|
|
20394
|
+
self._Agent = Agent
|
|
20395
|
+
|
|
20396
|
+
|
|
20397
|
+
def _deserialize(self, params):
|
|
20398
|
+
if params.get("Operator") is not None:
|
|
20399
|
+
self._Operator = UserInfo()
|
|
20400
|
+
self._Operator._deserialize(params.get("Operator"))
|
|
20401
|
+
self._TaskId = params.get("TaskId")
|
|
20402
|
+
if params.get("Agent") is not None:
|
|
20403
|
+
self._Agent = Agent()
|
|
20404
|
+
self._Agent._deserialize(params.get("Agent"))
|
|
20405
|
+
memeber_set = set(params.keys())
|
|
20406
|
+
for name, value in vars(self).items():
|
|
20407
|
+
property_name = name[1:]
|
|
20408
|
+
if property_name in memeber_set:
|
|
20409
|
+
memeber_set.remove(property_name)
|
|
20410
|
+
if len(memeber_set) > 0:
|
|
20411
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
20412
|
+
|
|
20413
|
+
|
|
20414
|
+
|
|
20415
|
+
class DescribeContractReviewTaskResponse(AbstractModel):
|
|
20416
|
+
"""DescribeContractReviewTask返回参数结构体
|
|
20417
|
+
|
|
20418
|
+
"""
|
|
20419
|
+
|
|
20420
|
+
def __init__(self):
|
|
20421
|
+
r"""
|
|
20422
|
+
:param _ChecklistId: 用于审查任务的审查清单ID。
|
|
20423
|
+
:type ChecklistId: str
|
|
20424
|
+
:param _CreatedOn: 合同审查任务创建时间。
|
|
20425
|
+
:type CreatedOn: int
|
|
20426
|
+
:param _FinishedOn: 合同审查任务完成时间。
|
|
20427
|
+
:type FinishedOn: int
|
|
20428
|
+
:param _PolicyType: 合同审查的审查立场方。
|
|
20429
|
+
|
|
20430
|
+
审查立场方如下:
|
|
20431
|
+
<ul>
|
|
20432
|
+
<li>**0** - 【严格】以保护己方利益为核心,对合同条款进行严格把控,尽可能争取对己方有利的条款,同时对对方提出的不合理条款可进行坚决修改或删除。</li>
|
|
20433
|
+
<li>**1** - 【中立】以公平合理为原则,平衡双方的权利义务,既不过分强调己方利益,也不过度让步,力求达成双方均可接受的条款。</li>
|
|
20434
|
+
<li>**2** - 【宽松】以促成交易为核心,对合同条款的修改要求较为宽松,倾向于接受对方提出的条款,以尽快达成合作。</li>
|
|
20435
|
+
</ul>
|
|
20436
|
+
:type PolicyType: int
|
|
20437
|
+
:param _ResourceId: 合同审查的PDF文件资源ID。
|
|
20438
|
+
:type ResourceId: str
|
|
20439
|
+
:param _Risks: 合同审查识别出的PDF文件风险信息,如果是空数组表示无风险。
|
|
20440
|
+
|
|
20441
|
+
注意:`审查结果由AI生成,仅供参考。请结合相关法律法规和公司制度要求综合判断。`
|
|
20442
|
+
:type Risks: list of OutputRisk
|
|
20443
|
+
:param _Role: 合同审查中的角色信息。
|
|
20444
|
+
:type Role: :class:`tencentcloud.ess.v20201111.models.RiskIdentificationRoleInfo`
|
|
20445
|
+
:param _Status: 合同审查任务状态。
|
|
20446
|
+
状态如下:
|
|
20447
|
+
<ul>
|
|
20448
|
+
<li>**1** - 合同审查任务创建成功</li>
|
|
20449
|
+
<li>**2** - 合同审查任务排队中</li>
|
|
20450
|
+
<li>**3** - 合同审查任务执行中</li>
|
|
20451
|
+
<li>**4** - 合同审查任务执行成功</li>
|
|
20452
|
+
<li>**4** - 合同审查任务执行失败</li>
|
|
20453
|
+
</ul>
|
|
20454
|
+
:type Status: int
|
|
20455
|
+
:param _TaskId: 合同审查任务ID
|
|
20456
|
+
:type TaskId: str
|
|
20457
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
20458
|
+
:type RequestId: str
|
|
20459
|
+
"""
|
|
20460
|
+
self._ChecklistId = None
|
|
20461
|
+
self._CreatedOn = None
|
|
20462
|
+
self._FinishedOn = None
|
|
20463
|
+
self._PolicyType = None
|
|
20464
|
+
self._ResourceId = None
|
|
20465
|
+
self._Risks = None
|
|
20466
|
+
self._Role = None
|
|
20467
|
+
self._Status = None
|
|
20468
|
+
self._TaskId = None
|
|
20469
|
+
self._RequestId = None
|
|
20470
|
+
|
|
20471
|
+
@property
|
|
20472
|
+
def ChecklistId(self):
|
|
20473
|
+
"""用于审查任务的审查清单ID。
|
|
20474
|
+
:rtype: str
|
|
20475
|
+
"""
|
|
20476
|
+
return self._ChecklistId
|
|
20477
|
+
|
|
20478
|
+
@ChecklistId.setter
|
|
20479
|
+
def ChecklistId(self, ChecklistId):
|
|
20480
|
+
self._ChecklistId = ChecklistId
|
|
20481
|
+
|
|
20482
|
+
@property
|
|
20483
|
+
def CreatedOn(self):
|
|
20484
|
+
"""合同审查任务创建时间。
|
|
20485
|
+
:rtype: int
|
|
20486
|
+
"""
|
|
20487
|
+
return self._CreatedOn
|
|
20488
|
+
|
|
20489
|
+
@CreatedOn.setter
|
|
20490
|
+
def CreatedOn(self, CreatedOn):
|
|
20491
|
+
self._CreatedOn = CreatedOn
|
|
20492
|
+
|
|
20493
|
+
@property
|
|
20494
|
+
def FinishedOn(self):
|
|
20495
|
+
"""合同审查任务完成时间。
|
|
20496
|
+
:rtype: int
|
|
20497
|
+
"""
|
|
20498
|
+
return self._FinishedOn
|
|
20499
|
+
|
|
20500
|
+
@FinishedOn.setter
|
|
20501
|
+
def FinishedOn(self, FinishedOn):
|
|
20502
|
+
self._FinishedOn = FinishedOn
|
|
20503
|
+
|
|
20504
|
+
@property
|
|
20505
|
+
def PolicyType(self):
|
|
20506
|
+
"""合同审查的审查立场方。
|
|
20507
|
+
|
|
20508
|
+
审查立场方如下:
|
|
20509
|
+
<ul>
|
|
20510
|
+
<li>**0** - 【严格】以保护己方利益为核心,对合同条款进行严格把控,尽可能争取对己方有利的条款,同时对对方提出的不合理条款可进行坚决修改或删除。</li>
|
|
20511
|
+
<li>**1** - 【中立】以公平合理为原则,平衡双方的权利义务,既不过分强调己方利益,也不过度让步,力求达成双方均可接受的条款。</li>
|
|
20512
|
+
<li>**2** - 【宽松】以促成交易为核心,对合同条款的修改要求较为宽松,倾向于接受对方提出的条款,以尽快达成合作。</li>
|
|
20513
|
+
</ul>
|
|
20514
|
+
:rtype: int
|
|
20515
|
+
"""
|
|
20516
|
+
return self._PolicyType
|
|
20517
|
+
|
|
20518
|
+
@PolicyType.setter
|
|
20519
|
+
def PolicyType(self, PolicyType):
|
|
20520
|
+
self._PolicyType = PolicyType
|
|
20521
|
+
|
|
20522
|
+
@property
|
|
20523
|
+
def ResourceId(self):
|
|
20524
|
+
"""合同审查的PDF文件资源ID。
|
|
20525
|
+
:rtype: str
|
|
20526
|
+
"""
|
|
20527
|
+
return self._ResourceId
|
|
20528
|
+
|
|
20529
|
+
@ResourceId.setter
|
|
20530
|
+
def ResourceId(self, ResourceId):
|
|
20531
|
+
self._ResourceId = ResourceId
|
|
20532
|
+
|
|
20533
|
+
@property
|
|
20534
|
+
def Risks(self):
|
|
20535
|
+
"""合同审查识别出的PDF文件风险信息,如果是空数组表示无风险。
|
|
20536
|
+
|
|
20537
|
+
注意:`审查结果由AI生成,仅供参考。请结合相关法律法规和公司制度要求综合判断。`
|
|
20538
|
+
:rtype: list of OutputRisk
|
|
20539
|
+
"""
|
|
20540
|
+
return self._Risks
|
|
20541
|
+
|
|
20542
|
+
@Risks.setter
|
|
20543
|
+
def Risks(self, Risks):
|
|
20544
|
+
self._Risks = Risks
|
|
20545
|
+
|
|
20546
|
+
@property
|
|
20547
|
+
def Role(self):
|
|
20548
|
+
"""合同审查中的角色信息。
|
|
20549
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.RiskIdentificationRoleInfo`
|
|
20550
|
+
"""
|
|
20551
|
+
return self._Role
|
|
20552
|
+
|
|
20553
|
+
@Role.setter
|
|
20554
|
+
def Role(self, Role):
|
|
20555
|
+
self._Role = Role
|
|
20556
|
+
|
|
20557
|
+
@property
|
|
20558
|
+
def Status(self):
|
|
20559
|
+
"""合同审查任务状态。
|
|
20560
|
+
状态如下:
|
|
20561
|
+
<ul>
|
|
20562
|
+
<li>**1** - 合同审查任务创建成功</li>
|
|
20563
|
+
<li>**2** - 合同审查任务排队中</li>
|
|
20564
|
+
<li>**3** - 合同审查任务执行中</li>
|
|
20565
|
+
<li>**4** - 合同审查任务执行成功</li>
|
|
20566
|
+
<li>**4** - 合同审查任务执行失败</li>
|
|
20567
|
+
</ul>
|
|
20568
|
+
:rtype: int
|
|
20569
|
+
"""
|
|
20570
|
+
return self._Status
|
|
20571
|
+
|
|
20572
|
+
@Status.setter
|
|
20573
|
+
def Status(self, Status):
|
|
20574
|
+
self._Status = Status
|
|
20575
|
+
|
|
20576
|
+
@property
|
|
20577
|
+
def TaskId(self):
|
|
20578
|
+
"""合同审查任务ID
|
|
20579
|
+
:rtype: str
|
|
20580
|
+
"""
|
|
20581
|
+
return self._TaskId
|
|
20582
|
+
|
|
20583
|
+
@TaskId.setter
|
|
20584
|
+
def TaskId(self, TaskId):
|
|
20585
|
+
self._TaskId = TaskId
|
|
20586
|
+
|
|
20587
|
+
@property
|
|
20588
|
+
def RequestId(self):
|
|
20589
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
20590
|
+
:rtype: str
|
|
20591
|
+
"""
|
|
20592
|
+
return self._RequestId
|
|
20593
|
+
|
|
20594
|
+
@RequestId.setter
|
|
20595
|
+
def RequestId(self, RequestId):
|
|
20596
|
+
self._RequestId = RequestId
|
|
20597
|
+
|
|
20598
|
+
|
|
20599
|
+
def _deserialize(self, params):
|
|
20600
|
+
self._ChecklistId = params.get("ChecklistId")
|
|
20601
|
+
self._CreatedOn = params.get("CreatedOn")
|
|
20602
|
+
self._FinishedOn = params.get("FinishedOn")
|
|
20603
|
+
self._PolicyType = params.get("PolicyType")
|
|
20604
|
+
self._ResourceId = params.get("ResourceId")
|
|
20605
|
+
if params.get("Risks") is not None:
|
|
20606
|
+
self._Risks = []
|
|
20607
|
+
for item in params.get("Risks"):
|
|
20608
|
+
obj = OutputRisk()
|
|
20609
|
+
obj._deserialize(item)
|
|
20610
|
+
self._Risks.append(obj)
|
|
20611
|
+
if params.get("Role") is not None:
|
|
20612
|
+
self._Role = RiskIdentificationRoleInfo()
|
|
20613
|
+
self._Role._deserialize(params.get("Role"))
|
|
20614
|
+
self._Status = params.get("Status")
|
|
20615
|
+
self._TaskId = params.get("TaskId")
|
|
20616
|
+
self._RequestId = params.get("RequestId")
|
|
20617
|
+
|
|
20618
|
+
|
|
20151
20619
|
class DescribeExtendedServiceAuthDetailRequest(AbstractModel):
|
|
20152
20620
|
"""DescribeExtendedServiceAuthDetail请求参数结构体
|
|
20153
20621
|
|
|
@@ -32454,6 +32922,159 @@ class OrganizationInfo(AbstractModel):
|
|
|
32454
32922
|
|
|
32455
32923
|
|
|
32456
32924
|
|
|
32925
|
+
class OutputRisk(AbstractModel):
|
|
32926
|
+
"""合同审查任务识别出的风险结果信息
|
|
32927
|
+
|
|
32928
|
+
"""
|
|
32929
|
+
|
|
32930
|
+
def __init__(self):
|
|
32931
|
+
r"""
|
|
32932
|
+
:param _RiskId: 合同审查风险结果ID
|
|
32933
|
+
:type RiskId: str
|
|
32934
|
+
:param _RiskName: 风险名称
|
|
32935
|
+
:type RiskName: str
|
|
32936
|
+
:param _RiskDescription: 风险描述
|
|
32937
|
+
:type RiskDescription: str
|
|
32938
|
+
:param _RiskLevel: 风险等级。
|
|
32939
|
+
|
|
32940
|
+
等级描述如下:
|
|
32941
|
+
<ul>
|
|
32942
|
+
<li>**HIGH** - 高风险</li>
|
|
32943
|
+
<li>**NORMAL** - 风险</li>
|
|
32944
|
+
</ul>
|
|
32945
|
+
:type RiskLevel: str
|
|
32946
|
+
:param _RiskAdvice: 风险建议
|
|
32947
|
+
:type RiskAdvice: str
|
|
32948
|
+
:param _RiskPresentation: 风险评估
|
|
32949
|
+
:type RiskPresentation: list of str
|
|
32950
|
+
:param _Content: PDF风险原文内容
|
|
32951
|
+
:type Content: str
|
|
32952
|
+
:param _RiskBasis: 审查依据
|
|
32953
|
+
:type RiskBasis: str
|
|
32954
|
+
"""
|
|
32955
|
+
self._RiskId = None
|
|
32956
|
+
self._RiskName = None
|
|
32957
|
+
self._RiskDescription = None
|
|
32958
|
+
self._RiskLevel = None
|
|
32959
|
+
self._RiskAdvice = None
|
|
32960
|
+
self._RiskPresentation = None
|
|
32961
|
+
self._Content = None
|
|
32962
|
+
self._RiskBasis = None
|
|
32963
|
+
|
|
32964
|
+
@property
|
|
32965
|
+
def RiskId(self):
|
|
32966
|
+
"""合同审查风险结果ID
|
|
32967
|
+
:rtype: str
|
|
32968
|
+
"""
|
|
32969
|
+
return self._RiskId
|
|
32970
|
+
|
|
32971
|
+
@RiskId.setter
|
|
32972
|
+
def RiskId(self, RiskId):
|
|
32973
|
+
self._RiskId = RiskId
|
|
32974
|
+
|
|
32975
|
+
@property
|
|
32976
|
+
def RiskName(self):
|
|
32977
|
+
"""风险名称
|
|
32978
|
+
:rtype: str
|
|
32979
|
+
"""
|
|
32980
|
+
return self._RiskName
|
|
32981
|
+
|
|
32982
|
+
@RiskName.setter
|
|
32983
|
+
def RiskName(self, RiskName):
|
|
32984
|
+
self._RiskName = RiskName
|
|
32985
|
+
|
|
32986
|
+
@property
|
|
32987
|
+
def RiskDescription(self):
|
|
32988
|
+
"""风险描述
|
|
32989
|
+
:rtype: str
|
|
32990
|
+
"""
|
|
32991
|
+
return self._RiskDescription
|
|
32992
|
+
|
|
32993
|
+
@RiskDescription.setter
|
|
32994
|
+
def RiskDescription(self, RiskDescription):
|
|
32995
|
+
self._RiskDescription = RiskDescription
|
|
32996
|
+
|
|
32997
|
+
@property
|
|
32998
|
+
def RiskLevel(self):
|
|
32999
|
+
"""风险等级。
|
|
33000
|
+
|
|
33001
|
+
等级描述如下:
|
|
33002
|
+
<ul>
|
|
33003
|
+
<li>**HIGH** - 高风险</li>
|
|
33004
|
+
<li>**NORMAL** - 风险</li>
|
|
33005
|
+
</ul>
|
|
33006
|
+
:rtype: str
|
|
33007
|
+
"""
|
|
33008
|
+
return self._RiskLevel
|
|
33009
|
+
|
|
33010
|
+
@RiskLevel.setter
|
|
33011
|
+
def RiskLevel(self, RiskLevel):
|
|
33012
|
+
self._RiskLevel = RiskLevel
|
|
33013
|
+
|
|
33014
|
+
@property
|
|
33015
|
+
def RiskAdvice(self):
|
|
33016
|
+
"""风险建议
|
|
33017
|
+
:rtype: str
|
|
33018
|
+
"""
|
|
33019
|
+
return self._RiskAdvice
|
|
33020
|
+
|
|
33021
|
+
@RiskAdvice.setter
|
|
33022
|
+
def RiskAdvice(self, RiskAdvice):
|
|
33023
|
+
self._RiskAdvice = RiskAdvice
|
|
33024
|
+
|
|
33025
|
+
@property
|
|
33026
|
+
def RiskPresentation(self):
|
|
33027
|
+
"""风险评估
|
|
33028
|
+
:rtype: list of str
|
|
33029
|
+
"""
|
|
33030
|
+
return self._RiskPresentation
|
|
33031
|
+
|
|
33032
|
+
@RiskPresentation.setter
|
|
33033
|
+
def RiskPresentation(self, RiskPresentation):
|
|
33034
|
+
self._RiskPresentation = RiskPresentation
|
|
33035
|
+
|
|
33036
|
+
@property
|
|
33037
|
+
def Content(self):
|
|
33038
|
+
"""PDF风险原文内容
|
|
33039
|
+
:rtype: str
|
|
33040
|
+
"""
|
|
33041
|
+
return self._Content
|
|
33042
|
+
|
|
33043
|
+
@Content.setter
|
|
33044
|
+
def Content(self, Content):
|
|
33045
|
+
self._Content = Content
|
|
33046
|
+
|
|
33047
|
+
@property
|
|
33048
|
+
def RiskBasis(self):
|
|
33049
|
+
"""审查依据
|
|
33050
|
+
:rtype: str
|
|
33051
|
+
"""
|
|
33052
|
+
return self._RiskBasis
|
|
33053
|
+
|
|
33054
|
+
@RiskBasis.setter
|
|
33055
|
+
def RiskBasis(self, RiskBasis):
|
|
33056
|
+
self._RiskBasis = RiskBasis
|
|
33057
|
+
|
|
33058
|
+
|
|
33059
|
+
def _deserialize(self, params):
|
|
33060
|
+
self._RiskId = params.get("RiskId")
|
|
33061
|
+
self._RiskName = params.get("RiskName")
|
|
33062
|
+
self._RiskDescription = params.get("RiskDescription")
|
|
33063
|
+
self._RiskLevel = params.get("RiskLevel")
|
|
33064
|
+
self._RiskAdvice = params.get("RiskAdvice")
|
|
33065
|
+
self._RiskPresentation = params.get("RiskPresentation")
|
|
33066
|
+
self._Content = params.get("Content")
|
|
33067
|
+
self._RiskBasis = params.get("RiskBasis")
|
|
33068
|
+
memeber_set = set(params.keys())
|
|
33069
|
+
for name, value in vars(self).items():
|
|
33070
|
+
property_name = name[1:]
|
|
33071
|
+
if property_name in memeber_set:
|
|
33072
|
+
memeber_set.remove(property_name)
|
|
33073
|
+
if len(memeber_set) > 0:
|
|
33074
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
33075
|
+
|
|
33076
|
+
|
|
33077
|
+
|
|
32457
33078
|
class PdfVerifyResult(AbstractModel):
|
|
32458
33079
|
"""合同文件验签单个结果结构体
|
|
32459
33080
|
|
|
@@ -34360,6 +34981,65 @@ class ReviewerInfo(AbstractModel):
|
|
|
34360
34981
|
|
|
34361
34982
|
|
|
34362
34983
|
|
|
34984
|
+
class RiskIdentificationRoleInfo(AbstractModel):
|
|
34985
|
+
"""用于定义合同风险识别角色信息。
|
|
34986
|
+
|
|
34987
|
+
"""
|
|
34988
|
+
|
|
34989
|
+
def __init__(self):
|
|
34990
|
+
r"""
|
|
34991
|
+
:param _Name: 风险识别角色的名称。用于唯一标识和区分不同的风险识别角色。
|
|
34992
|
+
|
|
34993
|
+
注意:`最大长度应不超过200个字符`
|
|
34994
|
+
:type Name: str
|
|
34995
|
+
:param _Description: 风险识别角色的详细说明。
|
|
34996
|
+
|
|
34997
|
+
注意: `最大长度应不超过500个字符`
|
|
34998
|
+
:type Description: str
|
|
34999
|
+
"""
|
|
35000
|
+
self._Name = None
|
|
35001
|
+
self._Description = None
|
|
35002
|
+
|
|
35003
|
+
@property
|
|
35004
|
+
def Name(self):
|
|
35005
|
+
"""风险识别角色的名称。用于唯一标识和区分不同的风险识别角色。
|
|
35006
|
+
|
|
35007
|
+
注意:`最大长度应不超过200个字符`
|
|
35008
|
+
:rtype: str
|
|
35009
|
+
"""
|
|
35010
|
+
return self._Name
|
|
35011
|
+
|
|
35012
|
+
@Name.setter
|
|
35013
|
+
def Name(self, Name):
|
|
35014
|
+
self._Name = Name
|
|
35015
|
+
|
|
35016
|
+
@property
|
|
35017
|
+
def Description(self):
|
|
35018
|
+
"""风险识别角色的详细说明。
|
|
35019
|
+
|
|
35020
|
+
注意: `最大长度应不超过500个字符`
|
|
35021
|
+
:rtype: str
|
|
35022
|
+
"""
|
|
35023
|
+
return self._Description
|
|
35024
|
+
|
|
35025
|
+
@Description.setter
|
|
35026
|
+
def Description(self, Description):
|
|
35027
|
+
self._Description = Description
|
|
35028
|
+
|
|
35029
|
+
|
|
35030
|
+
def _deserialize(self, params):
|
|
35031
|
+
self._Name = params.get("Name")
|
|
35032
|
+
self._Description = params.get("Description")
|
|
35033
|
+
memeber_set = set(params.keys())
|
|
35034
|
+
for name, value in vars(self).items():
|
|
35035
|
+
property_name = name[1:]
|
|
35036
|
+
if property_name in memeber_set:
|
|
35037
|
+
memeber_set.remove(property_name)
|
|
35038
|
+
if len(memeber_set) > 0:
|
|
35039
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
35040
|
+
|
|
35041
|
+
|
|
35042
|
+
|
|
34363
35043
|
class SealInfo(AbstractModel):
|
|
34364
35044
|
"""模板中指定的印章信息
|
|
34365
35045
|
|