tencentcloud-sdk-ccc 3.0.1203 → 3.0.1214
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 +24 -0
- data/lib/v20200210/models.rb +159 -35
- 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: 4a504ffc1c92760f7720eb9254baf69d922043a4
|
|
4
|
+
data.tar.gz: 57b1873dcd454fa6e31534e6ad653f23465d07df
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 48dfc48123eb470b2f36f026bd3d0133117f5ae7593fa762b47d854dfef809980b69ab71f335535110291ec485c1902704dd67b31670fb1672ec43336e9da36b
|
|
7
|
+
data.tar.gz: 9d3355c0fe31418da0e685e75f2732e77167a2c25c1c0f660b30d7d90fe42d67674dad80338a4adc6a91169e0cc52cc458f8defbf326f7abf3e939dadc229b25
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1214
|
data/lib/v20200210/client.rb
CHANGED
|
@@ -1030,6 +1030,30 @@ module TencentCloud
|
|
|
1030
1030
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1031
1031
|
end
|
|
1032
1032
|
|
|
1033
|
+
# 获取闪信记录列表
|
|
1034
|
+
|
|
1035
|
+
# @param request: Request instance for DescribeFlashSMSList.
|
|
1036
|
+
# @type request: :class:`Tencentcloud::ccc::V20200210::DescribeFlashSMSListRequest`
|
|
1037
|
+
# @rtype: :class:`Tencentcloud::ccc::V20200210::DescribeFlashSMSListResponse`
|
|
1038
|
+
def DescribeFlashSMSList(request)
|
|
1039
|
+
body = send_request('DescribeFlashSMSList', request.serialize)
|
|
1040
|
+
response = JSON.parse(body)
|
|
1041
|
+
if response['Response'].key?('Error') == false
|
|
1042
|
+
model = DescribeFlashSMSListResponse.new
|
|
1043
|
+
model.deserialize(response['Response'])
|
|
1044
|
+
model
|
|
1045
|
+
else
|
|
1046
|
+
code = response['Response']['Error']['Code']
|
|
1047
|
+
message = response['Response']['Error']['Message']
|
|
1048
|
+
reqid = response['Response']['RequestId']
|
|
1049
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1050
|
+
end
|
|
1051
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1052
|
+
raise e
|
|
1053
|
+
rescue StandardError => e
|
|
1054
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1055
|
+
end
|
|
1056
|
+
|
|
1033
1057
|
# 获取包括全媒体和文本会话两种类型的服务记录。
|
|
1034
1058
|
|
|
1035
1059
|
# @param request: Request instance for DescribeIMCdrList.
|
data/lib/v20200210/models.rb
CHANGED
|
@@ -23,17 +23,21 @@ module TencentCloud
|
|
|
23
23
|
# @type AIAgentId: Integer
|
|
24
24
|
# @param AIAgentName: 智能体名称
|
|
25
25
|
# @type AIAgentName: String
|
|
26
|
+
# @param VariableNames: 智能体变量名列表
|
|
27
|
+
# @type VariableNames: Array
|
|
26
28
|
|
|
27
|
-
attr_accessor :AIAgentId, :AIAgentName
|
|
29
|
+
attr_accessor :AIAgentId, :AIAgentName, :VariableNames
|
|
28
30
|
|
|
29
|
-
def initialize(aiagentid=nil, aiagentname=nil)
|
|
31
|
+
def initialize(aiagentid=nil, aiagentname=nil, variablenames=nil)
|
|
30
32
|
@AIAgentId = aiagentid
|
|
31
33
|
@AIAgentName = aiagentname
|
|
34
|
+
@VariableNames = variablenames
|
|
32
35
|
end
|
|
33
36
|
|
|
34
37
|
def deserialize(params)
|
|
35
38
|
@AIAgentId = params['AIAgentId']
|
|
36
39
|
@AIAgentName = params['AIAgentName']
|
|
40
|
+
@VariableNames = params['VariableNames']
|
|
37
41
|
end
|
|
38
42
|
end
|
|
39
43
|
|
|
@@ -397,8 +401,8 @@ module TencentCloud
|
|
|
397
401
|
|
|
398
402
|
attr_accessor :User, :Message, :Timestamp, :Start, :End
|
|
399
403
|
extend Gem::Deprecate
|
|
400
|
-
deprecate :Timestamp, :none, 2026,
|
|
401
|
-
deprecate :Timestamp=, :none, 2026,
|
|
404
|
+
deprecate :Timestamp, :none, 2026, 2
|
|
405
|
+
deprecate :Timestamp=, :none, 2026, 2
|
|
402
406
|
|
|
403
407
|
def initialize(user=nil, message=nil, timestamp=nil, start=nil, _end=nil)
|
|
404
408
|
@User = user
|
|
@@ -490,6 +494,7 @@ module TencentCloud
|
|
|
490
494
|
# 2 已完成:任务中所有呼叫完成
|
|
491
495
|
# 3结束中:任务到期,但仍有部分呼叫未结束
|
|
492
496
|
# 4已结束:任务到期终止
|
|
497
|
+
# 5已暂停:可恢复继续执行
|
|
493
498
|
# @type State: Integer
|
|
494
499
|
# @param TaskId: 任务Id
|
|
495
500
|
# @type TaskId: Integer
|
|
@@ -623,8 +628,8 @@ module TencentCloud
|
|
|
623
628
|
|
|
624
629
|
attr_accessor :SdkAppId, :StaffEmail, :StaffSkillGroupList, :SkillGroupList
|
|
625
630
|
extend Gem::Deprecate
|
|
626
|
-
deprecate :SkillGroupList, :none, 2026,
|
|
627
|
-
deprecate :SkillGroupList=, :none, 2026,
|
|
631
|
+
deprecate :SkillGroupList, :none, 2026, 2
|
|
632
|
+
deprecate :SkillGroupList=, :none, 2026, 2
|
|
628
633
|
|
|
629
634
|
def initialize(sdkappid=nil, staffemail=nil, staffskillgrouplist=nil, skillgrouplist=nil)
|
|
630
635
|
@SdkAppId = sdkappid
|
|
@@ -1108,8 +1113,8 @@ module TencentCloud
|
|
|
1108
1113
|
|
|
1109
1114
|
attr_accessor :SdkAppId, :AIAgentId, :Callee, :Callers, :PromptVariables, :Variables, :MaxRingTimeoutSecond
|
|
1110
1115
|
extend Gem::Deprecate
|
|
1111
|
-
deprecate :PromptVariables, :none, 2026,
|
|
1112
|
-
deprecate :PromptVariables=, :none, 2026,
|
|
1116
|
+
deprecate :PromptVariables, :none, 2026, 2
|
|
1117
|
+
deprecate :PromptVariables=, :none, 2026, 2
|
|
1113
1118
|
|
|
1114
1119
|
def initialize(sdkappid=nil, aiagentid=nil, callee=nil, callers=nil, promptvariables=nil, variables=nil, maxringtimeoutsecond=nil)
|
|
1115
1120
|
@SdkAppId = sdkappid
|
|
@@ -1416,8 +1421,8 @@ module TencentCloud
|
|
|
1416
1421
|
|
|
1417
1422
|
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
|
|
1418
1423
|
extend Gem::Deprecate
|
|
1419
|
-
deprecate :PromptVariables, :none, 2026,
|
|
1420
|
-
deprecate :PromptVariables=, :none, 2026,
|
|
1424
|
+
deprecate :PromptVariables, :none, 2026, 2
|
|
1425
|
+
deprecate :PromptVariables=, :none, 2026, 2
|
|
1421
1426
|
|
|
1422
1427
|
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)
|
|
1423
1428
|
@SdkAppId = sdkappid
|
|
@@ -1856,8 +1861,8 @@ module TencentCloud
|
|
|
1856
1861
|
|
|
1857
1862
|
attr_accessor :SdkAppId, :UserId, :Callee, :Caller, :Callers, :IsForceUseMobile, :Uui, :UUI
|
|
1858
1863
|
extend Gem::Deprecate
|
|
1859
|
-
deprecate :Uui, :none, 2026,
|
|
1860
|
-
deprecate :Uui=, :none, 2026,
|
|
1864
|
+
deprecate :Uui, :none, 2026, 2
|
|
1865
|
+
deprecate :Uui=, :none, 2026, 2
|
|
1861
1866
|
|
|
1862
1867
|
def initialize(sdkappid=nil, userid=nil, callee=nil, caller=nil, callers=nil, isforceusemobile=nil, uui=nil)
|
|
1863
1868
|
@SdkAppId = sdkappid
|
|
@@ -3008,7 +3013,7 @@ module TencentCloud
|
|
|
3008
3013
|
# @type Callees: Array
|
|
3009
3014
|
# @param IvrId: 任务使用的IvrId
|
|
3010
3015
|
# @type IvrId: Integer
|
|
3011
|
-
# @param State: 任务状态 0初始 1运行中 2已完成 3结束中 4已终止
|
|
3016
|
+
# @param State: 任务状态 0初始 1运行中 2已完成 3结束中 4已终止 5已暂停
|
|
3012
3017
|
# @type State: Integer
|
|
3013
3018
|
# @param MaxRingTimeoutSecond: 最大振铃时长,达到时长阈值自动挂断。 仅自携号码支持当前参数
|
|
3014
3019
|
# @type MaxRingTimeoutSecond: Integer
|
|
@@ -3326,10 +3331,10 @@ module TencentCloud
|
|
|
3326
3331
|
|
|
3327
3332
|
attr_accessor :SdkAppId, :InstanceId, :CdrId, :Limit, :Offset, :Order, :SessionId
|
|
3328
3333
|
extend Gem::Deprecate
|
|
3329
|
-
deprecate :InstanceId, :none, 2026,
|
|
3330
|
-
deprecate :InstanceId=, :none, 2026,
|
|
3331
|
-
deprecate :CdrId, :none, 2026,
|
|
3332
|
-
deprecate :CdrId=, :none, 2026,
|
|
3334
|
+
deprecate :InstanceId, :none, 2026, 2
|
|
3335
|
+
deprecate :InstanceId=, :none, 2026, 2
|
|
3336
|
+
deprecate :CdrId, :none, 2026, 2
|
|
3337
|
+
deprecate :CdrId=, :none, 2026, 2
|
|
3333
3338
|
|
|
3334
3339
|
def initialize(sdkappid=nil, instanceid=nil, cdrid=nil, limit=nil, offset=nil, order=nil, sessionid=nil)
|
|
3335
3340
|
@SdkAppId = sdkappid
|
|
@@ -3569,6 +3574,85 @@ module TencentCloud
|
|
|
3569
3574
|
end
|
|
3570
3575
|
end
|
|
3571
3576
|
|
|
3577
|
+
# DescribeFlashSMSList请求参数结构体
|
|
3578
|
+
class DescribeFlashSMSListRequest < TencentCloud::Common::AbstractModel
|
|
3579
|
+
# @param SdkAppId: 应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc
|
|
3580
|
+
# @type SdkAppId: Integer
|
|
3581
|
+
# @param StartTimestamp: 起始时间戳,Unix 秒级时间戳,最大支持近180天。
|
|
3582
|
+
# @type StartTimestamp: Integer
|
|
3583
|
+
# @param EndTimestamp: 结束时间戳,Unix 秒级时间戳,结束时间与开始时间的区间范围小于90天。
|
|
3584
|
+
# @type EndTimestamp: Integer
|
|
3585
|
+
# @param DeliveryNumber: 闪信投递号码(被叫号码)
|
|
3586
|
+
# @type DeliveryNumber: String
|
|
3587
|
+
# @param ServingNumber: 呼叫关联的系统号码
|
|
3588
|
+
# @type ServingNumber: String
|
|
3589
|
+
# @param SessionId: 会话 ID
|
|
3590
|
+
# @type SessionId: String
|
|
3591
|
+
# @param DeliveryStatus: 投递结果 1 为成功,其他为失败
|
|
3592
|
+
# @type DeliveryStatus: Integer
|
|
3593
|
+
# @param PageSize: 分页大小,默认 20,最大 100
|
|
3594
|
+
# @type PageSize: Integer
|
|
3595
|
+
# @param PageNumber: 分页页码,从 0 开始
|
|
3596
|
+
# @type PageNumber: Integer
|
|
3597
|
+
|
|
3598
|
+
attr_accessor :SdkAppId, :StartTimestamp, :EndTimestamp, :DeliveryNumber, :ServingNumber, :SessionId, :DeliveryStatus, :PageSize, :PageNumber
|
|
3599
|
+
|
|
3600
|
+
def initialize(sdkappid=nil, starttimestamp=nil, endtimestamp=nil, deliverynumber=nil, servingnumber=nil, sessionid=nil, deliverystatus=nil, pagesize=nil, pagenumber=nil)
|
|
3601
|
+
@SdkAppId = sdkappid
|
|
3602
|
+
@StartTimestamp = starttimestamp
|
|
3603
|
+
@EndTimestamp = endtimestamp
|
|
3604
|
+
@DeliveryNumber = deliverynumber
|
|
3605
|
+
@ServingNumber = servingnumber
|
|
3606
|
+
@SessionId = sessionid
|
|
3607
|
+
@DeliveryStatus = deliverystatus
|
|
3608
|
+
@PageSize = pagesize
|
|
3609
|
+
@PageNumber = pagenumber
|
|
3610
|
+
end
|
|
3611
|
+
|
|
3612
|
+
def deserialize(params)
|
|
3613
|
+
@SdkAppId = params['SdkAppId']
|
|
3614
|
+
@StartTimestamp = params['StartTimestamp']
|
|
3615
|
+
@EndTimestamp = params['EndTimestamp']
|
|
3616
|
+
@DeliveryNumber = params['DeliveryNumber']
|
|
3617
|
+
@ServingNumber = params['ServingNumber']
|
|
3618
|
+
@SessionId = params['SessionId']
|
|
3619
|
+
@DeliveryStatus = params['DeliveryStatus']
|
|
3620
|
+
@PageSize = params['PageSize']
|
|
3621
|
+
@PageNumber = params['PageNumber']
|
|
3622
|
+
end
|
|
3623
|
+
end
|
|
3624
|
+
|
|
3625
|
+
# DescribeFlashSMSList返回参数结构体
|
|
3626
|
+
class DescribeFlashSMSListResponse < TencentCloud::Common::AbstractModel
|
|
3627
|
+
# @param Total: 记录总数
|
|
3628
|
+
# @type Total: Integer
|
|
3629
|
+
# @param FlashSMSList: 闪信记录列表
|
|
3630
|
+
# @type FlashSMSList: Array
|
|
3631
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3632
|
+
# @type RequestId: String
|
|
3633
|
+
|
|
3634
|
+
attr_accessor :Total, :FlashSMSList, :RequestId
|
|
3635
|
+
|
|
3636
|
+
def initialize(total=nil, flashsmslist=nil, requestid=nil)
|
|
3637
|
+
@Total = total
|
|
3638
|
+
@FlashSMSList = flashsmslist
|
|
3639
|
+
@RequestId = requestid
|
|
3640
|
+
end
|
|
3641
|
+
|
|
3642
|
+
def deserialize(params)
|
|
3643
|
+
@Total = params['Total']
|
|
3644
|
+
unless params['FlashSMSList'].nil?
|
|
3645
|
+
@FlashSMSList = []
|
|
3646
|
+
params['FlashSMSList'].each do |i|
|
|
3647
|
+
flashsmsrecord_tmp = FlashSMSRecord.new
|
|
3648
|
+
flashsmsrecord_tmp.deserialize(i)
|
|
3649
|
+
@FlashSMSList << flashsmsrecord_tmp
|
|
3650
|
+
end
|
|
3651
|
+
end
|
|
3652
|
+
@RequestId = params['RequestId']
|
|
3653
|
+
end
|
|
3654
|
+
end
|
|
3655
|
+
|
|
3572
3656
|
# DescribeIMCdrList请求参数结构体
|
|
3573
3657
|
class DescribeIMCdrListRequest < TencentCloud::Common::AbstractModel
|
|
3574
3658
|
# @param SdkAppId: 应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc
|
|
@@ -3655,8 +3739,8 @@ module TencentCloud
|
|
|
3655
3739
|
|
|
3656
3740
|
attr_accessor :StartTimestamp, :EndTimestamp, :InstanceId, :SdkAppId, :Limit, :Offset, :Type
|
|
3657
3741
|
extend Gem::Deprecate
|
|
3658
|
-
deprecate :InstanceId, :none, 2026,
|
|
3659
|
-
deprecate :InstanceId=, :none, 2026,
|
|
3742
|
+
deprecate :InstanceId, :none, 2026, 2
|
|
3743
|
+
deprecate :InstanceId=, :none, 2026, 2
|
|
3660
3744
|
|
|
3661
3745
|
def initialize(starttimestamp=nil, endtimestamp=nil, instanceid=nil, sdkappid=nil, limit=nil, offset=nil, type=nil)
|
|
3662
3746
|
@StartTimestamp = starttimestamp
|
|
@@ -3693,8 +3777,8 @@ module TencentCloud
|
|
|
3693
3777
|
|
|
3694
3778
|
attr_accessor :TotalCount, :IMCdrs, :IMCdrList, :RequestId
|
|
3695
3779
|
extend Gem::Deprecate
|
|
3696
|
-
deprecate :IMCdrs, :none, 2026,
|
|
3697
|
-
deprecate :IMCdrs=, :none, 2026,
|
|
3780
|
+
deprecate :IMCdrs, :none, 2026, 2
|
|
3781
|
+
deprecate :IMCdrs=, :none, 2026, 2
|
|
3698
3782
|
|
|
3699
3783
|
def initialize(totalcount=nil, imcdrs=nil, imcdrlist=nil, requestid=nil)
|
|
3700
3784
|
@TotalCount = totalcount
|
|
@@ -4186,8 +4270,8 @@ module TencentCloud
|
|
|
4186
4270
|
|
|
4187
4271
|
attr_accessor :TotalCount, :TelCdrs, :TelCdrList, :RequestId
|
|
4188
4272
|
extend Gem::Deprecate
|
|
4189
|
-
deprecate :TelCdrs, :none, 2026,
|
|
4190
|
-
deprecate :TelCdrs=, :none, 2026,
|
|
4273
|
+
deprecate :TelCdrs, :none, 2026, 2
|
|
4274
|
+
deprecate :TelCdrs=, :none, 2026, 2
|
|
4191
4275
|
|
|
4192
4276
|
def initialize(totalcount=nil, telcdrs=nil, telcdrlist=nil, requestid=nil)
|
|
4193
4277
|
@TotalCount = totalcount
|
|
@@ -4679,8 +4763,8 @@ module TencentCloud
|
|
|
4679
4763
|
|
|
4680
4764
|
attr_accessor :TelCallOutCount, :TelCallInCount, :SeatUsedCount, :VoipCallInCount, :VOIPCallInCount, :AsrOfflineCount, :AsrRealtimeCount, :RequestId
|
|
4681
4765
|
extend Gem::Deprecate
|
|
4682
|
-
deprecate :VoipCallInCount, :none, 2026,
|
|
4683
|
-
deprecate :VoipCallInCount=, :none, 2026,
|
|
4766
|
+
deprecate :VoipCallInCount, :none, 2026, 2
|
|
4767
|
+
deprecate :VoipCallInCount=, :none, 2026, 2
|
|
4684
4768
|
|
|
4685
4769
|
def initialize(telcalloutcount=nil, telcallincount=nil, seatusedcount=nil, voipcallincount=nil, asrofflinecount=nil, asrrealtimecount=nil, requestid=nil)
|
|
4686
4770
|
@TelCallOutCount = telcalloutcount
|
|
@@ -4728,8 +4812,8 @@ module TencentCloud
|
|
|
4728
4812
|
|
|
4729
4813
|
attr_accessor :StartTimeStamp, :EndTimeStamp, :SdkAppId, :PageSize, :PageNumber, :InstanceId, :Limit, :Offset, :Phones, :SessionIds
|
|
4730
4814
|
extend Gem::Deprecate
|
|
4731
|
-
deprecate :InstanceId, :none, 2026,
|
|
4732
|
-
deprecate :InstanceId=, :none, 2026,
|
|
4815
|
+
deprecate :InstanceId, :none, 2026, 2
|
|
4816
|
+
deprecate :InstanceId=, :none, 2026, 2
|
|
4733
4817
|
|
|
4734
4818
|
def initialize(starttimestamp=nil, endtimestamp=nil, sdkappid=nil, pagesize=nil, pagenumber=nil, instanceid=nil, limit=nil, offset=nil, phones=nil, sessionids=nil)
|
|
4735
4819
|
@StartTimeStamp = starttimestamp
|
|
@@ -4771,8 +4855,8 @@ module TencentCloud
|
|
|
4771
4855
|
|
|
4772
4856
|
attr_accessor :TotalCount, :TelCdrs, :TelCdrList, :RequestId
|
|
4773
4857
|
extend Gem::Deprecate
|
|
4774
|
-
deprecate :TelCdrs, :none, 2026,
|
|
4775
|
-
deprecate :TelCdrs=, :none, 2026,
|
|
4858
|
+
deprecate :TelCdrs, :none, 2026, 2
|
|
4859
|
+
deprecate :TelCdrs=, :none, 2026, 2
|
|
4776
4860
|
|
|
4777
4861
|
def initialize(totalcount=nil, telcdrs=nil, telcdrlist=nil, requestid=nil)
|
|
4778
4862
|
@TotalCount = totalcount
|
|
@@ -5076,6 +5160,46 @@ module TencentCloud
|
|
|
5076
5160
|
end
|
|
5077
5161
|
end
|
|
5078
5162
|
|
|
5163
|
+
# 闪信记录
|
|
5164
|
+
class FlashSMSRecord < TencentCloud::Common::AbstractModel
|
|
5165
|
+
# @param SessionId: 会话 ID
|
|
5166
|
+
# @type SessionId: String
|
|
5167
|
+
# @param DeliveryNumber: 闪信投递号码(被叫)
|
|
5168
|
+
# @type DeliveryNumber: String
|
|
5169
|
+
# @param ServingNumber: 呼叫关联的系统号码
|
|
5170
|
+
# @type ServingNumber: String
|
|
5171
|
+
# @param DeliveryStatus: 投递状态,1 表示成功,其他表示失败
|
|
5172
|
+
# @type DeliveryStatus: Integer
|
|
5173
|
+
# @param DeliveryMessage: 投递失败原因
|
|
5174
|
+
# @type DeliveryMessage: String
|
|
5175
|
+
# @param DeliveryTimestamp: 投递时间戳,Unix 秒级时间戳
|
|
5176
|
+
# @type DeliveryTimestamp: Integer
|
|
5177
|
+
# @param ArriveTimestamp: 送达时间(送达成功),Unix 秒级时间戳
|
|
5178
|
+
# @type ArriveTimestamp: Integer
|
|
5179
|
+
|
|
5180
|
+
attr_accessor :SessionId, :DeliveryNumber, :ServingNumber, :DeliveryStatus, :DeliveryMessage, :DeliveryTimestamp, :ArriveTimestamp
|
|
5181
|
+
|
|
5182
|
+
def initialize(sessionid=nil, deliverynumber=nil, servingnumber=nil, deliverystatus=nil, deliverymessage=nil, deliverytimestamp=nil, arrivetimestamp=nil)
|
|
5183
|
+
@SessionId = sessionid
|
|
5184
|
+
@DeliveryNumber = deliverynumber
|
|
5185
|
+
@ServingNumber = servingnumber
|
|
5186
|
+
@DeliveryStatus = deliverystatus
|
|
5187
|
+
@DeliveryMessage = deliverymessage
|
|
5188
|
+
@DeliveryTimestamp = deliverytimestamp
|
|
5189
|
+
@ArriveTimestamp = arrivetimestamp
|
|
5190
|
+
end
|
|
5191
|
+
|
|
5192
|
+
def deserialize(params)
|
|
5193
|
+
@SessionId = params['SessionId']
|
|
5194
|
+
@DeliveryNumber = params['DeliveryNumber']
|
|
5195
|
+
@ServingNumber = params['ServingNumber']
|
|
5196
|
+
@DeliveryStatus = params['DeliveryStatus']
|
|
5197
|
+
@DeliveryMessage = params['DeliveryMessage']
|
|
5198
|
+
@DeliveryTimestamp = params['DeliveryTimestamp']
|
|
5199
|
+
@ArriveTimestamp = params['ArriveTimestamp']
|
|
5200
|
+
end
|
|
5201
|
+
end
|
|
5202
|
+
|
|
5079
5203
|
# ForceMemberOffline请求参数结构体
|
|
5080
5204
|
class ForceMemberOfflineRequest < TencentCloud::Common::AbstractModel
|
|
5081
5205
|
# @param SdkAppId: 应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc
|
|
@@ -6737,10 +6861,10 @@ module TencentCloud
|
|
|
6737
6861
|
|
|
6738
6862
|
attr_accessor :Name, :Mail, :Phone, :Nick, :StaffNumber, :RoleId, :RoleIdList, :RoleList, :SkillGroupList, :LastModifyTimestamp, :ExtensionNumber, :ForwardingConfig
|
|
6739
6863
|
extend Gem::Deprecate
|
|
6740
|
-
deprecate :RoleId, :none, 2026,
|
|
6741
|
-
deprecate :RoleId=, :none, 2026,
|
|
6742
|
-
deprecate :RoleIdList, :none, 2026,
|
|
6743
|
-
deprecate :RoleIdList=, :none, 2026,
|
|
6864
|
+
deprecate :RoleId, :none, 2026, 2
|
|
6865
|
+
deprecate :RoleId=, :none, 2026, 2
|
|
6866
|
+
deprecate :RoleIdList, :none, 2026, 2
|
|
6867
|
+
deprecate :RoleIdList=, :none, 2026, 2
|
|
6744
6868
|
|
|
6745
6869
|
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)
|
|
6746
6870
|
@Name = name
|
|
@@ -7158,8 +7282,8 @@ module TencentCloud
|
|
|
7158
7282
|
|
|
7159
7283
|
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
|
|
7160
7284
|
extend Gem::Deprecate
|
|
7161
|
-
deprecate :Uui, :none, 2026,
|
|
7162
|
-
deprecate :Uui=, :none, 2026,
|
|
7285
|
+
deprecate :Uui, :none, 2026, 2
|
|
7286
|
+
deprecate :Uui=, :none, 2026, 2
|
|
7163
7287
|
|
|
7164
7288
|
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)
|
|
7165
7289
|
@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.1214
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-02-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|