tencentcloud-sdk-ccc 3.0.674 → 3.0.675

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20200210/models.rb +71 -14
  4. metadata +4 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c1f61796954996c897d318427a1cffbd4f36fcf3
4
- data.tar.gz: 328948b82a929a95a5ad5e2cc9c68d0640658047
3
+ metadata.gz: 8d925379c2aec1d48b8d17ea4a8dcfb0bf80ba4d
4
+ data.tar.gz: 5a02abfe885cef6d5cd74f6fb00610541e597313
5
5
  SHA512:
6
- metadata.gz: adde5cffa318d25a8ffa0a8afacb7f8731a596acf9ac50beaf1b656cbef1f4a4ae30adbca6517a9a60ee13ab343e98b4e02c71cabe9063393651a1ec184e4e73
7
- data.tar.gz: d321c315adea37297e2ee3855d137198b9790e1f70d063fb2a4f8b24084f7775f94843fa58ab0a8a0aa03e7afdc6d35ea35d56fbe932994597382679579bd264
6
+ metadata.gz: 8bdaab7ed2516d5f9b9cf20ece8c89810c1f786267c9d0dae8a03d99c6bb3ae315952fc77ce7f108bde767779d59c68b3ab57ac789644669c20ba2c7890a17a7
7
+ data.tar.gz: 1f22d4193805e66002255db153e3af8a4259409381d9d4f17e5569911b47907297117b602f66b7b6344744e38a2e3e534919fed779c094c4d0763d66507c323e
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.674
1
+ 3.0.675
@@ -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, 9
171
- deprecate :SkillGroupList=, :none, 2023, 9
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
 
@@ -1794,14 +1801,20 @@ module TencentCloud
1794
1801
  # @type TotalCount: Integer
1795
1802
  # @param TelCdrs: 话单记录
1796
1803
  # @type TelCdrs: Array
1804
+ # @param TelCdrList: 话单记录
1805
+ # @type TelCdrList: Array
1797
1806
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1798
1807
  # @type RequestId: String
1799
1808
 
1800
- attr_accessor :TotalCount, :TelCdrs, :RequestId
1809
+ attr_accessor :TotalCount, :TelCdrs, :TelCdrList, :RequestId
1810
+ extend Gem::Deprecate
1811
+ deprecate :TelCdrs, :none, 2023, 10
1812
+ deprecate :TelCdrs=, :none, 2023, 10
1801
1813
 
1802
- def initialize(totalcount=nil, telcdrs=nil, requestid=nil)
1814
+ def initialize(totalcount=nil, telcdrs=nil, telcdrlist=nil, requestid=nil)
1803
1815
  @TotalCount = totalcount
1804
1816
  @TelCdrs = telcdrs
1817
+ @TelCdrList = telcdrlist
1805
1818
  @RequestId = requestid
1806
1819
  end
1807
1820
 
@@ -1815,6 +1828,14 @@ module TencentCloud
1815
1828
  @TelCdrs << telcdrinfo_tmp
1816
1829
  end
1817
1830
  end
1831
+ unless params['TelCdrList'].nil?
1832
+ @TelCdrList = []
1833
+ params['TelCdrList'].each do |i|
1834
+ telcdrinfo_tmp = TelCdrInfo.new
1835
+ telcdrinfo_tmp.deserialize(i)
1836
+ @TelCdrList << telcdrinfo_tmp
1837
+ end
1838
+ end
1818
1839
  @RequestId = params['RequestId']
1819
1840
  end
1820
1841
  end
@@ -2042,6 +2063,8 @@ module TencentCloud
2042
2063
  # @type SeatUsedCount: Integer
2043
2064
  # @param VoipCallInCount: 音频套餐包消耗分钟数
2044
2065
  # @type VoipCallInCount: Integer
2066
+ # @param VOIPCallInCount: 音频套餐包消耗分钟数
2067
+ # @type VOIPCallInCount: Integer
2045
2068
  # @param AsrOfflineCount: 离线语音转文字套餐包消耗分钟数
2046
2069
  # @type AsrOfflineCount: Integer
2047
2070
  # @param AsrRealtimeCount: 实时语音转文字套餐包消耗分钟数
