tencentcloud-sdk-ccc 3.0.1169 → 3.0.1178

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b1977b5cc587aa165b1314261d671ec72a0afa90
4
- data.tar.gz: fc721729f5fcb647145bfaebffd79c2650a210fd
3
+ metadata.gz: 06a4e1d9fb0f1db4e3da85e80df9f56333d43e90
4
+ data.tar.gz: 7fecd5cbc5cbeda8337ff3099a037fb5fcb87db0
5
5
  SHA512:
6
- metadata.gz: 1824c4d7a5d835a6a0cde77181be9511bda026ec5737bed4c8bd8f02f43e3d5af8acd408d4e88a5399d0bf5e561c60c1a0ebd9c7600cc7e25d1a3a661398ebbf
7
- data.tar.gz: 5ec7cbe3fef7016a27bc1b1f0c2778c4e3cf4b6770de2e1d48c30537a93c214ad82f170c1685596c15facb7c34984a62bafc989d9d76189acf9d067eac6dc7ba
6
+ metadata.gz: 5f4fd6c47d6c6830d8541be82bba0889c56f3c041406af9ad6c4144556d2ffef65d61e3adef489e95fd4b8b4b1b06b87405b23590cba83f031d56bac03d83729
7
+ data.tar.gz: be0bf9caff0dac054d95fe94e91b24b51109f5869c3efb963bf96409f4e66783201032549f6c68dbdb5c900d44588c7d85438d9ba807327678bdb78a0ca8232e
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1169
1
+ 3.0.1178
@@ -173,7 +173,9 @@ module TencentCloud
173
173
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
174
174
  end
175
175
 
176
- # 用于调用AI模型发起外呼通话,仅限自有电话号码使用,目前开通高级版座席**限时**免费体验。
176
+ # 用于创建**一次性的智能体外呼任务**。与直接调用原始AI模型的模型通话不同,此接口基于您在实例中预配置的、具备完整业务流程的智能体来发起通话,仅限自有电话号码使用,目前开通高级版座席**限时**免费体验。
177
+
178
+ # 若需创建批量智能体外呼任务,请参考文档 [创建自动外呼任务](https://cloud.tencent.com/document/product/679/69194)。
177
179
 
178
180
  # 发起通话前,请先确认您的AI模型是否兼容 OpenAI、Azure 或 Minimax 协议,并前往模型服务商网站获取相关鉴权信息。 具体功能说明请参考文档 [腾讯云联络中心AI通话平台](https://cloud.tencent.com/document/product/679/112100)。
179
181
 
@@ -397,8 +397,8 @@ module TencentCloud
397
397
 
398
398
  attr_accessor :User, :Message, :Timestamp, :Start, :End
399
399
  extend Gem::Deprecate
400
- deprecate :Timestamp, :none, 2025, 11
401
- deprecate :Timestamp=, :none, 2025, 11
400
+ deprecate :Timestamp, :none, 2025, 12
401
+ deprecate :Timestamp=, :none, 2025, 12
402
402
 
403
403
  def initialize(user=nil, message=nil, timestamp=nil, start=nil, _end=nil)
404
404
  @User = user
@@ -612,27 +612,26 @@ module TencentCloud
612
612
  # @type SdkAppId: Integer
613
613
  # @param StaffEmail: 座席邮箱
614
614
  # @type StaffEmail: String
615
- # @param SkillGroupList: 绑定技能组列表
616
- # @type SkillGroupList: Array
617
615
  # @param StaffSkillGroupList: 绑定技能组列表(必填)
618
616
  # @type StaffSkillGroupList: Array
617
+ # @param SkillGroupList: 绑定技能组列表
618
+ # @type SkillGroupList: Array
619
619
 
620
- attr_accessor :SdkAppId, :StaffEmail, :SkillGroupList, :StaffSkillGroupList
620
+ attr_accessor :SdkAppId, :StaffEmail, :StaffSkillGroupList, :SkillGroupList
621
621
  extend Gem::Deprecate
622
- deprecate :SkillGroupList, :none, 2025, 11
623
- deprecate :SkillGroupList=, :none, 2025, 11
622
+ deprecate :SkillGroupList, :none, 2025, 12
623
+ deprecate :SkillGroupList=, :none, 2025, 12
624
624
 
