tencentcloud-sdk-python 3.0.1061__py2.py3-none-any.whl → 3.0.1063__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.

Files changed (31) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/billing/v20180709/models.py +27 -0
  3. tencentcloud/cat/v20180409/models.py +1 -1
  4. tencentcloud/cbs/v20170312/models.py +4 -4
  5. tencentcloud/cwp/v20180228/models.py +9 -15
  6. tencentcloud/dts/v20211206/models.py +1 -1
  7. tencentcloud/ess/v20201111/ess_client.py +64 -8
  8. tencentcloud/ess/v20201111/models.py +291 -37
  9. tencentcloud/essbasic/v20210526/essbasic_client.py +43 -4
  10. tencentcloud/essbasic/v20210526/models.py +292 -25
  11. tencentcloud/faceid/v20180301/models.py +2 -2
  12. tencentcloud/iss/v20230517/errorcodes.py +3 -0
  13. tencentcloud/iss/v20230517/models.py +20 -8
  14. tencentcloud/ivld/v20210903/models.py +1 -1
  15. tencentcloud/mongodb/v20190725/models.py +149 -0
  16. tencentcloud/omics/v20221128/models.py +55 -2
  17. tencentcloud/sqlserver/v20180328/sqlserver_client.py +6 -6
  18. tencentcloud/ssm/v20190923/models.py +2 -2
  19. tencentcloud/tcb/v20180608/models.py +3 -3
  20. tencentcloud/tsf/v20180326/models.py +1 -1
  21. tencentcloud/tsf/v20180326/tsf_client.py +1 -1
  22. tencentcloud/vod/v20180717/models.py +117 -118
  23. tencentcloud/vod/v20180717/vod_client.py +2 -1
  24. tencentcloud/vpc/v20170312/models.py +24 -0
  25. tencentcloud/wedata/v20210820/models.py +1353 -0
  26. tencentcloud/wedata/v20210820/wedata_client.py +69 -0
  27. {tencentcloud_sdk_python-3.0.1061.dist-info → tencentcloud_sdk_python-3.0.1063.dist-info}/METADATA +1 -1
  28. {tencentcloud_sdk_python-3.0.1061.dist-info → tencentcloud_sdk_python-3.0.1063.dist-info}/RECORD +31 -31
  29. {tencentcloud_sdk_python-3.0.1061.dist-info → tencentcloud_sdk_python-3.0.1063.dist-info}/LICENSE +0 -0
  30. {tencentcloud_sdk_python-3.0.1061.dist-info → tencentcloud_sdk_python-3.0.1063.dist-info}/WHEEL +0 -0
  31. {tencentcloud_sdk_python-3.0.1061.dist-info → tencentcloud_sdk_python-3.0.1063.dist-info}/top_level.txt +0 -0
