tencentcloud-sdk-essbasic 3.0.664 → 3.0.666

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20210526/models.rb +48 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bcf0becbe6b927ac626120905597218d9dae116c
4
- data.tar.gz: 699b33d28104944e8dfc5e7ca54c66a22e783314
3
+ metadata.gz: 2748c79f59fd9ee04ce68df4db3be7b702c73594
4
+ data.tar.gz: 533f8a56cf7141d16fea5015a561676b76f3593e
5
5
  SHA512:
6
- metadata.gz: 03203f229ca56ef7052d6881f64c0da713afbbf8d7c83381265e4b198a94f2166da80cafa68980b36433bc235cd1f6430c7d3121d8484727ae6da0299f98c9f0
7
- data.tar.gz: 089ac1a7adbcc5f6c42c1cedfd006871c144abe3f196d55d4c2f7e73a466a211dc9537001286378bd6990d18a1610d355309f18e4388f2d57ec7eee2fc98afff
6
+ metadata.gz: fe104c4a6b7d56270ff2e29b5d027a30bc357b107f33ab9cad7f1abf2502a0c943dc896d289ab68f969db39f775584d36e921b0e7675ecfc142041df82d73faf
7
+ data.tar.gz: 29d7fd8189fa5daadf0a85127133cd31bd611b33ec630bb2de1986744f2cf69d3fd2766cde444376063840356272b390aafe70039ee452c1f82b4789e0576ed3
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.664
1
+ 3.0.666
@@ -55,6 +55,34 @@ module TencentCloud
55
55
  end
56
56
  end
57
57
 
58
+ # 指定签署方经办人控件类型是个人印章签署控件(SIGN_SIGNATURE) 时,可选的签名方式。
59
+ class ApproverComponentLimitType < TencentCloud::Common::AbstractModel
60
+ # @param RecipientId: 签署方经办人在模板中配置的参与方ID,与控件绑定,是控件的归属方,ID为32位字符串。
61
+ # @type RecipientId: String
62
+ # @param Values: 签署方经办人控件类型是个人印章签署控件(SIGN_SIGNATURE) 时,可选的签名方式。
63
+
64
+ # 签名方式:
65
+ # <ul>
66
+ # <li>HANDWRITE-手写签名</li>
67
+ # <li>ESIGN-个人印章类型</li>
68
+ # <li>OCR_ESIGN-AI智能识别手写签名</li>
69
+ # <li>SYSTEM_ESIGN-系统签名</li>
70
+ # </ul>
71
+ # @type Values: Array
72
+
73
+ attr_accessor :RecipientId, :Values
74
+
75
+ def initialize(recipientid=nil, values=nil)
76
+ @RecipientId = recipientid
77
+ @Values = values
78
+ end
79
+
80
+ def deserialize(params)
81
+ @RecipientId = params['RecipientId']
82
+ @Values = params['Values']
83
+ end
84
+ end
85
+
58
86
  # 签署人个性化能力信息
59
87
  class ApproverOption < TencentCloud::Common::AbstractModel
60
88
  # @param HideOneKeySign: 是否隐藏一键签署 默认false-不隐藏true-隐藏
@@ -1439,8 +1467,10 @@ module TencentCloud
1439
1467
  # @type ApproverRestrictions: :class:`Tencentcloud::Essbasic.v20210526.models.ApproverRestriction`
1440
1468
  # @param Operator: 暂未开放
1441
1469
  # @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
1470
+ # @param ApproverComponentLimitTypes: 指定签署方经办人控件类型是个人印章签署控件(SIGN_SIGNATURE) 时,可选的签名方式。
1471
+ # @type ApproverComponentLimitTypes: Array
1442
1472
 
1443
- attr_accessor :Agent, :TemplateId, :FlowName, :MaxFlowNum, :FlowEffectiveDay, :QrEffectiveDay, :Restrictions, :CallbackUrl, :ApproverRestrictions, :Operator
1473
+ attr_accessor :Agent, :TemplateId, :FlowName, :MaxFlowNum, :FlowEffectiveDay, :QrEffectiveDay, :Restrictions, :CallbackUrl, :ApproverRestrictions, :Operator, :ApproverComponentLimitTypes
1444
1474
  extend Gem::Deprecate
