tencentcloud-sdk-ccc 1.0.220 → 1.0.224
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 +14 -2
- 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: ffae595e5c052b6338bcfaa5bc8711c3e4e8a0b7
|
|
4
|
+
data.tar.gz: dac21d096eb585ebcdc64d8f8d26e6d672de9ddc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ab1f2c0616e6e7ce9693e7af041eddba39528324a075be66c375862c87005b04a4029b68591cf6d7ebbd023b6949ebc8736ff41f4683969799e69b897429f981
|
|
7
|
+
data.tar.gz: 6c65a3b6176eeb5ff535ccbffc3fa2273766340172374a42215b7f57002c3b29594095dca151a3e5e2c183b9c50ddc7d02e1c4952ce138a6c47acfb9af383aa4
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.224
|
data/lib/v20200210/models.rb
CHANGED
|
@@ -1979,10 +1979,13 @@ module TencentCloud
|
|
|
1979
1979
|
# @param Uui: 客户自定义数据(User-to-User Interface)
|
|
1980
1980
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
1981
1981
|
# @type Uui: String
|
|
1982
|
+
# @param IVRKeyPressedEx: IVR按键信息(e.g. [{"Key":"1","Label":"非常满意"}])
|
|
1983
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
1984
|
+
# @type IVRKeyPressedEx: Array
|
|
1982
1985
|
|
|
1983
|
-
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
|
|
1986
|
+
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
|
|
1984
1987
|
|
|
1985
|
-
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)
|
|
1988
|
+
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)
|
|
1986
1989
|
@Caller = caller
|
|
1987
1990
|
@Callee = callee
|
|
1988
1991
|
@Time = time
|
|
@@ -2010,6 +2013,7 @@ module TencentCloud
|
|
|
2010
2013
|
@ProtectedCaller = protectedcaller
|
|
2011
2014
|
@ProtectedCallee = protectedcallee
|
|
2012
2015
|
@Uui = uui
|
|
2016
|
+
@IVRKeyPressedEx = ivrkeypressedex
|
|
2013
2017
|
end
|
|
2014
2018
|
|
|
2015
2019
|
def deserialize(params)
|
|
@@ -2057,6 +2061,14 @@ module TencentCloud
|
|
|
2057
2061
|
@ProtectedCaller = params['ProtectedCaller']
|
|
2058
2062
|
@ProtectedCallee = params['ProtectedCallee']
|
|
2059
2063
|
@Uui = params['Uui']
|
|
2064
|
+
unless params['IVRKeyPressedEx'].nil?
|
|
2065
|
+
@IVRKeyPressedEx = []
|
|
2066
|
+
params['IVRKeyPressedEx'].each do |i|
|
|
2067
|
+
ivrkeypressedelement_tmp = IVRKeyPressedElement.new
|
|
2068
|
+
ivrkeypressedelement_tmp.deserialize(i)
|
|
2069
|
+
@IVRKeyPressedEx << ivrkeypressedelement_tmp
|
|
2070
|
+
end
|
|
2071
|
+
end
|
|
2060
2072
|
end
|
|
2061
2073
|
end
|
|
2062
2074
|
|
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: 1.0.
|
|
4
|
+
version: 1.0.224
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-12-
|
|
11
|
+
date: 2021-12-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|