tencentcloud-sdk-essbasic 3.0.1145 → 3.0.1150

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: 6c716f178416c7cdf406f437df66b612e00035df
4
- data.tar.gz: cbf74184c9d4f2d0a23d14d7d4d376ab1a8fe9c0
3
+ metadata.gz: 84b1e6c195f0818a2328327829c0d9657625fe1a
4
+ data.tar.gz: a906227f7e8876368df46bd34a2daf3d7445e84a
5
5
  SHA512:
6
- metadata.gz: 4f1d377cf8ebaf3db172da98df6f42d00ddd8f5e4d2ff420e3f7f6a85557f8d8036fc9eddc618e42c78b117409c75101218de7c461d3a39788dfd37e6d8c117e
7
- data.tar.gz: 96fcb24e8b57c2fd5dc59f88da9684cec6da329d88ddab8bc167c5b506a637d34bfdcff374205efc06ff4b52eaecca18ce628df572c649aa2d2ec80e8cb564fa
6
+ metadata.gz: 704e8ca56c9b3eb6fdc4730f2476c758e3fbd00c10baa16fc6b8b4cbea826d2760600d04e1f4853af6d552bee10e097efb4126e68b6b214d8b8dbce27d247b0a
7
+ data.tar.gz: abb6ec6db7628f3d429b17d6a9c6ccc4b603e26a31a13c4d52c4d7fc14db02e8cce8dde2c4e0c31f2704894aa90ef61db476549e20d2c435867e4c27b25c381c
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1145
1
+ 3.0.1150
@@ -2,12 +2,12 @@
2
2
 
3
3
  require 'tencentcloud-sdk-common'
4
4
 
5
- require_relative 'v20210526/client'
6
- require_relative 'v20210526/models'
7
-
8
5
  require_relative 'v20201222/client'
9
6
  require_relative 'v20201222/models'
10
7
 
8
+ require_relative 'v20210526/client'
9
+ require_relative 'v20210526/models'
10
+
11
11
  module TencentCloud
12
12
  module Essbasic
13
13
  end
@@ -3336,20 +3336,23 @@ module TencentCloud
3336
3336
  # @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
3337
3337
  # @param Organization: 企业机构信息,不用传
3338
3338
  # @type Organization: :class:`Tencentcloud::Essbasic.v20210526.models.OrganizationInfo`
3339
+ # @param Options: 个性化配置字段,默认不传。
3340
+ # @type Options: Array
3339
3341
 
3340
- attr_accessor :Agent, :SealId, :UserIds, :Operator, :Organization
3342
+ attr_accessor :Agent, :SealId, :UserIds, :Operator, :Organization, :Options
3341
3343
  extend Gem::Deprecate
3342
3344
  deprecate :Operator, :none, 2025, 9
3343
3345
  deprecate :Operator=, :none, 2025, 9
3344
3346
  deprecate :Organization, :none, 2025, 9
3345
3347
  deprecate :Organization=, :none, 2025, 9
3346
3348
 
3347
- def initialize(agent=nil, sealid=nil, userids=nil, operator=nil, organization=nil)
3349
+ def initialize(agent=nil, sealid=nil, userids=nil, operator=nil, organization=nil, options=nil)
3348
3350
  @Agent = agent
3349
3351
  @SealId = sealid
3350
3352
  @UserIds = userids
3351
3353
  @Operator = operator
3352
3354
  @Organization = organization
3355
+ @Options = options
3353
3356
  end
3354
3357
 
3355
3358
  def deserialize(params)
@@ -3367,6 +3370,14 @@ module TencentCloud
3367
3370
  @Organization = OrganizationInfo.new
3368
3371
  @Organization.deserialize(params['Organization'])
3369
3372
  end
3373
+ unless params['Options'].nil?
3374
+ @Options = []
3375
+ params['Options'].each do |i|
3376
+ option_tmp = Option.new
3377
+ option_tmp.deserialize(i)
3378
+ @Options << option_tmp
3379
+ end
3380
+ end
3370
3381
  end
3371
3382
  end
3372
3383
 
