tencentcloud-sdk-ccc 3.0.1192 → 3.0.1203
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/client.rb +4 -3
- data/lib/v20200210/models.rb +78 -46
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 13619776580a0796dd2e4445e0663baa37effd30
|
|
4
|
+
data.tar.gz: 02affbf00173e23850689344171cb057e2cfefff
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 99192e6bab7cbf4c9b5c772dbf9e61f8ded0ea7dad25b515f2f96211c78866b3ae1d3bc581fcdb85f906bf5052531b5bd4364ceef5bb452488d9c8d4cbad9598
|
|
7
|
+
data.tar.gz: 8ffb089613095445daf90d99142046933d1e48689cac2b5d56e9c0765a7794c6bca6fc76b3241c90c61245fe645fcf2a9f9d7f7156f7655e2f6078bffe780a3d
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1203
|
data/lib/v20200210/client.rb
CHANGED
|
@@ -199,9 +199,9 @@ module TencentCloud
|
|
|
199
199
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
200
200
|
end
|
|
201
201
|
|
|
202
|
-
#
|
|
202
|
+
# 用于 **直接调用AI模型** 发起 **单次** 外呼通话,支持通过API参数直接配置模型、提示词、语音等全部通话要素。
|
|
203
203
|
|
|
204
|
-
#
|
|
204
|
+
# 该功能需购买语音智能体通话套餐,并且仅限自有电话号码使用。详情请参考 [语音智能体通话购买指引](https://cloud.tencent.com/document/product/679/125953)。
|
|
205
205
|
|
|
206
206
|
# @param request: Request instance for CreateAICall.
|
|
207
207
|
# @type request: :class:`Tencentcloud::ccc::V20200210::CreateAICallRequest`
|
|
@@ -811,7 +811,8 @@ module TencentCloud
|
|
|
811
811
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
812
812
|
end
|
|
813
813
|
|
|
814
|
-
#
|
|
814
|
+
# 用于通过 TaskId 查询**自动外呼任务的详细信息**,包括任务基础配置、起止时间、外呼名单、执行状态以及实际通话情况等。
|
|
815
|
+
# 该接口通常与 [创建批量自动外呼任务](https://cloud.tencent.com/document/product/679/69194) 配合使用,用于在任务创建后查看任务配置是否生效、任务当前状态,以及后续执行过程中的实时进展。
|
|
815
816
|
|
|
816
817
|
# @param request: Request instance for DescribeAutoCalloutTask.
|
|
817
818
|
# @type request: :class:`Tencentcloud::ccc::V20200210::DescribeAutoCalloutTaskRequest`
|
data/lib/v20200210/models.rb
CHANGED
|
@@ -397,8 +397,8 @@ module TencentCloud
|
|
|
397
397
|
|
|
398
398
|
attr_accessor :User, :Message, :Timestamp, :Start, :End
|
|
399
399
|
extend Gem::Deprecate
|
|
400
|
-
deprecate :Timestamp, :none,
|
|
401
|
-
deprecate :Timestamp=, :none,
|
|
400
|
+
deprecate :Timestamp, :none, 2026, 1
|
|
401
|
+
deprecate :Timestamp=, :none, 2026, 1
|
|
402
402
|
|
|
403
403
|
def initialize(user=nil, message=nil, timestamp=nil, start=nil, _end=nil)
|
|
404
404
|
@User = user
|
|
@@ -493,10 +493,12 @@ module TencentCloud
|
|
|
493
493
|
# @type State: Integer
|
|
494
494
|
# @param TaskId: 任务Id
|
|
495
495
|
# @type TaskId: Integer
|
|
496
|
+
# @param MaxRingTimeoutSecond: 最大振铃时长,达到时长阈值自动挂断。 仅自携号码支持当前参数
|
|
497
|
+
# @type MaxRingTimeoutSecond: Integer
|
|
496
498
|
|
|
497
|
-
attr_accessor :Name, :CalleeCount, :Callers, :NotBefore, :NotAfter, :IvrId, :State, :TaskId
|
|
499
|
+
attr_accessor :Name, :CalleeCount, :Callers, :NotBefore, :NotAfter, :IvrId, :State, :TaskId, :MaxRingTimeoutSecond
|
|
498
500
|
|
|
499
|
-
def initialize(name=nil, calleecount=nil, callers=nil, notbefore=nil, notafter=nil, ivrid=nil, state=nil, taskid=nil)
|
|
501
|
+
def initialize(name=nil, calleecount=nil, callers=nil, notbefore=nil, notafter=nil, ivrid=nil, state=nil, taskid=nil, maxringtimeoutsecond=nil)
|
|
500
502
|
@Name = name
|
|
501
503
|
@CalleeCount = calleecount
|
|
502
504
|
@Callers = callers
|
|
@@ -505,6 +507,7 @@ module TencentCloud
|
|
|
505
507
|
@IvrId = ivrid
|
|
506
508
|
@State = state
|
|
507
509
|
@TaskId = taskid
|
|
510
|
+
@MaxRingTimeoutSecond = maxringtimeoutsecond
|
|
508
511
|
end
|
|
509
512
|
|
|
510
513
|
def deserialize(params)
|
|
@@ -516,6 +519,7 @@ module TencentCloud
|
|
|
516
519
|
@IvrId = params['IvrId']
|
|
517
520
|
@State = params['State']
|
|
518
521
|
@TaskId = params['TaskId']
|
|
522
|
+
@MaxRingTimeoutSecond = params['MaxRingTimeoutSecond']
|
|
519
523
|
end
|
|
520
524
|
end
|
|
521
525
|
|
|
@@ -619,8 +623,8 @@ module TencentCloud
|
|
|
619
623
|
|
|
620
624
|
attr_accessor :SdkAppId, :StaffEmail, :StaffSkillGroupList, :SkillGroupList
|
|
621
625
|
extend Gem::Deprecate
|
|
622
|
-
deprecate :SkillGroupList, :none,
|
|
623
|
-
deprecate :SkillGroupList=, :none,
|
|
626
|
+
deprecate :SkillGroupList, :none, 2026, 1
|
|
627
|
+
deprecate :SkillGroupList=, :none, 2026, 1
|
|
624
628
|
|
|
625
629
|
def initialize(sdkappid=nil, staffemail=nil, staffskillgrouplist=nil, skillgrouplist=nil)
|
|
626
630
|
@SdkAppId = sdkappid
|
|
@@ -1099,19 +1103,22 @@ module TencentCloud
|
|
|
1099
1103
|
# 2. dify-inputs-user 为dify的user值
|
|
1100
1104
|
# 3. dify-inputs-conversation_id 为dify的conversation_id值
|
|
1101
1105
|
# @type Variables: Array
|
|
1106
|
+
# @param MaxRingTimeoutSecond: 最大振铃时长,达到时长阈值自动挂断。 仅自携号码支持当前参数
|
|
1107
|
+
# @type MaxRingTimeoutSecond: Integer
|
|
1102
1108
|
|
|
1103
|
-
attr_accessor :SdkAppId, :AIAgentId, :Callee, :Callers, :PromptVariables, :Variables
|
|
1109
|
+
attr_accessor :SdkAppId, :AIAgentId, :Callee, :Callers, :PromptVariables, :Variables, :MaxRingTimeoutSecond
|
|
1104
1110
|
extend Gem::Deprecate
|
|
1105
|
-
deprecate :PromptVariables, :none,
|
|
1106
|
-
deprecate :PromptVariables=, :none,
|
|
1111
|
+
deprecate :PromptVariables, :none, 2026, 1
|
|
1112
|
+
deprecate :PromptVariables=, :none, 2026, 1
|
|
1107
1113
|
|
|
1108
|
-
def initialize(sdkappid=nil, aiagentid=nil, callee=nil, callers=nil, promptvariables=nil, variables=nil)
|
|
1114
|
+
def initialize(sdkappid=nil, aiagentid=nil, callee=nil, callers=nil, promptvariables=nil, variables=nil, maxringtimeoutsecond=nil)
|
|
1109
1115
|
@SdkAppId = sdkappid
|
|
1110
1116
|
@AIAgentId = aiagentid
|
|
1111
1117
|
@Callee = callee
|
|
1112
1118
|
@Callers = callers
|
|
1113
1119
|
@PromptVariables = promptvariables
|
|
1114
1120
|
@Variables = variables
|
|
1121
|
+
@MaxRingTimeoutSecond = maxringtimeoutsecond
|
|
1115
1122
|
end
|
|
1116
1123
|
|
|
1117
1124
|
def deserialize(params)
|
|
@@ -1135,6 +1142,7 @@ module TencentCloud
|
|
|
1135
1142
|
@Variables << variable_tmp
|
|
1136
1143
|
end
|
|
1137
1144
|
end
|
|
1145
|
+
@MaxRingTimeoutSecond = params['MaxRingTimeoutSecond']
|
|
1138
1146
|
end
|
|
1139
1147
|
end
|
|
1140
1148
|
|
|
@@ -1321,7 +1329,7 @@ module TencentCloud
|
|
|
1321
1329
|
# "APIUrl": "https://api.minimax.chat/v1/t2a_v2",
|
|
1322
1330
|
# "APIKey": "eyxxxx",
|
|
1323
1331
|
# "GroupId": "181000000000000",
|
|
1324
|
-
# "VoiceType":"female-tianmei
|
|
1332
|
+
# "VoiceType":"female-tianmei",
|
|
1325
1333
|
# "Speed": 1.2
|
|
1326
1334
|
# }
|
|
1327
1335
|
# </code></pre>
|
|
@@ -1401,13 +1409,17 @@ module TencentCloud
|
|
|
1401
1409
|
# @type VoicemailAction: Integer
|
|
1402
1410
|
# @param LLMExtraBody: 大模型拓展参数, 格式为json字符串
|
|
1403
1411
|
# @type LLMExtraBody: String
|
|
1412
|
+
# @param MaxCallDurationMs: 最大通话时长, 默认不限制。单位毫秒(ms)
|
|
1413
|
+
# @type MaxCallDurationMs: Integer
|
|
1414
|
+
# @param MaxRingTimeoutSecond: 最大振铃时长,达到时长阈值自动挂断。 **仅自携号码支持当前参数**
|
|
1415
|
+
# @type MaxRingTimeoutSecond: Integer
|
|
1404
1416
|
|
|
1405
|
-
attr_accessor :SdkAppId, :Callee, :LLMType, :APIKey, :APIUrl, :SystemPrompt, :Model, :VoiceType, :Callers, :WelcomeMessage, :WelcomeType, :WelcomeMessagePriority, :MaxDuration, :Languages, :InterruptMode, :InterruptSpeechDuration, :EndFunctionEnable, :EndFunctionDesc, :TransferFunctionEnable, :TransferItems, :NotifyDuration, :NotifyMessage, :NotifyMaxCount, :CustomTTSConfig, :PromptVariables, :VadSilenceTime, :ExtractConfig, :Temperature, :Variables, :TopP, :VadLevel, :ToneWord, :EnableComplianceAudio, :EnableVoicemailDetection, :VoicemailAction, :LLMExtraBody
|
|
1417
|
+
attr_accessor :SdkAppId, :Callee, :LLMType, :APIKey, :APIUrl, :SystemPrompt, :Model, :VoiceType, :Callers, :WelcomeMessage, :WelcomeType, :WelcomeMessagePriority, :MaxDuration, :Languages, :InterruptMode, :InterruptSpeechDuration, :EndFunctionEnable, :EndFunctionDesc, :TransferFunctionEnable, :TransferItems, :NotifyDuration, :NotifyMessage, :NotifyMaxCount, :CustomTTSConfig, :PromptVariables, :VadSilenceTime, :ExtractConfig, :Temperature, :Variables, :TopP, :VadLevel, :ToneWord, :EnableComplianceAudio, :EnableVoicemailDetection, :VoicemailAction, :LLMExtraBody, :MaxCallDurationMs, :MaxRingTimeoutSecond
|
|
1406
1418
|
extend Gem::Deprecate
|
|
1407
|
-
deprecate :PromptVariables, :none,
|
|
1408
|
-
deprecate :PromptVariables=, :none,
|
|
1419
|
+
deprecate :PromptVariables, :none, 2026, 1
|
|
1420
|
+
deprecate :PromptVariables=, :none, 2026, 1
|
|
1409
1421
|
|
|
1410
|
-
def initialize(sdkappid=nil, callee=nil, llmtype=nil, apikey=nil, apiurl=nil, systemprompt=nil, model=nil, voicetype=nil, callers=nil, welcomemessage=nil, welcometype=nil, welcomemessagepriority=nil, maxduration=nil, languages=nil, interruptmode=nil, interruptspeechduration=nil, endfunctionenable=nil, endfunctiondesc=nil, transferfunctionenable=nil, transferitems=nil, notifyduration=nil, notifymessage=nil, notifymaxcount=nil, customttsconfig=nil, promptvariables=nil, vadsilencetime=nil, extractconfig=nil, temperature=nil, variables=nil, topp=nil, vadlevel=nil, toneword=nil, enablecomplianceaudio=nil, enablevoicemaildetection=nil, voicemailaction=nil, llmextrabody=nil)
|
|
1422
|
+
def initialize(sdkappid=nil, callee=nil, llmtype=nil, apikey=nil, apiurl=nil, systemprompt=nil, model=nil, voicetype=nil, callers=nil, welcomemessage=nil, welcometype=nil, welcomemessagepriority=nil, maxduration=nil, languages=nil, interruptmode=nil, interruptspeechduration=nil, endfunctionenable=nil, endfunctiondesc=nil, transferfunctionenable=nil, transferitems=nil, notifyduration=nil, notifymessage=nil, notifymaxcount=nil, customttsconfig=nil, promptvariables=nil, vadsilencetime=nil, extractconfig=nil, temperature=nil, variables=nil, topp=nil, vadlevel=nil, toneword=nil, enablecomplianceaudio=nil, enablevoicemaildetection=nil, voicemailaction=nil, llmextrabody=nil, maxcalldurationms=nil, maxringtimeoutsecond=nil)
|
|
1411
1423
|
@SdkAppId = sdkappid
|
|
1412
1424
|
@Callee = callee
|
|
1413
1425
|
@LLMType = llmtype
|
|
@@ -1444,6 +1456,8 @@ module TencentCloud
|
|
|
1444
1456
|
@EnableVoicemailDetection = enablevoicemaildetection
|
|
1445
1457
|
@VoicemailAction = voicemailaction
|
|
1446
1458
|
@LLMExtraBody = llmextrabody
|
|
1459
|
+
@MaxCallDurationMs = maxcalldurationms
|
|
1460
|
+
@MaxRingTimeoutSecond = maxringtimeoutsecond
|
|
1447
1461
|
end
|
|
1448
1462
|
|
|
1449
1463
|
def deserialize(params)
|
|
@@ -1514,6 +1528,8 @@ module TencentCloud
|
|
|
1514
1528
|
@EnableVoicemailDetection = params['EnableVoicemailDetection']
|
|
1515
1529
|
@VoicemailAction = params['VoicemailAction']
|
|
1516
1530
|
@LLMExtraBody = params['LLMExtraBody']
|
|
1531
|
+
@MaxCallDurationMs = params['MaxCallDurationMs']
|
|
1532
|
+
@MaxRingTimeoutSecond = params['MaxRingTimeoutSecond']
|
|
1517
1533
|
end
|
|
1518
1534
|
end
|
|
1519
1535
|
|
|
@@ -1683,10 +1699,12 @@ module TencentCloud
|
|
|
1683
1699
|
# @type AIAgentId: Integer
|
|
1684
1700
|
# @param RetryInterval: 任务失败重试时间间隔,重试间隔 600秒~86400 秒
|
|
1685
1701
|
# @type RetryInterval: Integer
|
|
1702
|
+
# @param MaxRingTimeoutSecond: 最大振铃时长,达到时长阈值自动挂断。 仅自携号码支持当前参数
|
|
1703
|
+
# @type MaxRingTimeoutSecond: Integer
|
|
1686
1704
|
|
|
1687
|
-
attr_accessor :SdkAppId, :NotBefore, :Callees, :Callers, :IvrId, :Name, :Description, :NotAfter, :Tries, :Variables, :UUI, :CalleeAttributes, :TimeZone, :AvailableTime, :AIAgentId, :RetryInterval
|
|
1705
|
+
attr_accessor :SdkAppId, :NotBefore, :Callees, :Callers, :IvrId, :Name, :Description, :NotAfter, :Tries, :Variables, :UUI, :CalleeAttributes, :TimeZone, :AvailableTime, :AIAgentId, :RetryInterval, :MaxRingTimeoutSecond
|
|
1688
1706
|
|
|
1689
|
-
def initialize(sdkappid=nil, notbefore=nil, callees=nil, callers=nil, ivrid=nil, name=nil, description=nil, notafter=nil, tries=nil, variables=nil, uui=nil, calleeattributes=nil, timezone=nil, availabletime=nil, aiagentid=nil, retryinterval=nil)
|
|
1707
|
+
def initialize(sdkappid=nil, notbefore=nil, callees=nil, callers=nil, ivrid=nil, name=nil, description=nil, notafter=nil, tries=nil, variables=nil, uui=nil, calleeattributes=nil, timezone=nil, availabletime=nil, aiagentid=nil, retryinterval=nil, maxringtimeoutsecond=nil)
|
|
1690
1708
|
@SdkAppId = sdkappid
|
|
1691
1709
|
@NotBefore = notbefore
|
|
1692
1710
|
@Callees = callees
|
|
@@ -1703,6 +1721,7 @@ module TencentCloud
|
|
|
1703
1721
|
@AvailableTime = availabletime
|
|
1704
1722
|
@AIAgentId = aiagentid
|
|
1705
1723
|
@RetryInterval = retryinterval
|
|
1724
|
+
@MaxRingTimeoutSecond = maxringtimeoutsecond
|
|
1706
1725
|
end
|
|
1707
1726
|
|
|
1708
1727
|
def deserialize(params)
|
|
@@ -1743,6 +1762,7 @@ module TencentCloud
|
|
|
1743
1762
|
end
|
|
1744
1763
|
@AIAgentId = params['AIAgentId']
|
|
1745
1764
|
@RetryInterval = params['RetryInterval']
|
|
1765
|
+
@MaxRingTimeoutSecond = params['MaxRingTimeoutSecond']
|
|
1746
1766
|
end
|
|
1747
1767
|
end
|
|
1748
1768
|
|
|
@@ -1819,7 +1839,7 @@ module TencentCloud
|
|
|
1819
1839
|
class CreateCallOutSessionRequest < TencentCloud::Common::AbstractModel
|
|
1820
1840
|
# @param SdkAppId: 应用 ID
|
|
1821
1841
|
# @type SdkAppId: Integer
|
|
1822
|
-
# @param UserId:
|
|
1842
|
+
# @param UserId: 座席邮箱,确保已经绑定了手机号 https://cloud.tencent.com/document/product/679/76067#.E6.AD.A5.E9.AA.A42.EF.BC.9A.E5.AE.8C.E5.96.84.E8.B4.A6.E5.8F.B7.E4.BF.A1.E6.81.AF
|
|
1823
1843
|
# @type UserId: String
|
|
1824
1844
|
# @param Callee: 被叫号码,须带 0086 前缀
|
|
1825
1845
|
# @type Callee: String
|
|
@@ -1836,8 +1856,8 @@ module TencentCloud
|
|
|
1836
1856
|
|
|
1837
1857
|
attr_accessor :SdkAppId, :UserId, :Callee, :Caller, :Callers, :IsForceUseMobile, :Uui, :UUI
|
|
1838
1858
|
extend Gem::Deprecate
|
|
1839
|
-
deprecate :Uui, :none,
|
|
1840
|
-
deprecate :Uui=, :none,
|
|
1859
|
+
deprecate :Uui, :none, 2026, 1
|
|
1860
|
+
deprecate :Uui=, :none, 2026, 1
|
|
1841
1861
|
|
|
1842
1862
|
def initialize(sdkappid=nil, userid=nil, callee=nil, caller=nil, callers=nil, isforceusemobile=nil, uui=nil)
|
|
1843
1863
|
@SdkAppId = sdkappid
|
|
@@ -2029,16 +2049,19 @@ module TencentCloud
|
|
|
2029
2049
|
# @type Variables: Array
|
|
2030
2050
|
# @param UUI: 用户数据
|
|
2031
2051
|
# @type UUI: String
|
|
2052
|
+
# @param MaxRingTimeoutSecond: 最大振铃时长,达到时长阈值自动挂断。 仅自携号码支持当前参数
|
|
2053
|
+
# @type MaxRingTimeoutSecond: Integer
|
|
2032
2054
|
|
|
2033
|
-
attr_accessor :SdkAppId, :Callee, :IVRId, :Callers, :Variables, :UUI
|
|
2055
|
+
attr_accessor :SdkAppId, :Callee, :IVRId, :Callers, :Variables, :UUI, :MaxRingTimeoutSecond
|
|
2034
2056
|
|
|
2035
|
-
def initialize(sdkappid=nil, callee=nil, ivrid=nil, callers=nil, variables=nil, uui=nil)
|
|
2057
|
+
def initialize(sdkappid=nil, callee=nil, ivrid=nil, callers=nil, variables=nil, uui=nil, maxringtimeoutsecond=nil)
|
|
2036
2058
|
@SdkAppId = sdkappid
|
|
2037
2059
|
@Callee = callee
|
|
2038
2060
|
@IVRId = ivrid
|
|
2039
2061
|
@Callers = callers
|
|
2040
2062
|
@Variables = variables
|
|
2041
2063
|
@UUI = uui
|
|
2064
|
+
@MaxRingTimeoutSecond = maxringtimeoutsecond
|
|
2042
2065
|
end
|
|
2043
2066
|
|
|
2044
2067
|
def deserialize(params)
|
|
@@ -2055,6 +2078,7 @@ module TencentCloud
|
|
|
2055
2078
|
end
|
|
2056
2079
|
end
|
|
2057
2080
|
@UUI = params['UUI']
|
|
2081
|
+
@MaxRingTimeoutSecond = params['MaxRingTimeoutSecond']
|
|
2058
2082
|
end
|
|
2059
2083
|
end
|
|
2060
2084
|
|
|
@@ -2986,12 +3010,14 @@ module TencentCloud
|
|
|
2986
3010
|
# @type IvrId: Integer
|
|
2987
3011
|
# @param State: 任务状态 0初始 1运行中 2已完成 3结束中 4已终止
|
|
2988
3012
|
# @type State: Integer
|
|
3013
|
+
# @param MaxRingTimeoutSecond: 最大振铃时长,达到时长阈值自动挂断。 仅自携号码支持当前参数
|
|
3014
|
+
# @type MaxRingTimeoutSecond: Integer
|
|
2989
3015
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2990
3016
|
# @type RequestId: String
|
|
2991
3017
|
|
|
2992
|
-
attr_accessor :Name, :Description, :NotBefore, :NotAfter, :Callers, :Callees, :IvrId, :State, :RequestId
|
|
3018
|
+
attr_accessor :Name, :Description, :NotBefore, :NotAfter, :Callers, :Callees, :IvrId, :State, :MaxRingTimeoutSecond, :RequestId
|
|
2993
3019
|
|
|
2994
|
-
def initialize(name=nil, description=nil, notbefore=nil, notafter=nil, callers=nil, callees=nil, ivrid=nil, state=nil, requestid=nil)
|
|
3020
|
+
def initialize(name=nil, description=nil, notbefore=nil, notafter=nil, callers=nil, callees=nil, ivrid=nil, state=nil, maxringtimeoutsecond=nil, requestid=nil)
|
|
2995
3021
|
@Name = name
|
|
2996
3022
|
@Description = description
|
|
2997
3023
|
@NotBefore = notbefore
|
|
@@ -3000,6 +3026,7 @@ module TencentCloud
|
|
|
3000
3026
|
@Callees = callees
|
|
3001
3027
|
@IvrId = ivrid
|
|
3002
3028
|
@State = state
|
|
3029
|
+
@MaxRingTimeoutSecond = maxringtimeoutsecond
|
|
3003
3030
|
@RequestId = requestid
|
|
3004
3031
|
end
|
|
3005
3032
|
|
|
@@ -3019,6 +3046,7 @@ module TencentCloud
|
|
|
3019
3046
|
end
|
|
3020
3047
|
@IvrId = params['IvrId']
|
|
3021
3048
|
@State = params['State']
|
|
3049
|
+
@MaxRingTimeoutSecond = params['MaxRingTimeoutSecond']
|
|
3022
3050
|
@RequestId = params['RequestId']
|
|
3023
3051
|
end
|
|
3024
3052
|
end
|
|
@@ -3298,10 +3326,10 @@ module TencentCloud
|
|
|
3298
3326
|
|
|
3299
3327
|
attr_accessor :SdkAppId, :InstanceId, :CdrId, :Limit, :Offset, :Order, :SessionId
|
|
3300
3328
|
extend Gem::Deprecate
|
|
3301
|
-
deprecate :InstanceId, :none,
|
|
3302
|
-
deprecate :InstanceId=, :none,
|
|
3303
|
-
deprecate :CdrId, :none,
|
|
3304
|
-
deprecate :CdrId=, :none,
|
|
3329
|
+
deprecate :InstanceId, :none, 2026, 1
|
|
3330
|
+
deprecate :InstanceId=, :none, 2026, 1
|
|
3331
|
+
deprecate :CdrId, :none, 2026, 1
|
|
3332
|
+
deprecate :CdrId=, :none, 2026, 1
|
|
3305
3333
|
|
|
3306
3334
|
def initialize(sdkappid=nil, instanceid=nil, cdrid=nil, limit=nil, offset=nil, order=nil, sessionid=nil)
|
|
3307
3335
|
@SdkAppId = sdkappid
|
|
@@ -3627,8 +3655,8 @@ module TencentCloud
|
|
|
3627
3655
|
|
|
3628
3656
|
attr_accessor :StartTimestamp, :EndTimestamp, :InstanceId, :SdkAppId, :Limit, :Offset, :Type
|
|
3629
3657
|
extend Gem::Deprecate
|
|
3630
|
-
deprecate :InstanceId, :none,
|
|
3631
|
-
deprecate :InstanceId=, :none,
|
|
3658
|
+
deprecate :InstanceId, :none, 2026, 1
|
|
3659
|
+
deprecate :InstanceId=, :none, 2026, 1
|
|
3632
3660
|
|
|
3633
3661
|
def initialize(starttimestamp=nil, endtimestamp=nil, instanceid=nil, sdkappid=nil, limit=nil, offset=nil, type=nil)
|
|
3634
3662
|
@StartTimestamp = starttimestamp
|
|
@@ -3665,8 +3693,8 @@ module TencentCloud
|
|
|
3665
3693
|
|
|
3666
3694
|
attr_accessor :TotalCount, :IMCdrs, :IMCdrList, :RequestId
|
|
3667
3695
|
extend Gem::Deprecate
|
|
3668
|
-
deprecate :IMCdrs, :none,
|
|
3669
|
-
deprecate :IMCdrs=, :none,
|
|
3696
|
+
deprecate :IMCdrs, :none, 2026, 1
|
|
3697
|
+
deprecate :IMCdrs=, :none, 2026, 1
|
|
3670
3698
|
|
|
3671
3699
|
def initialize(totalcount=nil, imcdrs=nil, imcdrlist=nil, requestid=nil)
|
|
3672
3700
|
@TotalCount = totalcount
|
|
@@ -4158,8 +4186,8 @@ module TencentCloud
|
|
|
4158
4186
|
|
|
4159
4187
|
attr_accessor :TotalCount, :TelCdrs, :TelCdrList, :RequestId
|
|
4160
4188
|
extend Gem::Deprecate
|
|
4161
|
-
deprecate :TelCdrs, :none,
|
|
4162
|
-
deprecate :TelCdrs=, :none,
|
|
4189
|
+
deprecate :TelCdrs, :none, 2026, 1
|
|
4190
|
+
deprecate :TelCdrs=, :none, 2026, 1
|
|
4163
4191
|
|
|
4164
4192
|
def initialize(totalcount=nil, telcdrs=nil, telcdrlist=nil, requestid=nil)
|
|
4165
4193
|
@TotalCount = totalcount
|
|
@@ -4651,8 +4679,8 @@ module TencentCloud
|
|
|
4651
4679
|
|
|
4652
4680
|
attr_accessor :TelCallOutCount, :TelCallInCount, :SeatUsedCount, :VoipCallInCount, :VOIPCallInCount, :AsrOfflineCount, :AsrRealtimeCount, :RequestId
|
|
4653
4681
|
extend Gem::Deprecate
|
|
4654
|
-
deprecate :VoipCallInCount, :none,
|
|
4655
|
-
deprecate :VoipCallInCount=, :none,
|
|
4682
|
+
deprecate :VoipCallInCount, :none, 2026, 1
|
|
4683
|
+
deprecate :VoipCallInCount=, :none, 2026, 1
|
|
4656
4684
|
|
|
4657
4685
|
def initialize(telcalloutcount=nil, telcallincount=nil, seatusedcount=nil, voipcallincount=nil, asrofflinecount=nil, asrrealtimecount=nil, requestid=nil)
|
|
4658
4686
|
@TelCallOutCount = telcalloutcount
|
|
@@ -4700,8 +4728,8 @@ module TencentCloud
|
|
|
4700
4728
|
|
|
4701
4729
|
attr_accessor :StartTimeStamp, :EndTimeStamp, :SdkAppId, :PageSize, :PageNumber, :InstanceId, :Limit, :Offset, :Phones, :SessionIds
|
|
4702
4730
|
extend Gem::Deprecate
|
|
4703
|
-
deprecate :InstanceId, :none,
|
|
4704
|
-
deprecate :InstanceId=, :none,
|
|
4731
|
+
deprecate :InstanceId, :none, 2026, 1
|
|
4732
|
+
deprecate :InstanceId=, :none, 2026, 1
|
|
4705
4733
|
|
|
4706
4734
|
def initialize(starttimestamp=nil, endtimestamp=nil, sdkappid=nil, pagesize=nil, pagenumber=nil, instanceid=nil, limit=nil, offset=nil, phones=nil, sessionids=nil)
|
|
4707
4735
|
@StartTimeStamp = starttimestamp
|
|
@@ -4743,8 +4771,8 @@ module TencentCloud
|
|
|
4743
4771
|
|
|
4744
4772
|
attr_accessor :TotalCount, :TelCdrs, :TelCdrList, :RequestId
|
|
4745
4773
|
extend Gem::Deprecate
|
|
4746
|
-
deprecate :TelCdrs, :none,
|
|
4747
|
-
deprecate :TelCdrs=, :none,
|
|
4774
|
+
deprecate :TelCdrs, :none, 2026, 1
|
|
4775
|
+
deprecate :TelCdrs=, :none, 2026, 1
|
|
4748
4776
|
|
|
4749
4777
|
def initialize(totalcount=nil, telcdrs=nil, telcdrlist=nil, requestid=nil)
|
|
4750
4778
|
@TotalCount = totalcount
|
|
@@ -6316,6 +6344,10 @@ module TencentCloud
|
|
|
6316
6344
|
# @param SkillGroupId: 技能组 ID
|
|
6317
6345
|
# @type SkillGroupId: Integer
|
|
6318
6346
|
# @param EndStatusString: 结束状态
|
|
6347
|
+
|
|
6348
|
+
# 中文详情[参考](https://www.tencentcloud.com/zh/document/product/1229/71847)
|
|
6349
|
+
|
|
6350
|
+
# 英文详情[参考](https://www.tencentcloud.com/document/product/1229/71847?lang=en)
|
|
6319
6351
|
# @type EndStatusString: String
|
|
6320
6352
|
# @param RecordURL: 录音 URL
|
|
6321
6353
|
# @type RecordURL: String
|
|
@@ -6705,10 +6737,10 @@ module TencentCloud
|
|
|
6705
6737
|
|
|
6706
6738
|
attr_accessor :Name, :Mail, :Phone, :Nick, :StaffNumber, :RoleId, :RoleIdList, :RoleList, :SkillGroupList, :LastModifyTimestamp, :ExtensionNumber, :ForwardingConfig
|
|
6707
6739
|
extend Gem::Deprecate
|
|
6708
|
-
deprecate :RoleId, :none,
|
|
6709
|
-
deprecate :RoleId=, :none,
|
|
6710
|
-
deprecate :RoleIdList, :none,
|
|
6711
|
-
deprecate :RoleIdList=, :none,
|
|
6740
|
+
deprecate :RoleId, :none, 2026, 1
|
|
6741
|
+
deprecate :RoleId=, :none, 2026, 1
|
|
6742
|
+
deprecate :RoleIdList, :none, 2026, 1
|
|
6743
|
+
deprecate :RoleIdList=, :none, 2026, 1
|
|
6712
6744
|
|
|
6713
6745
|
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)
|
|
6714
6746
|
@Name = name
|
|
@@ -7126,8 +7158,8 @@ module TencentCloud
|
|
|
7126
7158
|
|
|
7127
7159
|
attr_accessor :Caller, :Callee, :Time, :Direction, :CallType, :Duration, :RecordURL, :RecordId, :SeatUser, :EndStatus, :SkillGroup, :CallerLocation, :IVRDuration, :RingTimestamp, :AcceptTimestamp, :EndedTimestamp, :IVRKeyPressed, :HungUpSide, :ServeParticipants, :SkillGroupId, :EndStatusString, :StartTimestamp, :QueuedTimestamp, :PostIVRKeyPressed, :QueuedSkillGroupId, :SessionId, :ProtectedCaller, :ProtectedCallee, :Uui, :UUI, :IVRKeyPressedEx, :AsrUrl, :AsrStatus, :CustomRecordURL, :Remark, :QueuedSkillGroupName, :VoicemailRecordURL, :VoicemailAsrURL, :AIAgentId, :AIAgentName
|
|
7128
7160
|
extend Gem::Deprecate
|
|
7129
|
-
deprecate :Uui, :none,
|
|
7130
|
-
deprecate :Uui=, :none,
|
|
7161
|
+
deprecate :Uui, :none, 2026, 1
|
|
7162
|
+
deprecate :Uui=, :none, 2026, 1
|
|
7131
7163
|
|
|
7132
7164
|
def initialize(caller=nil, callee=nil, time=nil, direction=nil, calltype=nil, duration=nil, recordurl=nil, recordid=nil, seatuser=nil, endstatus=nil, skillgroup=nil, callerlocation=nil, ivrduration=nil, ringtimestamp=nil, accepttimestamp=nil, endedtimestamp=nil, ivrkeypressed=nil, hungupside=nil, serveparticipants=nil, skillgroupid=nil, endstatusstring=nil, starttimestamp=nil, queuedtimestamp=nil, postivrkeypressed=nil, queuedskillgroupid=nil, sessionid=nil, protectedcaller=nil, protectedcallee=nil, uui=nil, ivrkeypressedex=nil, asrurl=nil, asrstatus=nil, customrecordurl=nil, remark=nil, queuedskillgroupname=nil, voicemailrecordurl=nil, voicemailasrurl=nil, aiagentid=nil, aiagentname=nil)
|
|
7133
7165
|
@Caller = caller
|
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.1203
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-01-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|
|
@@ -33,9 +33,9 @@ executables: []
|
|
|
33
33
|
extensions: []
|
|
34
34
|
extra_rdoc_files: []
|
|
35
35
|
files:
|
|
36
|
+
- lib/tencentcloud-sdk-ccc.rb
|
|
36
37
|
- lib/v20200210/client.rb
|
|
37
38
|
- lib/v20200210/models.rb
|
|
38
|
-
- lib/tencentcloud-sdk-ccc.rb
|
|
39
39
|
- lib/VERSION
|
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
|
41
41
|
licenses:
|