tencentcloud-sdk-essbasic 3.0.586 → 3.0.588
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20210526/client.rb +1 -0
- data/lib/v20210526/models.rb +63 -54
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7c09d4d2599798d32b10d6af3ebbfce8d1b2c1b1
|
|
4
|
+
data.tar.gz: 26f04d974bea9a554a94c7fcd8f3f305bd710848
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e8c1aab4b5936c00ed28be5c151f044f719ce1ca923133362f1a59689d4345d367cd3c2b6b6fac03b2b0ec467e3a3d890e820d93a966f2949f7678046a4a3fe0
|
|
7
|
+
data.tar.gz: 65aa81db7b5b4ff7dfcbf1efd20a0ba00c7cddf5759201496396c3b770802fda32677c9b4928cdf71d1c62600292564b33b301e40ab3414b74768a70fd20562b
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.588
|
data/lib/v20210526/client.rb
CHANGED
|
@@ -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`
|
data/lib/v20210526/models.rb
CHANGED
|
@@ -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
|
|
579
|
-
# @type
|
|
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 :
|
|
585
|
+
attr_accessor :Agent, :EmbedType, :BusinessId, :HiddenComponents, :Operator
|
|
586
586
|
|
|
587
|
-
def initialize(
|
|
588
|
-
@EmbedType = embedtype
|
|
587
|
+
def initialize(agent=nil, embedtype=nil, businessid=nil, hiddencomponents=nil, operator=nil)
|
|
589
588
|
@Agent = agent
|
|
590
|
-
@
|
|
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, :
|
|
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,
|
|
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,22 @@ 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
|
+
# 可以填写OpenId,系统会通过组织+渠道+OpenId查询得到UserId进行授权。
|
|
1315
1316
|
# @type UserIds: Array
|
|
1316
|
-
# @param Organization: 企业机构信息,不用传
|
|
1317
|
-
# @type Organization: :class:`Tencentcloud::Essbasic.v20210526.models.OrganizationInfo`
|
|
1318
1317
|
# @param Operator: 操作人(用户)信息,不用传
|
|
1319
1318
|
# @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
|
|
1319
|
+
# @param Organization: 企业机构信息,不用传
|
|
1320
|
+
# @type Organization: :class:`Tencentcloud::Essbasic.v20210526.models.OrganizationInfo`
|
|
1320
1321
|
|
|
1321
|
-
attr_accessor :Agent, :SealId, :UserIds, :
|
|
1322
|
+
attr_accessor :Agent, :SealId, :UserIds, :Operator, :Organization
|
|
1322
1323
|
|
|
1323
|
-
def initialize(agent=nil, sealid=nil, userids=nil,
|
|
1324
|
+
def initialize(agent=nil, sealid=nil, userids=nil, operator=nil, organization=nil)
|
|
1324
1325
|
@Agent = agent
|
|
1325
1326
|
@SealId = sealid
|
|
1326
1327
|
@UserIds = userids
|
|
1327
|
-
@Organization = organization
|
|
1328
1328
|
@Operator = operator
|
|
1329
|
+
@Organization = organization
|
|
1329
1330
|
end
|
|
1330
1331
|
|
|
1331
1332
|
def deserialize(params)
|
|
@@ -1335,20 +1336,21 @@ module TencentCloud
|
|
|
1335
1336
|
end
|
|
1336
1337
|
@SealId = params['SealId']
|
|
1337
1338
|
@UserIds = params['UserIds']
|
|
1338
|
-
unless params['Organization'].nil?
|
|
1339
|
-
@Organization = OrganizationInfo.new
|
|
1340
|
-
@Organization.deserialize(params['Organization'])
|
|
1341
|
-
end
|
|
1342
1339
|
unless params['Operator'].nil?
|
|
1343
1340
|
@Operator = UserInfo.new
|
|
1344
1341
|
@Operator.deserialize(params['Operator'])
|
|
1345
1342
|
end
|
|
1343
|
+
unless params['Organization'].nil?
|
|
1344
|
+
@Organization = OrganizationInfo.new
|
|
1345
|
+
@Organization.deserialize(params['Organization'])
|
|
1346
|
+
end
|
|
1346
1347
|
end
|
|
1347
1348
|
end
|
|
1348
1349
|
|
|
1349
1350
|
# ChannelCreateSealPolicy返回参数结构体
|
|
1350
1351
|
class ChannelCreateSealPolicyResponse < TencentCloud::Common::AbstractModel
|
|
1351
|
-
# @param UserIds:
|
|
1352
|
+
# @param UserIds: 最终授权成功的电子签系统用户ID数组。其他的跳过的是已经授权了的。
|
|
1353
|
+
# 请求参数填写OpenId时,返回授权成功的 Openid。
|
|
1352
1354
|
# @type UserIds: Array
|
|
1353
1355
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1354
1356
|
# @type RequestId: String
|
|
@@ -1370,7 +1372,7 @@ module TencentCloud
|
|
|
1370
1372
|
class ChannelCreateUserRolesRequest < TencentCloud::Common::AbstractModel
|
|
1371
1373
|
# @param Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 必填。
|
|
1372
1374
|
# @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
|
|
1373
|
-
# @param UserIds: 绑定角色的员工id
|
|
1375
|
+
# @param UserIds: 绑定角色的员工id列表,电子签的UserId
|
|
1374
1376
|
# @type UserIds: Array
|
|
1375
1377
|
# @param RoleIds: 绑定角色的角色id列表
|
|
1376
1378
|
# @type RoleIds: Array
|
|
@@ -1433,7 +1435,7 @@ module TencentCloud
|
|
|
1433
1435
|
# @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
|
|
1434
1436
|
# @param RoleId: 角色Id(非超管或法人角色Id)
|
|
1435
1437
|
# @type RoleId: String
|
|
1436
|
-
# @param UserIds:
|
|
1438
|
+
# @param UserIds: 用户列表,电子签系统的UserId
|
|
1437
1439
|
# @type UserIds: Array
|
|
1438
1440
|
# @param Operator: 操作人信息
|
|
1439
1441
|
# @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
|
|
@@ -1487,7 +1489,8 @@ module TencentCloud
|
|
|
1487
1489
|
# @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
|
|
1488
1490
|
# @param SealId: 指定印章ID
|
|
1489
1491
|
# @type SealId: String
|
|
1490
|
-
# @param UserIds: 指定用户ID
|
|
1492
|
+
# @param UserIds: 指定用户ID数组,电子签系统用户ID
|
|
1493
|
+
# 可以填写OpenId,系统会通过组织+渠道+OpenId查询得到UserId进行授权取消。
|
|
1491
1494
|
# @type UserIds: Array
|
|
1492
1495
|
# @param Organization: 组织机构信息,不用传
|
|
1493
1496
|
# @type Organization: :class:`Tencentcloud::Essbasic.v20210526.models.OrganizationInfo`
|
|
@@ -1911,19 +1914,19 @@ module TencentCloud
|
|
|
1911
1914
|
# @type Status: String
|
|
1912
1915
|
# @param SealId: 印章ID
|
|
1913
1916
|
# @type SealId: String
|
|
1914
|
-
# @param Operator: 操作者的信息
|
|
1915
|
-
# @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
|
|
1916
1917
|
# @param Reason: 更新印章状态原因说明
|
|
1917
1918
|
# @type Reason: String
|
|
1919
|
+
# @param Operator: 操作者的信息
|
|
1920
|
+
# @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
|
|
1918
1921
|
|
|
1919
|
-
attr_accessor :Agent, :Status, :SealId, :
|
|
1922
|
+
attr_accessor :Agent, :Status, :SealId, :Reason, :Operator
|
|
1920
1923
|
|
|
1921
|
-
def initialize(agent=nil, status=nil, sealid=nil,
|
|
1924
|
+
def initialize(agent=nil, status=nil, sealid=nil, reason=nil, operator=nil)
|
|
1922
1925
|
@Agent = agent
|
|
1923
1926
|
@Status = status
|
|
1924
1927
|
@SealId = sealid
|
|
1925
|
-
@Operator = operator
|
|
1926
1928
|
@Reason = reason
|
|
1929
|
+
@Operator = operator
|
|
1927
1930
|
end
|
|
1928
1931
|
|
|
1929
1932
|
def deserialize(params)
|
|
@@ -1933,11 +1936,11 @@ module TencentCloud
|
|
|
1933
1936
|
end
|
|
1934
1937
|
@Status = params['Status']
|
|
1935
1938
|
@SealId = params['SealId']
|
|
1939
|
+
@Reason = params['Reason']
|
|
1936
1940
|
unless params['Operator'].nil?
|
|
1937
1941
|
@Operator = UserInfo.new
|
|
1938
1942
|
@Operator.deserialize(params['Operator'])
|
|
1939
1943
|
end
|
|
1940
|
-
@Reason = params['Reason']
|
|
1941
1944
|
end
|
|
1942
1945
|
end
|
|
1943
1946
|
|
|
@@ -2042,7 +2045,7 @@ module TencentCloud
|
|
|
2042
2045
|
# @type ApproverType: Integer
|
|
2043
2046
|
# @param OrganizationId: 企业id
|
|
2044
2047
|
# @type OrganizationId: String
|
|
2045
|
-
# @param OrganizationOpenId: 企业OpenId
|
|
2048
|
+
# @param OrganizationOpenId: 企业OpenId,第三方应用集成非静默签子客企业签署人发起合同必传
|
|
2046
2049
|
# @type OrganizationOpenId: String
|
|
2047
2050
|
# @param OrganizationName: 企业名称,第三方应用集成非静默签子客企业签署人必传,saas企业签署人必传
|
|
2048
2051
|
# @type OrganizationName: String
|
|
@@ -2507,7 +2510,7 @@ module TencentCloud
|
|
|
2507
2510
|
# 4. 此链接仅单次有效,使用后需要再次创建新的链接(部分聊天软件,如企业微信默认会对链接进行解析,此时需要使用类似“代码片段”的方式或者放到txt文件里发送链接)
|
|
2508
2511
|
# 5. 创建的链接应避免被转义,如:&被转义为\u0026;如使用Postman请求后,请选择响应类型为 JSON,否则链接将被转义
|
|
2509
2512
|
# @type ConsoleUrl: String
|
|
2510
|
-
# @param IsActivated:
|
|
2513
|
+
# @param IsActivated: 子客企业是否已开通腾讯电子签,true-是,false-否
|
|
2511
2514
|
# @type IsActivated: Boolean
|
|
2512
2515
|
# @param ProxyOperatorIsVerified: 当前经办人是否已认证(false:未认证 true:已认证)
|
|
2513
2516
|
# @type ProxyOperatorIsVerified: Boolean
|
|
@@ -3088,18 +3091,18 @@ module TencentCloud
|
|
|
3088
3091
|
# @type QueryAllComponents: Boolean
|
|
3089
3092
|
# @param TemplateName: 模糊搜索模板名称,最大长度200
|
|
3090
3093
|
# @type TemplateName: String
|
|
3091
|
-
# @param Operator: 操作者的信息
|
|
3092
|
-
# @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
|
|
3093
3094
|
# @param WithPreviewUrl: 是否获取模板预览链接
|
|
3094
3095
|
# @type WithPreviewUrl: Boolean
|
|
3095
3096
|
# @param WithPdfUrl: 是否获取模板的PDF文件链接- 第三方应用集成需要开启白名单时才能使用。
|
|
3096
3097
|
# @type WithPdfUrl: Boolean
|
|
3097
|
-
# @param ChannelTemplateId:
|
|
3098
|
+
# @param ChannelTemplateId: 对应第三方应用平台企业的模板ID
|
|
3098
3099
|
# @type ChannelTemplateId: String
|
|
3100
|
+
# @param Operator: 操作者的信息
|
|
3101
|
+
# @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
|
|
3099
3102
|
|
|
3100
|
-
attr_accessor :Agent, :TemplateId, :ContentType, :Limit, :Offset, :QueryAllComponents, :TemplateName, :
|
|
3103
|
+
attr_accessor :Agent, :TemplateId, :ContentType, :Limit, :Offset, :QueryAllComponents, :TemplateName, :WithPreviewUrl, :WithPdfUrl, :ChannelTemplateId, :Operator
|
|
3101
3104
|
|
|
3102
|
-
def initialize(agent=nil, templateid=nil, contenttype=nil, limit=nil, offset=nil, queryallcomponents=nil, templatename=nil,
|
|
3105
|
+
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
3106
|
@Agent = agent
|
|
3104
3107
|
@TemplateId = templateid
|
|
3105
3108
|
@ContentType = contenttype
|
|
@@ -3107,10 +3110,10 @@ module TencentCloud
|
|
|
3107
3110
|
@Offset = offset
|
|
3108
3111
|
@QueryAllComponents = queryallcomponents
|
|
3109
3112
|
@TemplateName = templatename
|
|
3110
|
-
@Operator = operator
|
|
3111
3113
|
@WithPreviewUrl = withpreviewurl
|
|
3112
3114
|
@WithPdfUrl = withpdfurl
|
|
3113
3115
|
@ChannelTemplateId = channeltemplateid
|
|
3116
|
+
@Operator = operator
|
|
3114
3117
|
end
|
|
3115
3118
|
|
|
3116
3119
|
def deserialize(params)
|
|
@@ -3124,13 +3127,13 @@ module TencentCloud
|
|
|
3124
3127
|
@Offset = params['Offset']
|
|
3125
3128
|
@QueryAllComponents = params['QueryAllComponents']
|
|
3126
3129
|
@TemplateName = params['TemplateName']
|
|
3130
|
+
@WithPreviewUrl = params['WithPreviewUrl']
|
|
3131
|
+
@WithPdfUrl = params['WithPdfUrl']
|
|
3132
|
+
@ChannelTemplateId = params['ChannelTemplateId']
|
|
3127
3133
|
unless params['Operator'].nil?
|
|
3128
3134
|
@Operator = UserInfo.new
|
|
3129
3135
|
@Operator.deserialize(params['Operator'])
|
|
3130
3136
|
end
|
|
3131
|
-
@WithPreviewUrl = params['WithPreviewUrl']
|
|
3132
|
-
@WithPdfUrl = params['WithPdfUrl']
|
|
3133
|
-
@ChannelTemplateId = params['ChannelTemplateId']
|
|
3134
3137
|
end
|
|
3135
3138
|
end
|
|
3136
3139
|
|
|
@@ -3496,10 +3499,14 @@ module TencentCloud
|
|
|
3496
3499
|
# @param ApproverSignTypes: 签署人签署合同时的认证方式
|
|
3497
3500
|
# 1-人脸认证 2-签署密码 3-运营商三要素(默认为1,2)
|
|
3498
3501
|
# @type ApproverSignTypes: Array
|
|
3502
|
+
# @param SignId: 签署ID
|
|
3503
|
+
# - 发起流程时系统自动补充
|
|
3504
|
+
# - 创建签署链接时,可以通过查询详情接口获得签署人的SignId,然后可传入此值为该签署人创建签署链接,无需再传姓名、手机号、证件号等其他信息
|
|
3505
|
+
# @type SignId: String
|
|
3499
3506
|
|
|
3500
|
-
attr_accessor :Name, :IdCardType, :IdCardNumber, :Mobile, :OrganizationName, :NotChannelOrganization, :OpenId, :OrganizationOpenId, :ApproverType, :RecipientId, :Deadline, :CallbackUrl, :SignComponents, :ComponentLimitType, :PreReadTime, :JumpUrl, :ApproverOption, :ApproverNeedSignReview, :ApproverVerifyTypes, :ApproverSignTypes
|
|
3507
|
+
attr_accessor :Name, :IdCardType, :IdCardNumber, :Mobile, :OrganizationName, :NotChannelOrganization, :OpenId, :OrganizationOpenId, :ApproverType, :RecipientId, :Deadline, :CallbackUrl, :SignComponents, :ComponentLimitType, :PreReadTime, :JumpUrl, :ApproverOption, :ApproverNeedSignReview, :ApproverVerifyTypes, :ApproverSignTypes, :SignId
|
|
3501
3508
|
|
|
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)
|
|
3509
|
+
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
3510
|
@Name = name
|
|
3504
3511
|
@IdCardType = idcardtype
|
|
3505
3512
|
@IdCardNumber = idcardnumber
|
|
@@ -3520,6 +3527,7 @@ module TencentCloud
|
|
|
3520
3527
|
@ApproverNeedSignReview = approverneedsignreview
|
|
3521
3528
|
@ApproverVerifyTypes = approververifytypes
|
|
3522
3529
|
@ApproverSignTypes = approversigntypes
|
|
3530
|
+
@SignId = signid
|
|
3523
3531
|
end
|
|
3524
3532
|
|
|
3525
3533
|
def deserialize(params)
|
|
@@ -3553,6 +3561,7 @@ module TencentCloud
|
|
|
3553
3561
|
@ApproverNeedSignReview = params['ApproverNeedSignReview']
|
|
3554
3562
|
@ApproverVerifyTypes = params['ApproverVerifyTypes']
|
|
3555
3563
|
@ApproverSignTypes = params['ApproverSignTypes']
|
|
3564
|
+
@SignId = params['SignId']
|
|
3556
3565
|
end
|
|
3557
3566
|
end
|
|
3558
3567
|
|
|
@@ -4181,7 +4190,7 @@ module TencentCloud
|
|
|
4181
4190
|
|
|
4182
4191
|
# OperateChannelTemplate请求参数结构体
|
|
4183
4192
|
class OperateChannelTemplateRequest < TencentCloud::Common::AbstractModel
|
|
4184
|
-
# @param Agent: 应用相关信息。 此接口Agent.
|
|
4193
|
+
# @param Agent: 应用相关信息。 此接口Agent.AppId必填。
|
|
4185
4194
|
# @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
|
|
4186
4195
|
# @param OperateType: 操作类型,查询:"SELECT",删除:"DELETE",更新:"UPDATE"
|
|
4187
4196
|
# @type OperateType: String
|
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.
|
|
4
|
+
version: 3.0.588
|
|
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-
|
|
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
|