tencentcloud-sdk-ccc 3.0.674 → 3.0.676
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 +162 -16
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c13f503c0990c85a01dcdb2c9b15ee253fe47334
|
4
|
+
data.tar.gz: 9b07102c020de5eeb74b855cdf66adcc4fe52bd3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 816b2adb3044d7646fd61ea39ac3aeeef15c3c7a44629f114683545d0f01899ed3d588a8a11f371a9edbcf258d937f0b1d6f40810cf79e4989e2cfbd4bba0da3
|
7
|
+
data.tar.gz: 1c49c1030eb11264eab8267f3060038edb98e6c5f1828f54b7c2093415c69069d3650f6e8a49771272a789ce3eda8534a59570beccce146658500f6d5cfcf550
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.676
|
data/lib/v20200210/client.rb
CHANGED
@@ -561,6 +561,30 @@ module TencentCloud
|
|
561
561
|
|
562
562
|
# 获取包括全媒体和文本会话两种类型的服务记录。
|
563
563
|
|
564
|
+
# @param request: Request instance for DescribeIMCdrList.
|
565
|
+
# @type request: :class:`Tencentcloud::ccc::V20200210::DescribeIMCdrListRequest`
|
566
|
+
# @rtype: :class:`Tencentcloud::ccc::V20200210::DescribeIMCdrListResponse`
|
567
|
+
def DescribeIMCdrList(request)
|
568
|
+
body = send_request('DescribeIMCdrList', request.serialize)
|
569
|
+
response = JSON.parse(body)
|
570
|
+
if response['Response'].key?('Error') == false
|
571
|
+
model = DescribeIMCdrListResponse.new
|
572
|
+
model.deserialize(response['Response'])
|
573
|
+
model
|
574
|
+
else
|
575
|
+
code = response['Response']['Error']['Code']
|
576
|
+
message = response['Response']['Error']['Message']
|
577
|
+
reqid = response['Response']['RequestId']
|
578
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
579
|
+
end
|
580
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
581
|
+
raise e
|
582
|
+
rescue StandardError => e
|
583
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
584
|
+
end
|
585
|
+
|
586
|
+
# 获取包括全媒体和文本会话两种类型的服务记录。
|
587
|
+
|
564
588
|
# @param request: Request instance for DescribeIMCdrs.
|
565
589
|
# @type request: :class:`Tencentcloud::ccc::V20200210::DescribeIMCdrsRequest`
|
566
590
|
# @rtype: :class:`Tencentcloud::ccc::V20200210::DescribeIMCdrsResponse`
|
data/lib/v20200210/models.rb
CHANGED
@@ -167,8 +167,8 @@ module TencentCloud
|
|
167
167
|
|
168
168
|
attr_accessor :SdkAppId, :StaffEmail, :SkillGroupList, :StaffSkillGroupList
|
169
169
|
extend Gem::Deprecate
|
170
|
-
deprecate :SkillGroupList, :none, 2023,
|
171
|
-
deprecate :SkillGroupList=, :none, 2023,
|
170
|
+
deprecate :SkillGroupList, :none, 2023, 10
|
171
|
+
deprecate :SkillGroupList=, :none, 2023, 10
|
172
172
|
|
173
173
|
def initialize(sdkappid=nil, staffemail=nil, skillgrouplist=nil, staffskillgrouplist=nil)
|
174
174
|
@SdkAppId = sdkappid
|
@@ -600,10 +600,15 @@ module TencentCloud
|
|
600
600
|
# @type IsForceUseMobile: Boolean
|
601
601
|
# @param Uui: 自定义数据,长度限制 1024 字节
|
602
602
|
# @type Uui: String
|
603
|
+
# @param UUI: 自定义数据,长度限制 1024 字节
|
604
|
+
# @type UUI: String
|
603
605
|
|
604
|
-
attr_accessor :SdkAppId, :UserId, :Callee, :Caller, :Callers, :IsForceUseMobile, :Uui
|
606
|
+
attr_accessor :SdkAppId, :UserId, :Callee, :Caller, :Callers, :IsForceUseMobile, :Uui, :UUI
|
607
|
+
extend Gem::Deprecate
|
608
|
+
deprecate :Uui, :none, 2023, 10
|
609
|
+
deprecate :Uui=, :none, 2023, 10
|
605
610
|
|
606
|
-
def initialize(sdkappid=nil, userid=nil, callee=nil, caller=nil, callers=nil, isforceusemobile=nil, uui=nil)
|
611
|
+
def initialize(sdkappid=nil, userid=nil, callee=nil, caller=nil, callers=nil, isforceusemobile=nil, uui=nil, uui=nil)
|
607
612
|
@SdkAppId = sdkappid
|
608
613
|
@UserId = userid
|
609
614
|
@Callee = callee
|
@@ -611,6 +616,7 @@ module TencentCloud
|
|
611
616
|
@Callers = callers
|
612
617
|
@IsForceUseMobile = isforceusemobile
|
613
618
|
@Uui = uui
|
619
|
+
@UUI = uui
|
614
620
|
end
|
615
621
|
|
616
622
|
def deserialize(params)
|
@@ -621,6 +627,7 @@ module TencentCloud
|
|
621
627
|
@Callers = params['Callers']
|
622
628
|
@IsForceUseMobile = params['IsForceUseMobile']
|
623
629
|
@Uui = params['Uui']
|
630
|
+
@UUI = params['UUI']
|
624
631
|
end
|
625
632
|
end
|
626
633
|
|
@@ -1398,6 +1405,9 @@ module TencentCloud
|
|
1398
1405
|
# @type SessionId: String
|
1399
1406
|
|
1400
1407
|
attr_accessor :InstanceId, :SdkAppId, :CdrId, :Limit, :Offset, :Order, :SessionId
|
1408
|
+
extend Gem::Deprecate
|
1409
|
+
deprecate :InstanceId, :none, 2023, 10
|
1410
|
+
deprecate :InstanceId=, :none, 2023, 10
|
1401
1411
|
|
1402
1412
|
def initialize(instanceid=nil, sdkappid=nil, cdrid=nil, limit=nil, offset=nil, order=nil, sessionid=nil)
|
1403
1413
|
@InstanceId = instanceid
|
@@ -1575,6 +1585,74 @@ module TencentCloud
|
|
1575
1585
|
end
|
1576
1586
|
end
|
1577
1587
|
|
1588
|
+
# DescribeIMCdrList请求参数结构体
|
1589
|
+
class DescribeIMCdrListRequest < TencentCloud::Common::AbstractModel
|
1590
|
+
# @param SdkAppId: 应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc
|
1591
|
+
# @type SdkAppId: Integer
|
1592
|
+
# @param StartTimestamp: 起始时间(必填),Unix 秒级时间戳
|
1593
|
+
# @type StartTimestamp: Integer
|
1594
|
+
# @param EndTimestamp: 结束时间(必填),Unix 秒级时间戳
|
1595
|
+
# @type EndTimestamp: Integer
|
1596
|
+
# @param Limit: 返回记录条数,最大为100默认20
|
1597
|
+
# @type Limit: Integer
|
1598
|
+
# @param Offset: 返回记录偏移,默认为 0
|
1599
|
+
# @type Offset: Integer
|
1600
|
+
# @param Type: 1为全媒体,2为文本客服,不填则查询全部
|
1601
|
+
# @type Type: Integer
|
1602
|
+
|
1603
|
+
attr_accessor :SdkAppId, :StartTimestamp, :EndTimestamp, :Limit, :Offset, :Type
|
1604
|
+
|
1605
|
+
def initialize(sdkappid=nil, starttimestamp=nil, endtimestamp=nil, limit=nil, offset=nil, type=nil)
|
1606
|
+
@SdkAppId = sdkappid
|
1607
|
+
@StartTimestamp = starttimestamp
|
1608
|
+
@EndTimestamp = endtimestamp
|
1609
|
+
@Limit = limit
|
1610
|
+
@Offset = offset
|
1611
|
+
@Type = type
|
1612
|
+
end
|
1613
|
+
|
1614
|
+
def deserialize(params)
|
1615
|
+
@SdkAppId = params['SdkAppId']
|
1616
|
+
@StartTimestamp = params['StartTimestamp']
|
1617
|
+
@EndTimestamp = params['EndTimestamp']
|
1618
|
+
@Limit = params['Limit']
|
1619
|
+
@Offset = params['Offset']
|
1620
|
+
@Type = params['Type']
|
1621
|
+
end
|
1622
|
+
end
|
1623
|
+
|
1624
|
+
# DescribeIMCdrList返回参数结构体
|
1625
|
+
class DescribeIMCdrListResponse < TencentCloud::Common::AbstractModel
|
1626
|
+
# @param TotalCount: 总记录数
|
1627
|
+
# @type TotalCount: Integer
|
1628
|
+
# @param IMCdrList: 服务记录列表
|
1629
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1630
|
+
# @type IMCdrList: Array
|
1631
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1632
|
+
# @type RequestId: String
|
1633
|
+
|
1634
|
+
attr_accessor :TotalCount, :IMCdrList, :RequestId
|
1635
|
+
|
1636
|
+
def initialize(totalcount=nil, imcdrlist=nil, requestid=nil)
|
1637
|
+
@TotalCount = totalcount
|
1638
|
+
@IMCdrList = imcdrlist
|
1639
|
+
@RequestId = requestid
|
1640
|
+
end
|
1641
|
+
|
1642
|
+
def deserialize(params)
|
1643
|
+
@TotalCount = params['TotalCount']
|
1644
|
+
unless params['IMCdrList'].nil?
|
1645
|
+
@IMCdrList = []
|
1646
|
+
params['IMCdrList'].each do |i|
|
1647
|
+
imcdrinfo_tmp = IMCdrInfo.new
|
1648
|
+
imcdrinfo_tmp.deserialize(i)
|
1649
|
+
@IMCdrList << imcdrinfo_tmp
|
1650
|
+
end
|
1651
|
+
end
|
1652
|
+
@RequestId = params['RequestId']
|
1653
|
+
end
|
1654
|
+
end
|
1655
|
+
|
1578
1656
|
# DescribeIMCdrs请求参数结构体
|
1579
1657
|
class DescribeIMCdrsRequest < TencentCloud::Common::AbstractModel
|
1580
1658
|
# @param StartTimestamp: 起始时间(必填),Unix 秒级时间戳
|
@@ -1593,6 +1671,9 @@ module TencentCloud
|
|
1593
1671
|
# @type Type: Integer
|
1594
1672
|
|
1595
1673
|
attr_accessor :StartTimestamp, :EndTimestamp, :InstanceId, :SdkAppId, :Limit, :Offset, :Type
|
1674
|
+
extend Gem::Deprecate
|
1675
|
+
deprecate :InstanceId, :none, 2023, 10
|
1676
|
+
deprecate :InstanceId=, :none, 2023, 10
|
1596
1677
|
|
1597
1678
|
def initialize(starttimestamp=nil, endtimestamp=nil, instanceid=nil, sdkappid=nil, limit=nil, offset=nil, type=nil)
|
1598
1679
|
@StartTimestamp = starttimestamp
|
@@ -1621,14 +1702,21 @@ module TencentCloud
|
|
1621
1702
|
# @type TotalCount: Integer
|
1622
1703
|
# @param IMCdrs: 服务记录列表
|
1623
1704
|
# @type IMCdrs: Array
|
1705
|
+
# @param IMCdrList: 服务记录列表
|
1706
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1707
|
+
# @type IMCdrList: Array
|
1624
1708
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1625
1709
|
# @type RequestId: String
|
1626
1710
|
|
1627
|
-
attr_accessor :TotalCount, :IMCdrs, :RequestId
|
1711
|
+
attr_accessor :TotalCount, :IMCdrs, :IMCdrList, :RequestId
|
1712
|
+
extend Gem::Deprecate
|
1713
|
+
deprecate :IMCdrs, :none, 2023, 10
|
1714
|
+
deprecate :IMCdrs=, :none, 2023, 10
|
1628
1715
|
|
1629
|
-
def initialize(totalcount=nil, imcdrs=nil, requestid=nil)
|
1716
|
+
def initialize(totalcount=nil, imcdrs=nil, imcdrlist=nil, requestid=nil)
|
1630
1717
|
@TotalCount = totalcount
|
1631
1718
|
@IMCdrs = imcdrs
|
1719
|
+
@IMCdrList = imcdrlist
|
1632
1720
|
@RequestId = requestid
|
1633
1721
|
end
|
1634
1722
|
|
@@ -1642,6 +1730,14 @@ module TencentCloud
|
|
1642
1730
|
@IMCdrs << imcdrinfo_tmp
|
1643
1731
|
end
|
1644
1732
|
end
|
1733
|
+
unless params['IMCdrList'].nil?
|
1734
|
+
@IMCdrList = []
|
1735
|
+
params['IMCdrList'].each do |i|
|
1736
|
+
imcdrinfo_tmp = IMCdrInfo.new
|
1737
|
+
imcdrinfo_tmp.deserialize(i)
|
1738
|
+
@IMCdrList << imcdrinfo_tmp
|
1739
|
+
end
|
1740
|
+
end
|
1645
1741
|
@RequestId = params['RequestId']
|
1646
1742
|
end
|
1647
1743
|
end
|
@@ -1794,14 +1890,20 @@ module TencentCloud
|
|
1794
1890
|
# @type TotalCount: Integer
|
1795
1891
|
# @param TelCdrs: 话单记录
|
1796
1892
|
# @type TelCdrs: Array
|
1893
|
+
# @param TelCdrList: 话单记录
|
1894
|
+
# @type TelCdrList: Array
|
1797
1895
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1798
1896
|
# @type RequestId: String
|
1799
1897
|
|
1800
|
-
attr_accessor :TotalCount, :TelCdrs, :RequestId
|
1898
|
+
attr_accessor :TotalCount, :TelCdrs, :TelCdrList, :RequestId
|
1899
|
+
extend Gem::Deprecate
|
1900
|
+
deprecate :TelCdrs, :none, 2023, 10
|
1901
|
+
deprecate :TelCdrs=, :none, 2023, 10
|
1801
1902
|
|
1802
|
-
def initialize(totalcount=nil, telcdrs=nil, requestid=nil)
|
1903
|
+
def initialize(totalcount=nil, telcdrs=nil, telcdrlist=nil, requestid=nil)
|
1803
1904
|
@TotalCount = totalcount
|
1804
1905
|
@TelCdrs = telcdrs
|
1906
|
+
@TelCdrList = telcdrlist
|
1805
1907
|
@RequestId = requestid
|
1806
1908
|
end
|
1807
1909
|
|
@@ -1815,6 +1917,14 @@ module TencentCloud
|
|
1815
1917
|
@TelCdrs << telcdrinfo_tmp
|
1816
1918
|
end
|
1817
1919
|
end
|
1920
|
+
unless params['TelCdrList'].nil?
|
1921
|
+
@TelCdrList = []
|
1922
|
+
params['TelCdrList'].each do |i|
|
1923
|
+
telcdrinfo_tmp = TelCdrInfo.new
|
1924
|
+
telcdrinfo_tmp.deserialize(i)
|
1925
|
+
@TelCdrList << telcdrinfo_tmp
|
1926
|
+
end
|
1927
|
+
end
|
1818
1928
|
@RequestId = params['RequestId']
|
1819
1929
|
end
|
1820
1930
|
end
|
@@ -2042,6 +2152,8 @@ module TencentCloud
|
|
2042
2152
|
# @type SeatUsedCount: Integer
|
2043
2153
|
# @param VoipCallInCount: 音频套餐包消耗分钟数
|
2044
2154
|
# @type VoipCallInCount: Integer
|
2155
|
+
# @param VOIPCallInCount: 音频套餐包消耗分钟数
|
2156
|
+
# @type VOIPCallInCount: Integer
|
2045
2157
|
# @param AsrOfflineCount: 离线语音转文字套餐包消耗分钟数
|
2046
2158
|
# @type AsrOfflineCount: Integer
|
2047
2159
|
# @param AsrRealtimeCount: 实时语音转文字套餐包消耗分钟数
|
@@ -2049,13 +2161,17 @@ module TencentCloud
|
|
2049
2161
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2050
2162
|
# @type RequestId: String
|
2051
2163
|
|
2052
|
-
attr_accessor :TelCallOutCount, :TelCallInCount, :SeatUsedCount, :VoipCallInCount, :AsrOfflineCount, :AsrRealtimeCount, :RequestId
|
2164
|
+
attr_accessor :TelCallOutCount, :TelCallInCount, :SeatUsedCount, :VoipCallInCount, :VOIPCallInCount, :AsrOfflineCount, :AsrRealtimeCount, :RequestId
|
2165
|
+
extend Gem::Deprecate
|
2166
|
+
deprecate :VoipCallInCount, :none, 2023, 10
|
2167
|
+
deprecate :VoipCallInCount=, :none, 2023, 10
|
2053
2168
|
|
2054
|
-
def initialize(telcalloutcount=nil, telcallincount=nil, seatusedcount=nil, voipcallincount=nil, asrofflinecount=nil, asrrealtimecount=nil, requestid=nil)
|
2169
|
+
def initialize(telcalloutcount=nil, telcallincount=nil, seatusedcount=nil, voipcallincount=nil, voipcallincount=nil, asrofflinecount=nil, asrrealtimecount=nil, requestid=nil)
|
2055
2170
|
@TelCallOutCount = telcalloutcount
|
2056
2171
|
@TelCallInCount = telcallincount
|
2057
2172
|
@SeatUsedCount = seatusedcount
|
2058
2173
|
@VoipCallInCount = voipcallincount
|
2174
|
+
@VOIPCallInCount = voipcallincount
|
2059
2175
|
@AsrOfflineCount = asrofflinecount
|
2060
2176
|
@AsrRealtimeCount = asrrealtimecount
|
2061
2177
|
@RequestId = requestid
|
@@ -2066,6 +2182,7 @@ module TencentCloud
|
|
2066
2182
|
@TelCallInCount = params['TelCallInCount']
|
2067
2183
|
@SeatUsedCount = params['SeatUsedCount']
|
2068
2184
|
@VoipCallInCount = params['VoipCallInCount']
|
2185
|
+
@VOIPCallInCount = params['VOIPCallInCount']
|
2069
2186
|
@AsrOfflineCount = params['AsrOfflineCount']
|
2070
2187
|
@AsrRealtimeCount = params['AsrRealtimeCount']
|
2071
2188
|
@RequestId = params['RequestId']
|
@@ -2096,6 +2213,9 @@ module TencentCloud
|
|
2096
2213
|
# @type SessionIds: Array
|
2097
2214
|
|
2098
2215
|
attr_accessor :StartTimeStamp, :EndTimeStamp, :InstanceId, :Limit, :Offset, :SdkAppId, :PageSize, :PageNumber, :Phones, :SessionIds
|
2216
|
+
extend Gem::Deprecate
|
2217
|
+
deprecate :InstanceId, :none, 2023, 10
|
2218
|
+
deprecate :InstanceId=, :none, 2023, 10
|
2099
2219
|
|
2100
2220
|
def initialize(starttimestamp=nil, endtimestamp=nil, instanceid=nil, limit=nil, offset=nil, sdkappid=nil, pagesize=nil, pagenumber=nil, phones=nil, sessionids=nil)
|
2101
2221
|
@StartTimeStamp = starttimestamp
|
@@ -2130,14 +2250,20 @@ module TencentCloud
|
|
2130
2250
|
# @type TotalCount: Integer
|
2131
2251
|
# @param TelCdrs: 话单记录
|
2132
2252
|
# @type TelCdrs: Array
|
2253
|
+
# @param TelCdrList: 话单记录
|
2254
|
+
# @type TelCdrList: Array
|
2133
2255
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2134
2256
|
# @type RequestId: String
|
2135
2257
|
|
2136
|
-
attr_accessor :TotalCount, :TelCdrs, :RequestId
|
2258
|
+
attr_accessor :TotalCount, :TelCdrs, :TelCdrList, :RequestId
|
2259
|
+
extend Gem::Deprecate
|
2260
|
+
deprecate :TelCdrs, :none, 2023, 10
|
2261
|
+
deprecate :TelCdrs=, :none, 2023, 10
|
2137
2262
|
|
2138
|
-
def initialize(totalcount=nil, telcdrs=nil, requestid=nil)
|
2263
|
+
def initialize(totalcount=nil, telcdrs=nil, telcdrlist=nil, requestid=nil)
|
2139
2264
|
@TotalCount = totalcount
|
2140
2265
|
@TelCdrs = telcdrs
|
2266
|
+
@TelCdrList = telcdrlist
|
2141
2267
|
@RequestId = requestid
|
2142
2268
|
end
|
2143
2269
|
|
@@ -2151,6 +2277,14 @@ module TencentCloud
|
|
2151
2277
|
@TelCdrs << telcdrinfo_tmp
|
2152
2278
|
end
|
2153
2279
|
end
|
2280
|
+
unless params['TelCdrList'].nil?
|
2281
|
+
@TelCdrList = []
|
2282
|
+
params['TelCdrList'].each do |i|
|
2283
|
+
telcdrinfo_tmp = TelCdrInfo.new
|
2284
|
+
telcdrinfo_tmp.deserialize(i)
|
2285
|
+
@TelCdrList << telcdrinfo_tmp
|
2286
|
+
end
|
2287
|
+
end
|
2154
2288
|
@RequestId = params['RequestId']
|
2155
2289
|
end
|
2156
2290
|
end
|
@@ -2654,17 +2788,21 @@ module TencentCloud
|
|
2654
2788
|
# @type Number: String
|
2655
2789
|
# @param CallOutSkillGroupIds: 绑定的外呼技能组
|
2656
2790
|
# @type CallOutSkillGroupIds: Array
|
2791
|
+
# @param State: 号码状态,1-正常,2-欠费停用,4-管理员停用,5-违规停用
|
2792
|
+
# @type State: Integer
|
2657
2793
|
|
2658
|
-
attr_accessor :Number, :CallOutSkillGroupIds
|
2794
|
+
attr_accessor :Number, :CallOutSkillGroupIds, :State
|
2659
2795
|
|
2660
|
-
def initialize(number=nil, calloutskillgroupids=nil)
|
2796
|
+
def initialize(number=nil, calloutskillgroupids=nil, state=nil)
|
2661
2797
|
@Number = number
|
2662
2798
|
@CallOutSkillGroupIds = calloutskillgroupids
|
2799
|
+
@State = state
|
2663
2800
|
end
|
2664
2801
|
|
2665
2802
|
def deserialize(params)
|
2666
2803
|
@Number = params['Number']
|
2667
2804
|
@CallOutSkillGroupIds = params['CallOutSkillGroupIds']
|
2805
|
+
@State = params['State']
|
2668
2806
|
end
|
2669
2807
|
end
|
2670
2808
|
|
@@ -3586,6 +3724,9 @@ module TencentCloud
|
|
3586
3724
|
# @param Uui: 客户自定义数据(User-to-User Interface)
|
3587
3725
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3588
3726
|
# @type Uui: String
|
3727
|
+
# @param UUI: 客户自定义数据(User-to-User Interface)
|
3728
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3729
|
+
# @type UUI: String
|
3589
3730
|
# @param IVRKeyPressedEx: IVR按键信息(e.g. [{"Key":"1","Label":"非常满意"}])
|
3590
3731
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3591
3732
|
# @type IVRKeyPressedEx: Array
|
@@ -3608,9 +3749,12 @@ module TencentCloud
|
|
3608
3749
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3609
3750
|
# @type VoicemailAsrURL: Array
|
3610
3751
|
|
3611
|
-
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
|
3752
|
+
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, :UUI, :IVRKeyPressedEx, :AsrUrl, :CustomRecordURL, :Remark, :QueuedSkillGroupName, :VoicemailRecordURL, :VoicemailAsrURL
|
3753
|
+
extend Gem::Deprecate
|
3754
|
+
deprecate :Uui, :none, 2023, 10
|
3755
|
+
deprecate :Uui=, :none, 2023, 10
|
3612
3756
|
|
3613
|
-
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)
|
3757
|
+
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, uui=nil, ivrkeypressedex=nil, asrurl=nil, customrecordurl=nil, remark=nil, queuedskillgroupname=nil, voicemailrecordurl=nil, voicemailasrurl=nil)
|
3614
3758
|
@Caller = caller
|
3615
3759
|
@Callee = callee
|
3616
3760
|
@Time = time
|
@@ -3638,6 +3782,7 @@ module TencentCloud
|
|
3638
3782
|
@ProtectedCaller = protectedcaller
|
3639
3783
|
@ProtectedCallee = protectedcallee
|
3640
3784
|
@Uui = uui
|
3785
|
+
@UUI = uui
|
3641
3786
|
@IVRKeyPressedEx = ivrkeypressedex
|
3642
3787
|
@AsrUrl = asrurl
|
3643
3788
|
@CustomRecordURL = customrecordurl
|
@@ -3692,6 +3837,7 @@ module TencentCloud
|
|
3692
3837
|
@ProtectedCaller = params['ProtectedCaller']
|
3693
3838
|
@ProtectedCallee = params['ProtectedCallee']
|
3694
3839
|
@Uui = params['Uui']
|
3840
|
+
@UUI = params['UUI']
|
3695
3841
|
unless params['IVRKeyPressedEx'].nil?
|
3696
3842
|
@IVRKeyPressedEx = []
|
3697
3843
|
params['IVRKeyPressedEx'].each do |i|
|
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.676
|
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-10-
|
11
|
+
date: 2023-10-13 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
|
37
|
-
- lib/v20200210/models.rb
|
38
36
|
- lib/v20200210/client.rb
|
37
|
+
- 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:
|