@@ -3375,18 +3386,26 @@ module TencentCloud
3375
3386
  # @param UserIds: 最终授权成功的电子签系统用户ID数组。其他的跳过的是已经授权了的。
3376
3387
  # 请求参数填写OpenId时,返回授权成功的 Openid。
3377
3388
  # @type UserIds: Array
3389
+ # @param SealOperatorVerifyPath: 人脸验证操作人链接,用法可以参考"[跳转电子签小程序配置](https://qian.tencent.com/developers/company/openwxminiprogram/)",默认为空。
3390
+ # @type SealOperatorVerifyPath: String
3391
+ # @param SealOperatorVerifyQrcodeUrl: 人脸验证操作人二维码链接,扫码后会跳转到腾讯电子签小程序进行人脸验证,默认为空。
3392
+ # @type SealOperatorVerifyQrcodeUrl: String
3378
3393
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3379
3394
  # @type RequestId: String
3380
3395
 
3381
- attr_accessor :UserIds, :RequestId
3396
+ attr_accessor :UserIds, :SealOperatorVerifyPath, :SealOperatorVerifyQrcodeUrl, :RequestId
3382
3397
 
3383
- def initialize(userids=nil, requestid=nil)
3398
+ def initialize(userids=nil, sealoperatorverifypath=nil, sealoperatorverifyqrcodeurl=nil, requestid=nil)
3384
3399
  @UserIds = userids
3400
+ @SealOperatorVerifyPath = sealoperatorverifypath
3401
+ @SealOperatorVerifyQrcodeUrl = sealoperatorverifyqrcodeurl
3385
3402
  @RequestId = requestid
3386
3403
  end
3387
3404
 
3388
3405
  def deserialize(params)
3389
3406
  @UserIds = params['UserIds']
3407
+ @SealOperatorVerifyPath = params['SealOperatorVerifyPath']
3408
+ @SealOperatorVerifyQrcodeUrl = params['SealOperatorVerifyQrcodeUrl']
3390
3409
  @RequestId = params['RequestId']
3391
3410
  end
3392
3411
  end
@@ -4959,18 +4978,21 @@ module TencentCloud
4959
4978
  # @type Reason: String
4960
4979
  # @param Operator: 操作者的信息
4961
4980
  # @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
4981
+ # @param Options: 个性化配置字段,默认不传。
4982
+ # @type Options: Array
4962
4983
 
4963
- attr_accessor :Agent, :Status, :SealId, :Reason, :Operator
4984
+ attr_accessor :Agent, :Status, :SealId, :Reason, :Operator, :Options
4964
4985
  extend Gem::Deprecate
4965
4986
  deprecate :Operator, :none, 2025, 9
4966
4987
  deprecate :Operator=, :none, 2025, 9
4967
4988
 
4968
- def initialize(agent=nil, status=nil, sealid=nil, reason=nil, operator=nil)
4989
+ def initialize(agent=nil, status=nil, sealid=nil, reason=nil, operator=nil, options=nil)
4969
4990
  @Agent = agent
4970
4991
  @Status = status
4971
4992
  @SealId = sealid
4972
4993
  @Reason = reason
4973
4994
  @Operator = operator
4995
+ @Options = options
4974
4996
  end
4975
4997
 
4976
4998
  def deserialize(params)
@@ -4985,21 +5007,37 @@ module TencentCloud
4985
5007
  @Operator = UserInfo.new
4986
5008
  @Operator.deserialize(params['Operator'])
4987
5009
  end
5010
+ unless params['Options'].nil?
5011
+ @Options = []
5012
+ params['Options'].each do |i|
5013
+ option_tmp = Option.new
5014
+ option_tmp.deserialize(i)
5015
+ @Options << option_tmp
5016
+ end
5017
+ end
4988
5018
  end
4989
5019
  end
4990
5020
 
4991
5021
  # ChannelUpdateSealStatus返回参数结构体
4992
5022
  class ChannelUpdateSealStatusResponse < TencentCloud::Common::AbstractModel