@@ -2925,13 +2925,17 @@ class CreateBatchSignUrlResponse(AbstractModel):
2925
2925
  r"""
2926
2926
  :param _SignUrl: 批量签署链接,以短链形式返回,短链的有效期参考回参中的 ExpiredTime。
2927
2927
 
2928
- 注: `非小程序和APP集成使用`
2928
+ 注:
2929
+ 1. 非小程序和APP集成使用
2930
+ 2. <font color="red">生成的链路后面不能再增加参数</font>(会出现覆盖链接中已有参数导致错误)
2929
2931
  :type SignUrl: str
2930
2932
  :param _ExpiredTime: 链接过期时间以 Unix 时间戳格式表示,默认生成链接时间起,往后7天有效期。过期后短链将失效,无法打开。
2931
2933
  :type ExpiredTime: int
2932
2934
  :param _MiniAppPath: 从客户小程序或者客户APP跳转至腾讯电子签小程序进行批量签署的跳转路径
2933
2935
 
2934
- 注: `小程序和APP集成使用`
2936
+ 注:
2937
+ 1. 小程序和APP集成使用
2938
+ 2. <font color="red">生成的链路后面不能再增加参数</font>(会出现覆盖链接中已有参数导致错误)
2935
2939
  :type MiniAppPath: str
2936
2940
  :param _RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2937
2941
  :type RequestId: str
@@ -4664,6 +4668,145 @@ class CreateFlowGroupByTemplatesResponse(AbstractModel):
4664
4668
  self._RequestId = params.get("RequestId")
4665
4669
 
4666
4670
 
4671
+ class CreateFlowGroupSignReviewRequest(AbstractModel):
4672
+ """CreateFlowGroupSignReview请求参数结构体
4673
+
4674
+ """
4675
+
4676
+ def __init__(self):
4677
+ r"""
4678
+ :param _Operator: 执行本接口操作的员工信息。
4679
+ 注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
4680
+ :type Operator: :class:`tencentcloud.ess.v20201111.models.UserInfo`
4681
+ :param _FlowGroupId: 合同(流程)组的合同组Id,为32位字符串,通过接口[通过多文件创建合同组签署流程](https://qian.tencent.com/developers/companyApis/startFlows/CreateFlowGroupByFiles) 或[通过多模板创建合同组签署流程](https://qian.tencent.com/developers/companyApis/startFlows/CreateFlowGroupByTemplates)创建合同组签署流程时返回。
4682
+ :type FlowGroupId: str
4683
+ :param _ReviewType: 提交的审核结果,审核结果有下面三种情况
4684
+ <ul><li><b>PASS</b>: 审核通过,合同流程可以继续执行签署等操作</li>
4685
+ <li><b>REJECT</b>: 审核拒绝,合同流程不会变动</li>
4686
+ <li><b>SIGN_REJECT</b>:拒签,合同流程直接结束,合同状态变为**合同拒签**</li></ul>
4687
+ :type ReviewType: str
4688
+ :param _ApproverInfo: 需要进行签署审核的签署人的个人信息或企业信息,签署方的匹配方式按照以下规则:
4689
+
4690
+ 个人:二选一(选择其中任意信息组合即可)
4691
+ <ul><li>姓名+证件类型+证件号</li>
4692
+ <li>姓名+手机号</li></ul>
4693
+
4694
+ 企业:二选一 (选择其中任意信息组合即可)
4695
+ <ul><li>企业名+姓名+证件类型+证件号</li>
4696
+ <li>企业名+姓名+手机号</li></ul>
4697
+ :type ApproverInfo: :class:`tencentcloud.ess.v20201111.models.NeedReviewApproverInfo`
4698
+ :param _Agent: 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
4699
+ :type Agent: :class:`tencentcloud.ess.v20201111.models.Agent`
4700
+ :param _ReviewMessage: 审核不通过的原因,该字段的字符串长度不超过200个字符。
4701
+
4702
+ 注:`当审核类型(ReviewType)为审核拒绝(REJECT)或拒签(SIGN_REJECT)时,审核结果原因字段必须填写`
4703
+
4704
+ :type ReviewMessage: str
4705
+ """
4706
+ self._Operator = None
4707
+ self._FlowGroupId = None
4708
+ self._ReviewType = None
4709
+ self._ApproverInfo = None
4710
+ self._Agent = None
4711
+ self._ReviewMessage = None
4712
+
4713
+ @property
4714
+ def Operator(self):
4715
+ return self._Operator
4716
+
4717
+ @Operator.setter
4718
+ def Operator(self, Operator):
4719
+ self._Operator = Operator
4720
+
4721
+ @property
4722
+ def FlowGroupId(self):
4723
+ return self._FlowGroupId
4724
+
4725
+ @FlowGroupId.setter
4726
+ def FlowGroupId(self, FlowGroupId):
4727
+ self._FlowGroupId = FlowGroupId
4728
+
4729
+ @property
4730
+ def ReviewType(self):
4731
+ return self._ReviewType
4732
+
4733
+ @ReviewType.setter
4734
+ def ReviewType(self, ReviewType):
4735
+ self._ReviewType = ReviewType
4736
+
4737
+ @property
4738
+ def ApproverInfo(self):
4739
+ return self._ApproverInfo
4740
+
4741
+ @ApproverInfo.setter
4742
+ def ApproverInfo(self, ApproverInfo):
4743
+ self._ApproverInfo = ApproverInfo
4744
+
4745
+ @property
4746
+ def Agent(self):
4747
+ return self._Agent
4748
+
4749
+ @Agent.setter
4750
+ def Agent(self, Agent):
4751
+ self._Agent = Agent
4752
+
4753
+ @property
4754
+ def ReviewMessage(self):
4755
+ return self._ReviewMessage
4756
+
4757
+ @ReviewMessage.setter
4758
+ def ReviewMessage(self, ReviewMessage):
4759
+ self._ReviewMessage = ReviewMessage
4760
+
4761
+
4762
+ def _deserialize(self, params):
4763
+ if params.get("Operator") is not None:
4764
+ self._Operator = UserInfo()
4765
+ self._Operator._deserialize(params.get("Operator"))
4766
+ self._FlowGroupId = params.get("FlowGroupId")
4767
+ self._ReviewType = params.get("ReviewType")
4768
+ if params.get("ApproverInfo") is not None:
4769
+ self._ApproverInfo = NeedReviewApproverInfo()
4770
+ self._ApproverInfo._deserialize(params.get("ApproverInfo"))
4771
+ if params.get("Agent") is not None:
4772
+ self._Agent = Agent()
4773
+ self._Agent._deserialize(params.get("Agent"))
4774
+ self._ReviewMessage = params.get("ReviewMessage")
4775
+ memeber_set = set(params.keys())
4776
+ for name, value in vars(self).items():
4777
+ property_name = name[1:]
4778
+ if property_name in memeber_set:
4779
+ memeber_set.remove(property_name)
4780
+ if len(memeber_set) > 0:
4781
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
4782
+
4783
+
4784
+
4785
+ class CreateFlowGroupSignReviewResponse(AbstractModel):
4786
+ """CreateFlowGroupSignReview返回参数结构体
4787
+
4788
+ """
4789
+
4790
+ def __init__(self):
4791
+ r"""
4792
+ :param _RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4793
+ :type RequestId: str
4794
+ """
4795
+ self._RequestId = None
4796
+
4797
+ @property
4798
+ def RequestId(self):
4799
+ return self._RequestId
4800
+
4801
+ @RequestId.setter
4802
+ def RequestId(self, RequestId):
4803
+ self._RequestId = RequestId
4804
+
4805
+
4806
+ def _deserialize(self, params):
4807
+ self._RequestId = params.get("RequestId")
4808
+
4809
+
4667
4810
  class CreateFlowOption(AbstractModel):
4668
4811
  """创建合同个性化参数
4669
4812
 
@@ -5262,23 +5405,18 @@ class CreateFlowSignReviewRequest(AbstractModel):
5262
5405
  注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
5263
5406
  :type Operator: :class:`tencentcloud.ess.v20201111.models.UserInfo`
5264
5407
  :param _FlowId: 合同流程ID,为32位字符串。
5265
- 建议开发者妥善保存此流程ID,以便于顺利进行后续操作。
5266
- 可登录腾讯电子签控制台,在 "合同"->"合同中心" 中查看某个合同的FlowId(在页面中展示为合同ID)
5408
+ <ul><li>建议开发者妥善保存此流程ID,以便于顺利进行后续操作。</li>
5409
+ <li>可登录腾讯电子签控制台,在 "合同"->"合同中心" 中查看某个合同的FlowId(在页面中展示为合同ID)。</li></ul>
5267
5410
  :type FlowId: str
5268
- :param _ReviewType: 企业审核结果
5269
- <ul><li>PASS: 通过</li>
5270
- <li>REJECT: 拒绝</li></ul>
5411
+ :param _ReviewType: 企业内部审核结果
5412
+ <ul><li>PASS: 审核通过</li>
5413
+ <li>REJECT: 审核拒绝</li>
5414
+ <li>SIGN_REJECT:拒签(流程结束)</li></ul>
5271
5415
  :type ReviewType: str
5272
- :param _ReviewMessage: 审核结果原因,
5273
- 字符串长度不超过200
5274
- 当ReviewType 是拒绝(REJECT) 时此字段必填。
5275
-
5276
- :type ReviewMessage: str
5277
5416
  :param _Agent: 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
5278
5417
  :type Agent: :class:`tencentcloud.ess.v20201111.models.Agent`
5279
- :param _RecipientId: 审核签署节点人标识,
5280
- 用来标识审核的签署方。
5281
- 如果签署审核节点是个人, 此参数必填。
5418
+ :param _RecipientId: 审核节点的签署人标志,用于指定当前审核的签署方
5419
+ <ul><li>**如果签署审核节点是个人, 此参数必填**。</li></ul>
5282
5420
  :type RecipientId: str
5283
5421
  :param _OperateType: 操作类型:(接口通过该字段区分不同的操作类型)
5284
5422
 
@@ -5287,14 +5425,21 @@ class CreateFlowSignReviewRequest(AbstractModel):
5287
5425
 
5288
5426
  如果审核节点是个人,则操作类型只能为SignReview。
5289
5427
  :type OperateType: str
5428
+ :param _ReviewMessage: 审核结果原因
5429
+ <ul><li>字符串长度不超过200</li>
5430
+ <li>当ReviewType 是拒绝(REJECT) 时此字段必填。</li>
5431
+ <li>当ReviewType 是拒绝(SIGN_REJECT) 时此字段必填。</li></ul>
5432
+
5433
+
5434
+ :type ReviewMessage: str
5290
5435
  """
5291
5436
  self._Operator = None
5292
5437
  self._FlowId = None
5293
5438
  self._ReviewType = None
5294
- self._ReviewMessage = None
5295
5439
  self._Agent = None
5296
5440
  self._RecipientId = None
5297
5441
  self._OperateType = None
5442
+ self._ReviewMessage = None
5298
5443
 
5299
5444
  @property
5300
5445
  def Operator(self):
@@ -5320,14 +5465,6 @@ class CreateFlowSignReviewRequest(AbstractModel):
5320
5465
  def ReviewType(self, ReviewType):
5321
5466
  self._ReviewType = ReviewType
5322
5467
 
5323
- @property
5324
- def ReviewMessage(self):
5325
- return self._ReviewMessage
5326
-
5327
- @ReviewMessage.setter
5328
- def ReviewMessage(self, ReviewMessage):
5329
- self._ReviewMessage = ReviewMessage
5330
-
5331
5468
  @property
5332
5469
  def Agent(self):
5333
5470
  return self._Agent
@@ -5352,6 +5489,14 @@ class CreateFlowSignReviewRequest(AbstractModel):
5352
5489
  def OperateType(self, OperateType):
5353
5490
  self._OperateType = OperateType
5354
5491
 
5492
+ @property
5493
+ def ReviewMessage(self):
5494
+ return self._ReviewMessage
5495
+
5496
+ @ReviewMessage.setter
5497
+ def ReviewMessage(self, ReviewMessage):
5498
+ self._ReviewMessage = ReviewMessage
5499
+
5355
5500
 
5356
5501
  def _deserialize(self, params):
5357
5502
  if params.get("Operator") is not None:
@@ -5359,12 +5504,12 @@ class CreateFlowSignReviewRequest(AbstractModel):
5359
5504
  self._Operator._deserialize(params.get("Operator"))
5360
5505
  self._FlowId = params.get("FlowId")
5361
5506
  self._ReviewType = params.get("ReviewType")
5362
- self._ReviewMessage = params.get("ReviewMessage")
5363
5507
  if params.get("Agent") is not None:
5364
5508
  self._Agent = Agent()
5365
5509
  self._Agent._deserialize(params.get("Agent"))
5366
5510
  self._RecipientId = params.get("RecipientId")
5367
5511
  self._OperateType = params.get("OperateType")
5512
+ self._ReviewMessage = params.get("ReviewMessage")
5368
5513
  memeber_set = set(params.keys())
5369
5514
  for name, value in vars(self).items():
5370
5515
  property_name = name[1:]
@@ -7849,6 +7994,9 @@ class CreateSchemeUrlResponse(AbstractModel):
7849
7994
  <ul><li>如果EndPoint是**APP**,得到的链接类似于`pages/guide?from=default&where=mini&id=yDwJSUUirqauh***7jNSxwdirTSGuH&to=CONTRACT_DETAIL&name=&phone=&shortKey=yDw***k1xFc5`, 用法可以参加接口描述中的"跳转到小程序的实现"</li>
7850
7995
  <li>如果EndPoint是**HTTP**,得到的链接类似于 `https://res.ess.tencent.cn/cdn/h5-activity/jump-mp.html?where=mini&from=SFY&id=yDwfEUUw**4rV6Avz&to=MVP_CONTRACT_COVER&name=%E9%83%**5%86%9B`,点击后会跳转到腾讯电子签小程序进行签署</li>
7851
7996
  <li>如果EndPoint是**HTTP_SHORT_URL**,得到的链接类似于 `https://essurl.cn/2n**42Nd`,点击后会跳转到腾讯电子签小程序进行签署</li></ul>
7997
+
7998
+
7999
+ 注: <font color="red">生成的链路后面不能再增加参数</font>
7852
8000
  :type SchemeUrl: str
7853
8001
  :param _SchemeQrcodeUrl: 二维码,在生成动态签署人跳转封面页链接时返回
7854
8002
  :type SchemeQrcodeUrl: str
@@ -13398,27 +13546,24 @@ class FlowApproverUrlInfo(AbstractModel):
13398
13546
 
13399
13547
  def __init__(self):
13400
13548
  r"""
13401
- :param _SignUrl: 签署短链接。</br>
13549
+ :param _SignUrl: 签署短链接。
13402
13550
  注意:
13403
- - 该链接有效期为**30分钟**,同时需要注意保密,不要外泄给无关用户。
13404
- - 该链接不支持小程序嵌入,仅支持**移动端浏览器**打开。
13405
- 注意:此字段可能返回 null,表示取不到有效值。
13551
+ 1. 该链接有效期为<b>30分钟</b>,同时需要注意保密,不要外泄给无关用户。
13552
+ 2. 该链接不支持小程序嵌入,仅支持<b>移动端浏览器</b>打开。
13553
+ 3. <font color="red">生成的链路后面不能再增加参数</font>(会出现覆盖链接中已有参数导致错误)
13406
13554
  :type SignUrl: str
13407
13555
  :param _ApproverType: 签署人类型。
13408
13556
  - **1**: 个人
13409
- 注意:此字段可能返回 null,表示取不到有效值。
13410
13557
  :type ApproverType: int
13411
13558
  :param _ApproverName: 签署人姓名。
13412
- 注意:此字段可能返回 null,表示取不到有效值。
13413
13559
  :type ApproverName: str
13414
13560
  :param _ApproverMobile: 签署人手机号。
13415
- 注意:此字段可能返回 null,表示取不到有效值。
13416
13561
  :type ApproverMobile: str
13417
- :param _LongUrl: 签署长链接。</br>
13562
+ :param _LongUrl: 签署长链接。
13418
13563
  注意:
13419
- - 该链接有效期为**30分钟**,同时需要注意保密,不要外泄给无关用户。
13420
- - 该链接不支持小程序嵌入,仅支持**移动端浏览器**打开。
13421
- 注意:此字段可能返回 null,表示取不到有效值。
13564
+ 1. 该链接有效期为**30分钟**,同时需要注意保密,不要外泄给无关用户。
13565
+ 2. 该链接不支持小程序嵌入,仅支持**移动端浏览器**打开。
13566
+ 3. <font color="red">生成的链路后面不能再增加参数</font>(会出现覆盖链接中已有参数导致错误)
13422
13567
  :type LongUrl: str
13423
13568
  """
13424
13569
  self._SignUrl = None
@@ -14566,7 +14711,8 @@ class FormField(AbstractModel):
14566
14711
  }
14567
14712
  ```
14568
14713
 
14569
- 当控件的 ComponentType='ATTACHMENT'时,FormField.ComponentValue填入附件图片的资源ID列表,以逗号分隔,单个附件控件最多支持6个资源ID;
14714
+ 当控件的 ComponentType='ATTACHMENT'时,FormField.ComponentValue支持填入附件图片或者文件的资源ID列表,以逗号分隔,单个附件控件最多支持6个资源ID;
14715
+ 支持的文件类型包括doc、docx、xls、xlsx、html、jpg、jpeg、png、bmp、txt、pdf
14570
14716
 
14571
14717
  ```
14572
14718
  FormField输入示例:
@@ -15942,6 +16088,114 @@ class ModifyIntegrationRoleResponse(AbstractModel):
15942
16088
  self._RequestId = params.get("RequestId")
15943
16089
 
15944
16090
 
16091
+ class NeedReviewApproverInfo(AbstractModel):
16092
+ """需要进行签署审核的签署人信息
16093
+
16094
+ """
16095
+
16096
+ def __init__(self):
16097
+ r"""
16098
+ :param _ApproverType: 签署方经办人的类型,支持以下类型
16099
+ <ul><li> ORGANIZATION 企业(含企业自动签)</li>
16100
+ <li>PERSON 个人(含个人自动签)</li></ul>
16101
+ :type ApproverType: str
16102
+ :param _ApproverName: 签署方经办人的姓名。 经办人的姓名将用于身份认证和电子签名,请确保填写的姓名为签署方的真实姓名,而非昵称等代名。
16103
+ :type ApproverName: str
16104
+ :param _ApproverMobile: 签署方经办人手机号码, 支持国内手机号11位数字(无需加+86前缀或其他字符)。 请确认手机号所有方为此合同签署方。
16105
+ :type ApproverMobile: str
16106
+ :param _ApproverIdCardType: 签署方经办人的证件类型,支持以下类型
16107
+ <ul><li>ID_CARD 居民身份证 (默认值)</li>
16108
+ <li>HONGKONG_AND_MACAO 港澳居民来往内地通行证</li>
16109
+ <li>HONGKONG_MACAO_AND_TAIWAN 港澳台居民居住证(格式同居民身份证)</li>
16110
+ <li>OTHER_CARD_TYPE 其他证件</li></ul>
16111
+
16112
+ 注: `其他证件类型为白名单功能,使用前请联系对接的客户经理沟通。`
16113
+ :type ApproverIdCardType: str
16114
+ :param _ApproverIdCardNumber: 签署方经办人的证件号码,应符合以下规则
16115
+ <ul><li>居民身份证号码应为18位字符串,由数字和大写字母X组成(如存在X,请大写)。</li>
16116
+ <li>港澳居民来往内地通行证号码应为9位字符串,第1位为“C”,第2位为英文字母(但“I”、“O”除外),后7位为阿拉伯数字。</li>
16117
+ <li>港澳台居民居住证号码编码规则与中国大陆身份证相同,应为18位字符串。</li></ul>
16118
+ :type ApproverIdCardNumber: str
16119
+ :param _OrganizationName: 组织机构名称。
16120
+ 请确认该名称与企业营业执照中注册的名称一致。
16121
+ 如果名称中包含英文括号(),请使用中文括号()代替。
16122
+ 如果签署方是企业签署方(approverType = 0 或者 approverType = 3), 则企业名称必填。
16123
+
16124
+ :type OrganizationName: str
16125
+ """
16126
+ self._ApproverType = None
16127
+ self._ApproverName = None
16128
+ self._ApproverMobile = None
16129
+ self._ApproverIdCardType = None
16130
+ self._ApproverIdCardNumber = None
16131
+ self._OrganizationName = None
16132
+
16133
+ @property
16134
+ def ApproverType(self):
16135
+ return self._ApproverType
16136
+
16137
+ @ApproverType.setter
16138
+ def ApproverType(self, ApproverType):
16139
+ self._ApproverType = ApproverType
16140
+
16141
+ @property
16142
+ def ApproverName(self):
16143
+ return self._ApproverName
16144
+
16145
+ @ApproverName.setter
16146
+ def ApproverName(self, ApproverName):
16147
+ self._ApproverName = ApproverName
16148
+
16149
+ @property
16150
+ def ApproverMobile(self):
16151
+ return self._ApproverMobile
16152
+
16153
+ @ApproverMobile.setter
16154
+ def ApproverMobile(self, ApproverMobile):
16155
+ self._ApproverMobile = ApproverMobile
16156
+
16157
+ @property
16158
+ def ApproverIdCardType(self):
16159
+ return self._ApproverIdCardType
16160
+
16161
+ @ApproverIdCardType.setter
16162
+ def ApproverIdCardType(self, ApproverIdCardType):
16163
+ self._ApproverIdCardType = ApproverIdCardType
16164
+
16165
+ @property
16166
+ def ApproverIdCardNumber(self):
16167
+ return self._ApproverIdCardNumber
16168
+
16169
+ @ApproverIdCardNumber.setter
16170
+ def ApproverIdCardNumber(self, ApproverIdCardNumber):
16171
+ self._ApproverIdCardNumber = ApproverIdCardNumber
16172
+
16173
+ @property
16174
+ def OrganizationName(self):
16175
+ return self._OrganizationName
16176
+
16177
+ @OrganizationName.setter
16178
+ def OrganizationName(self, OrganizationName):
16179
+ self._OrganizationName = OrganizationName
16180
+
16181
+
16182
+ def _deserialize(self, params):
16183
+ self._ApproverType = params.get("ApproverType")
16184
+ self._ApproverName = params.get("ApproverName")
16185
+ self._ApproverMobile = params.get("ApproverMobile")
16186
+ self._ApproverIdCardType = params.get("ApproverIdCardType")
16187
+ self._ApproverIdCardNumber = params.get("ApproverIdCardNumber")
16188
+ self._OrganizationName = params.get("OrganizationName")
16189
+ memeber_set = set(params.keys())
16190
+ for name, value in vars(self).items():
16191
+ property_name = name[1:]
16192
+ if property_name in memeber_set:
16193
+ memeber_set.remove(property_name)
16194
+ if len(memeber_set) > 0:
16195
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
16196
+
16197
+
16198
+
15945
16199
  class OccupiedSeal(AbstractModel):
15946
16200
  """持有的电子印章信息
15947
16201
 
@@ -653,10 +653,21 @@ class EssbasicClient(AbstractClient):
653
653
 
654
654
  def ChannelCreateFlowSignReview(self, request):
655
655
  """提交企业流程审批结果
656
- 目前存在两种审核操作,签署审核,发起审核
657
- 签署审核:通过接口(CreateFlowsByTemplates或ChannelCreateFlowByFiles或ChannelCreatePrepareFlow)发起签署流程后,若指定了参数 NeedSignReview 为true,则可以调用此接口,指定operate=SignReview,提交企业内部签署审批结果;若签署流程状态正常,且本企业存在签署方未签署,同一签署流程可以多次提交签署审批结果,签署时的最后一个“审批结果”有效
658
-
659
- 发起审核:通过接口ChannelCreatePrepareFlow指定发起后需要审核,则可以通过调用此接口,指定operate=CreateReview,提交企业内部审批结果,可多次提交,当通过后,后续提交结果无效
656
+ **当前存在两种审核操作:**
657
+ <ul>
658
+ <li>签署审核
659
+ <ul>
660
+ <li>在通过接口<ul><li>CreateFlowsByTemplates</li><li>ChannelCreateFlowByFiles</li><li>ChannelCreateFlowGroupByTemplates</li><li>ChannelCreateFlowGroupByFiles</li><li>ChannelCreatePrepareFlow</li></ul> 发起签署流程时,通过指定NeedSignReview为true,则可以调用此接口,并指定operate=SignReview,以提交企业内部签署审批结果</li>
661
+ <li>在通过接口<ul><li>CreateFlowsByTemplates</li><li>ChannelCreateFlowByFiles</li><li>ChannelCreateFlowGroupByTemplates</li><li>ChannelCreateFlowGroupByFiles</li></ul>发起签署流程时,通过指定签署人ApproverNeedSignReview为true,则可以调用此接口,并指定operate=SignReview,并指定RecipientId,以提交企业内部签署审批结果</li>
662
+ </ul>
663
+ </li>
664
+ <li>发起审核
665
+ <ul>
666
+ <li>通过接口ChannelCreatePrepareFlow指定发起后需要审核,那么可以调用此接口,并指定operate=CreateReview,以提交企业内部审批结果。可以多次提交审批结果,但一旦审批通过,后续提交的结果将无效
667
+ </li>
668
+ </ul>
669
+ </li>
670
+ </ul>
660
671
 
661
672
  :param request: Request instance for ChannelCreateFlowSignReview.
662
673
  :type request: :class:`tencentcloud.essbasic.v20210526.models.ChannelCreateFlowSignReviewRequest`
@@ -1596,6 +1607,34 @@ class EssbasicClient(AbstractClient):
1596
1607
  raise TencentCloudSDKException(type(e).__name__, str(e))
1597
1608
 
1598
1609
 
1610
+ def CreateFlowGroupSignReview(self, request):
1611
+ """1. 在使用[通过多文件创建合同组签署流程](https://qian.tencent.com/developers/partnerApis/startFlows/ChannelCreateFlowGroupByFiles)或[通过多模板创建合同组签署流程](https://qian.tencent.com/developers/partnerApis/startFlows/ChannelCreateFlowGroupByTemplates)创建合同组签署流程时,若指定了参数以下参数为true,则可以调用此接口提交企业内部签署审批结果,即使是自动签署也需要进行审核通过才会进行签署。
1612
+ - [FlowInfo.NeedSignReview](https://qian.tencent.com/developers/partnerApis/dataTypes/#flowinfo)
1613
+ - [FlowFileInfo.NeedSignReview](https://qian.tencent.com/developers/partnerApis/dataTypes/#flowfileinfo)
1614
+ - [FlowApproverInfo.ApproverNeedSignReview](https://qian.tencent.com/developers/partnerApis/dataTypes/#flowapproverinfo)
1615
+
1616
+ 2. 同一合同组,同一签署人可以多次提交签署审批结果,签署时的最后一个“审批结果”有效。
1617
+
1618
+ :param request: Request instance for CreateFlowGroupSignReview.
1619
+ :type request: :class:`tencentcloud.essbasic.v20210526.models.CreateFlowGroupSignReviewRequest`
1620
+ :rtype: :class:`tencentcloud.essbasic.v20210526.models.CreateFlowGroupSignReviewResponse`
1621
+
1622
+ """
1623
+ try:
1624
+ params = request._serialize()
1625
+ headers = request.headers
1626
+ body = self.call("CreateFlowGroupSignReview", params, headers=headers)
1627
+ response = json.loads(body)
1628
+ model = models.CreateFlowGroupSignReviewResponse()
1629
+ model._deserialize(response["Response"])
1630
+ return model
1631
+ except Exception as e:
1632
+ if isinstance(e, TencentCloudSDKException):
1633
+ raise
1634
+ else:
1635
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1636
+
1637
+
1599
1638
  def CreateFlowsByTemplates(self, request):
1600
1639
  """接口(CreateFlowsByTemplates)用于使用模板批量创建签署流程。当前可批量发起合同(签署流程)数量为1-20个。
1601
1640
  如若在模板中配置了动态表格, 上传的附件必须为A4大小