tencentcloud-sdk-essbasic 3.0.586 → 3.0.587

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f47507e80230af0ab2f431700bdc4a6f3609ceb8
4
- data.tar.gz: dcf61a7c2b5ce6ff2c850fe524bf502cf75deda9
3
+ metadata.gz: 18ce791aae25fa5f1fa5de4b46d1ee9ee5fb219c
4
+ data.tar.gz: 7eadc90d000e67d0df4fef1e4fd215336afba8ec
5
5
  SHA512:
6
- metadata.gz: 57beea6e1def1a045bdc12dc9c7a6a3a7d0a486531a3297471f07988b4b2b49da9ef6154bf8b6624d8fc518b6577950ef97c2c1ca797c9c2a88df44bb74dd852
7
- data.tar.gz: 0cb0bd692ee29d6c2576762761dc559143be1542d37cf6c9201f0662aa5d6e14550c442f420a967e016102fc3cfdb535b2282ba8b98a7a510fdd2b87dbb45b6b
6
+ metadata.gz: 159a50f00a670383819cd65b9f765410a5b476697ddc10a58f827094bd77734950d0926c7cee156555344522fa67e46741382d2ebd8ce1410a821690faa59371
7
+ data.tar.gz: 37253ce563099fbf980be185eb7a41715ac5fbc036284e4cb0c934c9884d78806ec5b8b52038cc9db7ac085a8350230d569a9496abcd65fc843b693bd5c55c58
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.586
1
+ 3.0.587
@@ -967,6 +967,7 @@ module TencentCloud
967
967
 
968
968
  # 此接口(GetDownloadFlowUrl)用于创建电子签批量下载地址,让合作企业进入控制台直接下载,支持客户合同(流程)按照自定义文件夹形式 分类下载。
969
969
  # 当前接口限制最多合同(流程)50个.
970
+ # 返回的链接只能使用一次
970
971
 
971
972
  # @param request: Request instance for GetDownloadFlowUrl.
972
973
  # @type request: :class:`Tencentcloud::essbasic::V20210526::GetDownloadFlowUrlRequest`
@@ -571,39 +571,39 @@ module TencentCloud
571
571
 
572
572
  # ChannelCreateEmbedWebUrl请求参数结构体
573
573
  class ChannelCreateEmbedWebUrlRequest < TencentCloud::Common::AbstractModel
574
- # @param EmbedType: WEB嵌入资源类型,取值范围:CREATE_SEAL创建印章,CREATE_TEMPLATE创建模板,MODIFY_TEMPLATE修改模板,PREVIEW_TEMPLATE预览模板,PREVIEW_FLOW预览流程
575
- # @type EmbedType: String
576
574
  # @param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 必填。
577
575
  # @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
578
- # @param Operator: 渠道操作者信息
579
- # @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
576
+ # @param EmbedType: WEB嵌入资源类型,取值范围:CREATE_SEAL创建印章,CREATE_TEMPLATE创建模板,MODIFY_TEMPLATE修改模板,PREVIEW_TEMPLATE预览模板,PREVIEW_FLOW预览流程
577
+ # @type EmbedType: String
580
578
  # @param BusinessId: WEB嵌入的业务资源ID,EmbedType取值MODIFY_TEMPLATE或PREVIEW_TEMPLATE或 PREVIEW_FLOW时BusinessId必填
581
579
  # @type BusinessId: String
582
580
  # @param HiddenComponents: 是否隐藏控件,只有预览模板时生效
583
581
  # @type HiddenComponents: Boolean
582
+ # @param Operator: 渠道操作者信息
583
+ # @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
584
584
 
585
- attr_accessor :EmbedType, :Agent, :Operator, :BusinessId, :HiddenComponents
585
+ attr_accessor :Agent, :EmbedType, :BusinessId, :HiddenComponents, :Operator
586
586
 
587
- def initialize(embedtype=nil, agent=nil, operator=nil, businessid=nil, hiddencomponents=nil)
588
- @EmbedType = embedtype
587
+ def initialize(agent=nil, embedtype=nil, businessid=nil, hiddencomponents=nil, operator=nil)
589
588
  @Agent = agent