5023
+ # @param SealOperatorVerifyPath: 人脸验证操作人链接,用法可以参考"[跳转电子签小程序配置](https://qian.tencent.com/developers/company/openwxminiprogram/)",默认为空。
5024
+ # @type SealOperatorVerifyPath: String
5025
+ # @param SealOperatorVerifyQrcodeUrl: 人脸验证操作人二维码链接,扫码后会跳转到腾讯电子签小程序进行人脸验证,默认为空。
5026
+ # @type SealOperatorVerifyQrcodeUrl: String
4993
5027
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4994
5028
  # @type RequestId: String
4995
5029
 
4996
- attr_accessor :RequestId
5030
+ attr_accessor :SealOperatorVerifyPath, :SealOperatorVerifyQrcodeUrl, :RequestId
4997
5031
 
4998
- def initialize(requestid=nil)
5032
+ def initialize(sealoperatorverifypath=nil, sealoperatorverifyqrcodeurl=nil, requestid=nil)
5033
+ @SealOperatorVerifyPath = sealoperatorverifypath
5034
+ @SealOperatorVerifyQrcodeUrl = sealoperatorverifyqrcodeurl
4999
5035
  @RequestId = requestid
5000
5036
  end
5001
5037
 
5002
5038
  def deserialize(params)
5039
+ @SealOperatorVerifyPath = params['SealOperatorVerifyPath']
5040
+ @SealOperatorVerifyQrcodeUrl = params['SealOperatorVerifyQrcodeUrl']
5003
5041
  @RequestId = params['RequestId']
5004
5042
  end
5005
5043
  end
@@ -7309,13 +7347,15 @@ module TencentCloud
7309
7347
  # @type TaxIdentifyCode: String
7310
7348
  # @param SealDescription: 印章描述内容
7311
7349
  # @type SealDescription: String
7350
+ # @param Options: 个性化配置字段,默认不传。
7351
+ # @type Options: Array
7312
7352
 
7313
- attr_accessor :Agent, :SealName, :SealImage, :Operator, :GenerateSource, :SealType, :SealHorizontalText, :SealStyle, :SealSize, :TaxIdentifyCode, :SealDescription
7353
+ attr_accessor :Agent, :SealName, :SealImage, :Operator, :GenerateSource, :SealType, :SealHorizontalText, :SealStyle, :SealSize, :TaxIdentifyCode, :SealDescription, :Options
7314
7354
  extend Gem::Deprecate
7315
7355
  deprecate :Operator, :none, 2025, 9
7316
7356
  deprecate :Operator=, :none, 2025, 9
7317
7357
 
7318
- def initialize(agent=nil, sealname=nil, sealimage=nil, operator=nil, generatesource=nil, sealtype=nil, sealhorizontaltext=nil, sealstyle=nil, sealsize=nil, taxidentifycode=nil, sealdescription=nil)
7358
+ def initialize(agent=nil, sealname=nil, sealimage=nil, operator=nil, generatesource=nil, sealtype=nil, sealhorizontaltext=nil, sealstyle=nil, sealsize=nil, taxidentifycode=nil, sealdescription=nil, options=nil)
7319
7359
  @Agent = agent
7320
7360
  @SealName = sealname
7321
7361
  @SealImage = sealimage
@@ -7327,6 +7367,7 @@ module TencentCloud
7327
7367
  @SealSize = sealsize
7328
7368
  @TaxIdentifyCode = taxidentifycode
7329
7369
  @SealDescription = sealdescription
7370
+ @Options = options
7330
7371
  end
7331
7372
 
7332
7373
  def deserialize(params)
@@ -7347,6 +7388,14 @@ module TencentCloud
7347
7388
  @SealSize = params['SealSize']
7348
7389
  @TaxIdentifyCode = params['TaxIdentifyCode']
7349
7390
  @SealDescription = params['SealDescription']
7391
+ unless params['Options'].nil?
7392
+ @Options = []
7393
+ params['Options'].each do |i|
7394
+ option_tmp = Option.new
7395
+ option_tmp.deserialize(i)
7396
+ @Options << option_tmp
7397
+ end
7398
+ end
7350
7399
  end