1445
1475
  deprecate :CallbackUrl, :none, 2023, 9
1446
1476
  deprecate :CallbackUrl=, :none, 2023, 9
@@ -1449,7 +1479,7 @@ module TencentCloud
1449
1479
  deprecate :Operator, :none, 2023, 9
1450
1480
  deprecate :Operator=, :none, 2023, 9
1451
1481
 
1452
- def initialize(agent=nil, templateid=nil, flowname=nil, maxflownum=nil, floweffectiveday=nil, qreffectiveday=nil, restrictions=nil, callbackurl=nil, approverrestrictions=nil, operator=nil)
1482
+ def initialize(agent=nil, templateid=nil, flowname=nil, maxflownum=nil, floweffectiveday=nil, qreffectiveday=nil, restrictions=nil, callbackurl=nil, approverrestrictions=nil, operator=nil, approvercomponentlimittypes=nil)
1453
1483
  @Agent = agent
1454
1484
  @TemplateId = templateid
1455
1485
  @FlowName = flowname
@@ -1460,6 +1490,7 @@ module TencentCloud
1460
1490
  @CallbackUrl = callbackurl
1461
1491
  @ApproverRestrictions = approverrestrictions
1462
1492
  @Operator = operator
1493
+ @ApproverComponentLimitTypes = approvercomponentlimittypes
1463
1494
  end
1464
1495
 
1465
1496
  def deserialize(params)
@@ -1489,6 +1520,14 @@ module TencentCloud
1489
1520
  @Operator = UserInfo.new
1490
1521
  @Operator.deserialize(params['Operator'])
1491
1522
  end
1523
+ unless params['ApproverComponentLimitTypes'].nil?
1524
+ @ApproverComponentLimitTypes = []
1525
+ params['ApproverComponentLimitTypes'].each do |i|
1526
+ approvercomponentlimittype_tmp = ApproverComponentLimitType.new
1527
+ approvercomponentlimittype_tmp.deserialize(i)
1528
+ @ApproverComponentLimitTypes << approvercomponentlimittype_tmp
1529
+ end
1530
+ end
1492
1531
  end
1493
1532
  end
1494
1533
 
@@ -3299,7 +3338,7 @@ module TencentCloud
3299
3338
 
3300
3339
  # ComponentType为SIGN_SEAL类型时,支持以下参数:
3301
3340
  # 1.PageRanges:PageRange的数组,通过PageRanges属性设置该印章在PDF所有页面上盖章(适用于标书在所有页面盖章的情况)
3302
- # 参数样例: "ComponentExtra":"{["PageRange":{"BeginPage":1,"EndPage":-1}]}"
3341
+ # 参数样例: "ComponentExtra":"{"PageRange":[{"BeginPage":1,"EndPage":-1}]}"
3303
3342
  # @type ComponentExtra: String
3304
3343
  # @param ComponentValue: 控件填充vaule,ComponentType和传入值类型对应关系:
3305
3344
  # TEXT - 文本内容
@@ -4823,7 +4862,12 @@ module TencentCloud
4823
4862
  # PERSON_AUTO_SIGN-个人自动签署,适用于个人自动签场景
4824
4863
  # 注: 个人自动签场景为白名单功能, 使用前请联系对接的客户经理沟通。
4825
4864
  # ORGANIZATION-企业(企业签署方或模板发起时的企业静默签);
4826
- # ENTERPRISESERVER-企业静默签(文件发起时的企业静默签字)。
4865
+ # ENTERPRISESERVER-企业自动签(他方企业自动签署或文件发起时的本方企业自动签)
4866
+
4867
+ # 若要实现他方企业(同一应用下)自动签,需要满足3个条件:
4868
+ # 条件1:ApproverType 设置为ENTERPRISESERVER
4869
+ # 条件2:子客之间完成授权
4870
+ # 条件3:联系对接的客户经理沟通
4827
4871
  # @type ApproverType: String
4828
4872
  # @param RecipientId: 签署流程签署人在模板中对应的签署人Id;在非单方签署、以及非B2C签署的场景下必传,用于指定当前签署方在签署流程中的位置;
4829
4873
  # @type RecipientId: 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.664
4
+ version: 3.0.666
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-09-21 00:00:00.000000000 Z
11
+ date: 2023-09-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common