@@ -2049,13 +2072,17 @@ module TencentCloud
2049
2072
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2050
2073
  # @type RequestId: String
2051
2074
 
2052
- attr_accessor :TelCallOutCount, :TelCallInCount, :SeatUsedCount, :VoipCallInCount, :AsrOfflineCount, :AsrRealtimeCount, :RequestId
2075
+ attr_accessor :TelCallOutCount, :TelCallInCount, :SeatUsedCount, :VoipCallInCount, :VOIPCallInCount, :AsrOfflineCount, :AsrRealtimeCount, :RequestId
2076
+ extend Gem::Deprecate
2077
+ deprecate :VoipCallInCount, :none, 2023, 10
2078
+ deprecate :VoipCallInCount=, :none, 2023, 10
2053
2079
 
2054
- def initialize(telcalloutcount=nil, telcallincount=nil, seatusedcount=nil, voipcallincount=nil, asrofflinecount=nil, asrrealtimecount=nil, requestid=nil)
2080
+ def initialize(telcalloutcount=nil, telcallincount=nil, seatusedcount=nil, voipcallincount=nil, voipcallincount=nil, asrofflinecount=nil, asrrealtimecount=nil, requestid=nil)
2055
2081
  @TelCallOutCount = telcalloutcount
2056
2082
  @TelCallInCount = telcallincount
2057
2083
  @SeatUsedCount = seatusedcount
2058
2084
  @VoipCallInCount = voipcallincount
2085
+ @VOIPCallInCount = voipcallincount
2059
2086
  @AsrOfflineCount = asrofflinecount
2060
2087
  @AsrRealtimeCount = asrrealtimecount
2061
2088
  @RequestId = requestid
@@ -2066,6 +2093,7 @@ module TencentCloud
2066
2093
  @TelCallInCount = params['TelCallInCount']
2067
2094
  @SeatUsedCount = params['SeatUsedCount']
2068
2095
  @VoipCallInCount = params['VoipCallInCount']
2096
+ @VOIPCallInCount = params['VOIPCallInCount']
2069
2097
  @AsrOfflineCount = params['AsrOfflineCount']
2070
2098
  @AsrRealtimeCount = params['AsrRealtimeCount']
2071
2099
  @RequestId = params['RequestId']
@@ -2096,6 +2124,9 @@ module TencentCloud
2096
2124
  # @type SessionIds: Array
2097
2125
 
2098
2126
  attr_accessor :StartTimeStamp, :EndTimeStamp, :InstanceId, :Limit, :Offset, :SdkAppId, :PageSize, :PageNumber, :Phones, :SessionIds
2127
+ extend Gem::Deprecate
2128
+ deprecate :InstanceId, :none, 2023, 10
2129
+ deprecate :InstanceId=, :none, 2023, 10
2099
2130
 
2100
2131
  def initialize(starttimestamp=nil, endtimestamp=nil, instanceid=nil, limit=nil, offset=nil, sdkappid=nil, pagesize=nil, pagenumber=nil, phones=nil, sessionids=nil)
2101
2132
  @StartTimeStamp = starttimestamp
@@ -2130,14 +2161,20 @@ module TencentCloud
2130
2161
  # @type TotalCount: Integer
2131
2162
  # @param TelCdrs: 话单记录
2132
2163
  # @type TelCdrs: Array
2164
+ # @param TelCdrList: 话单记录
2165
+ # @type TelCdrList: Array
2133
2166
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2134
2167
  # @type RequestId: String
2135
2168
 
2136
- attr_accessor :TotalCount, :TelCdrs, :RequestId
2169
+ attr_accessor :TotalCount, :TelCdrs, :TelCdrList, :RequestId
2170
+ extend Gem::Deprecate
2171
+ deprecate :TelCdrs, :none, 2023, 10
2172
+ deprecate :TelCdrs=, :none, 2023, 10
2137
2173
 
2138
- def initialize(totalcount=nil, telcdrs=nil, requestid=nil)
2174
+ def initialize(totalcount=nil, telcdrs=nil, telcdrlist=nil, requestid=nil)
2139
2175
  @TotalCount = totalcount
2140
2176
  @TelCdrs = telcdrs
2177
+ @TelCdrList = telcdrlist
2141
2178
  @RequestId = requestid
