tencentcloud-sdk-ess 3.0.1147 → 3.0.1149

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/v20201111/models.rb +95 -13
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cbf5b7a0c58294b255ac8a5ccf1b88ac2c45bb81
4
- data.tar.gz: 52be0aad5cb1307b09ed516e726c74d77d735fb9
3
+ metadata.gz: 589d6c1e9de456f55ba6d71d2170177ebbb50a6f
4
+ data.tar.gz: b00d5e1277d191a5be411cb2c42a021bd9a6dfdf
5
5
  SHA512:
6
- metadata.gz: 93630b4e03a702730409455f63b12526c84fc1c9a147cc455c0edadf0e2eb370568886c7b3ecac6ded46e5032bc9761a8840b6eb4c88a9fdeabd2063d8798f91
7
- data.tar.gz: e8d6c6a7da04529f6cfdeb8b22dee791cbf7075be56f453b4ed070458282f16691e07e8851f3e8e00ff9528c4563a770af21448dc32288cd194c25e977c6a03d
6
+ metadata.gz: 5659dcfe5161cb7932fedf288ae473328042897bf52574aff24c68fd5a7fb7c8b9d6e0b152f1ee573275e90b99114a358c008b11f70ce49ae83fd4521a03abed
7
+ data.tar.gz: a383d264b24c82c33f6cee3e8beb9b7ffb951c988af4cca1a4dd4ce94ab7dbf9e56bc0fd345988f563ac1885314bb4e1d60890f620c6eea2c72a641a37edd06d
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1147
1
+ 3.0.1149
@@ -6700,10 +6700,12 @@ module TencentCloud
6700
6700
  # @param Agent: 代理企业和员工的信息。
6701
6701
  # 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
6702
6702
  # @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
6703
+ # @param Options: 个性化配置字段,默认不传。
6704
+ # @type Options: Array
6703
6705
 
6704
- attr_accessor :Operator, :Users, :SealId, :Expired, :UserIds, :Policy, :Agent
6706
+ attr_accessor :Operator, :Users, :SealId, :Expired, :UserIds, :Policy, :Agent, :Options
6705
6707
 
6706
- def initialize(operator=nil, users=nil, sealid=nil, expired=nil, userids=nil, policy=nil, agent=nil)
6708
+ def initialize(operator=nil, users=nil, sealid=nil, expired=nil, userids=nil, policy=nil, agent=nil, options=nil)
6707
6709
  @Operator = operator
6708
6710
  @Users = users
6709
6711
  @SealId = sealid
@@ -6711,6 +6713,7 @@ module TencentCloud
6711
6713
  @UserIds = userids
6712
6714
  @Policy = policy
6713
6715
  @Agent = agent
6716
+ @Options = options
6714
6717
  end
6715
6718
 
6716
6719
  def deserialize(params)
@@ -6734,6 +6737,14 @@ module TencentCloud
6734
6737
  @Agent = Agent.new
6735
6738
  @Agent.deserialize(params['Agent'])
6736
6739
  end
6740
+ unless params['Options'].nil?
6741
+ @Options = []
6742
+ params['Options'].each do |i|
6743
+ option_tmp = Option.new
6744
+ option_tmp.deserialize(i)
6745
+ @Options << option_tmp
6746
+ end
6747
+ end
6737
6748
  end
6738
6749
  end
6739
6750
 
@@ -6742,18 +6753,26 @@ module TencentCloud
6742
6753
  # @param UserIds: 最终授权成功的用户ID,在腾讯电子签平台的唯一身份标识,为32位字符串。
6743
6754
  # 可登录腾讯电子签控制台,在 "更多能力"->"组织管理" 中查看某位员工的UserId(在页面中展示为用户ID)。
6744
6755
  # @type UserIds: Array
