tencentcloud-sdk-ess 3.0.854 → 3.0.855
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/v20201111/models.rb +24 -5
- 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: 5ba70bf0619271ce8c108008ff72d6081d1205a5
|
|
4
|
+
data.tar.gz: 34133309cae0550b7761188a1a045ed7ccd754e1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3f5049e01d26eece7b10001bda4097024f6068a665bfcad289a3fe96c83832695775ce0951bb2b0cab510cf6c5a484e16b638c2b97970fd7a00c8bdafdb6ee68
|
|
7
|
+
data.tar.gz: e573f5cfe8816defae88aba564e05162959a7f06bad5909bd9fcb4e2986b4ed327e78dfefdf69290af2903549b15273e79c0970ccd07d0a92925e26cb011c361
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.855
|
data/lib/v20201111/models.rb
CHANGED
|
@@ -5497,6 +5497,11 @@ module TencentCloud
|
|
|
5497
5497
|
# @type IdCardType: String
|
|
5498
5498
|
# @param Mobile: 要实名的手机号,兼容带+86的格式
|
|
5499
5499
|
# @type Mobile: String
|
|
5500
|
+
# @param JumpUrl: 实名完之后的跳转链接,最大长度1000个字符。
|
|
5501
|
+
# 链接类型请参考 <a href="https://qian.tencent.com/developers/company/openqianh5" target="_blank">跳转电子签H5</a>。
|
|
5502
|
+
|
|
5503
|
+
# 注:此参数仅支持 Endpoint 为 <font color="red">H5 或 H5_SHORT_URL </font>的时候传递
|
|
5504
|
+
# @type JumpUrl: String
|
|
5500
5505
|
# @param Endpoint: 要跳转的链接类型
|
|
5501
5506
|
|
|
5502
5507
|
# - HTTP:
|
|
@@ -5508,27 +5513,34 @@ module TencentCloud
|
|
|
5508
5513
|
# - APP:
|
|
5509
5514
|
# 第三方APP或小程序跳转电子签小程序的path, APP或者小程序跳转适合此类型
|
|
5510
5515
|
|
|
5511
|
-
#
|
|
5516
|
+
# - H5:
|
|
5517
|
+
# 跳转电子签H5实名页面的长链
|
|
5518
|
+
|
|
5519
|
+
# - H5_SHORT_URL:
|
|
5520
|
+
# 跳转电子签H5实名页面的短链
|
|
5521
|
+
|
|
5522
|
+
# 注:如果不传递,默认值是 <font color="red"> APP </font>
|
|
5512
5523
|
# @type Endpoint: String
|
|
5513
5524
|
# @param AutoJumpBack: 签署完成后是否自动回跳
|
|
5514
5525
|
# <ul><li>false:否, 实名完成不会自动跳转回来(默认)</li><li>true:是, 实名完成会自动跳转回来</li></ul>
|
|
5515
5526
|
|
|
5516
5527
|
# 注:
|
|
5517
|
-
# 1. 该参数<font color="red">只针对APP
|
|
5528
|
+
# 1. 该参数<font color="red">只针对APP类型(第三方APP或小程序跳转电子签小程序)场景</font> 的实名链接有效
|
|
5518
5529
|
# 2. <font color="red">手机应用APP 或 微信小程序需要监控界面的返回走后序逻辑</font>, 微信小程序的文档可以参考[这个](https://developers.weixin.qq.com/miniprogram/dev/reference/api/App.html#onShow-Object-object)
|
|
5519
5530
|
# 3. <font color="red">电子签小程序跳转贵方APP,不支持自动跳转,必需用户手动点击完成按钮(微信的限制)</font>
|
|
5520
5531
|
# @type AutoJumpBack: Boolean
|
|
5521
5532
|
# @param UserData: 在用户完成实名认证后,其自定义数据将通过[企业引导个人实名认证后回调](https://qian.tencent.com/developers/company/callback_types_staffs/#%E5%8D%81%E4%BA%8C-%E4%BC%81%E4%B8%9A%E5%BC%95%E5%AF%BC%E4%B8%AA%E4%BA%BA%E5%AE%9E%E5%90%8D%E8%AE%A4%E8%AF%81%E5%90%8E%E5%9B%9E%E8%B0%83)返回,以便用户确认其个人数据信息。请注意,自定义数据的字符长度上限为1000,且必须采用base64编码格式。
|
|
5522
5533
|
# @type UserData: String
|
|
5523
5534
|
|
|
5524
|
-
attr_accessor :Operator, :Name, :IdCardNumber, :IdCardType, :Mobile, :Endpoint, :AutoJumpBack, :UserData
|
|
5535
|
+
attr_accessor :Operator, :Name, :IdCardNumber, :IdCardType, :Mobile, :JumpUrl, :Endpoint, :AutoJumpBack, :UserData
|
|
5525
5536
|
|
|
5526
|
-
def initialize(operator=nil, name=nil, idcardnumber=nil, idcardtype=nil, mobile=nil, endpoint=nil, autojumpback=nil, userdata=nil)
|
|
5537
|
+
def initialize(operator=nil, name=nil, idcardnumber=nil, idcardtype=nil, mobile=nil, jumpurl=nil, endpoint=nil, autojumpback=nil, userdata=nil)
|
|
5527
5538
|
@Operator = operator
|
|
5528
5539
|
@Name = name
|
|
5529
5540
|
@IdCardNumber = idcardnumber
|
|
5530
5541
|
@IdCardType = idcardtype
|
|
5531
5542
|
@Mobile = mobile
|
|
5543
|
+
@JumpUrl = jumpurl
|
|
5532
5544
|
@Endpoint = endpoint
|
|
5533
5545
|
@AutoJumpBack = autojumpback
|
|
5534
5546
|
@UserData = userdata
|
|
@@ -5543,6 +5555,7 @@ module TencentCloud
|
|
|
5543
5555
|
@IdCardNumber = params['IdCardNumber']
|
|
5544
5556
|
@IdCardType = params['IdCardType']
|
|
5545
5557
|
@Mobile = params['Mobile']
|
|
5558
|
+
@JumpUrl = params['JumpUrl']
|
|
5546
5559
|
@Endpoint = params['Endpoint']
|
|
5547
5560
|
@AutoJumpBack = params['AutoJumpBack']
|
|
5548
5561
|
@UserData = params['UserData']
|
|
@@ -5563,8 +5576,14 @@ module TencentCloud
|
|
|
5563
5576
|
# - 如果EndPoint是HTTP_SHORT_URL,
|
|
5564
5577
|
# 得到的链接类似于https://essurl.cn/2n**42Nd,点击后会跳转到腾讯电子签小程序进行签署
|
|
5565
5578
|
|
|
5579
|
+
# - 如果EndPoint是H5,
|
|
5580
|
+
# 得到的链接类似于 https://quick.test.qian.tencent.cn/guide?Code=yDU****VJhsS5q&CodeType=xxx&shortKey=yD*****frcb,点击后会跳转到腾讯电子签H5页面进行签署
|
|
5566
5581
|
|
|
5567
|
-
#
|
|
5582
|
+
# - 如果EndPoint是H5_SHORT_URL,
|
|
5583
|
+
# 得到的链接类似于https://essurl.cn/2n**42Nd,点击后会跳转到腾讯电子签H5页面进行签署
|
|
5584
|
+
|
|
5585
|
+
|
|
5586
|
+
# `注:` <font color="red">生成的链路后面不能再增加参数</font>
|
|
5568
5587
|
# 示例值:https://essurl.cn/2n**42Nd
|
|
5569
5588
|
# @type UserVerifyUrl: String
|
|
5570
5589
|
# @param ExpireTime: 链接过期时间
|
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.
|
|
4
|
+
version: 3.0.855
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-07-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|