tencentcloud-sdk-essbasic 3.0.637 → 3.0.639
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 -1
- data/lib/v20210526/models.rb +51 -14
- 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: a6eabc2c31b1012da68e6b6a784232a5aa92f65d
|
4
|
+
data.tar.gz: 919cfe7f385fe1330174a318c67c0751222d4c52
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 394ce36713a86a77d4544cd73b723ad64703c281f6b3475cabf8c8c3d35e2a26ea186e7c44e24c3cd9783b88ec3d21e8f663a29b67fa2ef4688f62a53e347b7a
|
7
|
+
data.tar.gz: 4b48994a7ac58ea50e4f85d0faa6ee1ac008df925a2feb2666d41154129eedd3d76a5ccbe574834b6280ee1c0867ebaa6b40a174e3cf8992dfb852c68cd2b9ce
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.639
|
data/lib/v20210526/client.rb
CHANGED
@@ -483,7 +483,7 @@ module TencentCloud
|
|
483
483
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
484
484
|
end
|
485
485
|
|
486
|
-
# 本接口(ChannelCreatePreparedPersonalEsign
|
486
|
+
# 本接口(ChannelCreatePreparedPersonalEsign)用于创建导入个人印章(处方单场景专用,使用此接口请与客户经理确认)。
|
487
487
|
|
488
488
|
# @param request: Request instance for ChannelCreatePreparedPersonalEsign.
|
489
489
|
# @type request: :class:`Tencentcloud::essbasic::V20210526::ChannelCreatePreparedPersonalEsignRequest`
|
data/lib/v20210526/models.rb
CHANGED
@@ -631,7 +631,7 @@ module TencentCloud
|
|
631
631
|
# @type ResourceType: String
|
632
632
|
# @param ResourceName: 资源名称,长度限制为256字符
|
633
633
|
# @type ResourceName: String
|
634
|
-
# @param ResourceId:
|
634
|
+
# @param ResourceId: 文件Id,通过UploadFiles获取
|
635
635
|
# @type ResourceId: String
|
636
636
|
# @param Operator: 调用方用户信息,不用传
|
637
637
|
# @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
|
@@ -935,19 +935,22 @@ module TencentCloud
|
|
935
935
|
# MobileCheck:手机号验证
|
936
936
|
# 参数说明:若选择后者,未实名的个人签署方查看合同时,无需进行人脸识别实名认证(但签署合同时仍然需要人脸实名),该能力仅适用于个人签署方。
|
937
937
|
# @type ApproverVerifyType: String
|
938
|
+
# @param FlowGroupOptions: 合同组的配置项信息包括:在合同组签署过程中,是否需要对每个子合同进行独立的意愿确认。
|
939
|
+
# @type FlowGroupOptions: :class:`Tencentcloud::Essbasic.v20210526.models.FlowGroupOptions`
|
938
940
|
# @param Operator: 操作者的信息,此参数不用传
|
939
941
|
# @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
|
940
942
|
|
941
|
-
attr_accessor :FlowFileInfos, :FlowGroupName, :Agent, :ApproverVerifyType, :Operator
|
943
|
+
attr_accessor :FlowFileInfos, :FlowGroupName, :Agent, :ApproverVerifyType, :FlowGroupOptions, :Operator
|
942
944
|
extend Gem::Deprecate
|
943
945
|
deprecate :Operator, :none, 2023, 8
|
944
946
|
deprecate :Operator=, :none, 2023, 8
|
945
947
|
|
946
|
-
def initialize(flowfileinfos=nil, flowgroupname=nil, agent=nil, approververifytype=nil, operator=nil)
|
948
|
+
def initialize(flowfileinfos=nil, flowgroupname=nil, agent=nil, approververifytype=nil, flowgroupoptions=nil, operator=nil)
|
947
949
|
@FlowFileInfos = flowfileinfos
|
948
950
|
@FlowGroupName = flowgroupname
|
949
951
|
@Agent = agent
|
950
952
|
@ApproverVerifyType = approververifytype
|
953
|
+
@FlowGroupOptions = flowgroupoptions
|
951
954
|
@Operator = operator
|
952
955
|
end
|
953
956
|
|
@@ -966,6 +969,10 @@ module TencentCloud
|
|
966
969
|
@Agent.deserialize(params['Agent'])
|
967
970
|
end
|
968
971
|
@ApproverVerifyType = params['ApproverVerifyType']
|
972
|
+
unless params['FlowGroupOptions'].nil?
|
973
|
+
@FlowGroupOptions = FlowGroupOptions.new
|
974
|
+
@FlowGroupOptions.deserialize(params['FlowGroupOptions'])
|
975
|
+
end
|
969
976
|
unless params['Operator'].nil?
|
970
977
|
@Operator = UserInfo.new
|
971
978
|
@Operator.deserialize(params['Operator'])
|
@@ -1501,9 +1508,9 @@ module TencentCloud
|
|
1501
1508
|
|
1502
1509
|
# ChannelCreatePrepareFlow返回参数结构体
|
1503
1510
|
class ChannelCreatePrepareFlowResponse < TencentCloud::Common::AbstractModel
|
1504
|
-
# @param PrepareFlowUrl:
|
1511
|
+
# @param PrepareFlowUrl: 预发起的合同链接, 可以直接点击进入进行合同发起
|
1505
1512
|
# @type PrepareFlowUrl: String
|
1506
|
-
# @param PreviewFlowUrl:
|
1513
|
+
# @param PreviewFlowUrl: 合同发起后预览链接, 注意此时合同并未发起,仅只是展示效果
|
1507
1514
|
# @type PreviewFlowUrl: String
|
1508
1515
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1509
1516
|
# @type RequestId: String
|
@@ -1527,33 +1534,36 @@ module TencentCloud
|
|
1527
1534
|
class ChannelCreatePreparedPersonalEsignRequest < TencentCloud::Common::AbstractModel
|
1528
1535
|
# @param Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 必填。
|
1529
1536
|
# @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
|
1530
|
-
# @param UserName:
|
1537
|
+
# @param UserName: 个人用户姓名
|
1531
1538
|
# @type UserName: String
|
1532
1539
|
# @param IdCardNumber: 身份证件号码
|
1533
1540
|
# @type IdCardNumber: String
|
1534
|
-
# @param SealImage: 印章图片的base64
|
1535
|
-
# @type SealImage: String
|
1536
1541
|
# @param SealName: 印章名称
|
1537
1542
|
# @type SealName: String
|
1543
|
+
# @param SealImage: 印章图片的base64,最大不超过 8M
|
1544
|
+
# @type SealImage: String
|
1538
1545
|
# @param Operator: 操作者信息
|
1539
1546
|
# @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
|
1540
1547
|
# @param IdCardType: 身份证件类型
|
1541
1548
|
# @type IdCardType: String
|
1549
|
+
# @param SealImageCompress: 是否开启印章图片压缩处理,默认不开启,如需开启请设置为 true。当印章超过 2M 时建议开启,开启后图片的 hash 将发生变化。
|
1550
|
+
# @type SealImageCompress: Boolean
|
1542
1551
|
# @param Mobile: 手机号码;当需要开通自动签时,该参数必传
|
1543
1552
|
# @type Mobile: String
|
1544
1553
|
# @param EnableAutoSign: 是否开通自动签,该功能需联系运营工作人员开通后使用
|
1545
1554
|
# @type EnableAutoSign: Boolean
|
1546
1555
|
|
1547
|
-
attr_accessor :Agent, :UserName, :IdCardNumber, :
|
1556
|
+
attr_accessor :Agent, :UserName, :IdCardNumber, :SealName, :SealImage, :Operator, :IdCardType, :SealImageCompress, :Mobile, :EnableAutoSign
|
1548
1557
|
|
1549
|
-
def initialize(agent=nil, username=nil, idcardnumber=nil,
|
1558
|
+
def initialize(agent=nil, username=nil, idcardnumber=nil, sealname=nil, sealimage=nil, operator=nil, idcardtype=nil, sealimagecompress=nil, mobile=nil, enableautosign=nil)
|
1550
1559
|
@Agent = agent
|
1551
1560
|
@UserName = username
|
1552
1561
|
@IdCardNumber = idcardnumber
|
1553
|
-
@SealImage = sealimage
|
1554
1562
|
@SealName = sealname
|
1563
|
+
@SealImage = sealimage
|
1555
1564
|
@Operator = operator
|
1556
1565
|
@IdCardType = idcardtype
|
1566
|
+
@SealImageCompress = sealimagecompress
|
1557
1567
|
@Mobile = mobile
|
1558
1568
|
@EnableAutoSign = enableautosign
|
1559
1569
|
end
|
@@ -1565,13 +1575,14 @@ module TencentCloud
|
|
1565
1575
|
end
|
1566
1576
|
@UserName = params['UserName']
|
1567
1577
|
@IdCardNumber = params['IdCardNumber']
|
1568
|
-
@SealImage = params['SealImage']
|
1569
1578
|
@SealName = params['SealName']
|
1579
|
+
@SealImage = params['SealImage']
|
1570
1580
|
unless params['Operator'].nil?
|
1571
1581
|
@Operator = UserInfo.new
|
1572
1582
|
@Operator.deserialize(params['Operator'])
|
1573
1583
|
end
|
1574
1584
|
@IdCardType = params['IdCardType']
|
1585
|
+
@SealImageCompress = params['SealImageCompress']
|
1575
1586
|
@Mobile = params['Mobile']
|
1576
1587
|
@EnableAutoSign = params['EnableAutoSign']
|
1577
1588
|
end
|
@@ -3336,7 +3347,7 @@ module TencentCloud
|
|
3336
3347
|
class CreateFlowsByTemplatesRequest < TencentCloud::Common::AbstractModel
|
3337
3348
|
# @param Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 均必填。
|
3338
3349
|
# @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
|
3339
|
-
# @param FlowInfos:
|
3350
|
+
# @param FlowInfos: 要创建的合同信息列表,最多支持一次创建20个合同
|
3340
3351
|
# @type FlowInfos: Array
|
3341
3352
|
# @param NeedPreview: 是否为预览模式;默认为false,即非预览模式,此时发起合同并返回FlowIds;若为预览模式,不会发起合同,会返回PreviewUrls;
|
3342
3353
|
# 预览链接有效期300秒;
|
@@ -3386,7 +3397,7 @@ module TencentCloud
|
|
3386
3397
|
class CreateFlowsByTemplatesResponse < TencentCloud::Common::AbstractModel
|
3387
3398
|
# @param FlowIds: 多个合同ID
|
3388
3399
|
# @type FlowIds: Array
|
3389
|
-
# @param CustomerData:
|
3400
|
+
# @param CustomerData: 第三方应用平台的业务信息, 与创建合同的FlowInfos数组中的CustomerData一一对应
|
3390
3401
|
# @type CustomerData: Array
|
3391
3402
|
# @param ErrorMessages: 创建消息,对应多个合同ID,
|
3392
3403
|
# 成功为“”,创建失败则对应失败消息
|
@@ -4630,6 +4641,32 @@ module TencentCloud
|
|
4630
4641
|
end
|
4631
4642
|
end
|
4632
4643
|
|
4644
|
+
# 合同组的配置项信息包括:在合同组签署过程中,是否需要对每个子合同进行独立的意愿确认。
|
4645
|
+
class FlowGroupOptions < TencentCloud::Common::AbstractModel
|
4646
|
+
# @param SelfOrganizationApproverSignEach: 发起方企业经办人(即签署人为发起方企业员工)是否需要对子合同进行独立的意愿确认:
|
4647
|
+
# fasle:发起方企业经办人签署时对所有子合同进行统一的意愿确认
|
4648
|
+
# true:发起方企业经办人签署时需要对子合同进行独立的意愿确认
|
4649
|
+
# 默认为fasle。
|
4650
|
+
# @type SelfOrganizationApproverSignEach: Boolean
|
4651
|
+
# @param OtherApproverSignEach: 非发起方企业经办人(即:签署人为个人或者不为发起方企业的员工)是否需要对子合同进行独立的意愿确认:
|
4652
|
+
# fasle:非发起方企业经办人签署时对所有子合同进行统一的意愿确认
|
4653
|
+
# true:非发起方企业经办人签署时需要对子合同进行独立的意愿确认
|
4654
|
+
# 默认为false。
|
4655
|
+
# @type OtherApproverSignEach: Boolean
|
4656
|
+
|
4657
|
+
attr_accessor :SelfOrganizationApproverSignEach, :OtherApproverSignEach
|
4658
|
+
|
4659
|
+
def initialize(selforganizationapproversigneach=nil, otherapproversigneach=nil)
|
4660
|
+
@SelfOrganizationApproverSignEach = selforganizationapproversigneach
|
4661
|
+
@OtherApproverSignEach = otherapproversigneach
|
4662
|
+
end
|
4663
|
+
|
4664
|
+
def deserialize(params)
|
4665
|
+
@SelfOrganizationApproverSignEach = params['SelfOrganizationApproverSignEach']
|
4666
|
+
@OtherApproverSignEach = params['OtherApproverSignEach']
|
4667
|
+
end
|
4668
|
+
end
|
4669
|
+
|
4633
4670
|
# 此结构体 (FlowInfo) 用于描述签署流程信息。
|
4634
4671
|
|
4635
4672
|
# 【数据表格传参说明】
|
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.639
|
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-08-
|
11
|
+
date: 2023-08-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|