tencentcloud-sdk-ccc 3.0.1206 → 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 +157 -34
- 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
|
|
@@ -624,8 +628,8 @@ module TencentCloud
|
|
|
624
628
|
|
|
625
629
|
attr_accessor :SdkAppId, :StaffEmail, :StaffSkillGroupList, :SkillGroupList
|
|
626
630
|
extend Gem::Deprecate
|
|
627
|
-
deprecate :SkillGroupList, :none, 2026,
|
|
628
|
-
deprecate :SkillGroupList=, :none, 2026,
|
|
631
|
+
deprecate :SkillGroupList, :none, 2026, 2
|
|
632
|
+
deprecate :SkillGroupList=, :none, 2026, 2
|
|
629
633
|
|
|
630
634
|
def initialize(sdkappid=nil, staffemail=nil, staffskillgrouplist=nil, skillgrouplist=nil)
|
|
631
635
|
@SdkAppId = sdkappid
|
|
@@ -1109,8 +1113,8 @@ module TencentCloud
|
|
|
1109
1113
|
|
|
1110
1114
|
attr_accessor :SdkAppId, :AIAgentId, :Callee, :Callers, :PromptVariables, :Variables, :MaxRingTimeoutSecond
|
|
1111
1115
|
extend Gem::Deprecate
|
|
1112
|
-
deprecate :PromptVariables, :none, 2026,
|
|
1113
|
-
deprecate :PromptVariables=, :none, 2026,
|
|
1116
|
+
deprecate :PromptVariables, :none, 2026, 2
|
|
1117
|
+
deprecate :PromptVariables=, :none, 2026, 2
|
|
1114
1118
|
|
|
1115
1119
|
def initialize(sdkappid=nil, aiagentid=nil, callee=nil, callers=nil, promptvariables=nil, variables=nil, maxringtimeoutsecond=nil)
|
|
1116
1120
|
@SdkAppId = sdkappid
|
|
@@ -1417,8 +1421,8 @@ module TencentCloud
|
|
|
1417
1421
|
|
|
1418
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
|
|
1419
1423
|
extend Gem::Deprecate
|
|
1420
|
-
deprecate :PromptVariables, :none, 2026,
|
|
1421
|
-
deprecate :PromptVariables=, :none, 2026,
|
|
1424
|
+
deprecate :PromptVariables, :none, 2026, 2
|
|
1425
|
+
deprecate :PromptVariables=, :none, 2026, 2
|
|
1422
1426
|
|
|
1423
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)
|
|
1424
1428
|
@SdkAppId = sdkappid
|
|
@@ -1857,8 +1861,8 @@ module TencentCloud
|
|
|
1857
1861
|
|
|
1858
1862
|
attr_accessor :SdkAppId, :UserId, :Callee, :Caller, :Callers, :IsForceUseMobile, :Uui, :UUI
|
|
1859
1863
|
extend Gem::Deprecate
|
|
1860
|
-
deprecate :Uui, :none, 2026,
|
|
1861
|
-
deprecate :Uui=, :none, 2026,
|
|
1864
|
+
deprecate :Uui, :none, 2026, 2
|
|
1865
|
+
deprecate :Uui=, :none, 2026, 2
|
|
1862
1866
|
|
|
1863
1867
|
def initialize(sdkappid=nil, userid=nil, callee=nil, caller=nil, callers=nil, isforceusemobile=nil, uui=nil)
|
|
1864
1868
|
@SdkAppId = sdkappid
|
|
@@ -3327,10 +3331,10 @@ module TencentCloud
|
|
|
3327
3331
|
|
|
3328
3332
|
attr_accessor :SdkAppId, :InstanceId, :CdrId, :Limit, :Offset, :Order, :SessionId
|
|
3329
3333
|
extend Gem::Deprecate
|
|
3330
|
-
deprecate :InstanceId, :none, 2026,
|
|
3331
|
-
deprecate :InstanceId=, :none, 2026,
|
|
3332
|
-
deprecate :CdrId, :none, 2026,
|
|
3333
|
-
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
|
|
3334
3338
|
|
|
3335
3339
|
def initialize(sdkappid=nil, instanceid=nil, cdrid=nil, limit=nil, offset=nil, order=nil, sessionid=nil)
|
|
3336
3340
|
@SdkAppId = sdkappid
|
|
@@ -3570,6 +3574,85 @@ module TencentCloud
|
|
|
3570
3574
|
end
|
|
3571
3575
|
end
|
|
3572
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
|
+
|
|
3573
3656
|
# DescribeIMCdrList请求参数结构体
|
|
3574
3657
|
class DescribeIMCdrListRequest < TencentCloud::Common::AbstractModel
|
|
3575
3658
|
# @param SdkAppId: 应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc
|
|
@@ -3656,8 +3739,8 @@ module TencentCloud
|
|
|
3656
3739
|
|
|
3657
3740
|
attr_accessor :StartTimestamp, :EndTimestamp, :InstanceId, :SdkAppId, :Limit, :Offset, :Type
|
|
3658
3741
|
extend Gem::Deprecate
|
|
3659
|
-
deprecate :InstanceId, :none, 2026,
|
|
3660
|
-
deprecate :InstanceId=, :none, 2026,
|
|
3742
|
+
deprecate :InstanceId, :none, 2026, 2
|
|
3743
|
+
deprecate :InstanceId=, :none, 2026, 2
|
|
3661
3744
|
|
|
3662
3745
|
def initialize(starttimestamp=nil, endtimestamp=nil, instanceid=nil, sdkappid=nil, limit=nil, offset=nil, type=nil)
|
|
3663
3746
|
@StartTimestamp = starttimestamp
|
|
@@ -3694,8 +3777,8 @@ module TencentCloud
|
|
|
3694
3777
|
|
|
3695
3778
|
attr_accessor :TotalCount, :IMCdrs, :IMCdrList, :RequestId
|
|
3696
3779
|
extend Gem::Deprecate
|
|
3697
|
-
deprecate :IMCdrs, :none, 2026,
|
|
3698
|
-
deprecate :IMCdrs=, :none, 2026,
|
|
3780
|
+
deprecate :IMCdrs, :none, 2026, 2
|
|
3781
|
+
deprecate :IMCdrs=, :none, 2026, 2
|
|
3699
3782
|
|
|
3700
3783
|
def initialize(totalcount=nil, imcdrs=nil, imcdrlist=nil, requestid=nil)
|
|
3701
3784
|
@TotalCount = totalcount
|
|
@@ -4187,8 +4270,8 @@ module TencentCloud
|
|
|
4187
4270
|
|
|
4188
4271
|
attr_accessor :TotalCount, :TelCdrs, :TelCdrList, :RequestId
|
|
4189
4272
|
extend Gem::Deprecate
|
|
4190
|
-
deprecate :TelCdrs, :none, 2026,
|
|
4191
|
-
deprecate :TelCdrs=, :none, 2026,
|
|
4273
|
+
deprecate :TelCdrs, :none, 2026, 2
|
|
4274
|
+
deprecate :TelCdrs=, :none, 2026, 2
|
|
4192
4275
|
|
|
4193
4276
|
def initialize(totalcount=nil, telcdrs=nil, telcdrlist=nil, requestid=nil)
|
|
4194
4277
|
@TotalCount = totalcount
|
|
@@ -4680,8 +4763,8 @@ module TencentCloud
|
|
|
4680
4763
|
|
|
4681
4764
|
attr_accessor :TelCallOutCount, :TelCallInCount, :SeatUsedCount, :VoipCallInCount, :VOIPCallInCount, :AsrOfflineCount, :AsrRealtimeCount, :RequestId
|
|
4682
4765
|
extend Gem::Deprecate
|
|
4683
|
-
deprecate :VoipCallInCount, :none, 2026,
|
|
4684
|
-
deprecate :VoipCallInCount=, :none, 2026,
|
|
4766
|
+
deprecate :VoipCallInCount, :none, 2026, 2
|
|
4767
|
+
deprecate :VoipCallInCount=, :none, 2026, 2
|
|
4685
4768
|
|
|
4686
4769
|
def initialize(telcalloutcount=nil, telcallincount=nil, seatusedcount=nil, voipcallincount=nil, asrofflinecount=nil, asrrealtimecount=nil, requestid=nil)
|
|
4687
4770
|
@TelCallOutCount = telcalloutcount
|
|
@@ -4729,8 +4812,8 @@ module TencentCloud
|
|
|
4729
4812
|
|
|
4730
4813
|
attr_accessor :StartTimeStamp, :EndTimeStamp, :SdkAppId, :PageSize, :PageNumber, :InstanceId, :Limit, :Offset, :Phones, :SessionIds
|
|
4731
4814
|
extend Gem::Deprecate
|
|
4732
|
-
deprecate :InstanceId, :none, 2026,
|
|
4733
|
-
deprecate :InstanceId=, :none, 2026,
|
|
4815
|
+
deprecate :InstanceId, :none, 2026, 2
|
|
4816
|
+
deprecate :InstanceId=, :none, 2026, 2
|
|
4734
4817
|
|
|
4735
4818
|
def initialize(starttimestamp=nil, endtimestamp=nil, sdkappid=nil, pagesize=nil, pagenumber=nil, instanceid=nil, limit=nil, offset=nil, phones=nil, sessionids=nil)
|
|
4736
4819
|
@StartTimeStamp = starttimestamp
|
|
@@ -4772,8 +4855,8 @@ module TencentCloud
|
|
|
4772
4855
|
|
|
4773
4856
|
attr_accessor :TotalCount, :TelCdrs, :TelCdrList, :RequestId
|
|
4774
4857
|
extend Gem::Deprecate
|
|
4775
|
-
deprecate :TelCdrs, :none, 2026,
|
|
4776
|
-
deprecate :TelCdrs=, :none, 2026,
|
|
4858
|
+
deprecate :TelCdrs, :none, 2026, 2
|
|
4859
|
+
deprecate :TelCdrs=, :none, 2026, 2
|
|
4777
4860
|
|
|
4778
4861
|
def initialize(totalcount=nil, telcdrs=nil, telcdrlist=nil, requestid=nil)
|
|
4779
4862
|
@TotalCount = totalcount
|
|
@@ -5077,6 +5160,46 @@ module TencentCloud
|
|
|
5077
5160
|
end
|
|
5078
5161
|
end
|
|
5079
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
|
+
|
|
5080
5203
|
# ForceMemberOffline请求参数结构体
|
|
5081
5204
|
class ForceMemberOfflineRequest < TencentCloud::Common::AbstractModel
|
|
5082
5205
|
# @param SdkAppId: 应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc
|
|
@@ -6738,10 +6861,10 @@ module TencentCloud
|
|
|
6738
6861
|
|
|
6739
6862
|
attr_accessor :Name, :Mail, :Phone, :Nick, :StaffNumber, :RoleId, :RoleIdList, :RoleList, :SkillGroupList, :LastModifyTimestamp, :ExtensionNumber, :ForwardingConfig
|
|
6740
6863
|
extend Gem::Deprecate
|
|
6741
|
-
deprecate :RoleId, :none, 2026,
|
|
6742
|
-
deprecate :RoleId=, :none, 2026,
|
|
6743
|
-
deprecate :RoleIdList, :none, 2026,
|
|
6744
|
-
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
|
|
6745
6868
|
|
|
6746
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)
|
|
6747
6870
|
@Name = name
|
|
@@ -7159,8 +7282,8 @@ module TencentCloud
|
|
|
7159
7282
|
|
|
7160
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
|
|
7161
7284
|
extend Gem::Deprecate
|
|
7162
|
-
deprecate :Uui, :none, 2026,
|
|
7163
|
-
deprecate :Uui=, :none, 2026,
|
|
7285
|
+
deprecate :Uui, :none, 2026, 2
|
|
7286
|
+
deprecate :Uui=, :none, 2026, 2
|
|
7164
7287
|
|
|
7165
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)
|
|
7166
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
|