625
- def initialize(sdkappid=nil, staffemail=nil, skillgrouplist=nil, staffskillgrouplist=nil)
625
+ def initialize(sdkappid=nil, staffemail=nil, staffskillgrouplist=nil, skillgrouplist=nil)
626
626
  @SdkAppId = sdkappid
627
627
  @StaffEmail = staffemail
628
- @SkillGroupList = skillgrouplist
629
628
  @StaffSkillGroupList = staffskillgrouplist
629
+ @SkillGroupList = skillgrouplist
630
630
  end
631
631
 
632
632
  def deserialize(params)
633
633
  @SdkAppId = params['SdkAppId']
634
634
  @StaffEmail = params['StaffEmail']
635
- @SkillGroupList = params['SkillGroupList']
636
635
  unless params['StaffSkillGroupList'].nil?
637
636
  @StaffSkillGroupList = []
638
637
  params['StaffSkillGroupList'].each do |i|
@@ -641,6 +640,7 @@ module TencentCloud
641
640
  @StaffSkillGroupList << staffskillgrouplist_tmp
642
641
  end
643
642
  end
643
+ @SkillGroupList = params['SkillGroupList']
644
644
  end
645
645
  end
646
646
 
@@ -1102,8 +1102,8 @@ module TencentCloud
1102
1102
 
1103
1103
  attr_accessor :SdkAppId, :AIAgentId, :Callee, :Callers, :PromptVariables, :Variables
1104
1104
  extend Gem::Deprecate
1105
- deprecate :PromptVariables, :none, 2025, 11
1106
- deprecate :PromptVariables=, :none, 2025, 11
1105
+ deprecate :PromptVariables, :none, 2025, 12
1106
+ deprecate :PromptVariables=, :none, 2025, 12
1107
1107
 
1108
1108
  def initialize(sdkappid=nil, aiagentid=nil, callee=nil, callers=nil, promptvariables=nil, variables=nil)
1109
1109
  @SdkAppId = sdkappid
@@ -1404,8 +1404,8 @@ module TencentCloud
1404
1404
 
1405
1405
  attr_accessor :SdkAppId, :Callee, :LLMType, :APIKey, :APIUrl, :SystemPrompt, :Model, :VoiceType, :Callers, :WelcomeMessage, :WelcomeType, :WelcomeMessagePriority, :MaxDuration, :Languages, :InterruptMode, :InterruptSpeechDuration, :EndFunctionEnable, :EndFunctionDesc, :TransferFunctionEnable, :TransferItems, :NotifyDuration, :NotifyMessage, :NotifyMaxCount, :CustomTTSConfig, :PromptVariables, :VadSilenceTime, :ExtractConfig, :Temperature, :Variables, :TopP, :VadLevel, :ToneWord, :EnableComplianceAudio, :EnableVoicemailDetection, :VoicemailAction, :LLMExtraBody
1406
1406
  extend Gem::Deprecate
1407
- deprecate :PromptVariables, :none, 2025, 11
1408
- deprecate :PromptVariables=, :none, 2025, 11
1407
+ deprecate :PromptVariables, :none, 2025, 12
1408
+ deprecate :PromptVariables=, :none, 2025, 12
1409
1409
 
1410
1410
  def initialize(sdkappid=nil, callee=nil, llmtype=nil, apikey=nil, apiurl=nil, systemprompt=nil, model=nil, voicetype=nil, callers=nil, welcomemessage=nil, welcometype=nil, welcomemessagepriority=nil, maxduration=nil, languages=nil, interruptmode=nil, interruptspeechduration=nil, endfunctionenable=nil, endfunctiondesc=nil, transferfunctionenable=nil, transferitems=nil, notifyduration=nil, notifymessage=nil, notifymaxcount=nil, customttsconfig=nil, promptvariables=nil, vadsilencetime=nil, extractconfig=nil, temperature=nil, variables=nil, topp=nil, vadlevel=nil, toneword=nil, enablecomplianceaudio=nil, enablevoicemaildetection=nil, voicemailaction=nil, llmextrabody=nil)
1411
1411
  @SdkAppId = sdkappid
@@ -1681,10 +1681,12 @@ module TencentCloud
1681
1681
  # @type AvailableTime: Array
1682
1682
  # @param AIAgentId: 智能体 ID,不填写时需要填写 IvrId
1683
1683
  # @type AIAgentId: Integer
1684
+ # @param RetryInterval: 任务失败重试时间间隔,重试间隔 600秒~86400 秒
1685
+ # @type RetryInterval: Integer
1684
1686
 
1685
- attr_accessor :SdkAppId, :NotBefore, :Callees, :Callers, :IvrId, :Name, :Description, :NotAfter, :Tries, :Variables, :UUI, :CalleeAttributes, :TimeZone, :AvailableTime, :AIAgentId
1687
+ attr_accessor :SdkAppId, :NotBefore, :Callees, :Callers, :IvrId, :Name, :Description, :NotAfter, :Tries, :Variables, :UUI, :CalleeAttributes, :TimeZone, :AvailableTime, :AIAgentId, :RetryInterval
1686
1688
 
1687
- def initialize(sdkappid=nil, notbefore=nil, callees=nil, callers=nil, ivrid=nil, name=nil, description=nil, notafter=nil, tries=nil, variables=nil, uui=nil, calleeattributes=nil, timezone=nil, availabletime=nil, aiagentid=nil)
1689
+ def initialize(sdkappid=nil, notbefore=nil, callees=nil, callers=nil, ivrid=nil, name=nil, description=nil, notafter=nil, tries=nil, variables=nil, uui=nil, calleeattributes=nil, timezone=nil, availabletime=nil, aiagentid=nil, retryinterval=nil)
1688
1690
  @SdkAppId = sdkappid
1689
1691
  @NotBefore = notbefore
1690
1692
  @Callees = callees
@@ -1700,6 +1702,7 @@ module TencentCloud
1700
1702
  @TimeZone = timezone
1701
1703
  @AvailableTime = availabletime
1702
1704
  @AIAgentId = aiagentid
1705
+ @RetryInterval = retryinterval
1703
1706
  end
1704
1707
 
1705
1708
  def deserialize(params)
@@ -1739,6 +1742,7 @@ module TencentCloud
1739
1742
  end
1740
1743
  end
1741
1744
  @AIAgentId = params['AIAgentId']
1745
+ @RetryInterval = params['RetryInterval']
1742
1746
  end
1743
1747
  end
1744
1748
 
@@ -1832,8 +1836,8 @@ module TencentCloud
1832
1836
 
1833
1837
  attr_accessor :SdkAppId, :UserId, :Callee, :Caller, :Callers, :IsForceUseMobile, :Uui, :UUI
1834
1838
  extend Gem::Deprecate
1835
- deprecate :Uui, :none, 2025, 11
1836
- deprecate :Uui=, :none, 2025, 11
1839
+ deprecate :Uui, :none, 2025, 12
1840
+ deprecate :Uui=, :none, 2025, 12
1837
1841
 
1838
1842
  def initialize(sdkappid=nil, userid=nil, callee=nil, caller=nil, callers=nil, isforceusemobile=nil, uui=nil)
1839
1843
  @SdkAppId = sdkappid
@@ -2378,25 +2382,25 @@ module TencentCloud
2378
2382
  # @type SdkAppId: Integer
2379
2383
  # @param Uid: 用户 ID,该值必须与 ClientData 字段中 Uid 的值一致
2380
2384
  # @type Uid: String
2381
- # @param ExpiredTime: 有效期,单位秒,不超过 1 小时
2382
- # @type ExpiredTime: Integer
2383
2385
  # @param ClientData: 用户签名数据,必填字段,为标准 JSON 格式
2384
2386
  # @type ClientData: String
2387
+ # @param ExpiredTime: 有效期,单位秒,不超过 1 小时
2388
+ # @type ExpiredTime: Integer
2385
2389
 
2386
- attr_accessor :SdkAppId, :Uid, :ExpiredTime, :ClientData
2390
+ attr_accessor :SdkAppId, :Uid, :ClientData, :ExpiredTime
2387
2391
 
2388
- def initialize(sdkappid=nil, uid=nil, expiredtime=nil, clientdata=nil)
2392
+ def initialize(sdkappid=nil, uid=nil, clientdata=nil, expiredtime=nil)
2389
2393
  @SdkAppId = sdkappid
2390
2394
  @Uid = uid
2391
- @ExpiredTime = expiredtime
2392
2395
  @ClientData = clientdata
2396
+ @ExpiredTime = expiredtime
2393
2397
  end
2394
2398
 
2395
2399
  def deserialize(params)
2396
2400
  @SdkAppId = params['SdkAppId']
2397
2401
  @Uid = params['Uid']
2398
- @ExpiredTime = params['ExpiredTime']
2399
2402
  @ClientData = params['ClientData']
2403
+ @ExpiredTime = params['ExpiredTime']
2400
2404
  end
2401
2405
  end
2402
2406
 
@@ -3294,10 +3298,10 @@ module TencentCloud
3294
3298
 
3295
3299
  attr_accessor :SdkAppId, :InstanceId, :CdrId, :Limit, :Offset, :Order, :SessionId
3296
3300
  extend Gem::Deprecate
3297
- deprecate :InstanceId, :none, 2025, 11
3298
- deprecate :InstanceId=, :none, 2025, 11
3299
- deprecate :CdrId, :none, 2025, 11
3300
- deprecate :CdrId=, :none, 2025, 11
3301
+ deprecate :InstanceId, :none, 2025, 12
3302
+ deprecate :InstanceId=, :none, 2025, 12
3303
+ deprecate :CdrId, :none, 2025, 12
3304
+ deprecate :CdrId=, :none, 2025, 12
3301
3305
 
3302
3306
  def initialize(sdkappid=nil, instanceid=nil, cdrid=nil, limit=nil, offset=nil, order=nil, sessionid=nil)
3303
3307
  @SdkAppId = sdkappid
@@ -3623,8 +3627,8 @@ module TencentCloud
3623
3627
 
3624
3628
  attr_accessor :StartTimestamp, :EndTimestamp, :InstanceId, :SdkAppId, :Limit, :Offset, :Type
3625
3629
  extend Gem::Deprecate
3626
- deprecate :InstanceId, :none, 2025, 11
3627
- deprecate :InstanceId=, :none, 2025, 11
3630
+ deprecate :InstanceId, :none, 2025, 12
3631
+ deprecate :InstanceId=, :none, 2025, 12
3628
3632
 
3629
3633
  def initialize(starttimestamp=nil, endtimestamp=nil, instanceid=nil, sdkappid=nil, limit=nil, offset=nil, type=nil)
3630
3634
  @StartTimestamp = starttimestamp
@@ -3661,8 +3665,8 @@ module TencentCloud
3661
3665
 
3662
3666
  attr_accessor :TotalCount, :IMCdrs, :IMCdrList, :RequestId
3663
3667
  extend Gem::Deprecate
3664
- deprecate :IMCdrs, :none, 2025, 11
3665
- deprecate :IMCdrs=, :none, 2025, 11
3668
+ deprecate :IMCdrs, :none, 2025, 12
3669
+ deprecate :IMCdrs=, :none, 2025, 12
3666
3670
 
3667
3671
  def initialize(totalcount=nil, imcdrs=nil, imcdrlist=nil, requestid=nil)
3668
3672
  @TotalCount = totalcount
@@ -4154,8 +4158,8 @@ module TencentCloud
4154
4158
 
4155
4159
  attr_accessor :TotalCount, :TelCdrs, :TelCdrList, :RequestId
4156
4160
  extend Gem::Deprecate
4157
- deprecate :TelCdrs, :none, 2025, 11
4158
- deprecate :TelCdrs=, :none, 2025, 11
4161
+ deprecate :TelCdrs, :none, 2025, 12
4162
+ deprecate :TelCdrs=, :none, 2025, 12
4159
4163
 
4160
4164
  def initialize(totalcount=nil, telcdrs=nil, telcdrlist=nil, requestid=nil)
4161
4165
  @TotalCount = totalcount
@@ -4647,8 +4651,8 @@ module TencentCloud
4647
4651
 
4648
4652
  attr_accessor :TelCallOutCount, :TelCallInCount, :SeatUsedCount, :VoipCallInCount, :VOIPCallInCount, :AsrOfflineCount, :AsrRealtimeCount, :RequestId
4649
4653
  extend Gem::Deprecate
4650
- deprecate :VoipCallInCount, :none, 2025, 11
4651
- deprecate :VoipCallInCount=, :none, 2025, 11
4654
+ deprecate :VoipCallInCount, :none, 2025, 12
4655
+ deprecate :VoipCallInCount=, :none, 2025, 12
4652
4656
 
4653
4657
  def initialize(telcalloutcount=nil, telcallincount=nil, seatusedcount=nil, voipcallincount=nil, asrofflinecount=nil, asrrealtimecount=nil, requestid=nil)
4654
4658
  @TelCallOutCount = telcalloutcount
@@ -4677,37 +4681,37 @@ module TencentCloud
4677
4681
  # @type StartTimeStamp: Integer
4678
4682
  # @param EndTimeStamp: 结束时间戳,Unix 秒级时间戳,结束时间与开始时间的区间范围小于90天。
4679
4683
  # @type EndTimeStamp: Integer
4680
- # @param InstanceId: 实例 ID(废弃)
4681
- # @type InstanceId: Integer
4682
- # @param Limit: 返回数据条数,上限(废弃)
4683
- # @type Limit: Integer
4684
- # @param Offset: 偏移(废弃)
4685
- # @type Offset: Integer
4686
4684
  # @param SdkAppId: 应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc
4687
4685
  # @type SdkAppId: Integer
4688
4686
  # @param PageSize: 分页尺寸(必填),上限 100
4689
4687
  # @type PageSize: Integer
4690
4688
  # @param PageNumber: 分页页码(必填),从 0 开始
4691
4689
  # @type PageNumber: Integer
4690
+ # @param InstanceId: 实例 ID(废弃)
4691
+ # @type InstanceId: Integer
4692
+ # @param Limit: 返回数据条数,上限(废弃)
4693
+ # @type Limit: Integer
4694
+ # @param Offset: 偏移(废弃)
4695
+ # @type Offset: Integer
4692
4696
  # @param Phones: 按手机号筛选
4693
4697
  # @type Phones: Array
4694
4698
  # @param SessionIds: 按SessionId筛选
4695
4699
  # @type SessionIds: Array
4696
4700
 
4697
- attr_accessor :StartTimeStamp, :EndTimeStamp, :InstanceId, :Limit, :Offset, :SdkAppId, :PageSize, :PageNumber, :Phones, :SessionIds
4701
+ attr_accessor :StartTimeStamp, :EndTimeStamp, :SdkAppId, :PageSize, :PageNumber, :InstanceId, :Limit, :Offset, :Phones, :SessionIds
4698
4702
  extend Gem::Deprecate
4699
- deprecate :InstanceId, :none, 2025, 11
4700
- deprecate :InstanceId=, :none, 2025, 11
4703
+ deprecate :InstanceId, :none, 2025, 12
4704
+ deprecate :InstanceId=, :none, 2025, 12
4701
4705
 
4702
- def initialize(starttimestamp=nil, endtimestamp=nil, instanceid=nil, limit=nil, offset=nil, sdkappid=nil, pagesize=nil, pagenumber=nil, phones=nil, sessionids=nil)
4706
+ def initialize(starttimestamp=nil, endtimestamp=nil, sdkappid=nil, pagesize=nil, pagenumber=nil, instanceid=nil, limit=nil, offset=nil, phones=nil, sessionids=nil)
4703
4707
  @StartTimeStamp = starttimestamp
4704
4708
  @EndTimeStamp = endtimestamp
4705
- @InstanceId = instanceid
4706
- @Limit = limit
4707
- @Offset = offset
4708
4709
  @SdkAppId = sdkappid
4709
4710
  @PageSize = pagesize
4710
4711
  @PageNumber = pagenumber
4712
+ @InstanceId = instanceid
4713
+ @Limit = limit
4714
+ @Offset = offset
4711
4715
  @Phones = phones
4712
4716
  @SessionIds = sessionids
4713
4717
  end
@@ -4715,12 +4719,12 @@ module TencentCloud
4715
4719
  def deserialize(params)
4716
4720
  @StartTimeStamp = params['StartTimeStamp']
4717
4721
  @EndTimeStamp = params['EndTimeStamp']
4718
- @InstanceId = params['InstanceId']
4719
- @Limit = params['Limit']
4720
- @Offset = params['Offset']
4721
4722
  @SdkAppId = params['SdkAppId']
4722
4723
  @PageSize = params['PageSize']
4723
4724
  @PageNumber = params['PageNumber']
4725
+ @InstanceId = params['InstanceId']
4726
+ @Limit = params['Limit']
4727
+ @Offset = params['Offset']
4724
4728
  @Phones = params['Phones']
4725
4729
  @SessionIds = params['SessionIds']
4726
4730
  end
@@ -4739,8 +4743,8 @@ module TencentCloud
4739
4743
 
4740
4744
  attr_accessor :TotalCount, :TelCdrs, :TelCdrList, :RequestId
4741
4745
  extend Gem::Deprecate
4742
- deprecate :TelCdrs, :none, 2025, 11
4743
- deprecate :TelCdrs=, :none, 2025, 11
4746
+ deprecate :TelCdrs, :none, 2025, 12
4747
+ deprecate :TelCdrs=, :none, 2025, 12
4744
4748
 
4745
4749
  def initialize(totalcount=nil, telcdrs=nil, telcdrlist=nil, requestid=nil)
4746
4750
  @TotalCount = totalcount
@@ -6657,10 +6661,10 @@ module TencentCloud
6657
6661
 
6658
6662
  attr_accessor :Name, :Mail, :Phone, :Nick, :StaffNumber, :RoleId, :RoleIdList, :RoleList, :SkillGroupList, :LastModifyTimestamp, :ExtensionNumber, :ForwardingConfig
6659
6663
  extend Gem::Deprecate
6660
- deprecate :RoleId, :none, 2025, 11
6661
- deprecate :RoleId=, :none, 2025, 11
6662
- deprecate :RoleIdList, :none, 2025, 11
6663
- deprecate :RoleIdList=, :none, 2025, 11
6664
+ deprecate :RoleId, :none, 2025, 12
6665
+ deprecate :RoleId=, :none, 2025, 12
6666
+ deprecate :RoleIdList, :none, 2025, 12
6667
+ deprecate :RoleIdList=, :none, 2025, 12
6664
6668
 
6665
6669
  def initialize(name=nil, mail=nil, phone=nil, nick=nil, staffnumber=nil, roleid=nil, roleidlist=nil, rolelist=nil, skillgrouplist=nil, lastmodifytimestamp=nil, extensionnumber=nil, forwardingconfig=nil)
6666
6670
  @Name = name
@@ -6997,6 +7001,8 @@ module TencentCloud
6997
7001
 
6998
7002
  # 电话呼出 221 callerCancelWithoutRing **未振铃被叫号码异常**
6999
7003
 
7004
+ # 电话呼出 222 voiceMailReached **语音信箱挂断**
7005
+
7000
7006
  # 音频呼入 501 callConflict **VoIP用户呼叫冲突终止**
7001
7007
 
7002
7008
  # 音频呼入 502 clientTimeout **VoIP用户客户端超时**
@@ -7072,8 +7078,8 @@ module TencentCloud
7072
7078
 
7073
7079
  attr_accessor :Caller, :Callee, :Time, :Direction, :CallType, :Duration, :RecordURL, :RecordId, :SeatUser, :EndStatus, :SkillGroup, :CallerLocation, :IVRDuration, :RingTimestamp, :AcceptTimestamp, :EndedTimestamp, :IVRKeyPressed, :HungUpSide, :ServeParticipants, :SkillGroupId, :EndStatusString, :StartTimestamp, :QueuedTimestamp, :PostIVRKeyPressed, :QueuedSkillGroupId, :SessionId, :ProtectedCaller, :ProtectedCallee, :Uui, :UUI, :IVRKeyPressedEx, :AsrUrl, :AsrStatus, :CustomRecordURL, :Remark, :QueuedSkillGroupName, :VoicemailRecordURL, :VoicemailAsrURL
7074
7080
  extend Gem::Deprecate
7075
- deprecate :Uui, :none, 2025, 11
7076
- deprecate :Uui=, :none, 2025, 11
7081
+ deprecate :Uui, :none, 2025, 12
7082
+ deprecate :Uui=, :none, 2025, 12
7077
7083
 
7078
7084
  def initialize(caller=nil, callee=nil, time=nil, direction=nil, calltype=nil, duration=nil, recordurl=nil, recordid=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, asrstatus=nil, customrecordurl=nil, remark=nil, queuedskillgroupname=nil, voicemailrecordurl=nil, voicemailasrurl=nil)
7079
7085
  @Caller = caller
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.1169
4
+ version: 3.0.1178
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-11-19 00:00:00.000000000 Z
11
+ date: 2025-12-08 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/client.rb
38
36
  - lib/v20200210/models.rb
37
+ - lib/v20200210/client.rb
38
+ - lib/tencentcloud-sdk-ccc.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
41
41
  licenses: