tencentcloud-sdk-python 3.0.839__py2.py3-none-any.whl → 3.0.841__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 (37) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/autoscaling/v20180419/models.py +7 -1
  3. tencentcloud/cam/v20190116/models.py +10 -0
  4. tencentcloud/cdn/v20180606/cdn_client.py +3 -3
  5. tencentcloud/cloudstudio/v20210524/cloudstudio_client.py +23 -0
  6. tencentcloud/cloudstudio/v20210524/errorcodes.py +3 -0
  7. tencentcloud/cloudstudio/v20210524/models.py +108 -0
  8. tencentcloud/ess/v20201111/errorcodes.py +3 -0
  9. tencentcloud/ess/v20201111/models.py +4 -0
  10. tencentcloud/essbasic/v20210526/essbasic_client.py +10 -10
  11. tencentcloud/essbasic/v20210526/models.py +93 -92
  12. tencentcloud/faceid/v20180301/models.py +14 -8
  13. tencentcloud/ims/v20200713/ims_client.py +1 -1
  14. tencentcloud/ims/v20200713/models.py +1 -1
  15. tencentcloud/ims/v20201229/errorcodes.py +3 -0
  16. tencentcloud/ims/v20201229/ims_client.py +43 -1
  17. tencentcloud/ims/v20201229/models.py +81 -0
  18. tencentcloud/live/v20180801/live_client.py +1 -1
  19. tencentcloud/live/v20180801/models.py +1 -1
  20. tencentcloud/mongodb/v20190725/models.py +66 -25
  21. tencentcloud/mongodb/v20190725/mongodb_client.py +1 -1
  22. tencentcloud/mrs/v20200910/errorcodes.py +3 -0
  23. tencentcloud/mrs/v20200910/models.py +7084 -1418
  24. tencentcloud/mrs/v20200910/mrs_client.py +3 -1
  25. tencentcloud/ocr/v20181119/models.py +9 -1
  26. tencentcloud/ocr/v20181119/ocr_client.py +27 -0
  27. tencentcloud/pts/v20210728/models.py +15 -0
  28. tencentcloud/tke/v20180525/models.py +10 -0
  29. tencentcloud/tke/v20180525/tke_client.py +1 -1
  30. tencentcloud/trtc/v20190722/models.py +2 -2
  31. tencentcloud/vpc/v20170312/models.py +30 -12
  32. tencentcloud/vpc/v20170312/vpc_client.py +4 -4
  33. {tencentcloud_sdk_python-3.0.839.dist-info → tencentcloud_sdk_python-3.0.841.dist-info}/METADATA +1 -1
  34. {tencentcloud_sdk_python-3.0.839.dist-info → tencentcloud_sdk_python-3.0.841.dist-info}/RECORD +37 -37
  35. {tencentcloud_sdk_python-3.0.839.dist-info → tencentcloud_sdk_python-3.0.841.dist-info}/LICENSE +0 -0
  36. {tencentcloud_sdk_python-3.0.839.dist-info → tencentcloud_sdk_python-3.0.841.dist-info}/WHEEL +0 -0
  37. {tencentcloud_sdk_python-3.0.839.dist-info → tencentcloud_sdk_python-3.0.841.dist-info}/top_level.txt +0 -0
@@ -203,7 +203,7 @@ class ChannelBatchCancelFlowsRequest(AbstractModel):
203
203
 
204
204
  def __init__(self):
205
205
  r"""
206
- :param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
206
+ :param Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
207
207
  :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
208
208
  :param FlowIds: 签署流程Id数组,最多100个,超过100不处理
209
209
  :type FlowIds: list of str
@@ -215,7 +215,7 @@ class ChannelBatchCancelFlowsRequest(AbstractModel):
215
215
  2 保留身份信息+企业名称:展示为【发起方xxx公司】
216
216
  3 保留身份信息+企业名称+经办人名称:展示为【发起方xxxx公司-经办人姓名】
217
217
  :type CancelMessageFormat: int
218
- :param Operator: 操作人信息
218
+ :param Operator: 暂未开放
219
219
  :type Operator: :class:`tencentcloud.essbasic.v20210526.models.UserInfo`
220
220
  """
221
221
  self.Agent = None
@@ -274,24 +274,24 @@ class ChannelCancelFlowRequest(AbstractModel):
274
274
  r"""
275
275
  :param FlowId: 签署流程编号
276
276
  :type FlowId: str
277
- :param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
277
+ :param Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
278
278
  :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
279
279
  :param CancelMessage: 撤回原因,最大不超过200字符
280
280
  :type CancelMessage: str
281
- :param Operator: 操作者的信息
282
- :type Operator: :class:`tencentcloud.essbasic.v20210526.models.UserInfo`
283
281
  :param CancelMessageFormat: 撤销理由自定义格式;选项:
284
282
  0 默认格式
285
283
  1 只保留身份信息:展示为【发起方】
286
284
  2 保留身份信息+企业名称:展示为【发起方xxx公司】
287
285
  3 保留身份信息+企业名称+经办人名称:展示为【发起方xxxx公司-经办人姓名】
288
286
  :type CancelMessageFormat: int
287
+ :param Operator: 暂未开放
288
+ :type Operator: :class:`tencentcloud.essbasic.v20210526.models.UserInfo`
289
289
  """
290
290
  self.FlowId = None
291
291
  self.Agent = None
292
292
  self.CancelMessage = None
293
- self.Operator = None
294
293
  self.CancelMessageFormat = None
294
+ self.Operator = None
295
295
 
296
296
 
297
297
  def _deserialize(self, params):
@@ -300,10 +300,10 @@ class ChannelCancelFlowRequest(AbstractModel):
300
300
  self.Agent = Agent()
301
301
  self.Agent._deserialize(params.get("Agent"))
302
302
  self.CancelMessage = params.get("CancelMessage")
303
+ self.CancelMessageFormat = params.get("CancelMessageFormat")
303
304
  if params.get("Operator") is not None:
304
305
  self.Operator = UserInfo()
305
306
  self.Operator._deserialize(params.get("Operator"))
306
- self.CancelMessageFormat = params.get("CancelMessageFormat")
307
307
  memeber_set = set(params.keys())
308
308
  for name, value in vars(self).items():
309
309
  if name in memeber_set:
@@ -337,11 +337,11 @@ class ChannelCancelMultiFlowSignQRCodeRequest(AbstractModel):
337
337
 
338
338
  def __init__(self):
339
339
  r"""
340
- :param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
340
+ :param Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
341
341
  :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
342
342
  :param QrCodeId: 二维码id
343
343
  :type QrCodeId: str
344
- :param Operator: 用户信息
344
+ :param Operator: 暂未开放
345
345
  :type Operator: :class:`tencentcloud.essbasic.v20210526.models.UserInfo`
346
346
  """
347
347
  self.Agent = None
@@ -390,11 +390,11 @@ class ChannelCreateBatchCancelFlowUrlRequest(AbstractModel):
390
390
 
391
391
  def __init__(self):
392
392
  r"""
393
- :param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
393
+ :param Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
394
394
  :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
395
395
  :param FlowIds: 签署流程Id数组
396
396
  :type FlowIds: list of str
397
- :param Operator: 操作人信息
397
+ :param Operator: 暂未开放
398
398
  :type Operator: :class:`tencentcloud.essbasic.v20210526.models.UserInfo`
399
399
  """
400
400
  self.Agent = None
@@ -509,7 +509,7 @@ class ChannelCreateConvertTaskApiRequest(AbstractModel):
509
509
 
510
510
  def __init__(self):
511
511
  r"""
512
- :param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
512
+ :param Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
513
513
  :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
514
514
  :param ResourceType: 资源类型 取值范围doc,docx,html,xls,xlsx之一
515
515
  :type ResourceType: str
@@ -517,7 +517,7 @@ class ChannelCreateConvertTaskApiRequest(AbstractModel):
517
517
  :type ResourceName: str
518
518
  :param ResourceId: 资源Id,通过UploadFiles获取
519
519
  :type ResourceId: str
520
- :param Operator: 调用方用户信息,userId 必填
520
+ :param Operator: 调用方用户信息,不用传
521
521
  :type Operator: :class:`tencentcloud.essbasic.v20210526.models.UserInfo`
522
522
  :param Organization: 暂未开放
523
523
  :type Organization: :class:`tencentcloud.essbasic.v20210526.models.OrganizationInfo`
@@ -580,7 +580,7 @@ class ChannelCreateFlowByFilesRequest(AbstractModel):
580
580
 
581
581
  def __init__(self):
582
582
  r"""
583
- :param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
583
+ :param Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
584
584
  :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
585
585
  :param FlowName: 签署流程名称,长度不超过200个字符
586
586
  :type FlowName: str
@@ -606,8 +606,6 @@ class ChannelCreateFlowByFilesRequest(AbstractModel):
606
606
  :type CustomerData: str
607
607
  :param NeedSignReview: 发起方企业的签署人进行签署操作是否需要企业内部审批。 若设置为true,审核结果需通过接口 ChannelCreateFlowSignReview 通知电子签,审核通过后,发起方企业签署人方可进行签署操作,否则会阻塞其签署操作。 注:企业可以通过此功能与企业内部的审批流程进行关联,支持手动、静默签署合同。
608
608
  :type NeedSignReview: bool
609
- :param Operator: 操作者的信息
610
- :type Operator: :class:`tencentcloud.essbasic.v20210526.models.UserInfo`
611
609
  :param ApproverVerifyType: 签署人校验方式
612
610
  VerifyCheck: 人脸识别(默认)
613
611
  MobileCheck:手机号验证
@@ -615,6 +613,8 @@ MobileCheck:手机号验证
615
613
  :type ApproverVerifyType: str
616
614
  :param SignBeanTag: 标识是否允许发起后添加控件。0为不允许1为允许。如果为1,创建的时候不能有签署控件,只能创建后添加。注意发起后添加控件功能不支持添加骑缝章和签批控件
617
615
  :type SignBeanTag: int
616
+ :param Operator: 操作者的信息,不用传
617
+ :type Operator: :class:`tencentcloud.essbasic.v20210526.models.UserInfo`
618
618
  """
619
619
  self.Agent = None
620
620
  self.FlowName = None
@@ -629,9 +629,9 @@ MobileCheck:手机号验证
629
629
  self.CustomShowMap = None
630
630
  self.CustomerData = None
631
631
  self.NeedSignReview = None
632
- self.Operator = None
633
632
  self.ApproverVerifyType = None
634
633
  self.SignBeanTag = None
634
+ self.Operator = None
635
635
 
636
636
 
637
637
  def _deserialize(self, params):
@@ -660,11 +660,11 @@ MobileCheck:手机号验证
660
660
  self.CustomShowMap = params.get("CustomShowMap")
661
661
  self.CustomerData = params.get("CustomerData")
662
662
  self.NeedSignReview = params.get("NeedSignReview")
663
+ self.ApproverVerifyType = params.get("ApproverVerifyType")
664
+ self.SignBeanTag = params.get("SignBeanTag")
663
665
  if params.get("Operator") is not None:
664
666
  self.Operator = UserInfo()
665
667
  self.Operator._deserialize(params.get("Operator"))
666
- self.ApproverVerifyType = params.get("ApproverVerifyType")
667
- self.SignBeanTag = params.get("SignBeanTag")
668
668
  memeber_set = set(params.keys())
669
669
  for name, value in vars(self).items():
670
670
  if name in memeber_set:
@@ -707,14 +707,14 @@ class ChannelCreateFlowGroupByFilesRequest(AbstractModel):
707
707
  :type FlowFileInfos: list of FlowFileInfo
708
708
  :param FlowGroupName: 合同组名称,长度不超过200个字符
709
709
  :type FlowGroupName: str
710
- :param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
710
+ :param Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
711
711
  :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
712
712
  :param ApproverVerifyType: 签署人校验方式
713
713
  VerifyCheck: 人脸识别(默认)
714
714
  MobileCheck:手机号验证
715
715
  参数说明:若选择后者,未实名的个人签署方查看合同时,无需进行人脸识别实名认证(但签署合同时仍然需要人脸实名),该能力仅适用于个人签署方。
716
716
  :type ApproverVerifyType: str
717
- :param Operator: 操作者的信息
717
+ :param Operator: 操作者的信息,此参数不用传
718
718
  :type Operator: :class:`tencentcloud.essbasic.v20210526.models.UserInfo`
719
719
  """
720
720
  self.FlowFileInfos = None
@@ -782,7 +782,7 @@ class ChannelCreateFlowRemindsRequest(AbstractModel):
782
782
 
783
783
  def __init__(self):
784
784
  r"""
785
- :param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
785
+ :param Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
786
786
  :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
787
787
  :param FlowIds: 签署流程Id数组,最多100个,超过100不处理
788
788
  :type FlowIds: list of str
@@ -838,7 +838,7 @@ class ChannelCreateFlowSignReviewRequest(AbstractModel):
838
838
 
839
839
  def __init__(self):
840
840
  r"""
841
- :param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
841
+ :param Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
842
842
  :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
843
843
  :param FlowId: 签署流程编号
844
844
  :type FlowId: str
@@ -901,7 +901,7 @@ class ChannelCreateFlowSignUrlRequest(AbstractModel):
901
901
 
902
902
  def __init__(self):
903
903
  r"""
904
- :param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填
904
+ :param Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填
905
905
  :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
906
906
  :param FlowId: 流程编号
907
907
  :type FlowId: str
@@ -978,7 +978,7 @@ class ChannelCreateMultiFlowSignQRCodeRequest(AbstractModel):
978
978
 
979
979
  def __init__(self):
980
980
  r"""
981
- :param Agent: 渠道应用相关信息。
981
+ :param Agent: 应用相关信息。
982
982
  此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 必填。
983
983
  :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
984
984
  :param TemplateId: 模版ID
@@ -997,10 +997,10 @@ class ChannelCreateMultiFlowSignQRCodeRequest(AbstractModel):
997
997
  不传默认使用渠道应用号配置的回调地址
998
998
  回调时机:用户通过签署二维码发起合同时,企业额度不足导致失败
999
999
  :type CallbackUrl: str
1000
- :param Operator: 用户信息
1001
- :type Operator: :class:`tencentcloud.essbasic.v20210526.models.UserInfo`
1002
1000
  :param ApproverRestrictions: 限制二维码用户条件(已弃用)
1003
1001
  :type ApproverRestrictions: :class:`tencentcloud.essbasic.v20210526.models.ApproverRestriction`
1002
+ :param Operator: 暂未开放
1003
+ :type Operator: :class:`tencentcloud.essbasic.v20210526.models.UserInfo`
1004
1004
  """
1005
1005
  self.Agent = None
1006
1006
  self.TemplateId = None
@@ -1010,8 +1010,8 @@ class ChannelCreateMultiFlowSignQRCodeRequest(AbstractModel):
1010
1010
  self.QrEffectiveDay = None
1011
1011
  self.Restrictions = None
1012
1012
  self.CallbackUrl = None
1013
- self.Operator = None
1014
1013
  self.ApproverRestrictions = None
1014
+ self.Operator = None
1015
1015
 
1016
1016
 
1017
1017
  def _deserialize(self, params):
@@ -1030,12 +1030,12 @@ class ChannelCreateMultiFlowSignQRCodeRequest(AbstractModel):
1030
1030
  obj._deserialize(item)
1031
1031
  self.Restrictions.append(obj)
1032
1032
  self.CallbackUrl = params.get("CallbackUrl")
1033
- if params.get("Operator") is not None:
1034
- self.Operator = UserInfo()
1035
- self.Operator._deserialize(params.get("Operator"))
1036
1033
  if params.get("ApproverRestrictions") is not None:
1037
1034
  self.ApproverRestrictions = ApproverRestriction()
1038
1035
  self.ApproverRestrictions._deserialize(params.get("ApproverRestrictions"))
1036
+ if params.get("Operator") is not None:
1037
+ self.Operator = UserInfo()
1038
+ self.Operator._deserialize(params.get("Operator"))
1039
1039
  memeber_set = set(params.keys())
1040
1040
  for name, value in vars(self).items():
1041
1041
  if name in memeber_set:
@@ -1081,7 +1081,7 @@ class ChannelCreateReleaseFlowRequest(AbstractModel):
1081
1081
 
1082
1082
  def __init__(self):
1083
1083
  r"""
1084
- :param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
1084
+ :param Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
1085
1085
  :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
1086
1086
  :param NeedRelievedFlowId: 待解除的流程编号(即原流程的编号)
1087
1087
  :type NeedRelievedFlowId: str
@@ -1091,9 +1091,9 @@ class ChannelCreateReleaseFlowRequest(AbstractModel):
1091
1091
  :type ReleasedApprovers: list of ReleasedApprover
1092
1092
  :param CallbackUrl: 签署完回调url,最大长度1000个字符
1093
1093
  :type CallbackUrl: str
1094
- :param Organization: 机构信息
1094
+ :param Organization: 暂未开放
1095
1095
  :type Organization: :class:`tencentcloud.essbasic.v20210526.models.OrganizationInfo`
1096
- :param Operator: 用户信息
1096
+ :param Operator: 暂未开放
1097
1097
  :type Operator: :class:`tencentcloud.essbasic.v20210526.models.UserInfo`
1098
1098
  """
1099
1099
  self.Agent = None
@@ -1163,15 +1163,15 @@ class ChannelCreateSealPolicyRequest(AbstractModel):
1163
1163
 
1164
1164
  def __init__(self):
1165
1165
  r"""
1166
- :param Agent: 用户渠道信息
1166
+ :param Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
1167
1167
  :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
1168
- :param SealId: 指定印章
1168
+ :param SealId: 指定印章ID
1169
1169
  :type SealId: str
1170
1170
  :param UserIds: 指定待授权的用户ID数组
1171
1171
  :type UserIds: list of str
1172
- :param Organization: 企业机构信息
1172
+ :param Organization: 企业机构信息,不用传
1173
1173
  :type Organization: :class:`tencentcloud.essbasic.v20210526.models.OrganizationInfo`
1174
- :param Operator: 操作人(用户)信息
1174
+ :param Operator: 操作人(用户)信息,不用传
1175
1175
  :type Operator: :class:`tencentcloud.essbasic.v20210526.models.UserInfo`
1176
1176
  """
1177
1177
  self.Agent = None
@@ -1230,22 +1230,22 @@ class ChannelDeleteSealPoliciesRequest(AbstractModel):
1230
1230
 
1231
1231
  def __init__(self):
1232
1232
  r"""
1233
- :param Agent: 渠道信息
1233
+ :param Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
1234
1234
  :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
1235
1235
  :param SealId: 指定印章ID
1236
1236
  :type SealId: str
1237
1237
  :param UserIds: 指定用户ID数组
1238
1238
  :type UserIds: list of str
1239
- :param Operator: 操作人(用户)信息
1240
- :type Operator: :class:`tencentcloud.essbasic.v20210526.models.UserInfo`
1241
- :param Organization: 组织机构信息
1239
+ :param Organization: 组织机构信息,不用传
1242
1240
  :type Organization: :class:`tencentcloud.essbasic.v20210526.models.OrganizationInfo`
1241
+ :param Operator: 操作人(用户)信息,不用传
1242
+ :type Operator: :class:`tencentcloud.essbasic.v20210526.models.UserInfo`
1243
1243
  """
1244
1244
  self.Agent = None
1245
1245
  self.SealId = None
1246
1246
  self.UserIds = None
1247
- self.Operator = None
1248
1247
  self.Organization = None
1248
+ self.Operator = None
1249
1249
 
1250
1250
 
1251
1251
  def _deserialize(self, params):
@@ -1254,12 +1254,12 @@ class ChannelDeleteSealPoliciesRequest(AbstractModel):
1254
1254
  self.Agent._deserialize(params.get("Agent"))
1255
1255
  self.SealId = params.get("SealId")
1256
1256
  self.UserIds = params.get("UserIds")
1257
- if params.get("Operator") is not None:
1258
- self.Operator = UserInfo()
1259
- self.Operator._deserialize(params.get("Operator"))
1260
1257
  if params.get("Organization") is not None:
1261
1258
  self.Organization = OrganizationInfo()
1262
1259
  self.Organization._deserialize(params.get("Organization"))
1260
+ if params.get("Operator") is not None:
1261
+ self.Operator = UserInfo()
1262
+ self.Operator._deserialize(params.get("Operator"))
1263
1263
  memeber_set = set(params.keys())
1264
1264
  for name, value in vars(self).items():
1265
1265
  if name in memeber_set:
@@ -1295,7 +1295,7 @@ class ChannelDescribeEmployeesRequest(AbstractModel):
1295
1295
  r"""
1296
1296
  :param Limit: 返回最大数量,最大为20
1297
1297
  :type Limit: int
1298
- :param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
1298
+ :param Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
1299
1299
  :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
1300
1300
  :param Filters: 查询过滤实名用户,Key为Status,Values为["IsVerified"]
1301
1301
  根据第三方系统openId过滤查询员工时,Key为StaffOpenId,Values为["OpenId","OpenId",...]
@@ -1303,7 +1303,7 @@ class ChannelDescribeEmployeesRequest(AbstractModel):
1303
1303
  :type Filters: list of Filter
1304
1304
  :param Offset: 偏移量,默认为0,最大为20000
1305
1305
  :type Offset: int
1306
- :param Operator: 操作者的信息
1306
+ :param Operator: 暂未开放
1307
1307
  :type Operator: :class:`tencentcloud.essbasic.v20210526.models.UserInfo`
1308
1308
  """
1309
1309
  self.Limit = None
@@ -1384,7 +1384,7 @@ class ChannelDescribeOrganizationSealsRequest(AbstractModel):
1384
1384
 
1385
1385
  def __init__(self):
1386
1386
  r"""
1387
- :param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
1387
+ :param Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
1388
1388
  :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
1389
1389
  :param Limit: 返回最大数量,最大为100
1390
1390
  :type Limit: int
@@ -1466,11 +1466,11 @@ class ChannelGetTaskResultApiRequest(AbstractModel):
1466
1466
 
1467
1467
  def __init__(self):
1468
1468
  r"""
1469
- :param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
1469
+ :param Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
1470
1470
  :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
1471
1471
  :param TaskId: 任务Id,通过ChannelCreateConvertTaskApi接口获得
1472
1472
  :type TaskId: str
1473
- :param Operator: 操作者的信息
1473
+ :param Operator: 操作者的信息,不用传
1474
1474
  :type Operator: :class:`tencentcloud.essbasic.v20210526.models.UserInfo`
1475
1475
  :param Organization: 暂未开放
1476
1476
  :type Organization: :class:`tencentcloud.essbasic.v20210526.models.OrganizationInfo`
@@ -1558,7 +1558,7 @@ class ChannelUpdateSealStatusRequest(AbstractModel):
1558
1558
 
1559
1559
  def __init__(self):
1560
1560
  r"""
1561
- :param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
1561
+ :param Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
1562
1562
  :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
1563
1563
  :param Status: 操作的印章状态,DISABLE-停用印章
1564
1564
  :type Status: str
@@ -1621,9 +1621,9 @@ class ChannelVerifyPdfRequest(AbstractModel):
1621
1621
  r"""
1622
1622
  :param FlowId: 合同Id,流程Id
1623
1623
  :type FlowId: str
1624
- :param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
1624
+ :param Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
1625
1625
  :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
1626
- :param Operator: 操作者的信息
1626
+ :param Operator: 暂未开放
1627
1627
  :type Operator: :class:`tencentcloud.essbasic.v20210526.models.UserInfo`
1628
1628
  """
1629
1629
  self.FlowId = None
@@ -1945,23 +1945,23 @@ class CreateChannelFlowEvidenceReportRequest(AbstractModel):
1945
1945
 
1946
1946
  def __init__(self):
1947
1947
  r"""
1948
+ :param Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填
1949
+ :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
1948
1950
  :param FlowId: 签署流程编号
1949
1951
  :type FlowId: str
1950
- :param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填
1951
- :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
1952
- :param Operator: 操作者的信息
1952
+ :param Operator: 暂未开放
1953
1953
  :type Operator: :class:`tencentcloud.essbasic.v20210526.models.UserInfo`
1954
1954
  """
1955
- self.FlowId = None
1956
1955
  self.Agent = None
1956
+ self.FlowId = None
1957
1957
  self.Operator = None
1958
1958
 
1959
1959
 
1960
1960
  def _deserialize(self, params):
1961
- self.FlowId = params.get("FlowId")
1962
1961
  if params.get("Agent") is not None:
1963
1962
  self.Agent = Agent()
1964
1963
  self.Agent._deserialize(params.get("Agent"))
1964
+ self.FlowId = params.get("FlowId")
1965
1965
  if params.get("Operator") is not None:
1966
1966
  self.Operator = UserInfo()
1967
1967
  self.Operator._deserialize(params.get("Operator"))
@@ -2033,10 +2033,10 @@ class CreateConsoleLoginUrlRequest(AbstractModel):
2033
2033
  :type Endpoint: str
2034
2034
  :param AutoJumpBackEvent: 触发自动跳转事件,仅对App类型有效,"VERIFIED":企业认证完成/员工认证完成后跳回原App/小程序
2035
2035
  :type AutoJumpBackEvent: str
2036
- :param Operator: 操作者的信息
2037
- :type Operator: :class:`tencentcloud.essbasic.v20210526.models.UserInfo`
2038
2036
  :param AuthorizationTypes: 支持的授权方式,授权方式: "1" - 上传授权书认证 "2" - 法定代表人认证
2039
2037
  :type AuthorizationTypes: list of int
2038
+ :param Operator: 暂未开放
2039
+ :type Operator: :class:`tencentcloud.essbasic.v20210526.models.UserInfo`
2040
2040
  """
2041
2041
  self.Agent = None
2042
2042
  self.ProxyOrganizationName = None
@@ -2047,8 +2047,8 @@ class CreateConsoleLoginUrlRequest(AbstractModel):
2047
2047
  self.MenuStatus = None
2048
2048
  self.Endpoint = None
2049
2049
  self.AutoJumpBackEvent = None
2050
- self.Operator = None
2051
2050
  self.AuthorizationTypes = None
2051
+ self.Operator = None
2052
2052
 
2053
2053
 
2054
2054
  def _deserialize(self, params):
@@ -2063,10 +2063,10 @@ class CreateConsoleLoginUrlRequest(AbstractModel):
2063
2063
  self.MenuStatus = params.get("MenuStatus")
2064
2064
  self.Endpoint = params.get("Endpoint")
2065
2065
  self.AutoJumpBackEvent = params.get("AutoJumpBackEvent")
2066
+ self.AuthorizationTypes = params.get("AuthorizationTypes")
2066
2067
  if params.get("Operator") is not None:
2067
2068
  self.Operator = UserInfo()
2068
2069
  self.Operator._deserialize(params.get("Operator"))
2069
- self.AuthorizationTypes = params.get("AuthorizationTypes")
2070
2070
  memeber_set = set(params.keys())
2071
2071
  for name, value in vars(self).items():
2072
2072
  if name in memeber_set:
@@ -2117,7 +2117,7 @@ class CreateFlowsByTemplatesRequest(AbstractModel):
2117
2117
 
2118
2118
  def __init__(self):
2119
2119
  r"""
2120
- :param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
2120
+ :param Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
2121
2121
  :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
2122
2122
  :param FlowInfos: 多个合同(签署流程)信息,最多支持20个
2123
2123
  :type FlowInfos: list of FlowInfo
@@ -2127,7 +2127,7 @@ class CreateFlowsByTemplatesRequest(AbstractModel):
2127
2127
  :type NeedPreview: bool
2128
2128
  :param PreviewType: 预览链接类型 默认:0-文件流, 1- H5链接 注意:此参数在NeedPreview 为true 时有效,
2129
2129
  :type PreviewType: int
2130
- :param Operator: 操作者的信息
2130
+ :param Operator: 操作者的信息,不用传
2131
2131
  :type Operator: :class:`tencentcloud.essbasic.v20210526.models.UserInfo`
2132
2132
  """
2133
2133
  self.Agent = None
@@ -2212,7 +2212,7 @@ class CreateSealByImageRequest(AbstractModel):
2212
2212
 
2213
2213
  def __init__(self):
2214
2214
  r"""
2215
- :param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
2215
+ :param Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
2216
2216
  :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
2217
2217
  :param SealName: 印章名称,最大长度不超过50字符
2218
2218
  :type SealName: str
@@ -2273,7 +2273,7 @@ class CreateSignUrlsRequest(AbstractModel):
2273
2273
 
2274
2274
  def __init__(self):
2275
2275
  r"""
2276
- :param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
2276
+ :param Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
2277
2277
  :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
2278
2278
  :param FlowIds: 签署流程编号数组,最多支持100个。(备注:该参数和合同组编号必须二选一)
2279
2279
  :type FlowIds: list of str
@@ -2297,13 +2297,13 @@ GenerateType为"PERSON"或"FOLLOWER"时必填
2297
2297
  :type Mobile: str
2298
2298
  :param OrganizationOpenId: 渠道合作企业的企业Id,GenerateType为"CHANNEL"时必填
2299
2299
  :type OrganizationOpenId: str
2300
- :param OpenId: 渠道合作企业参与人OpenId,GenerateType为"CHANNEL"时可用,指定到具体参与人
2300
+ :param OpenId: 渠道合作企业参与人OpenId,GenerateType为"CHANNEL"时可用,指定到具体参与人, 仅展示已经实名的经办人信息
2301
2301
  :type OpenId: str
2302
2302
  :param AutoJumpBack: Endpoint为"APP" 类型的签署链接,可以设置此值;支持调用方小程序打开签署链接,在电子签小程序完成签署后自动回跳至调用方小程序
2303
2303
  :type AutoJumpBack: bool
2304
2304
  :param JumpUrl: 签署完之后的H5页面的跳转链接,针对Endpoint为CHANNEL时有效,最大长度1000个字符。
2305
2305
  :type JumpUrl: str
2306
- :param Operator: 操作者的信息
2306
+ :param Operator: 暂未开放
2307
2307
  :type Operator: :class:`tencentcloud.essbasic.v20210526.models.UserInfo`
2308
2308
  """
2309
2309
  self.Agent = None
@@ -2415,11 +2415,11 @@ class DescribeChannelFlowEvidenceReportRequest(AbstractModel):
2415
2415
 
2416
2416
  def __init__(self):
2417
2417
  r"""
2418
- :param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填
2418
+ :param Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填
2419
2419
  :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
2420
2420
  :param ReportId: 出证报告编号
2421
2421
  :type ReportId: str
2422
- :param Operator: 操作者的信息
2422
+ :param Operator: 暂未开放
2423
2423
  :type Operator: :class:`tencentcloud.essbasic.v20210526.models.UserInfo`
2424
2424
  """
2425
2425
  self.Agent = None
@@ -2479,7 +2479,7 @@ class DescribeExtendedServiceAuthInfoRequest(AbstractModel):
2479
2479
 
2480
2480
  def __init__(self):
2481
2481
  r"""
2482
- :param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填
2482
+ :param Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填
2483
2483
 
2484
2484
  注: 此接口 参数Agent. ProxyOperator.OpenId 需要传递超管或者法人的OpenId
2485
2485
 
@@ -2535,20 +2535,20 @@ class DescribeFlowDetailInfoRequest(AbstractModel):
2535
2535
 
2536
2536
  def __init__(self):
2537
2537
  r"""
2538
- :param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
2538
+ :param Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
2539
2539
  :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
2540
2540
  :param FlowIds: 合同(流程)编号数组,最多支持100个。
2541
2541
  (备注:该参数和合同组编号必须二选一)
2542
2542
  :type FlowIds: list of str
2543
- :param Operator: 操作者的信息
2544
- :type Operator: :class:`tencentcloud.essbasic.v20210526.models.UserInfo`
2545
2543
  :param FlowGroupId: 合同组编号(备注:该参数和合同(流程)编号数组必须二选一)
2546
2544
  :type FlowGroupId: str
2545
+ :param Operator: 暂未开放
2546
+ :type Operator: :class:`tencentcloud.essbasic.v20210526.models.UserInfo`
2547
2547
  """
2548
2548
  self.Agent = None
2549
2549
  self.FlowIds = None
2550
- self.Operator = None
2551
2550
  self.FlowGroupId = None
2551
+ self.Operator = None
2552
2552
 
2553
2553
 
2554
2554
  def _deserialize(self, params):
@@ -2556,10 +2556,10 @@ class DescribeFlowDetailInfoRequest(AbstractModel):
2556
2556
  self.Agent = Agent()
2557
2557
  self.Agent._deserialize(params.get("Agent"))
2558
2558
  self.FlowIds = params.get("FlowIds")
2559
+ self.FlowGroupId = params.get("FlowGroupId")
2559
2560
  if params.get("Operator") is not None:
2560
2561
  self.Operator = UserInfo()
2561
2562
  self.Operator._deserialize(params.get("Operator"))
2562
- self.FlowGroupId = params.get("FlowGroupId")
2563
2563
  memeber_set = set(params.keys())
2564
2564
  for name, value in vars(self).items():
2565
2565
  if name in memeber_set:
@@ -2621,12 +2621,12 @@ class DescribeResourceUrlsByFlowsRequest(AbstractModel):
2621
2621
 
2622
2622
  def __init__(self):
2623
2623
  r"""
2624
- :param Agent: 渠道应用相关信息。
2624
+ :param Agent: 应用相关信息。
2625
2625
  此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
2626
2626
  :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
2627
2627
  :param FlowIds: 查询资源所对应的签署流程Id,最多支持50个
2628
2628
  :type FlowIds: list of str
2629
- :param Operator: 操作者的信息
2629
+ :param Operator: 操作者的信息,不用传
2630
2630
  :type Operator: :class:`tencentcloud.essbasic.v20210526.models.UserInfo`
2631
2631
  """
2632
2632
  self.Agent = None
@@ -2689,7 +2689,7 @@ class DescribeTemplatesRequest(AbstractModel):
2689
2689
 
2690
2690
  def __init__(self):
2691
2691
  r"""
2692
- :param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
2692
+ :param Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
2693
2693
  :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
2694
2694
  :param TemplateId: 模板唯一标识,查询单个模板时使用
2695
2695
  :type TemplateId: str
@@ -2810,7 +2810,7 @@ class DescribeUsageRequest(AbstractModel):
2810
2810
  :type Limit: int
2811
2811
  :param Offset: 偏移量,默认是0。
2812
2812
  :type Offset: int
2813
- :param Operator: 操作者的信息
2813
+ :param Operator: 暂未开放
2814
2814
  :type Operator: :class:`tencentcloud.essbasic.v20210526.models.UserInfo`
2815
2815
  """
2816
2816
  self.Agent = None
@@ -3100,7 +3100,8 @@ ENTERPRISESERVER-企业静默签(文件发起时的企业静默签字)。
3100
3100
  :type CallbackUrl: str
3101
3101
  :param SignComponents: 使用PDF文件直接发起合同时,签署人指定的签署控件
3102
3102
  :type SignComponents: list of Component
3103
- :param ComponentLimitType: 个人签署方指定签署控件类型,目前仅支持:OCR_ESIGN(AI智慧手写签名)
3103
+ :param ComponentLimitType: 个人签署方指定签署控件类型,目前支持:OCR_ESIGN -AI智慧手写签名
3104
+ HANDWRITE -手写签名
3104
3105
  :type ComponentLimitType: list of str
3105
3106
  :param PreReadTime: 合同的强制预览时间:3~300s,未指定则按合同页数计算
3106
3107
  :type PreReadTime: int
@@ -3614,11 +3615,11 @@ class GetDownloadFlowUrlRequest(AbstractModel):
3614
3615
 
3615
3616
  def __init__(self):
3616
3617
  r"""
3617
- :param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
3618
+ :param Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
3618
3619
  :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
3619
3620
  :param DownLoadFlows: 文件夹数组,签署流程总数不能超过50个,一个文件夹下,不能超过20个签署流程
3620
3621
  :type DownLoadFlows: list of DownloadFlowInfo
3621
- :param Operator: 操作者的信息
3622
+ :param Operator: 操作者的信息,不用传
3622
3623
  :type Operator: :class:`tencentcloud.essbasic.v20210526.models.UserInfo`
3623
3624
  """
3624
3625
  self.Agent = None
@@ -3676,7 +3677,7 @@ class ModifyExtendedServiceRequest(AbstractModel):
3676
3677
 
3677
3678
  def __init__(self):
3678
3679
  r"""
3679
- :param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
3680
+ :param Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
3680
3681
 
3681
3682
  注: 此接口 参数Agent. ProxyOperator.OpenId 需要传递超管或者法人的OpenId
3682
3683
  :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
@@ -3814,7 +3815,7 @@ class OperateChannelTemplateRequest(AbstractModel):
3814
3815
 
3815
3816
  def __init__(self):
3816
3817
  r"""
3817
- :param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
3818
+ :param Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
3818
3819
  :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
3819
3820
  :param OperateType: 操作类型,查询:"SELECT",删除:"DELETE",更新:"UPDATE"
3820
3821
  :type OperateType: str
@@ -3824,7 +3825,7 @@ class OperateChannelTemplateRequest(AbstractModel):
3824
3825
  :type ProxyOrganizationOpenIds: str
3825
3826
  :param AuthTag: 模板可见性, 全部可见-"all", 部分可见-"part"
3826
3827
  :type AuthTag: str
3827
- :param Operator: 操作者的信息
3828
+ :param Operator: 暂未开放
3828
3829
  :type Operator: :class:`tencentcloud.essbasic.v20210526.models.UserInfo`
3829
3830
  """
3830
3831
  self.Agent = None
@@ -4030,13 +4031,13 @@ class PrepareFlowsRequest(AbstractModel):
4030
4031
 
4031
4032
  def __init__(self):
4032
4033
  r"""
4033
- :param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
4034
+ :param Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
4034
4035
  :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
4035
4036
  :param FlowInfos: 多个合同(签署流程)信息,最大支持20个签署流程。
4036
4037
  :type FlowInfos: list of FlowInfo
4037
4038
  :param JumpUrl: 操作完成后的跳转地址,最大长度200
4038
4039
  :type JumpUrl: str
4039
- :param Operator: 操作者的信息
4040
+ :param Operator: 暂未开放
4040
4041
  :type Operator: :class:`tencentcloud.essbasic.v20210526.models.UserInfo`
4041
4042
  """
4042
4043
  self.Agent = None
@@ -4656,13 +4657,13 @@ class SyncProxyOrganizationOperatorsRequest(AbstractModel):
4656
4657
 
4657
4658
  def __init__(self):
4658
4659
  r"""
4659
- :param Agent: 渠道应用相关信息。 此接口Agent.AppId 和 Agent.ProxyOrganizationOpenId必填。
4660
+ :param Agent: 应用相关信息。 此接口Agent.AppId 和 Agent.ProxyOrganizationOpenId必填。
4660
4661
  :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
4661
4662
  :param OperatorType: 操作类型,新增:"CREATE",修改:"UPDATE",离职:"RESIGN"
4662
4663
  :type OperatorType: str
4663
4664
  :param ProxyOrganizationOperators: 经办人信息列表,最大长度200
4664
4665
  :type ProxyOrganizationOperators: list of ProxyOrganizationOperator
4665
- :param Operator: 操作者的信息
4666
+ :param Operator: 暂未开放
4666
4667
  :type Operator: :class:`tencentcloud.essbasic.v20210526.models.UserInfo`
4667
4668
  """
4668
4669
  self.Agent = None
@@ -4746,7 +4747,7 @@ class SyncProxyOrganizationRequest(AbstractModel):
4746
4747
  :type UniformSocialCreditCode: str
4747
4748
  :param ProxyLegalName: 渠道侧合作企业法人/负责人姓名
4748
4749
  :type ProxyLegalName: str
4749
- :param Operator: 操作者的信息
4750
+ :param Operator: 暂未开放
4750
4751
  :type Operator: :class:`tencentcloud.essbasic.v20210526.models.UserInfo`
4751
4752
  """
4752
4753
  self.Agent = None