tencentcloud-sdk-ess 3.0.1120 → 3.0.1121
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 +30 -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: 779d86add619614cd43156697cb8a96a974dc31d
|
4
|
+
data.tar.gz: 9806a2e33ffde6f342bfe99e8a909d70c177db47
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 85086a5e00b7c86df9979bce90c656d3b328733d0193ab4ee2cf77282de53858f6a52d798758d673bf56f04a1616601d96286299685f2570b241623e1a4f9393
|
7
|
+
data.tar.gz: ca98620e3debad11c025b98839f45b31b51ab0eacbac631db2beb044bd68241040c165c3fec04377fd53514fbded753ba78171c40a728be393290ad6d61f2d4e
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1121
|
data/lib/v20201111/models.rb
CHANGED
@@ -11458,7 +11458,7 @@ module TencentCloud
|
|
11458
11458
|
# 注意 approver中的顺序需要和模板中的顺序保持一致, 否则会导致模板中配置的信息无效。
|
11459
11459
|
# @type Approvers: Array
|
11460
11460
|
# @param FileIds: 文件资源ID,通过多文件上传[UploadFiles](https://qian.tencent.com/developers/companyApis/templatesAndFiles/UploadFiles)接口获得,为32位字符串。
|
11461
|
-
#
|
11461
|
+
# 注:此字段定义为数组,但仅支持单个文件
|
11462
11462
|
# @type FileIds: Array
|
11463
11463
|
# @param TemplateId: 合同模板ID,为32位字符串。
|
11464
11464
|
# 建议开发者保存此模板ID,后续用此模板发起合同流程需要此参数。
|
@@ -12480,13 +12480,16 @@ module TencentCloud
|
|
12480
12480
|
|
12481
12481
|
# 注:`选择点头模式时,此字段可不传,不传则使用默认语音文本:请问,您是否同意签署本协议?可点头同意。`
|
12482
12482
|
# @type IntentionActions: Array
|
12483
|
+
# @param RuleIdConfig: 视频核身相关配置
|
12484
|
+
# @type RuleIdConfig: :class:`Tencentcloud::Ess.v20201111.models.RuleIdConfig`
|
12483
12485
|
|
12484
|
-
attr_accessor :IntentionType, :IntentionQuestions, :IntentionActions
|
12486
|
+
attr_accessor :IntentionType, :IntentionQuestions, :IntentionActions, :RuleIdConfig
|
12485
12487
|
|
12486
|
-
def initialize(intentiontype=nil, intentionquestions=nil, intentionactions=nil)
|
12488
|
+
def initialize(intentiontype=nil, intentionquestions=nil, intentionactions=nil, ruleidconfig=nil)
|
12487
12489
|
@IntentionType = intentiontype
|
12488
12490
|
@IntentionQuestions = intentionquestions
|
12489
12491
|
@IntentionActions = intentionactions
|
12492
|
+
@RuleIdConfig = ruleidconfig
|
12490
12493
|
end
|
12491
12494
|
|
12492
12495
|
def deserialize(params)
|
@@ -12507,6 +12510,10 @@ module TencentCloud
|
|
12507
12510
|
@IntentionActions << intentionaction_tmp
|
12508
12511
|
end
|
12509
12512
|
end
|
12513
|
+
unless params['RuleIdConfig'].nil?
|
12514
|
+
@RuleIdConfig = RuleIdConfig.new
|
12515
|
+
@RuleIdConfig.deserialize(params['RuleIdConfig'])
|
12516
|
+
end
|
12510
12517
|
end
|
12511
12518
|
end
|
12512
12519
|
|
@@ -14317,6 +14324,26 @@ module TencentCloud
|
|
14317
14324
|
end
|
14318
14325
|
end
|
14319
14326
|
|
14327
|
+
# 视频核身相关配置
|
14328
|
+
class RuleIdConfig < TencentCloud::Common::AbstractModel
|
14329
|
+
# @param Speed: 意愿核身语音播报速度,配置后问答模式和点头模式的语音播报环节都会生效,默认值为0:
|
14330
|
+
# 0-智能语速(根据播报文案的长度自动调整语音播报速度)
|
14331
|
+
# 1-固定1倍速
|
14332
|
+
# 2-固定1.2倍速
|
14333
|
+
# 3-固定1.5倍速
|
14334
|
+
# @type Speed: Integer
|
14335
|
+
|
14336
|
+
attr_accessor :Speed
|
14337
|
+
|
14338
|
+
def initialize(speed=nil)
|
14339
|
+
@Speed = speed
|
14340
|
+
end
|
14341
|
+
|
14342
|
+
def deserialize(params)
|
14343
|
+
@Speed = params['Speed']
|
14344
|
+
end
|
14345
|
+
end
|
14346
|
+
|
14320
14347
|
# 模板中指定的印章信息
|
14321
14348
|
class SealInfo < TencentCloud::Common::AbstractModel
|
14322
14349
|
# @param SealId: 印章ID
|
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.1121
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-08-
|
11
|
+
date: 2025-08-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|