2142
2179
  end
2143
2180
 
@@ -2151,6 +2188,14 @@ module TencentCloud
2151
2188
  @TelCdrs << telcdrinfo_tmp
2152
2189
  end
2153
2190
  end
2191
+ unless params['TelCdrList'].nil?
2192
+ @TelCdrList = []
2193
+ params['TelCdrList'].each do |i|
2194
+ telcdrinfo_tmp = TelCdrInfo.new
2195
+ telcdrinfo_tmp.deserialize(i)
2196
+ @TelCdrList << telcdrinfo_tmp
2197
+ end
2198
+ end
2154
2199
  @RequestId = params['RequestId']
2155
2200
  end
2156
2201
  end
@@ -2654,17 +2699,21 @@ module TencentCloud
2654
2699
  # @type Number: String
2655
2700
  # @param CallOutSkillGroupIds: 绑定的外呼技能组
2656
2701
  # @type CallOutSkillGroupIds: Array
2702
+ # @param State: 号码状态,1-正常,2-欠费停用,4-管理员停用,5-违规停用
2703
+ # @type State: Integer
2657
2704
 
2658
- attr_accessor :Number, :CallOutSkillGroupIds
2705
+ attr_accessor :Number, :CallOutSkillGroupIds, :State
2659
2706
 
2660
- def initialize(number=nil, calloutskillgroupids=nil)
2707
+ def initialize(number=nil, calloutskillgroupids=nil, state=nil)
2661
2708
  @Number = number
2662
2709
  @CallOutSkillGroupIds = calloutskillgroupids
2710
+ @State = state
2663
2711
  end
2664
2712
 
2665
2713
  def deserialize(params)
2666
2714
  @Number = params['Number']
2667
2715
  @CallOutSkillGroupIds = params['CallOutSkillGroupIds']
2716
+ @State = params['State']
2668
2717
  end
2669
2718
  end
2670
2719
 
@@ -3586,6 +3635,9 @@ module TencentCloud
3586
3635
  # @param Uui: 客户自定义数据(User-to-User Interface)
3587
3636
  # 注意:此字段可能返回 null,表示取不到有效值。
3588
3637
  # @type Uui: String
3638
+ # @param UUI: 客户自定义数据(User-to-User Interface)
3639
+ # 注意:此字段可能返回 null,表示取不到有效值。
3640
+ # @type UUI: String
3589
3641
  # @param IVRKeyPressedEx: IVR按键信息(e.g. [{"Key":"1","Label":"非常满意"}])
3590
3642
  # 注意:此字段可能返回 null,表示取不到有效值。
3591
3643
  # @type IVRKeyPressedEx: Array
@@ -3608,9 +3660,12 @@ module TencentCloud
3608
3660
  # 注意:此字段可能返回 null,表示取不到有效值。
3609
3661
  # @type VoicemailAsrURL: Array
3610
3662
 
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
3663
+ 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
3664
+ extend Gem::Deprecate
3665
+ deprecate :Uui, :none, 2023, 10
3666
+ deprecate :Uui=, :none, 2023, 10
3612
3667
 
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)
3668
+ 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
3669
  @Caller = caller
3615
3670
  @Callee = callee
3616
3671
  @Time = time
@@ -3638,6 +3693,7 @@ module TencentCloud
3638
3693
  @ProtectedCaller = protectedcaller
3639
3694
  @ProtectedCallee = protectedcallee
3640
3695
  @Uui = uui
3696
+ @UUI = uui
3641
3697
  @IVRKeyPressedEx = ivrkeypressedex
3642
3698
  @AsrUrl = asrurl
3643
3699
  @CustomRecordURL = customrecordurl
@@ -3692,6 +3748,7 @@ module TencentCloud
3692
3748
  @ProtectedCaller = params['ProtectedCaller']
3693
3749
  @ProtectedCallee = params['ProtectedCallee']
3694
3750
  @Uui = params['Uui']
3751
+ @UUI = params['UUI']
3695
3752
  unless params['IVRKeyPressedEx'].nil?
3696
3753
  @IVRKeyPressedEx = []
3697
3754
  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.674
4
+ version: 3.0.675
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 00:00:00.000000000 Z
11
+ date: 2023-10-12 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: