tencentcloud-sdk-ess 3.0.722 → 3.0.724
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 +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: 2c84707c44d0451d2f883bf6f839e68d81f9aeb6
|
4
|
+
data.tar.gz: 5a6b48fdbc53731f17c335844ebdd868e21679d5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 99354d6012887c3d147ac6dada3fba1e6f3ee8914b5c79faea6809f1579d39aba7fe97a91d0f0a6b93961469458e6fa12aecf1a6e77b8f1515dd6d1b933ec83e
|
7
|
+
data.tar.gz: 9372e5f168f207518930c087775cf04f0d8e518609884572d07ee76fb73ef2165523605707baae0ca7b47932a4d7a11e587cc903e908d0f395861f2f0e09a224
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.724
|
data/lib/v20201111/models.rb
CHANGED
@@ -7424,7 +7424,7 @@ module TencentCloud
|
|
7424
7424
|
# "columnStart":1,
|
7425
7425
|
# "columnEnd":1,
|
7426
7426
|
# "content":"123",
|
7427
|
-
# "style":
|
7427
|
+
# "style": {"color": "#b50000", "fontSize": 12,"bold": true,"align": "CENTER"}
|
7428
7428
|
# },
|
7429
7429
|
# {
|
7430
7430
|
# "rowStart":2,
|
@@ -7432,7 +7432,7 @@ module TencentCloud
|
|
7432
7432
|
# "columnStart":1,
|
7433
7433
|
# "columnEnd":2,
|
7434
7434
|
# "content":"456",
|
7435
|
-
# "style":
|
7435
|
+
# "style": {"color": "#b50000", "fontSize": 12,"bold": true,"align": "LEFT"}
|
7436
7436
|
# },
|
7437
7437
|
# {
|
7438
7438
|
# "rowStart":3,
|
@@ -7440,7 +7440,7 @@ module TencentCloud
|
|
7440
7440
|
# "columnStart":3,
|
7441
7441
|
# "columnEnd":3,
|
7442
7442
|
# "content":"789",
|
7443
|
-
# "style":
|
7443
|
+
# "style": {"color": "#b500bf", "fontSize": 12,"bold": false,"align": "RIGHT"}
|
7444
7444
|
# }
|
7445
7445
|
# ]
|
7446
7446
|
# }
|
@@ -8314,10 +8314,20 @@ module TencentCloud
|
|
8314
8314
|
# @type DeliveryMethod: String
|
8315
8315
|
# @param RecipientExtra: 参与方的一些附属信息,json格式
|
8316
8316
|
# @type RecipientExtra: String
|
8317
|
+
# @param ApproverVerifyTypes: 签署人查看合同校验方式, 支持的类型如下:
|
8318
|
+
# <ul><li> 1 :实名认证查看</li>
|
8319
|
+
# <li> 2 :手机号校验查看</li></ul>
|
8320
|
+
# @type ApproverVerifyTypes: Array
|
8321
|
+
# @param ApproverSignTypes: 签署人进行合同签署时的认证方式,支持的类型如下:
|
8322
|
+
# <ul><li> 1 :人脸认证</li>
|
8323
|
+
# <li> 2 :签署密码</li>
|
8324
|
+
# <li> 3 :运营商三要素认证</li>
|
8325
|
+
# <li> 4 :UKey认证</li></ul>
|
8326
|
+
# @type ApproverSignTypes: Array
|
8317
8327
|
|
8318
|
-
attr_accessor :RecipientId, :RecipientType, :Description, :RoleName, :RequireValidation, :RequireSign, :RoutingOrder, :RequireDelivery, :Email, :Mobile, :UserId, :DeliveryMethod, :RecipientExtra
|
8328
|
+
attr_accessor :RecipientId, :RecipientType, :Description, :RoleName, :RequireValidation, :RequireSign, :RoutingOrder, :RequireDelivery, :Email, :Mobile, :UserId, :DeliveryMethod, :RecipientExtra, :ApproverVerifyTypes, :ApproverSignTypes
|
8319
8329
|
|
8320
|
-
def initialize(recipientid=nil, recipienttype=nil, description=nil, rolename=nil, requirevalidation=nil, requiresign=nil, routingorder=nil, requiredelivery=nil, email=nil, mobile=nil, userid=nil, deliverymethod=nil, recipientextra=nil)
|
8330
|
+
def initialize(recipientid=nil, recipienttype=nil, description=nil, rolename=nil, requirevalidation=nil, requiresign=nil, routingorder=nil, requiredelivery=nil, email=nil, mobile=nil, userid=nil, deliverymethod=nil, recipientextra=nil, approververifytypes=nil, approversigntypes=nil)
|
8321
8331
|
@RecipientId = recipientid
|
8322
8332
|
@RecipientType = recipienttype
|
8323
8333
|
@Description = description
|
@@ -8331,6 +8341,8 @@ module TencentCloud
|
|
8331
8341
|
@UserId = userid
|
8332
8342
|
@DeliveryMethod = deliverymethod
|
8333
8343
|
@RecipientExtra = recipientextra
|
8344
|
+
@ApproverVerifyTypes = approververifytypes
|
8345
|
+
@ApproverSignTypes = approversigntypes
|
8334
8346
|
end
|
8335
8347
|
|
8336
8348
|
def deserialize(params)
|
@@ -8347,6 +8359,8 @@ module TencentCloud
|
|
8347
8359
|
@UserId = params['UserId']
|
8348
8360
|
@DeliveryMethod = params['DeliveryMethod']
|
8349
8361
|
@RecipientExtra = params['RecipientExtra']
|
8362
|
+
@ApproverVerifyTypes = params['ApproverVerifyTypes']
|
8363
|
+
@ApproverSignTypes = params['ApproverSignTypes']
|
8350
8364
|
end
|
8351
8365
|
end
|
8352
8366
|
|
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.724
|
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-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|