tencentcloud-sdk-ccc 1.0.219 → 1.0.223

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20200210/models.rb +14 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 236c02dcfccf778b75b6a26a836b0123e89c6345
4
- data.tar.gz: a3b625c759cee5f4b8d85e90d93c97349c434282
3
+ metadata.gz: 6a75738f7a5d12df053b2dbbfed2cba629ecac94
4
+ data.tar.gz: aabc6cb9f07820936c6f9dfd76380d3873a12329
5
5
  SHA512:
6
- metadata.gz: 36e7d920852f63798e7898d9f020fc6760a077876f91de5b77ed9e93a793fe64e66b983e7200a81077870bf24e81e9b3bc9c4e90a1e58d72cefe0d03b185ba9f
7
- data.tar.gz: fb6849c6d340f75780831ba9269b3bc2775e135cf42993546b919acd5e31051edac930f7ac2e4bdfb0a80df491eb89389e5b8cc42a0347f7e0c1cccf04f382a4
6
+ metadata.gz: 3557eccd8f42e095407878393751978c83f90a6dfaba0f74f052094de0039edeafdcb4d48a6b848d922f7ca0b18995aceef1c3e9f0f3fafb5c8c0a28c18d4cab
7
+ data.tar.gz: 95c746c315098f31ff30710e6160d99e9fc32ea09b82476a1d31857d30beea8d75444b78f2989c167c94c7d166b8568076b5237e9c13e88a9fbd72df7811f6e2
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.219
1
+ 1.0.223
@@ -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.219
4
+ version: 1.0.223
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-08 00:00:00.000000000 Z
11
+ date: 2021-12-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common