tencentcloud-sdk-ccc 3.0.602 → 3.0.603
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20200210/models.rb +17 -4
- 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: 87caf9e91ce68174a28700151e035bfa149283b5
|
4
|
+
data.tar.gz: 2b064446a98ec0bef9839d51127c5d283e275808
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 38b0b458e4c064bc9a612e9cf1816b80f860e5a6a517864faa4f100cae11b82bac53b2af26a17e9f27904e675b6d0a57cfe4c622369b15998fd32296ee6a0b96
|
7
|
+
data.tar.gz: 114048ebe090ca50343c265b2ee1476d1d3c8c6c3109aad366df95265059f9bfc90d2ef374750fb161741191a8abfc55f1b83a4b274cc783135aa9a26be5325b
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.603
|
data/lib/v20200210/models.rb
CHANGED
@@ -646,19 +646,27 @@ module TencentCloud
|
|
646
646
|
# @type ExtensionId: String
|
647
647
|
# @param ExtensionName: 分机名称
|
648
648
|
# @type ExtensionName: String
|
649
|
+
# @param SkillGroupIds: 绑定的技能组列表
|
650
|
+
# @type SkillGroupIds: Array
|
651
|
+
# @param Relation: 绑定的坐席邮箱
|
652
|
+
# @type Relation: String
|
649
653
|
|
650
|
-
attr_accessor :SdkAppId, :ExtensionId, :ExtensionName
|
654
|
+
attr_accessor :SdkAppId, :ExtensionId, :ExtensionName, :SkillGroupIds, :Relation
|
651
655
|
|
652
|
-
def initialize(sdkappid=nil, extensionid=nil, extensionname=nil)
|
656
|
+
def initialize(sdkappid=nil, extensionid=nil, extensionname=nil, skillgroupids=nil, relation=nil)
|
653
657
|
@SdkAppId = sdkappid
|
654
658
|
@ExtensionId = extensionid
|
655
659
|
@ExtensionName = extensionname
|
660
|
+
@SkillGroupIds = skillgroupids
|
661
|
+
@Relation = relation
|
656
662
|
end
|
657
663
|
|
658
664
|
def deserialize(params)
|
659
665
|
@SdkAppId = params['SdkAppId']
|
660
666
|
@ExtensionId = params['ExtensionId']
|
661
667
|
@ExtensionName = params['ExtensionName']
|
668
|
+
@SkillGroupIds = params['SkillGroupIds']
|
669
|
+
@Relation = params['Relation']
|
662
670
|
end
|
663
671
|
end
|
664
672
|
|
@@ -3508,10 +3516,13 @@ module TencentCloud
|
|
3508
3516
|
# @param VoicemailRecordURL: 通话中语音留言录音URL
|
3509
3517
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3510
3518
|
# @type VoicemailRecordURL: Array
|
3519
|
+
# @param VoicemailAsrURL: 通话中语音留言ASR文本信息地址
|
3520
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3521
|
+
# @type VoicemailAsrURL: Array
|
3511
3522
|
|
3512
|
-
attr_accessor :Caller, :Callee, :Time, :Direction, :Duration, :RecordURL, :SeatUser, :EndStatus, :SkillGroup, :CallerLocation, :IVRDuration, :RingTimestamp, :AcceptTimestamp, :EndedTimestamp, :IVRKeyPressed, :HungUpSide, :ServeParticipants, :SkillGroupId, :EndStatusString, :StartTimestamp, :QueuedTimestamp, :PostIVRKeyPressed, :QueuedSkillGroupId, :SessionId, :ProtectedCaller, :ProtectedCallee, :Uui, :IVRKeyPressedEx, :AsrUrl, :CustomRecordURL, :Remark, :QueuedSkillGroupName, :VoicemailRecordURL
|
3523
|
+
attr_accessor :Caller, :Callee, :Time, :Direction, :Duration, :RecordURL, :SeatUser, :EndStatus, :SkillGroup, :CallerLocation, :IVRDuration, :RingTimestamp, :AcceptTimestamp, :EndedTimestamp, :IVRKeyPressed, :HungUpSide, :ServeParticipants, :SkillGroupId, :EndStatusString, :StartTimestamp, :QueuedTimestamp, :PostIVRKeyPressed, :QueuedSkillGroupId, :SessionId, :ProtectedCaller, :ProtectedCallee, :Uui, :IVRKeyPressedEx, :AsrUrl, :CustomRecordURL, :Remark, :QueuedSkillGroupName, :VoicemailRecordURL, :VoicemailAsrURL
|
3513
3524
|
|
3514
|
-
def initialize(caller=nil, callee=nil, time=nil, direction=nil, duration=nil, recordurl=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, customrecordurl=nil, remark=nil, queuedskillgroupname=nil, voicemailrecordurl=nil)
|
3525
|
+
def initialize(caller=nil, callee=nil, time=nil, direction=nil, duration=nil, recordurl=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, customrecordurl=nil, remark=nil, queuedskillgroupname=nil, voicemailrecordurl=nil, voicemailasrurl=nil)
|
3515
3526
|
@Caller = caller
|
3516
3527
|
@Callee = callee
|
3517
3528
|
@Time = time
|
@@ -3545,6 +3556,7 @@ module TencentCloud
|
|
3545
3556
|
@Remark = remark
|
3546
3557
|
@QueuedSkillGroupName = queuedskillgroupname
|
3547
3558
|
@VoicemailRecordURL = voicemailrecordurl
|
3559
|
+
@VoicemailAsrURL = voicemailasrurl
|
3548
3560
|
end
|
3549
3561
|
|
3550
3562
|
def deserialize(params)
|
@@ -3605,6 +3617,7 @@ module TencentCloud
|
|
3605
3617
|
@Remark = params['Remark']
|
3606
3618
|
@QueuedSkillGroupName = params['QueuedSkillGroupName']
|
3607
3619
|
@VoicemailRecordURL = params['VoicemailRecordURL']
|
3620
|
+
@VoicemailAsrURL = params['VoicemailAsrURL']
|
3608
3621
|
end
|
3609
3622
|
end
|
3610
3623
|
|
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.603
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-06-
|
11
|
+
date: 2023-06-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|