tencentcloud-sdk-ccc 1.0.269 → 1.0.270

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 +14 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 67d5cbebeb7254141d03f448413141f094f78a31
4
- data.tar.gz: ffeaec9ab218b10baad123b73a736cb0d2545ee5
3
+ metadata.gz: 846ecdfc4ce71151cec203c1ec9402599cde795a
4
+ data.tar.gz: 201b1b4dcaef9fb179664286e1188016ebaebc29
5
5
  SHA512:
6
- metadata.gz: 29a2357ad14197b2713682017811989f260703a4944268f657be7f0964cf990c83e3487d88fd637a225a3710be5b735239566547bf8ba70ca05aea117766a548
7
- data.tar.gz: 0a5bb6619a8d462b5d910f35f85338069a710e1a934067f352d8abc4526598706652cbed2c6f432930b23493d29f7bec62e113ce8f7724b1defbea9b3d5670ec
6
+ metadata.gz: 9698239578312023d6419b7064a14fd4d0adaee67989adf9489bde23d697121ccafe9750210fc5b52c3711578bc0474f11f4228204d0a1bb63065fafbc5be03a
7
+ data.tar.gz: 63523f84a1cb778bacd504fce2c7c7bc70fac9d492da4606911696cd21a06ec8dc9c143eb44a32369cacc576edf055a97c56e1d197e4c6e57b1c7bcd8bd96e6f
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.269
1
+ 1.0.270
@@ -1928,10 +1928,13 @@ module TencentCloud
1928
1928
  # @param SkillGroupName: 技能组名称
1929
1929
  # 注意:此字段可能返回 null,表示取不到有效值。
1930
1930
  # @type SkillGroupName: String
1931
+ # @param CustomRecordURL: 录音转存第三方COS地址
1932
+ # 注意:此字段可能返回 null,表示取不到有效值。
1933
+ # @type CustomRecordURL: String
1931
1934
 
1932
- attr_accessor :Mail, :Phone, :RingTimestamp, :AcceptTimestamp, :EndedTimestamp, :RecordId, :Type, :TransferFrom, :TransferTo, :TransferToType, :SkillGroupId, :EndStatusString, :RecordURL, :Sequence, :StartTimestamp, :SkillGroupName
1935
+ attr_accessor :Mail, :Phone, :RingTimestamp, :AcceptTimestamp, :EndedTimestamp, :RecordId, :Type, :TransferFrom, :TransferTo, :TransferToType, :SkillGroupId, :EndStatusString, :RecordURL, :Sequence, :StartTimestamp, :SkillGroupName, :CustomRecordURL
1933
1936
 
1934
- def initialize(mail=nil, phone=nil, ringtimestamp=nil, accepttimestamp=nil, endedtimestamp=nil, recordid=nil, type=nil, transferfrom=nil, transferto=nil, transfertotype=nil, skillgroupid=nil, endstatusstring=nil, recordurl=nil, sequence=nil, starttimestamp=nil, skillgroupname=nil)
1937
+ def initialize(mail=nil, phone=nil, ringtimestamp=nil, accepttimestamp=nil, endedtimestamp=nil, recordid=nil, type=nil, transferfrom=nil, transferto=nil, transfertotype=nil, skillgroupid=nil, endstatusstring=nil, recordurl=nil, sequence=nil, starttimestamp=nil, skillgroupname=nil, customrecordurl=nil)
1935
1938
  @Mail = mail
1936
1939
  @Phone = phone
1937
1940
  @RingTimestamp = ringtimestamp
@@ -1948,6 +1951,7 @@ module TencentCloud
1948
1951
  @Sequence = sequence
1949
1952
  @StartTimestamp = starttimestamp
1950
1953
  @SkillGroupName = skillgroupname
1954
+ @CustomRecordURL = customrecordurl
1951
1955
  end
1952
1956
 
1953
1957
  def deserialize(params)
@@ -1967,6 +1971,7 @@ module TencentCloud
1967
1971
  @Sequence = params['Sequence']
1968
1972
  @StartTimestamp = params['StartTimestamp']
1969
1973
  @SkillGroupName = params['SkillGroupName']
1974
+ @CustomRecordURL = params['CustomRecordURL']
1970
1975
  end
1971
1976
  end
1972
1977
 
@@ -2360,10 +2365,13 @@ module TencentCloud
2360
2365
  # @param AsrUrl: 获取录音ASR文本信息地址
2361
2366
  # 注意:此字段可能返回 null,表示取不到有效值。
2362
2367
  # @type AsrUrl: String
2368
+ # @param CustomRecordURL: 录音转存第三方COS地址
2369
+ # 注意:此字段可能返回 null,表示取不到有效值。
2370
+ # @type CustomRecordURL: String
2363
2371
 
2364
- 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
2372
+ 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
2365
2373
 
2366
- 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)
2374
+ 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)
2367
2375
  @Caller = caller
2368
2376
  @Callee = callee
2369
2377
  @Time = time
@@ -2393,6 +2401,7 @@ module TencentCloud
2393
2401
  @Uui = uui
2394
2402
  @IVRKeyPressedEx = ivrkeypressedex
2395
2403
  @AsrUrl = asrurl
2404
+ @CustomRecordURL = customrecordurl
2396
2405
  end
2397
2406
 
2398
2407
  def deserialize(params)
@@ -2449,6 +2458,7 @@ module TencentCloud
2449
2458
  end
2450
2459
  end
2451
2460
  @AsrUrl = params['AsrUrl']
2461
+ @CustomRecordURL = params['CustomRecordURL']
2452
2462
  end
2453
2463
  end
2454
2464
 
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.269
4
+ version: 1.0.270
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-03-03 00:00:00.000000000 Z
11
+ date: 2022-03-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common