tencentcloud-sdk-essbasic 3.0.1142 → 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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20210526/models.rb +92 -13
- 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: 7d5e919992e32d71ef81ca36ca7f23f36a400fc7
|
4
|
+
data.tar.gz: c43d333d5a3c783b658726b90d8838e34cb36455
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef810e41c25a753e469b3b49b39b2763050b9f2e8d727a5f729f745f9fe88dd036758d071cd459812b79759248e1a2f11f1b2299899f0348d790452c6bf3d603
|
7
|
+
data.tar.gz: 942fae715cd849445ef69509c1a41848b61ed76cef687a0c3a9e078b9e7a77a244605e7e6858cbc6acdeca89cfe15c67ddb9f563e0ed0a0d0ccf313472a5103c
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1149
|
data/lib/v20210526/models.rb
CHANGED
@@ -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
|
@@ -8440,7 +8497,7 @@ module TencentCloud
|
|
8440
8497
|
|
8441
8498
|
# 设置为true之后, 返回参数PdfUrl,为模板PDF文件链接,有效期5分钟, 可以用于将PDF文件下载到本地
|
8442
8499
|
|
8443
|
-
# 注:
|
8500
|
+
# 注: `此功能需要开通功能白名单【第三方应用集成企业获取模板PDF下载链接】,使用前请联系对接的客户经理沟通。`
|
8444
8501
|
# @type WithPdfUrl: Boolean
|
8445
8502
|
# @param Operator: 操作者的信息
|
8446
8503
|
# @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
|
@@ -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.
|
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-
|
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
|