tencentcloud-sdk-essbasic 3.0.722 → 3.0.723
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 +19 -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: 5bc0936d1d4c74c706303abe9910c69f39b8b155
|
4
|
+
data.tar.gz: 5fce772aa91c87ebc1ea97a8ba0f83aeb2aafa96
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9056dc3e244965132fb6664e0ef2b7dc0e8389c216e5d2060167ba8e5914fb7a2c7c55e85c8f69bfefcc7883a4f28393b1bedc1cea047a13dfe01fe7e503dd77
|
7
|
+
data.tar.gz: 98afbe26b923d4b78375aed699ee2dbf4de8e5a5436c0df9a8f9c95e47d61ff85f8cfb5b68cefc69a38393e763ff2d004ff85214800fc0b519c55efe9feed150
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.723
|
data/lib/v20210526/models.rb
CHANGED
@@ -7256,7 +7256,7 @@ module TencentCloud
|
|
7256
7256
|
# "columnStart":1,
|
7257
7257
|
# "columnEnd":1,
|
7258
7258
|
# "content":"123",
|
7259
|
-
# "style":
|
7259
|
+
# "style": {"color": "#b50000", "fontSize": 12,"bold": true,"align": "CENTER"}
|
7260
7260
|
# },
|
7261
7261
|
# {
|
7262
7262
|
# "rowStart":2,
|
@@ -7264,7 +7264,7 @@ module TencentCloud
|
|
7264
7264
|
# "columnStart":1,
|
7265
7265
|
# "columnEnd":2,
|
7266
7266
|
# "content":"456",
|
7267
|
-
# "style":
|
7267
|
+
# "style": {"color": "#b50000", "fontSize": 12,"bold": true,"align": "LEFT"}
|
7268
7268
|
# },
|
7269
7269
|
# {
|
7270
7270
|
# "rowStart":3,
|
@@ -7272,7 +7272,7 @@ module TencentCloud
|
|
7272
7272
|
# "columnStart":3,
|
7273
7273
|
# "columnEnd":3,
|
7274
7274
|
# "content":"789",
|
7275
|
-
# "style":
|
7275
|
+
# "style": {"color": "#b500bf", "fontSize": 12,"bold": false,"align": "RIGHT"}
|
7276
7276
|
# }
|
7277
7277
|
# ]
|
7278
7278
|
# }
|
@@ -8058,10 +8058,20 @@ module TencentCloud
|
|
8058
8058
|
# true-是
|
8059
8059
|
# false-否
|
8060
8060
|
# @type IsPromoter: Boolean
|
8061
|
+
# @param ApproverVerifyTypes: 签署人查看合同校验方式, 支持的类型如下:
|
8062
|
+
# <ul><li> 1 :实名认证查看</li>
|
8063
|
+
# <li> 2 :手机号校验查看</li></ul>
|
8064
|
+
# @type ApproverVerifyTypes: Array
|
8065
|
+
# @param ApproverSignTypes: 签署人进行合同签署时的认证方式,支持的类型如下:
|
8066
|
+
# <ul><li> 1 :人脸认证</li>
|
8067
|
+
# <li> 2 :签署密码</li>
|
8068
|
+
# <li> 3 :运营商三要素认证</li>
|
8069
|
+
# <li> 4 :UKey认证</li></ul>
|
8070
|
+
# @type ApproverSignTypes: Array
|
8061
8071
|
|
8062
|
-
attr_accessor :RecipientId, :RecipientType, :Description, :RoleName, :RequireValidation, :RequireSign, :SignType, :RoutingOrder, :IsPromoter
|
8072
|
+
attr_accessor :RecipientId, :RecipientType, :Description, :RoleName, :RequireValidation, :RequireSign, :SignType, :RoutingOrder, :IsPromoter, :ApproverVerifyTypes, :ApproverSignTypes
|
8063
8073
|
|
8064
|
-
def initialize(recipientid=nil, recipienttype=nil, description=nil, rolename=nil, requirevalidation=nil, requiresign=nil, signtype=nil, routingorder=nil, ispromoter=nil)
|
8074
|
+
def initialize(recipientid=nil, recipienttype=nil, description=nil, rolename=nil, requirevalidation=nil, requiresign=nil, signtype=nil, routingorder=nil, ispromoter=nil, approververifytypes=nil, approversigntypes=nil)
|
8065
8075
|
@RecipientId = recipientid
|
8066
8076
|
@RecipientType = recipienttype
|
8067
8077
|
@Description = description
|
@@ -8071,6 +8081,8 @@ module TencentCloud
|
|
8071
8081
|
@SignType = signtype
|
8072
8082
|
@RoutingOrder = routingorder
|
8073
8083
|
@IsPromoter = ispromoter
|
8084
|
+
@ApproverVerifyTypes = approververifytypes
|
8085
|
+
@ApproverSignTypes = approversigntypes
|
8074
8086
|
end
|
8075
8087
|
|
8076
8088
|
def deserialize(params)
|
@@ -8083,6 +8095,8 @@ module TencentCloud
|
|
8083
8095
|
@SignType = params['SignType']
|
8084
8096
|
@RoutingOrder = params['RoutingOrder']
|
8085
8097
|
@IsPromoter = params['IsPromoter']
|
8098
|
+
@ApproverVerifyTypes = params['ApproverVerifyTypes']
|
8099
|
+
@ApproverSignTypes = params['ApproverSignTypes']
|
8086
8100
|
end
|
8087
8101
|
end
|
8088
8102
|
|
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.723
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-12-
|
11
|
+
date: 2023-12-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|