6756
+ # @param SealOperatorVerifyPath: 人脸验证操作人链接,用法可以参考"[跳转电子签小程序配置](https://qian.tencent.com/developers/company/openwxminiprogram/)",默认为空。
6757
+ # @type SealOperatorVerifyPath: String
6758
+ # @param SealOperatorVerifyQrcodeUrl: 人脸验证操作人二维码链接,扫码后会跳转到腾讯电子签小程序进行人脸验证,默认为空。
6759
+ # @type SealOperatorVerifyQrcodeUrl: String
6745
6760
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6746
6761
  # @type RequestId: String
6747
6762
 
6748
- attr_accessor :UserIds, :RequestId
6763
+ attr_accessor :UserIds, :SealOperatorVerifyPath, :SealOperatorVerifyQrcodeUrl, :RequestId
6749
6764
 
6750
- def initialize(userids=nil, requestid=nil)
6765
+ def initialize(userids=nil, sealoperatorverifypath=nil, sealoperatorverifyqrcodeurl=nil, requestid=nil)
6751
6766
  @UserIds = userids
6767
+ @SealOperatorVerifyPath = sealoperatorverifypath
6768
+ @SealOperatorVerifyQrcodeUrl = sealoperatorverifyqrcodeurl
6752
6769
  @RequestId = requestid
6753
6770
  end
6754
6771
 
6755
6772
  def deserialize(params)
6756
6773
  @UserIds = params['UserIds']
6774
+ @SealOperatorVerifyPath = params['SealOperatorVerifyPath']
6775
+ @SealOperatorVerifyQrcodeUrl = params['SealOperatorVerifyQrcodeUrl']
6757
6776
  @RequestId = params['RequestId']
6758
6777
  end
6759
6778
  end
@@ -6820,10 +6839,12 @@ module TencentCloud
6820
6839
  # @type TaxIdentifyCode: String
6821
6840
  # @param SealDescription: 印章描述内容
6822
6841
  # @type SealDescription: String
6842
+ # @param Options: 个性化配置字段,默认不传。
6843
+ # @type Options: Array
6823
6844
 
6824
- attr_accessor :Operator, :SealName, :Agent, :GenerateSource, :SealType, :FileName, :Image, :Width, :Height, :Color, :SealHorizontalText, :SealChordText, :SealCentralType, :FileToken, :SealStyle, :SealSize, :TaxIdentifyCode, :SealDescription
6845
+ attr_accessor :Operator, :SealName, :Agent, :GenerateSource, :SealType, :FileName, :Image, :Width, :Height, :Color, :SealHorizontalText, :SealChordText, :SealCentralType, :FileToken, :SealStyle, :SealSize, :TaxIdentifyCode, :SealDescription, :Options
6825
6846
 
6826
- def initialize(operator=nil, sealname=nil, agent=nil, generatesource=nil, sealtype=nil, filename=nil, image=nil, width=nil, height=nil, color=nil, sealhorizontaltext=nil, sealchordtext=nil, sealcentraltype=nil, filetoken=nil, sealstyle=nil, sealsize=nil, taxidentifycode=nil, sealdescription=nil)
6847
+ def initialize(operator=nil, sealname=nil, agent=nil, generatesource=nil, sealtype=nil, filename=nil, image=nil, width=nil, height=nil, color=nil, sealhorizontaltext=nil, sealchordtext=nil, sealcentraltype=nil, filetoken=nil, sealstyle=nil, sealsize=nil, taxidentifycode=nil, sealdescription=nil, options=nil)
6827
6848
  @Operator = operator
6828
6849
  @SealName = sealname
6829
6850
  @Agent = agent
@@ -6842,6 +6863,7 @@ module TencentCloud
6842
6863
  @SealSize = sealsize
6843
6864
  @TaxIdentifyCode = taxidentifycode
6844
6865
  @SealDescription = sealdescription
6866
+ @Options = options
6845
6867
  end
6846
6868
 
6847
6869
  def deserialize(params)
@@ -6869,6 +6891,14 @@ module TencentCloud
6869
6891
  @SealSize = params['SealSize']
6870
6892
  @TaxIdentifyCode = params['TaxIdentifyCode']
6871
6893
  @SealDescription = params['SealDescription']
6894
+ unless params['Options'].nil?
6895
+ @Options = []
6896
+ params['Options'].each do |i|
6897
+ option_tmp = Option.new
6898
+ option_tmp.deserialize(i)
6899
+ @Options << option_tmp
6900
+ end
6901
+ end
6872
6902
  end
6873
6903
  end
6874
6904
 
@@ -6878,18 +6908,26 @@ module TencentCloud
6878
6908
  # 建议开发者保留此印章ID,后续指定签署区印章或者操作印章需此印章ID。
6879
6909
  # 可登录腾讯电子签控制台,在 "印章"->"印章中心"选择查看的印章,在"印章详情" 中查看某个印章的SealId(在页面中展示为印章ID)。
6880
6910
  # @type SealId: String
6911
+ # @param SealOperatorVerifyPath: 人脸验证操作人链接,用法可以参考"[跳转电子签小程序配置](https://qian.tencent.com/developers/company/openwxminiprogram/)",默认为空。
6912
+ # @type SealOperatorVerifyPath: String
6913
+ # @param SealOperatorVerifyQrcodeUrl: 人脸验证操作人二维码链接,扫码后会跳转到腾讯电子签小程序进行人脸验证,默认为空。
6914
+ # @type SealOperatorVerifyQrcodeUrl: String
6881
6915
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6882
6916
  # @type RequestId: String
6883
6917
 
6884
- attr_accessor :SealId, :RequestId
6918
+ attr_accessor :SealId, :SealOperatorVerifyPath, :SealOperatorVerifyQrcodeUrl, :RequestId
6885
6919
 
6886
- def initialize(sealid=nil, requestid=nil)
6920
+ def initialize(sealid=nil, sealoperatorverifypath=nil, sealoperatorverifyqrcodeurl=nil, requestid=nil)
6887
6921
  @SealId = sealid
6922
+ @SealOperatorVerifyPath = sealoperatorverifypath
6923
+ @SealOperatorVerifyQrcodeUrl = sealoperatorverifyqrcodeurl
6888
6924
  @RequestId = requestid
6889
6925
  end
6890
6926
 
6891
6927
  def deserialize(params)
6892
6928
  @SealId = params['SealId']
6929
+ @SealOperatorVerifyPath = params['SealOperatorVerifyPath']
6930
+ @SealOperatorVerifyQrcodeUrl = params['SealOperatorVerifyQrcodeUrl']
6893
6931
  @RequestId = params['RequestId']
6894
6932
  end
6895
6933
  end
@@ -12948,8 +12986,11 @@ module TencentCloud
12948
12986
  # @param ForbidEditFlow: 小程序集成发起,是否禁止发起时修改合同内容
12949
12987
  # <ul>
12950
12988
  # <li>false:默认值,不禁止发起时修改合同内容</li>
12951
- # <li>true:禁止发起时修改合同内容</li>
12989
+ # <li>true:禁止发起时修改合同内容(将直接跳过添加/编辑签署人步骤,直接到核对合同信息页面</li>
12952
12990
  # </ul>
12991
+ # 指定为true,效果如下:
12992
+
12993
+ # 效果如下:![ForbidEditFlow](https://qcloudimg.tencent-cloud.cn/raw/2440eca624f2f6730fecbf69daad0533.jpg)
12953
12994
  # @type ForbidEditFlow: Boolean
12954
12995
 
12955
12996
  attr_accessor :RemindedOn, :NeedCreateReview, :FlowDisplayType, :ForbidEditFlow
@@ -13560,14 +13601,17 @@ module TencentCloud
13560
13601
  # @type Act: Integer
13561
13602
  # @param SealIds: 需要操作的印章ID,数组形式,印章ID可从【web控制台->印章 】获取。
13562
13603
  # @type SealIds: Array
13604
+ # @param Options: 个性化配置字段,默认不传。
13605
+ # @type Options: Array
13563
13606
 
13564
- attr_accessor :Operator, :Agent, :Act, :SealIds
13607
+ attr_accessor :Operator, :Agent, :Act, :SealIds, :Options
13565
13608
 
13566
- def initialize(operator=nil, agent=nil, act=nil, sealids=nil)
13609
+ def initialize(operator=nil, agent=nil, act=nil, sealids=nil, options=nil)
13567
13610
  @Operator = operator
13568
13611
  @Agent = agent
13569
13612
  @Act = act
13570
13613
  @SealIds = sealids
13614
+ @Options = options
13571
13615
  end
13572
13616
 
13573
13617
  def deserialize(params)
@@ -13581,21 +13625,37 @@ module TencentCloud
13581
13625
  end
13582
13626
  @Act = params['Act']
13583
13627
  @SealIds = params['SealIds']
13628
+ unless params['Options'].nil?
13629
+ @Options = []
13630
+ params['Options'].each do |i|
13631
+ option_tmp = Option.new
13632
+ option_tmp.deserialize(i)
13633
+ @Options << option_tmp
13634
+ end
13635
+ end
13584
13636
  end
13585
13637
  end
13586
13638
 
13587
13639
  # OperateSeals返回参数结构体
13588
13640
  class OperateSealsResponse < TencentCloud::Common::AbstractModel
13641
+ # @param SealOperatorVerifyPath: 人脸验证操作人链接,用法可以参考"[跳转电子签小程序配置](https://qian.tencent.com/developers/company/openwxminiprogram/)",默认为空。
13642
+ # @type SealOperatorVerifyPath: String
13643
+ # @param SealOperatorVerifyQrcodeUrl: 人脸验证操作人二维码链接,扫码后会跳转到腾讯电子签小程序进行人脸验证,默认为空。
13644
+ # @type SealOperatorVerifyQrcodeUrl: String
13589
13645
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
13590
13646
  # @type RequestId: String
13591
13647
 
13592
- attr_accessor :RequestId
13648
+ attr_accessor :SealOperatorVerifyPath, :SealOperatorVerifyQrcodeUrl, :RequestId
13593
13649
 
13594
- def initialize(requestid=nil)
13650
+ def initialize(sealoperatorverifypath=nil, sealoperatorverifyqrcodeurl=nil, requestid=nil)
13651
+ @SealOperatorVerifyPath = sealoperatorverifypath
13652
+ @SealOperatorVerifyQrcodeUrl = sealoperatorverifyqrcodeurl
13595
13653
  @RequestId = requestid
13596
13654
  end
13597
13655
 
13598
13656
  def deserialize(params)
13657
+ @SealOperatorVerifyPath = params['SealOperatorVerifyPath']
13658
+ @SealOperatorVerifyQrcodeUrl = params['SealOperatorVerifyQrcodeUrl']
13599
13659
  @RequestId = params['RequestId']
13600
13660
  end
13601
13661
  end
@@ -13671,6 +13731,28 @@ module TencentCloud
13671
13731
  end
13672
13732
  end
13673
13733
 
13734
+ # 业务逻辑个性化配置字段,默认不传
13735
+
13736
+ # 注: `配置前请联系对接的客户经理沟通确认。`
13737
+ class Option < TencentCloud::Common::AbstractModel
13738
+ # @param Key: 个性化配置参数Key字段,对应传入字段的字段名
13739
+ # @type Key: String
13740
+ # @param Value: 个性化配置参数Value字段,对应传入字段的字段值
13741
+ # @type Value: String
13742
+
13743
+ attr_accessor :Key, :Value
13744
+
13745
+ def initialize(key=nil, value=nil)
13746
+ @Key = key
13747
+ @Value = value
13748
+ end
13749
+
13750
+ def deserialize(params)
13751
+ @Key = params['Key']
13752
+ @Value = params['Value']
13753
+ end
13754
+ end
13755
+
13674
13756
  # 企业套餐余额情况
13675
13757
  class OrgBillSummary < TencentCloud::Common::AbstractModel
13676
13758
  # @param Total: 套餐总数
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-ess
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1147
4
+ version: 3.0.1149
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-09-25 00:00:00.000000000 Z
11
+ date: 2025-09-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common