590
- @Operator = operator
589
+ @EmbedType = embedtype
591
590
  @BusinessId = businessid
592
591
  @HiddenComponents = hiddencomponents
592
+ @Operator = operator
593
593
  end
594
594
 
595
595
  def deserialize(params)
596
- @EmbedType = params['EmbedType']
597
596
  unless params['Agent'].nil?
598
597
  @Agent = Agent.new
599
598
  @Agent.deserialize(params['Agent'])
600
599
  end
600
+ @EmbedType = params['EmbedType']
601
+ @BusinessId = params['BusinessId']
602
+ @HiddenComponents = params['HiddenComponents']
601
603
  unless params['Operator'].nil?
602
604
  @Operator = UserInfo.new
603
605
  @Operator.deserialize(params['Operator'])
604
606
  end
605
- @BusinessId = params['BusinessId']
606
- @HiddenComponents = params['HiddenComponents']
607
607
  end
608
608
  end
609
609
 
@@ -662,18 +662,18 @@ module TencentCloud
662
662
  # @type ApproverVerifyType: String
663
663
  # @param SignBeanTag: 标识是否允许发起后添加控件。0为不允许1为允许。如果为1,创建的时候不能有签署控件,只能创建后添加。注意发起后添加控件功能不支持添加骑缝章和签批控件
664
664
  # @type SignBeanTag: Integer
665
- # @param Operator: 操作者的信息,不用传
666
- # @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
667
665
  # @param CcInfos: 被抄送人信息列表
668
666
  # @type CcInfos: Array
669
667
  # @param CcNotifyType: 给关注人发送短信通知的类型,0-合同发起时通知 1-签署完成后通知
670
668
  # @type CcNotifyType: Integer
671
669
  # @param AutoSignScene: 个人自动签场景。发起自动签署时,需设置对应自动签署场景,目前仅支持场景:处方单-E_PRESCRIPTION_AUTO_SIGN
672
670
  # @type AutoSignScene: String
671
+ # @param Operator: 操作者的信息,不用传
672
+ # @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
673
673
 
674
- attr_accessor :Agent, :FlowName, :FlowApprovers, :FileIds, :Components, :Deadline, :CallbackUrl, :Unordered, :FlowType, :FlowDescription, :CustomShowMap, :CustomerData, :NeedSignReview, :ApproverVerifyType, :SignBeanTag, :Operator, :CcInfos, :CcNotifyType, :AutoSignScene
674
+ attr_accessor :Agent, :FlowName, :FlowApprovers, :FileIds, :Components, :Deadline, :CallbackUrl, :Unordered, :FlowType, :FlowDescription, :CustomShowMap, :CustomerData, :NeedSignReview, :ApproverVerifyType, :SignBeanTag, :CcInfos, :CcNotifyType, :AutoSignScene, :Operator
675
675
 
676
- def initialize(agent=nil, flowname=nil, flowapprovers=nil, fileids=nil, components=nil, deadline=nil, callbackurl=nil, unordered=nil, flowtype=nil, flowdescription=nil, customshowmap=nil, customerdata=nil, needsignreview=nil, approververifytype=nil, signbeantag=nil, operator=nil, ccinfos=nil, ccnotifytype=nil, autosignscene=nil)
676
+ def initialize(agent=nil, flowname=nil, flowapprovers=nil, fileids=nil, components=nil, deadline=nil, callbackurl=nil, unordered=nil, flowtype=nil, flowdescription=nil, customshowmap=nil, customerdata=nil, needsignreview=nil, approververifytype=nil, signbeantag=nil, ccinfos=nil, ccnotifytype=nil, autosignscene=nil, operator=nil)
677
677
  @Agent = agent
678
678
  @FlowName = flowname
679
679
  @FlowApprovers = flowapprovers
@@ -689,10 +689,10 @@ module TencentCloud
689
689
  @NeedSignReview = needsignreview
690
690
  @ApproverVerifyType = approververifytype
691
691
  @SignBeanTag = signbeantag
692
- @Operator = operator
693
692
  @CcInfos = ccinfos
694
693
  @CcNotifyType = ccnotifytype
695
694
  @AutoSignScene = autosignscene
695
+ @Operator = operator
696
696
  end
697
697
 
698
698
  def deserialize(params)
@@ -728,10 +728,6 @@ module TencentCloud
728
728
  @NeedSignReview = params['NeedSignReview']
729
729
  @ApproverVerifyType = params['ApproverVerifyType']
730
730
  @SignBeanTag = params['SignBeanTag']
731
- unless params['Operator'].nil?
732
- @Operator = UserInfo.new
733
- @Operator.deserialize(params['Operator'])
734
- end
735
731
  unless params['CcInfos'].nil?
736
732
  @CcInfos = []
737
733
  params['CcInfos'].each do |i|
@@ -742,6 +738,10 @@ module TencentCloud
742
738
  end
743
739
  @CcNotifyType = params['CcNotifyType']
744
740
  @AutoSignScene = params['AutoSignScene']
741
+ unless params['Operator'].nil?
742
+ @Operator = UserInfo.new
743
+ @Operator.deserialize(params['Operator'])
744
+ end
745
745
  end
746
746
  end
747
747
 
@@ -1311,21 +1311,21 @@ module TencentCloud
1311
1311
  # @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
1312
1312
  # @param SealId: 指定印章ID
1313
1313
  # @type SealId: String
1314
- # @param UserIds: 指定待授权的用户ID数组
1314
+ # @param UserIds: 指定待授权的用户ID数组,电子签的用户ID
1315
1315
  # @type UserIds: Array
1316
- # @param Organization: 企业机构信息,不用传
1317
- # @type Organization: :class:`Tencentcloud::Essbasic.v20210526.models.OrganizationInfo`
1318
1316
  # @param Operator: 操作人(用户)信息,不用传
1319
1317
  # @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
1318
+ # @param Organization: 企业机构信息,不用传
1319
+ # @type Organization: :class:`Tencentcloud::Essbasic.v20210526.models.OrganizationInfo`
1320
1320
 
1321
- attr_accessor :Agent, :SealId, :UserIds, :Organization, :Operator
1321
+ attr_accessor :Agent, :SealId, :UserIds, :Operator, :Organization
1322
1322
 
1323
- def initialize(agent=nil, sealid=nil, userids=nil, organization=nil, operator=nil)
1323
+ def initialize(agent=nil, sealid=nil, userids=nil, operator=nil, organization=nil)
1324
1324
  @Agent = agent
1325
1325
  @SealId = sealid
1326
1326
  @UserIds = userids
1327
- @Organization = organization
1328
1327
  @Operator = operator
1328
+ @Organization = organization
1329
1329
  end
1330
1330
 
1331
1331
  def deserialize(params)
@@ -1335,20 +1335,20 @@ module TencentCloud
1335
1335
  end
1336
1336
  @SealId = params['SealId']
1337
1337
  @UserIds = params['UserIds']
1338
- unless params['Organization'].nil?
1339
- @Organization = OrganizationInfo.new
1340
- @Organization.deserialize(params['Organization'])
1341
- end
1342
1338
  unless params['Operator'].nil?
1343
1339
  @Operator = UserInfo.new
1344
1340
  @Operator.deserialize(params['Operator'])
1345
1341
  end
1342
+ unless params['Organization'].nil?
1343
+ @Organization = OrganizationInfo.new
1344
+ @Organization.deserialize(params['Organization'])
1345
+ end
1346
1346
  end
1347
1347
  end
1348
1348
 
1349
1349
  # ChannelCreateSealPolicy返回参数结构体
1350
1350
  class ChannelCreateSealPolicyResponse < TencentCloud::Common::AbstractModel
1351
- # @param UserIds: 最终授权成功的用户ID数组。其他的跳过的是已经授权了的
1351
+ # @param UserIds: 最终授权成功的电子签系统用户ID数组。其他的跳过的是已经授权了的
1352
1352
  # @type UserIds: Array
1353
1353
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1354
1354
  # @type RequestId: String
@@ -1370,7 +1370,7 @@ module TencentCloud
1370
1370
  class ChannelCreateUserRolesRequest < TencentCloud::Common::AbstractModel
1371
1371
  # @param Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 必填。
1372
1372
  # @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
1373
- # @param UserIds: 绑定角色的员工id列表
1373
+ # @param UserIds: 绑定角色的员工id列表,电子签的UserId
1374
1374
  # @type UserIds: Array
1375
1375
  # @param RoleIds: 绑定角色的角色id列表
1376
1376
  # @type RoleIds: Array
@@ -1433,7 +1433,7 @@ module TencentCloud
1433
1433
  # @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
1434
1434
  # @param RoleId: 角色Id(非超管或法人角色Id)
1435
1435
  # @type RoleId: String
1436
- # @param UserIds: 用户列表
1436
+ # @param UserIds: 用户列表,电子签系统的UserId
1437
1437
  # @type UserIds: Array
1438
1438
  # @param Operator: 操作人信息
1439
1439
  # @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
@@ -1487,7 +1487,7 @@ module TencentCloud
1487
1487
  # @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
1488
1488
  # @param SealId: 指定印章ID
1489
1489
  # @type SealId: String
1490
- # @param UserIds: 指定用户ID数组
1490
+ # @param UserIds: 指定用户ID数组,电子签系统用户ID
1491
1491
  # @type UserIds: Array
1492
1492
  # @param Organization: 组织机构信息,不用传
1493
1493
  # @type Organization: :class:`Tencentcloud::Essbasic.v20210526.models.OrganizationInfo`
@@ -1911,19 +1911,19 @@ module TencentCloud
1911
1911
  # @type Status: String
1912
1912
  # @param SealId: 印章ID
1913
1913
  # @type SealId: String
1914
- # @param Operator: 操作者的信息
1915
- # @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
1916
1914
  # @param Reason: 更新印章状态原因说明
1917
1915
  # @type Reason: String
1916
+ # @param Operator: 操作者的信息
1917
+ # @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
1918
1918
 
1919
- attr_accessor :Agent, :Status, :SealId, :Operator, :Reason
1919
+ attr_accessor :Agent, :Status, :SealId, :Reason, :Operator
1920
1920
 
1921
- def initialize(agent=nil, status=nil, sealid=nil, operator=nil, reason=nil)
1921
+ def initialize(agent=nil, status=nil, sealid=nil, reason=nil, operator=nil)
1922
1922
  @Agent = agent
1923
1923
  @Status = status
1924
1924
  @SealId = sealid
1925
- @Operator = operator
1926
1925
  @Reason = reason
1926
+ @Operator = operator
1927
1927
  end
1928
1928
 
1929
1929
  def deserialize(params)
@@ -1933,11 +1933,11 @@ module TencentCloud
1933
1933
  end
1934
1934
  @Status = params['Status']
1935
1935
  @SealId = params['SealId']
1936
+ @Reason = params['Reason']
1936
1937
  unless params['Operator'].nil?
1937
1938
  @Operator = UserInfo.new
1938
1939
  @Operator.deserialize(params['Operator'])
1939
1940
  end
1940
- @Reason = params['Reason']
1941
1941
  end
1942
1942
  end
1943
1943
 
@@ -2042,7 +2042,7 @@ module TencentCloud
2042
2042
  # @type ApproverType: Integer
2043
2043
  # @param OrganizationId: 企业id
2044
2044
  # @type OrganizationId: String
2045
- # @param OrganizationOpenId: 企业OpenId,第三方应用集成非静默签子客企业签署人发起合同毕传
2045
+ # @param OrganizationOpenId: 企业OpenId,第三方应用集成非静默签子客企业签署人发起合同必传
2046
2046
  # @type OrganizationOpenId: String
2047
2047
  # @param OrganizationName: 企业名称,第三方应用集成非静默签子客企业签署人必传,saas企业签署人必传
2048
2048
  # @type OrganizationName: String
@@ -2507,7 +2507,7 @@ module TencentCloud
2507
2507
  # 4. 此链接仅单次有效,使用后需要再次创建新的链接(部分聊天软件,如企业微信默认会对链接进行解析,此时需要使用类似“代码片段”的方式或者放到txt文件里发送链接)
2508
2508
  # 5. 创建的链接应避免被转义,如:&被转义为\u0026;如使用Postman请求后,请选择响应类型为 JSON,否则链接将被转义
2509
2509
  # @type ConsoleUrl: String
2510
- # @param IsActivated: 子客企业是否已开通腾讯电子签
2510
+ # @param IsActivated: 子客企业是否已开通腾讯电子签,true-是,false-否
2511
2511
  # @type IsActivated: Boolean
2512
2512
  # @param ProxyOperatorIsVerified: 当前经办人是否已认证(false:未认证 true:已认证)
2513
2513
  # @type ProxyOperatorIsVerified: Boolean
@@ -3088,18 +3088,18 @@ module TencentCloud
3088
3088
  # @type QueryAllComponents: Boolean
3089
3089
  # @param TemplateName: 模糊搜索模板名称,最大长度200
3090
3090
  # @type TemplateName: String
3091
- # @param Operator: 操作者的信息
3092
- # @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
3093
3091
  # @param WithPreviewUrl: 是否获取模板预览链接
3094
3092
  # @type WithPreviewUrl: Boolean
3095
3093
  # @param WithPdfUrl: 是否获取模板的PDF文件链接- 第三方应用集成需要开启白名单时才能使用。
3096
3094
  # @type WithPdfUrl: Boolean
3097
- # @param ChannelTemplateId: 模板ID
3095
+ # @param ChannelTemplateId: 对应第三方应用平台企业的模板ID
3098
3096
  # @type ChannelTemplateId: String
3097
+ # @param Operator: 操作者的信息
3098
+ # @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
3099
3099
 
3100
- attr_accessor :Agent, :TemplateId, :ContentType, :Limit, :Offset, :QueryAllComponents, :TemplateName, :Operator, :WithPreviewUrl, :WithPdfUrl, :ChannelTemplateId
3100
+ attr_accessor :Agent, :TemplateId, :ContentType, :Limit, :Offset, :QueryAllComponents, :TemplateName, :WithPreviewUrl, :WithPdfUrl, :ChannelTemplateId, :Operator
3101
3101
 
3102
- def initialize(agent=nil, templateid=nil, contenttype=nil, limit=nil, offset=nil, queryallcomponents=nil, templatename=nil, operator=nil, withpreviewurl=nil, withpdfurl=nil, channeltemplateid=nil)
3102
+ def initialize(agent=nil, templateid=nil, contenttype=nil, limit=nil, offset=nil, queryallcomponents=nil, templatename=nil, withpreviewurl=nil, withpdfurl=nil, channeltemplateid=nil, operator=nil)
3103
3103
  @Agent = agent
3104
3104
  @TemplateId = templateid
3105
3105
  @ContentType = contenttype
@@ -3107,10 +3107,10 @@ module TencentCloud
3107
3107
  @Offset = offset
3108
3108
  @QueryAllComponents = queryallcomponents
3109
3109
  @TemplateName = templatename
3110
- @Operator = operator
3111
3110
  @WithPreviewUrl = withpreviewurl
3112
3111
  @WithPdfUrl = withpdfurl
3113
3112
  @ChannelTemplateId = channeltemplateid
3113
+ @Operator = operator
3114
3114
  end
3115
3115
 
3116
3116
  def deserialize(params)
@@ -3124,13 +3124,13 @@ module TencentCloud
3124
3124
  @Offset = params['Offset']
3125
3125
  @QueryAllComponents = params['QueryAllComponents']
3126
3126
  @TemplateName = params['TemplateName']
3127
+ @WithPreviewUrl = params['WithPreviewUrl']
3128
+ @WithPdfUrl = params['WithPdfUrl']
3129
+ @ChannelTemplateId = params['ChannelTemplateId']
3127
3130
  unless params['Operator'].nil?
3128
3131
  @Operator = UserInfo.new
3129
3132
  @Operator.deserialize(params['Operator'])
3130
3133
  end
3131
- @WithPreviewUrl = params['WithPreviewUrl']
3132
- @WithPdfUrl = params['WithPdfUrl']
3133
- @ChannelTemplateId = params['ChannelTemplateId']
3134
3134
  end
3135
3135
  end
3136
3136
 
@@ -3496,10 +3496,14 @@ module TencentCloud
3496
3496
  # @param ApproverSignTypes: 签署人签署合同时的认证方式
3497
3497
  # 1-人脸认证 2-签署密码 3-运营商三要素(默认为1,2)
3498
3498
  # @type ApproverSignTypes: Array
3499
+ # @param SignId: 签署ID
3500
+ # - 发起流程时系统自动补充
3501
+ # - 创建签署链接时,可以通过查询详情接口获得签署人的SignId,然后可传入此值为该签署人创建签署链接,无需再传姓名、手机号、证件号等其他信息
3502
+ # @type SignId: String
3499
3503
 
3500
- attr_accessor :Name, :IdCardType, :IdCardNumber, :Mobile, :OrganizationName, :NotChannelOrganization, :OpenId, :OrganizationOpenId, :ApproverType, :RecipientId, :Deadline, :CallbackUrl, :SignComponents, :ComponentLimitType, :PreReadTime, :JumpUrl, :ApproverOption, :ApproverNeedSignReview, :ApproverVerifyTypes, :ApproverSignTypes
3504
+ attr_accessor :Name, :IdCardType, :IdCardNumber, :Mobile, :OrganizationName, :NotChannelOrganization, :OpenId, :OrganizationOpenId, :ApproverType, :RecipientId, :Deadline, :CallbackUrl, :SignComponents, :ComponentLimitType, :PreReadTime, :JumpUrl, :ApproverOption, :ApproverNeedSignReview, :ApproverVerifyTypes, :ApproverSignTypes, :SignId
3501
3505
 
3502
- def initialize(name=nil, idcardtype=nil, idcardnumber=nil, mobile=nil, organizationname=nil, notchannelorganization=nil, openid=nil, organizationopenid=nil, approvertype=nil, recipientid=nil, deadline=nil, callbackurl=nil, signcomponents=nil, componentlimittype=nil, prereadtime=nil, jumpurl=nil, approveroption=nil, approverneedsignreview=nil, approververifytypes=nil, approversigntypes=nil)
3506
+ def initialize(name=nil, idcardtype=nil, idcardnumber=nil, mobile=nil, organizationname=nil, notchannelorganization=nil, openid=nil, organizationopenid=nil, approvertype=nil, recipientid=nil, deadline=nil, callbackurl=nil, signcomponents=nil, componentlimittype=nil, prereadtime=nil, jumpurl=nil, approveroption=nil, approverneedsignreview=nil, approververifytypes=nil, approversigntypes=nil, signid=nil)
3503
3507
  @Name = name
3504
3508
  @IdCardType = idcardtype
3505
3509
  @IdCardNumber = idcardnumber
@@ -3520,6 +3524,7 @@ module TencentCloud
3520
3524
  @ApproverNeedSignReview = approverneedsignreview
3521
3525
  @ApproverVerifyTypes = approververifytypes
3522
3526
  @ApproverSignTypes = approversigntypes
3527
+ @SignId = signid
3523
3528
  end
3524
3529
 
3525
3530
  def deserialize(params)
@@ -3553,6 +3558,7 @@ module TencentCloud
3553
3558
  @ApproverNeedSignReview = params['ApproverNeedSignReview']
3554
3559
  @ApproverVerifyTypes = params['ApproverVerifyTypes']
3555
3560
  @ApproverSignTypes = params['ApproverSignTypes']
3561
+ @SignId = params['SignId']
3556
3562
  end
3557
3563
  end
3558
3564
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-essbasic
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.586
4
+ version: 3.0.587
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-06-07 00:00:00.000000000 Z
11
+ date: 2023-06-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common