7351
7400
  end
7352
7401
 
@@ -7359,20 +7408,28 @@ module TencentCloud
7359
7408
 
7360
7409
  # 注:`图片上传生成的电子印章无预览链接地址`
7361
7410
  # @type ImageUrl: String
7411
+ # @param SealOperatorVerifyPath: 人脸验证操作人链接,用法可以参考"[跳转电子签小程序配置](https://qian.tencent.com/developers/company/openwxminiprogram/)",默认为空。
7412
+ # @type SealOperatorVerifyPath: String
7413
+ # @param SealOperatorVerifyQrcodeUrl: 人脸验证操作人二维码链接,扫码后会跳转到腾讯电子签小程序进行人脸验证,默认为空。
7414
+ # @type SealOperatorVerifyQrcodeUrl: String
7362
7415
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7363
7416
  # @type RequestId: String
7364
7417
 
7365
- attr_accessor :SealId, :ImageUrl, :RequestId
7418
+ attr_accessor :SealId, :ImageUrl, :SealOperatorVerifyPath, :SealOperatorVerifyQrcodeUrl, :RequestId
7366
7419
 
7367
- def initialize(sealid=nil, imageurl=nil, requestid=nil)
7420
+ def initialize(sealid=nil, imageurl=nil, sealoperatorverifypath=nil, sealoperatorverifyqrcodeurl=nil, requestid=nil)
7368
7421
  @SealId = sealid
7369
7422
  @ImageUrl = imageurl
7423
+ @SealOperatorVerifyPath = sealoperatorverifypath
7424
+ @SealOperatorVerifyQrcodeUrl = sealoperatorverifyqrcodeurl
7370
7425
  @RequestId = requestid
7371
7426
  end
7372
7427
 
7373
7428
  def deserialize(params)
7374
7429
  @SealId = params['SealId']
7375
7430
  @ImageUrl = params['ImageUrl']
7431
+ @SealOperatorVerifyPath = params['SealOperatorVerifyPath']
7432
+ @SealOperatorVerifyQrcodeUrl = params['SealOperatorVerifyQrcodeUrl']
7376
7433
  @RequestId = params['RequestId']
7377
7434
  end
7378
7435
  end
@@ -11409,6 +11466,28 @@ module TencentCloud
11409
11466
  end
11410
11467
  end
11411
11468
 
11469
+ # 业务逻辑个性化配置字段,默认不传
11470
+
11471
+ # 注: `配置前请联系对接的客户经理沟通确认。`
11472
+ class Option < TencentCloud::Common::AbstractModel
11473
+ # @param Key: 个性化配置参数Key字段,对应传入字段的字段名
11474
+ # @type Key: String
11475
+ # @param Value: 个性化配置参数Value字段,对应传入字段的字段值
11476
+ # @type Value: String
11477
+
11478
+ attr_accessor :Key, :Value
11479
+
11480
+ def initialize(key=nil, value=nil)
11481
+ @Key = key
11482
+ @Value = value
11483
+ end
11484
+
11485
+ def deserialize(params)
11486
+ @Key = params['Key']
11487
+ @Value = params['Value']
11488
+ end
11489
+ end
11490
+
11412
11491
  # 企业批量注册链接信息
11413
11492
  class OrganizationAuthUrl < TencentCloud::Common::AbstractModel
11414
11493
  # @param AuthUrl: 跳转链接, 链接的有效期根据企业,员工状态和终端等有区别, 可以参考下表
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.1145
4
+ version: 3.0.1150
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-23 00:00:00.000000000 Z
11
+ date: 2025-09-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -34,10 +34,10 @@ extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
36
  - lib/tencentcloud-sdk-essbasic.rb
37
- - lib/v20210526/client.rb
38
- - lib/v20210526/models.rb
39
37
  - lib/v20201222/client.rb
40
38
  - lib/v20201222/models.rb
39
+ - lib/v20210526/client.rb
40
+ - lib/v20210526/models.rb
41
41
  - lib/VERSION
42
42
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
43
43
  licenses: