tencentcloud-sdk-python 3.0.1115__py2.py3-none-any.whl → 3.0.1116__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/aiart/v20221229/aiart_client.py +52 -0
- tencentcloud/aiart/v20221229/errorcodes.py +6 -0
- tencentcloud/aiart/v20221229/models.py +267 -0
- tencentcloud/cdb/v20170320/models.py +91 -0
- tencentcloud/ckafka/v20190819/ckafka_client.py +1 -1
- tencentcloud/ckafka/v20190819/models.py +1 -1
- tencentcloud/ess/v20201111/ess_client.py +1 -1
- tencentcloud/ess/v20201111/models.py +221 -14
- tencentcloud/essbasic/v20210526/models.py +219 -12
- tencentcloud/faceid/v20180301/faceid_client.py +46 -0
- tencentcloud/faceid/v20180301/models.py +218 -0
- tencentcloud/oceanus/v20190422/models.py +1 -1
- tencentcloud/wedata/v20210820/models.py +40 -0
- {tencentcloud_sdk_python-3.0.1115.dist-info → tencentcloud_sdk_python-3.0.1116.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1115.dist-info → tencentcloud_sdk_python-3.0.1116.dist-info}/RECORD +19 -19
- {tencentcloud_sdk_python-3.0.1115.dist-info → tencentcloud_sdk_python-3.0.1116.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1115.dist-info → tencentcloud_sdk_python-3.0.1116.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1115.dist-info → tencentcloud_sdk_python-3.0.1116.dist-info}/top_level.txt +0 -0
|
@@ -3797,16 +3797,16 @@ class CreateFlowApproversRequest(AbstractModel):
|
|
|
3797
3797
|
:param _Operator: 执行本接口操作的员工信息。
|
|
3798
3798
|
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
|
3799
3799
|
:type Operator: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
|
3800
|
-
:param _FlowId: 合同流程ID,为32位字符串。
|
|
3801
|
-
建议开发者妥善保存此流程ID,以便于顺利进行后续操作。
|
|
3802
|
-
可登录腾讯电子签控制台,在 "合同"->"合同中心" 中查看某个合同的FlowId(在页面中展示为合同ID)。
|
|
3803
|
-
:type FlowId: str
|
|
3804
3800
|
:param _Approvers: 补充企业签署人信息。
|
|
3805
3801
|
|
|
3806
3802
|
- 如果发起方指定的补充签署人是企业微信签署人(ApproverSource=WEWORKAPP),则需要提供企业微信UserId进行补充;
|
|
3807
3803
|
|
|
3808
3804
|
- 如果不指定,则使用姓名和手机号进行补充。
|
|
3809
3805
|
:type Approvers: list of FillApproverInfo
|
|
3806
|
+
:param _FlowId: 合同流程ID,为32位字符串。
|
|
3807
|
+
建议开发者妥善保存此流程ID,以便于顺利进行后续操作。
|
|
3808
|
+
可登录腾讯电子签控制台,在 "合同"->"合同中心" 中查看某个合同的FlowId(在页面中展示为合同ID)。
|
|
3809
|
+
:type FlowId: str
|
|
3810
3810
|
:param _FillApproverType: 签署人信息补充方式
|
|
3811
3811
|
|
|
3812
3812
|
<ul><li>**0**: 添加或签人候选人,或签支持一个节点传多个签署人,不传值默认或签。
|
|
@@ -3818,13 +3818,16 @@ class CreateFlowApproversRequest(AbstractModel):
|
|
|
3818
3818
|
:param _Agent: 代理企业和员工的信息。
|
|
3819
3819
|
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
|
3820
3820
|
:type Agent: :class:`tencentcloud.ess.v20201111.models.Agent`
|
|
3821
|
+
:param _FlowGroupId: 合同流程组的组ID, 在合同流程组场景下,生成合同流程组的签署链接时需要赋值
|
|
3822
|
+
:type FlowGroupId: str
|
|
3821
3823
|
"""
|
|
3822
3824
|
self._Operator = None
|
|
3823
|
-
self._FlowId = None
|
|
3824
3825
|
self._Approvers = None
|
|
3826
|
+
self._FlowId = None
|
|
3825
3827
|
self._FillApproverType = None
|
|
3826
3828
|
self._Initiator = None
|
|
3827
3829
|
self._Agent = None
|
|
3830
|
+
self._FlowGroupId = None
|
|
3828
3831
|
|
|
3829
3832
|
@property
|
|
3830
3833
|
def Operator(self):
|
|
@@ -3834,14 +3837,6 @@ class CreateFlowApproversRequest(AbstractModel):
|
|
|
3834
3837
|
def Operator(self, Operator):
|
|
3835
3838
|
self._Operator = Operator
|
|
3836
3839
|
|
|
3837
|
-
@property
|
|
3838
|
-
def FlowId(self):
|
|
3839
|
-
return self._FlowId
|
|
3840
|
-
|
|
3841
|
-
@FlowId.setter
|
|
3842
|
-
def FlowId(self, FlowId):
|
|
3843
|
-
self._FlowId = FlowId
|
|
3844
|
-
|
|
3845
3840
|
@property
|
|
3846
3841
|
def Approvers(self):
|
|
3847
3842
|
return self._Approvers
|
|
@@ -3850,6 +3845,14 @@ class CreateFlowApproversRequest(AbstractModel):
|
|
|
3850
3845
|
def Approvers(self, Approvers):
|
|
3851
3846
|
self._Approvers = Approvers
|
|
3852
3847
|
|
|
3848
|
+
@property
|
|
3849
|
+
def FlowId(self):
|
|
3850
|
+
return self._FlowId
|
|
3851
|
+
|
|
3852
|
+
@FlowId.setter
|
|
3853
|
+
def FlowId(self, FlowId):
|
|
3854
|
+
self._FlowId = FlowId
|
|
3855
|
+
|
|
3853
3856
|
@property
|
|
3854
3857
|
def FillApproverType(self):
|
|
3855
3858
|
return self._FillApproverType
|
|
@@ -3874,23 +3877,32 @@ class CreateFlowApproversRequest(AbstractModel):
|
|
|
3874
3877
|
def Agent(self, Agent):
|
|
3875
3878
|
self._Agent = Agent
|
|
3876
3879
|
|
|
3880
|
+
@property
|
|
3881
|
+
def FlowGroupId(self):
|
|
3882
|
+
return self._FlowGroupId
|
|
3883
|
+
|
|
3884
|
+
@FlowGroupId.setter
|
|
3885
|
+
def FlowGroupId(self, FlowGroupId):
|
|
3886
|
+
self._FlowGroupId = FlowGroupId
|
|
3887
|
+
|
|
3877
3888
|
|
|
3878
3889
|
def _deserialize(self, params):
|
|
3879
3890
|
if params.get("Operator") is not None:
|
|
3880
3891
|
self._Operator = UserInfo()
|
|
3881
3892
|
self._Operator._deserialize(params.get("Operator"))
|
|
3882
|
-
self._FlowId = params.get("FlowId")
|
|
3883
3893
|
if params.get("Approvers") is not None:
|
|
3884
3894
|
self._Approvers = []
|
|
3885
3895
|
for item in params.get("Approvers"):
|
|
3886
3896
|
obj = FillApproverInfo()
|
|
3887
3897
|
obj._deserialize(item)
|
|
3888
3898
|
self._Approvers.append(obj)
|
|
3899
|
+
self._FlowId = params.get("FlowId")
|
|
3889
3900
|
self._FillApproverType = params.get("FillApproverType")
|
|
3890
3901
|
self._Initiator = params.get("Initiator")
|
|
3891
3902
|
if params.get("Agent") is not None:
|
|
3892
3903
|
self._Agent = Agent()
|
|
3893
3904
|
self._Agent._deserialize(params.get("Agent"))
|
|
3905
|
+
self._FlowGroupId = params.get("FlowGroupId")
|
|
3894
3906
|
memeber_set = set(params.keys())
|
|
3895
3907
|
for name, value in vars(self).items():
|
|
3896
3908
|
property_name = name[1:]
|
|
@@ -4638,11 +4650,14 @@ class CreateFlowGroupByFilesResponse(AbstractModel):
|
|
|
4638
4650
|
:param _FlowIds: 合同(流程)组中子合同列表.
|
|
4639
4651
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4640
4652
|
:type FlowIds: list of str
|
|
4653
|
+
:param _Approvers: 合同组签署方信息。
|
|
4654
|
+
:type Approvers: list of FlowGroupApprovers
|
|
4641
4655
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4642
4656
|
:type RequestId: str
|
|
4643
4657
|
"""
|
|
4644
4658
|
self._FlowGroupId = None
|
|
4645
4659
|
self._FlowIds = None
|
|
4660
|
+
self._Approvers = None
|
|
4646
4661
|
self._RequestId = None
|
|
4647
4662
|
|
|
4648
4663
|
@property
|
|
@@ -4661,6 +4676,14 @@ class CreateFlowGroupByFilesResponse(AbstractModel):
|
|
|
4661
4676
|
def FlowIds(self, FlowIds):
|
|
4662
4677
|
self._FlowIds = FlowIds
|
|
4663
4678
|
|
|
4679
|
+
@property
|
|
4680
|
+
def Approvers(self):
|
|
4681
|
+
return self._Approvers
|
|
4682
|
+
|
|
4683
|
+
@Approvers.setter
|
|
4684
|
+
def Approvers(self, Approvers):
|
|
4685
|
+
self._Approvers = Approvers
|
|
4686
|
+
|
|
4664
4687
|
@property
|
|
4665
4688
|
def RequestId(self):
|
|
4666
4689
|
return self._RequestId
|
|
@@ -4673,6 +4696,12 @@ class CreateFlowGroupByFilesResponse(AbstractModel):
|
|
|
4673
4696
|
def _deserialize(self, params):
|
|
4674
4697
|
self._FlowGroupId = params.get("FlowGroupId")
|
|
4675
4698
|
self._FlowIds = params.get("FlowIds")
|
|
4699
|
+
if params.get("Approvers") is not None:
|
|
4700
|
+
self._Approvers = []
|
|
4701
|
+
for item in params.get("Approvers"):
|
|
4702
|
+
obj = FlowGroupApprovers()
|
|
4703
|
+
obj._deserialize(item)
|
|
4704
|
+
self._Approvers.append(obj)
|
|
4676
4705
|
self._RequestId = params.get("RequestId")
|
|
4677
4706
|
|
|
4678
4707
|
|
|
@@ -4788,11 +4817,14 @@ class CreateFlowGroupByTemplatesResponse(AbstractModel):
|
|
|
4788
4817
|
:param _FlowIds: 合同(流程)组中子合同列表.
|
|
4789
4818
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4790
4819
|
:type FlowIds: list of str
|
|
4820
|
+
:param _Approvers: 合同组签署人信息。
|
|
4821
|
+
:type Approvers: list of FlowGroupApprovers
|
|
4791
4822
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4792
4823
|
:type RequestId: str
|
|
4793
4824
|
"""
|
|
4794
4825
|
self._FlowGroupId = None
|
|
4795
4826
|
self._FlowIds = None
|
|
4827
|
+
self._Approvers = None
|
|
4796
4828
|
self._RequestId = None
|
|
4797
4829
|
|
|
4798
4830
|
@property
|
|
@@ -4811,6 +4843,14 @@ class CreateFlowGroupByTemplatesResponse(AbstractModel):
|
|
|
4811
4843
|
def FlowIds(self, FlowIds):
|
|
4812
4844
|
self._FlowIds = FlowIds
|
|
4813
4845
|
|
|
4846
|
+
@property
|
|
4847
|
+
def Approvers(self):
|
|
4848
|
+
return self._Approvers
|
|
4849
|
+
|
|
4850
|
+
@Approvers.setter
|
|
4851
|
+
def Approvers(self, Approvers):
|
|
4852
|
+
self._Approvers = Approvers
|
|
4853
|
+
|
|
4814
4854
|
@property
|
|
4815
4855
|
def RequestId(self):
|
|
4816
4856
|
return self._RequestId
|
|
@@ -4823,6 +4863,12 @@ class CreateFlowGroupByTemplatesResponse(AbstractModel):
|
|
|
4823
4863
|
def _deserialize(self, params):
|
|
4824
4864
|
self._FlowGroupId = params.get("FlowGroupId")
|
|
4825
4865
|
self._FlowIds = params.get("FlowIds")
|
|
4866
|
+
if params.get("Approvers") is not None:
|
|
4867
|
+
self._Approvers = []
|
|
4868
|
+
for item in params.get("Approvers"):
|
|
4869
|
+
obj = FlowGroupApprovers()
|
|
4870
|
+
obj._deserialize(item)
|
|
4871
|
+
self._Approvers.append(obj)
|
|
4826
4872
|
self._RequestId = params.get("RequestId")
|
|
4827
4873
|
|
|
4828
4874
|
|
|
@@ -8236,6 +8282,8 @@ class CreateSchemeUrlRequest(AbstractModel):
|
|
|
8236
8282
|
|
|
8237
8283
|
注:`生成动态签署人补充链接时必传。`
|
|
8238
8284
|
:type RecipientId: str
|
|
8285
|
+
:param _FlowGroupUrlInfo: 合同组相关信息,指定合同组子合同和签署方的信息,用于补充动态签署人。
|
|
8286
|
+
:type FlowGroupUrlInfo: :class:`tencentcloud.ess.v20201111.models.FlowGroupUrlInfo`
|
|
8239
8287
|
"""
|
|
8240
8288
|
self._Operator = None
|
|
8241
8289
|
self._OrganizationName = None
|
|
@@ -8251,6 +8299,7 @@ class CreateSchemeUrlRequest(AbstractModel):
|
|
|
8251
8299
|
self._Agent = None
|
|
8252
8300
|
self._Hides = None
|
|
8253
8301
|
self._RecipientId = None
|
|
8302
|
+
self._FlowGroupUrlInfo = None
|
|
8254
8303
|
|
|
8255
8304
|
@property
|
|
8256
8305
|
def Operator(self):
|
|
@@ -8364,6 +8413,14 @@ class CreateSchemeUrlRequest(AbstractModel):
|
|
|
8364
8413
|
def RecipientId(self, RecipientId):
|
|
8365
8414
|
self._RecipientId = RecipientId
|
|
8366
8415
|
|
|
8416
|
+
@property
|
|
8417
|
+
def FlowGroupUrlInfo(self):
|
|
8418
|
+
return self._FlowGroupUrlInfo
|
|
8419
|
+
|
|
8420
|
+
@FlowGroupUrlInfo.setter
|
|
8421
|
+
def FlowGroupUrlInfo(self, FlowGroupUrlInfo):
|
|
8422
|
+
self._FlowGroupUrlInfo = FlowGroupUrlInfo
|
|
8423
|
+
|
|
8367
8424
|
|
|
8368
8425
|
def _deserialize(self, params):
|
|
8369
8426
|
if params.get("Operator") is not None:
|
|
@@ -8384,6 +8441,9 @@ class CreateSchemeUrlRequest(AbstractModel):
|
|
|
8384
8441
|
self._Agent._deserialize(params.get("Agent"))
|
|
8385
8442
|
self._Hides = params.get("Hides")
|
|
8386
8443
|
self._RecipientId = params.get("RecipientId")
|
|
8444
|
+
if params.get("FlowGroupUrlInfo") is not None:
|
|
8445
|
+
self._FlowGroupUrlInfo = FlowGroupUrlInfo()
|
|
8446
|
+
self._FlowGroupUrlInfo._deserialize(params.get("FlowGroupUrlInfo"))
|
|
8387
8447
|
memeber_set = set(params.keys())
|
|
8388
8448
|
for name, value in vars(self).items():
|
|
8389
8449
|
property_name = name[1:]
|
|
@@ -13848,6 +13908,8 @@ WEWORKAPP: 企业微信
|
|
|
13848
13908
|
|
|
13849
13909
|
注:`补充个人签署方时,若该用户已在电子签完成实名则可通过指定姓名和证件类型、证件号码完成补充。`
|
|
13850
13910
|
:type ApproverIdCardNumber: str
|
|
13911
|
+
:param _FlowId: 合同流程ID,补充合同组子合同动态签署人时必传。
|
|
13912
|
+
:type FlowId: str
|
|
13851
13913
|
"""
|
|
13852
13914
|
self._RecipientId = None
|
|
13853
13915
|
self._ApproverSource = None
|
|
@@ -13857,6 +13919,7 @@ WEWORKAPP: 企业微信
|
|
|
13857
13919
|
self._OrganizationName = None
|
|
13858
13920
|
self._ApproverIdCardType = None
|
|
13859
13921
|
self._ApproverIdCardNumber = None
|
|
13922
|
+
self._FlowId = None
|
|
13860
13923
|
|
|
13861
13924
|
@property
|
|
13862
13925
|
def RecipientId(self):
|
|
@@ -13922,6 +13985,14 @@ WEWORKAPP: 企业微信
|
|
|
13922
13985
|
def ApproverIdCardNumber(self, ApproverIdCardNumber):
|
|
13923
13986
|
self._ApproverIdCardNumber = ApproverIdCardNumber
|
|
13924
13987
|
|
|
13988
|
+
@property
|
|
13989
|
+
def FlowId(self):
|
|
13990
|
+
return self._FlowId
|
|
13991
|
+
|
|
13992
|
+
@FlowId.setter
|
|
13993
|
+
def FlowId(self, FlowId):
|
|
13994
|
+
self._FlowId = FlowId
|
|
13995
|
+
|
|
13925
13996
|
|
|
13926
13997
|
def _deserialize(self, params):
|
|
13927
13998
|
self._RecipientId = params.get("RecipientId")
|
|
@@ -13932,6 +14003,7 @@ WEWORKAPP: 企业微信
|
|
|
13932
14003
|
self._OrganizationName = params.get("OrganizationName")
|
|
13933
14004
|
self._ApproverIdCardType = params.get("ApproverIdCardType")
|
|
13934
14005
|
self._ApproverIdCardNumber = params.get("ApproverIdCardNumber")
|
|
14006
|
+
self._FlowId = params.get("FlowId")
|
|
13935
14007
|
memeber_set = set(params.keys())
|
|
13936
14008
|
for name, value in vars(self).items():
|
|
13937
14009
|
property_name = name[1:]
|
|
@@ -15224,6 +15296,103 @@ class FlowDetailInfo(AbstractModel):
|
|
|
15224
15296
|
|
|
15225
15297
|
|
|
15226
15298
|
|
|
15299
|
+
class FlowGroupApproverInfo(AbstractModel):
|
|
15300
|
+
"""合同组相关信息,指定合同组子合同和签署方的信息,用于补充动态签署人。
|
|
15301
|
+
|
|
15302
|
+
"""
|
|
15303
|
+
|
|
15304
|
+
def __init__(self):
|
|
15305
|
+
r"""
|
|
15306
|
+
:param _FlowId: 合同流程ID。
|
|
15307
|
+
:type FlowId: str
|
|
15308
|
+
:param _RecipientId: 签署节点ID,用于生成动态签署人链接完成领取。注:`生成动态签署人补充链接时必传。`
|
|
15309
|
+
:type RecipientId: str
|
|
15310
|
+
"""
|
|
15311
|
+
self._FlowId = None
|
|
15312
|
+
self._RecipientId = None
|
|
15313
|
+
|
|
15314
|
+
@property
|
|
15315
|
+
def FlowId(self):
|
|
15316
|
+
return self._FlowId
|
|
15317
|
+
|
|
15318
|
+
@FlowId.setter
|
|
15319
|
+
def FlowId(self, FlowId):
|
|
15320
|
+
self._FlowId = FlowId
|
|
15321
|
+
|
|
15322
|
+
@property
|
|
15323
|
+
def RecipientId(self):
|
|
15324
|
+
return self._RecipientId
|
|
15325
|
+
|
|
15326
|
+
@RecipientId.setter
|
|
15327
|
+
def RecipientId(self, RecipientId):
|
|
15328
|
+
self._RecipientId = RecipientId
|
|
15329
|
+
|
|
15330
|
+
|
|
15331
|
+
def _deserialize(self, params):
|
|
15332
|
+
self._FlowId = params.get("FlowId")
|
|
15333
|
+
self._RecipientId = params.get("RecipientId")
|
|
15334
|
+
memeber_set = set(params.keys())
|
|
15335
|
+
for name, value in vars(self).items():
|
|
15336
|
+
property_name = name[1:]
|
|
15337
|
+
if property_name in memeber_set:
|
|
15338
|
+
memeber_set.remove(property_name)
|
|
15339
|
+
if len(memeber_set) > 0:
|
|
15340
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
15341
|
+
|
|
15342
|
+
|
|
15343
|
+
|
|
15344
|
+
class FlowGroupApprovers(AbstractModel):
|
|
15345
|
+
"""合同组签署方信息
|
|
15346
|
+
|
|
15347
|
+
"""
|
|
15348
|
+
|
|
15349
|
+
def __init__(self):
|
|
15350
|
+
r"""
|
|
15351
|
+
:param _FlowId: 合同流程ID
|
|
15352
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15353
|
+
:type FlowId: str
|
|
15354
|
+
:param _Approvers: 签署方信息,包含合同ID和角色ID用于定位RecipientId。
|
|
15355
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15356
|
+
:type Approvers: list of ApproverItem
|
|
15357
|
+
"""
|
|
15358
|
+
self._FlowId = None
|
|
15359
|
+
self._Approvers = None
|
|
15360
|
+
|
|
15361
|
+
@property
|
|
15362
|
+
def FlowId(self):
|
|
15363
|
+
return self._FlowId
|
|
15364
|
+
|
|
15365
|
+
@FlowId.setter
|
|
15366
|
+
def FlowId(self, FlowId):
|
|
15367
|
+
self._FlowId = FlowId
|
|
15368
|
+
|
|
15369
|
+
@property
|
|
15370
|
+
def Approvers(self):
|
|
15371
|
+
return self._Approvers
|
|
15372
|
+
|
|
15373
|
+
@Approvers.setter
|
|
15374
|
+
def Approvers(self, Approvers):
|
|
15375
|
+
self._Approvers = Approvers
|
|
15376
|
+
|
|
15377
|
+
|
|
15378
|
+
def _deserialize(self, params):
|
|
15379
|
+
self._FlowId = params.get("FlowId")
|
|
15380
|
+
if params.get("Approvers") is not None:
|
|
15381
|
+
self._Approvers = []
|
|
15382
|
+
for item in params.get("Approvers"):
|
|
15383
|
+
obj = ApproverItem()
|
|
15384
|
+
obj._deserialize(item)
|
|
15385
|
+
self._Approvers.append(obj)
|
|
15386
|
+
memeber_set = set(params.keys())
|
|
15387
|
+
for name, value in vars(self).items():
|
|
15388
|
+
property_name = name[1:]
|
|
15389
|
+
if property_name in memeber_set:
|
|
15390
|
+
memeber_set.remove(property_name)
|
|
15391
|
+
if len(memeber_set) > 0:
|
|
15392
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
15393
|
+
|
|
15394
|
+
|
|
15395
|
+
|
|
15227
15396
|
class FlowGroupInfo(AbstractModel):
|
|
15228
15397
|
"""此结构体(FlowGroupInfo)描述的是合同组(流程组)的单个合同(流程)信息
|
|
15229
15398
|
|
|
@@ -15505,6 +15674,44 @@ class FlowGroupOptions(AbstractModel):
|
|
|
15505
15674
|
|
|
15506
15675
|
|
|
15507
15676
|
|
|
15677
|
+
class FlowGroupUrlInfo(AbstractModel):
|
|
15678
|
+
"""合同组相关信息,指定合同组子合同和签署方的信息,用于补充动态签署人。
|
|
15679
|
+
|
|
15680
|
+
"""
|
|
15681
|
+
|
|
15682
|
+
def __init__(self):
|
|
15683
|
+
r"""
|
|
15684
|
+
:param _FlowGroupApproverInfos: 合同组子合同和签署方的信息,用于补充动态签署人。
|
|
15685
|
+
:type FlowGroupApproverInfos: list of FlowGroupApproverInfo
|
|
15686
|
+
"""
|
|
15687
|
+
self._FlowGroupApproverInfos = None
|
|
15688
|
+
|
|
15689
|
+
@property
|
|
15690
|
+
def FlowGroupApproverInfos(self):
|
|
15691
|
+
return self._FlowGroupApproverInfos
|
|
15692
|
+
|
|
15693
|
+
@FlowGroupApproverInfos.setter
|
|
15694
|
+
def FlowGroupApproverInfos(self, FlowGroupApproverInfos):
|
|
15695
|
+
self._FlowGroupApproverInfos = FlowGroupApproverInfos
|
|
15696
|
+
|
|
15697
|
+
|
|
15698
|
+
def _deserialize(self, params):
|
|
15699
|
+
if params.get("FlowGroupApproverInfos") is not None:
|
|
15700
|
+
self._FlowGroupApproverInfos = []
|
|
15701
|
+
for item in params.get("FlowGroupApproverInfos"):
|
|
15702
|
+
obj = FlowGroupApproverInfo()
|
|
15703
|
+
obj._deserialize(item)
|
|
15704
|
+
self._FlowGroupApproverInfos.append(obj)
|
|
15705
|
+
memeber_set = set(params.keys())
|
|
15706
|
+
for name, value in vars(self).items():
|
|
15707
|
+
property_name = name[1:]
|
|
15708
|
+
if property_name in memeber_set:
|
|
15709
|
+
memeber_set.remove(property_name)
|
|
15710
|
+
if len(memeber_set) > 0:
|
|
15711
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
15712
|
+
|
|
15713
|
+
|
|
15714
|
+
|
|
15508
15715
|
class FormField(AbstractModel):
|
|
15509
15716
|
"""电子文档的控件填充信息。按照控件类型进行相应的填充。
|
|
15510
15717
|
|