tencentcloud-sdk-essbasic 3.0.795 → 3.0.796
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 +13 -3
- 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: 52cf11c1a7918690eb798fb01b02df391bb0cf88
|
4
|
+
data.tar.gz: ba0d5e1ef90ac258149dd9d677605b2882865bf6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5b4129e18bdf07445f6c4eac31defb74965985d20bb02159728b4a67ce2ad4d613e53d68352d8f26051036b300de5f5767e9750b9e9eaef2a0ffe1e63ee8b05e
|
7
|
+
data.tar.gz: c9f1ffd35408eff2cc14def3ca33ca31ea432bb35ccc7731dda7bba46443c11600ec4a8fd7a5d793256be048ab0bf3eb9a7826df35bb87a77e64d8a5955cb3a6
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.796
|
data/lib/v20210526/models.rb
CHANGED
@@ -5888,7 +5888,13 @@ module TencentCloud
|
|
5888
5888
|
# 注:
|
5889
5889
|
# 如果传进来的<font color="red">OpenId已经实名并且加入企业, 则忽略Name,IdCardType,IdCardNumber,Mobile这四个入参</font>(会用此OpenId实名的身份证和登录的手机号覆盖)
|
5890
5890
|
# @type OpenId: String
|
5891
|
-
# @param AutoJumpBack:
|
5891
|
+
# @param AutoJumpBack: 签署完成后是否自动回跳
|
5892
|
+
# <ul><li>false:否, 签署完成不会自动跳转回来(默认)</li><li>true:是, 签署完成会自动跳转回来</li></ul>
|
5893
|
+
|
5894
|
+
# 注:
|
5895
|
+
# 1. 该参数<font color="red">只针对APP类型(电子签小程序跳转贵方小程序)场景</font> 的签署链接有效
|
5896
|
+
# 2. <font color="red">手机应用APP 或 微信小程序需要监控界面的返回走后序逻辑</font>, 微信小程序的文档可以参考[这个](https://developers.weixin.qq.com/miniprogram/dev/reference/api/App.html#onShow-Object-object)
|
5897
|
+
# 3. <font color="red">电子签小程序跳转贵方APP,不支持自动跳转,必需用户手动点击完成按钮(微信的限制)</font>
|
5892
5898
|
# @type AutoJumpBack: Boolean
|
5893
5899
|
# @param JumpUrl: 签署完之后的H5页面的跳转链接,针对Endpoint为CHANNEL时有效,最大长度1000个字符。
|
5894
5900
|
# @type JumpUrl: String
|
@@ -9501,10 +9507,12 @@ module TencentCloud
|
|
9501
9507
|
# @type AdminIdCardNumber: String
|
9502
9508
|
# @param BusinessLicense: 营业执照正面照(PNG或JPG) base64格式, 大小不超过5M
|
9503
9509
|
# @type BusinessLicense: String
|
9510
|
+
# @param PowerOfAttorneys: 授权书(PNG或JPG或PDF) base64格式, 大小不超过8M
|
9511
|
+
# @type PowerOfAttorneys: Array
|
9504
9512
|
|
9505
|
-
attr_accessor :OrganizationName, :OrganizationOpenId, :OpenId, :UniformSocialCreditCode, :LegalName, :Address, :AdminName, :AdminMobile, :AuthorizationTypes, :AdminIdCardType, :AdminIdCardNumber, :BusinessLicense
|
9513
|
+
attr_accessor :OrganizationName, :OrganizationOpenId, :OpenId, :UniformSocialCreditCode, :LegalName, :Address, :AdminName, :AdminMobile, :AuthorizationTypes, :AdminIdCardType, :AdminIdCardNumber, :BusinessLicense, :PowerOfAttorneys
|
9506
9514
|
|
9507
|
-
def initialize(organizationname=nil, organizationopenid=nil, openid=nil, uniformsocialcreditcode=nil, legalname=nil, address=nil, adminname=nil, adminmobile=nil, authorizationtypes=nil, adminidcardtype=nil, adminidcardnumber=nil, businesslicense=nil)
|
9515
|
+
def initialize(organizationname=nil, organizationopenid=nil, openid=nil, uniformsocialcreditcode=nil, legalname=nil, address=nil, adminname=nil, adminmobile=nil, authorizationtypes=nil, adminidcardtype=nil, adminidcardnumber=nil, businesslicense=nil, powerofattorneys=nil)
|
9508
9516
|
@OrganizationName = organizationname
|
9509
9517
|
@OrganizationOpenId = organizationopenid
|
9510
9518
|
@OpenId = openid
|
@@ -9517,6 +9525,7 @@ module TencentCloud
|
|
9517
9525
|
@AdminIdCardType = adminidcardtype
|
9518
9526
|
@AdminIdCardNumber = adminidcardnumber
|
9519
9527
|
@BusinessLicense = businesslicense
|
9528
|
+
@PowerOfAttorneys = powerofattorneys
|
9520
9529
|
end
|
9521
9530
|
|
9522
9531
|
def deserialize(params)
|
@@ -9532,6 +9541,7 @@ module TencentCloud
|
|
9532
9541
|
@AdminIdCardType = params['AdminIdCardType']
|
9533
9542
|
@AdminIdCardNumber = params['AdminIdCardNumber']
|
9534
9543
|
@BusinessLicense = params['BusinessLicense']
|
9544
|
+
@PowerOfAttorneys = params['PowerOfAttorneys']
|
9535
9545
|
end
|
9536
9546
|
end
|
9537
9547
|
|
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.796
|
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-04-
|
11
|
+
date: 2024-04-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|