tencentcloud-sdk-essbasic 3.0.945 → 3.0.946
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 +12 -2
- 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: 6177382723460c70036e7c9a1bc75fe39ea794a1
|
|
4
|
+
data.tar.gz: e441194bff626c7c5bb5ec7b1c7b0a9b3049d83a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 66e1432a600c0c7a7da390a29271a24d0f26a483af8def1b25054c5b327fcf1cd6c171c7f6f8f2c1a9d457cecc195c46c5130f2ab130b0f222d970c141db6074
|
|
7
|
+
data.tar.gz: 80be3b2f73a71e0f997ca18bac0178b64e061a2d4c63e2e2f39d13f3e106c6617383653e9e69e87681b8a32a92bebc639a8124bf6da8e543ff5a21a4f32874b8
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.946
|
data/lib/v20210526/models.rb
CHANGED
|
@@ -1152,10 +1152,18 @@ module TencentCloud
|
|
|
1152
1152
|
# @type OpenId: String
|
|
1153
1153
|
# @param OrganizationOpenId: 第三方平台子客企业的企业的标识, 即OrganizationOpenId,批签合同经办人为子客企业员工是为必填。
|
|
1154
1154
|
# @type OrganizationOpenId: String
|
|
1155
|
+
# @param AutoJumpBack: 签署完成后是否自动回跳
|
|
1156
|
+
# <ul><li>false:否, 签署完成不会自动跳转回来(默认)</li><li>true:是, 签署完成会自动跳转回来</li></ul>
|
|
1157
|
+
|
|
1158
|
+
# 注:
|
|
1159
|
+
# 1. 该参数<font color="red">只针对APP类型(电子签小程序跳转贵方小程序)场景</font> 的签署链接有效
|
|
1160
|
+
# 2. <font color="red">手机应用APP 或 微信小程序需要监控界面的返回走后序逻辑</font>, 微信小程序的文档可以参考[这个](https://developers.weixin.qq.com/miniprogram/dev/reference/api/App.html#onShow-Object-object)
|
|
1161
|
+
# 3. <font color="red">电子签小程序跳转贵方APP,不支持自动跳转,必需用户手动点击完成按钮(微信的限制)</font>
|
|
1162
|
+
# @type AutoJumpBack: Boolean
|
|
1155
1163
|
|
|
1156
|
-
attr_accessor :Agent, :Name, :Mobile, :Operator, :IdCardType, :IdCardNumber, :NotifyType, :FlowIds, :OrganizationName, :JumpToDetail, :FlowBatchUrlInfo, :OpenId, :OrganizationOpenId
|
|
1164
|
+
attr_accessor :Agent, :Name, :Mobile, :Operator, :IdCardType, :IdCardNumber, :NotifyType, :FlowIds, :OrganizationName, :JumpToDetail, :FlowBatchUrlInfo, :OpenId, :OrganizationOpenId, :AutoJumpBack
|
|
1157
1165
|
|
|
1158
|
-
def initialize(agent=nil, name=nil, mobile=nil, operator=nil, idcardtype=nil, idcardnumber=nil, notifytype=nil, flowids=nil, organizationname=nil, jumptodetail=nil, flowbatchurlinfo=nil, openid=nil, organizationopenid=nil)
|
|
1166
|
+
def initialize(agent=nil, name=nil, mobile=nil, operator=nil, idcardtype=nil, idcardnumber=nil, notifytype=nil, flowids=nil, organizationname=nil, jumptodetail=nil, flowbatchurlinfo=nil, openid=nil, organizationopenid=nil, autojumpback=nil)
|
|
1159
1167
|
@Agent = agent
|
|
1160
1168
|
@Name = name
|
|
1161
1169
|
@Mobile = mobile
|
|
@@ -1169,6 +1177,7 @@ module TencentCloud
|
|
|
1169
1177
|
@FlowBatchUrlInfo = flowbatchurlinfo
|
|
1170
1178
|
@OpenId = openid
|
|
1171
1179
|
@OrganizationOpenId = organizationopenid
|
|
1180
|
+
@AutoJumpBack = autojumpback
|
|
1172
1181
|
end
|
|
1173
1182
|
|
|
1174
1183
|
def deserialize(params)
|
|
@@ -1194,6 +1203,7 @@ module TencentCloud
|
|
|
1194
1203
|
end
|
|
1195
1204
|
@OpenId = params['OpenId']
|
|
1196
1205
|
@OrganizationOpenId = params['OrganizationOpenId']
|
|
1206
|
+
@AutoJumpBack = params['AutoJumpBack']
|
|
1197
1207
|
end
|
|
1198
1208
|
end
|
|
1199
1209
|
|
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.946
|
|
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-
|
|
11
|
+
date: 2024-11-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|