tencentcloud-sdk-ccc 3.0.1079 → 3.0.1089
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/v20200210/models.rb +66 -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: f18cb5898e81755106cdb29bc10730fd14b7c5d2
|
4
|
+
data.tar.gz: 8041917555121b98abb77b57ae01d64a69c97d87
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d5df1b92389deba5da2ca2d7c8c1b969cfc9f55c5a8f1de8680d9c3580e62c5ee7191ed97a71767684658f0b9f260d9edbc2be4a9480327cd1f007b541271882
|
7
|
+
data.tar.gz: adac530a93a8e763f360b37cbd56928f2ed93a852e47a57f5498e105769b8e0613373f2e6c9eb5a5de29eb542349f34246b66f54cc285b4453c6103c742765ed
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1089
|
data/lib/v20200210/models.rb
CHANGED
@@ -1144,7 +1144,7 @@ module TencentCloud
|
|
1144
1144
|
# @param WelcomeType: 0:使用welcomeMessage(为空时,被叫先说话;不为空时,机器人先说话)
|
1145
1145
|
# 1: 使用ai根据prompt自动生成welcomeMessage并先说话
|
1146
1146
|
# @type WelcomeType: Integer
|
1147
|
-
# @param WelcomeMessagePriority: 0: 默认可打断,
|
1147
|
+
# @param WelcomeMessagePriority: 0: 默认可打断, 2:高优先不可打断
|
1148
1148
|
# @type WelcomeMessagePriority: Integer
|
1149
1149
|
# @param MaxDuration: 最大等待时长(毫秒),默认60秒,超过这个时间用户没说话,自动挂断
|
1150
1150
|
# @type MaxDuration: Integer
|
@@ -4559,6 +4559,61 @@ module TencentCloud
|
|
4559
4559
|
end
|
4560
4560
|
end
|
4561
4561
|
|
4562
|
+
# 呼转配置
|
4563
|
+
class ForwardingConfig < TencentCloud::Common::AbstractModel
|
4564
|
+
# @param Enabled: 是否启用
|
4565
|
+
# @type Enabled: Boolean
|
4566
|
+
# @param Condition: 1 无条件呼转 2 有条件呼转
|
4567
|
+
# @type Condition: Integer
|
4568
|
+
# @param Target: 呼转目标
|
4569
|
+
# @type Target: :class:`Tencentcloud::Ccc.v20200210.models.ForwardingTarget`
|
4570
|
+
|
4571
|
+
attr_accessor :Enabled, :Condition, :Target
|
4572
|
+
|
4573
|
+
def initialize(enabled=nil, condition=nil, target=nil)
|
4574
|
+
@Enabled = enabled
|
4575
|
+
@Condition = condition
|
4576
|
+
@Target = target
|
4577
|
+
end
|
4578
|
+
|
4579
|
+
def deserialize(params)
|
4580
|
+
@Enabled = params['Enabled']
|
4581
|
+
@Condition = params['Condition']
|
4582
|
+
unless params['Target'].nil?
|
4583
|
+
@Target = ForwardingTarget.new
|
4584
|
+
@Target.deserialize(params['Target'])
|
4585
|
+
end
|
4586
|
+
end
|
4587
|
+
end
|
4588
|
+
|
4589
|
+
# 呼转目标
|
4590
|
+
class ForwardingTarget < TencentCloud::Common::AbstractModel
|
4591
|
+
# @param Type: 呼转目标类型 1 座席 2 技能组 3 分机
|
4592
|
+
# @type Type: Integer
|
4593
|
+
# @param StaffUserId: 呼转目标为座席的账号 Type 为 1 时填写
|
4594
|
+
# @type StaffUserId: String
|
4595
|
+
# @param SkillGroupId: 呼转目标为技能组的 ID,Type 为 2 时填写
|
4596
|
+
# @type SkillGroupId: Integer
|
4597
|
+
# @param Extension: 呼转目标为分机的账号,Type 为 3 时填写
|
4598
|
+
# @type Extension: String
|
4599
|
+
|
4600
|
+
attr_accessor :Type, :StaffUserId, :SkillGroupId, :Extension
|
4601
|
+
|
4602
|
+
def initialize(type=nil, staffuserid=nil, skillgroupid=nil, extension=nil)
|
4603
|
+
@Type = type
|
4604
|
+
@StaffUserId = staffuserid
|
4605
|
+
@SkillGroupId = skillgroupid
|
4606
|
+
@Extension = extension
|
4607
|
+
end
|
4608
|
+
|
4609
|
+
def deserialize(params)
|
4610
|
+
@Type = params['Type']
|
4611
|
+
@StaffUserId = params['StaffUserId']
|
4612
|
+
@SkillGroupId = params['SkillGroupId']
|
4613
|
+
@Extension = params['Extension']
|
4614
|
+
end
|
4615
|
+
end
|
4616
|
+
|
4562
4617
|
# HangUpCall请求参数结构体
|
4563
4618
|
class HangUpCallRequest < TencentCloud::Common::AbstractModel
|
4564
4619
|
# @param SdkAppId: 应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc
|
@@ -5754,8 +5809,7 @@ module TencentCloud
|
|
5754
5809
|
# @type Nick: String
|
5755
5810
|
# @param StaffNumber: 座席工号
|
5756
5811
|
# @type StaffNumber: String
|
5757
|
-
# @param RoleId: 用户角色
|
5758
|
-
# 一个用户绑定了多个角色时以RoleIdList为准
|
5812
|
+
# @param RoleId: 用户角色 ID,一个用户绑定了多个角色时以RoleIdList为准
|
5759
5813
|
# @type RoleId: Integer
|
5760
5814
|
# @param RoleIdList: 用户角色id列表
|
5761
5815
|
# @type RoleIdList: Integer
|
@@ -5767,15 +5821,17 @@ module TencentCloud
|
|
5767
5821
|
# @type LastModifyTimestamp: Integer
|
5768
5822
|
# @param ExtensionNumber: 座席分机号(1 到 8 打头,4 - 6 位)
|
5769
5823
|
# @type ExtensionNumber: String
|
5824
|
+
# @param ForwardingConfig: 呼叫转移配置
|
5825
|
+
# @type ForwardingConfig: :class:`Tencentcloud::Ccc.v20200210.models.ForwardingConfig`
|
5770
5826
|
|
5771
|
-
attr_accessor :Name, :Mail, :Phone, :Nick, :StaffNumber, :RoleId, :RoleIdList, :RoleList, :SkillGroupList, :LastModifyTimestamp, :ExtensionNumber
|
5827
|
+
attr_accessor :Name, :Mail, :Phone, :Nick, :StaffNumber, :RoleId, :RoleIdList, :RoleList, :SkillGroupList, :LastModifyTimestamp, :ExtensionNumber, :ForwardingConfig
|
5772
5828
|
extend Gem::Deprecate
|
5773
5829
|
deprecate :RoleId, :none, 2025, 6
|
5774
5830
|
deprecate :RoleId=, :none, 2025, 6
|
5775
5831
|
deprecate :RoleIdList, :none, 2025, 6
|
5776
5832
|
deprecate :RoleIdList=, :none, 2025, 6
|
5777
5833
|
|
5778
|
-
def initialize(name=nil, mail=nil, phone=nil, nick=nil, staffnumber=nil, roleid=nil, roleidlist=nil, rolelist=nil, skillgrouplist=nil, lastmodifytimestamp=nil, extensionnumber=nil)
|
5834
|
+
def initialize(name=nil, mail=nil, phone=nil, nick=nil, staffnumber=nil, roleid=nil, roleidlist=nil, rolelist=nil, skillgrouplist=nil, lastmodifytimestamp=nil, extensionnumber=nil, forwardingconfig=nil)
|
5779
5835
|
@Name = name
|
5780
5836
|
@Mail = mail
|
5781
5837
|
@Phone = phone
|
@@ -5787,6 +5843,7 @@ module TencentCloud
|
|
5787
5843
|
@SkillGroupList = skillgrouplist
|
5788
5844
|
@LastModifyTimestamp = lastmodifytimestamp
|
5789
5845
|
@ExtensionNumber = extensionnumber
|
5846
|
+
@ForwardingConfig = forwardingconfig
|
5790
5847
|
end
|
5791
5848
|
|
5792
5849
|
def deserialize(params)
|
@@ -5808,6 +5865,10 @@ module TencentCloud
|
|
5808
5865
|
end
|
5809
5866
|
@LastModifyTimestamp = params['LastModifyTimestamp']
|
5810
5867
|
@ExtensionNumber = params['ExtensionNumber']
|
5868
|
+
unless params['ForwardingConfig'].nil?
|
5869
|
+
@ForwardingConfig = ForwardingConfig.new
|
5870
|
+
@ForwardingConfig.deserialize(params['ForwardingConfig'])
|
5871
|
+
end
|
5811
5872
|
end
|
5812
5873
|
end
|
5813
5874
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-ccc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1089
|
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-06-
|
11
|
+
date: 2025-06-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|