tencentcloud-sdk-ccc 3.0.1089 → 3.0.1093

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: f18cb5898e81755106cdb29bc10730fd14b7c5d2
4
- data.tar.gz: 8041917555121b98abb77b57ae01d64a69c97d87
3
+ metadata.gz: 35852628e28341bfe93d19a3453caf3cc26f2c9d
4
+ data.tar.gz: 6ed478bafb0bced6afbc3f383e7ece6ce2d6944d
5
5
  SHA512:
6
- metadata.gz: d5df1b92389deba5da2ca2d7c8c1b969cfc9f55c5a8f1de8680d9c3580e62c5ee7191ed97a71767684658f0b9f260d9edbc2be4a9480327cd1f007b541271882
7
- data.tar.gz: adac530a93a8e763f360b37cbd56928f2ed93a852e47a57f5498e105769b8e0613373f2e6c9eb5a5de29eb542349f34246b66f54cc285b4453c6103c742765ed
6
+ metadata.gz: bcc6517373040ad035fbf487945dabf095114ea9f5361346735293a6e2e5d0fe4987ba4108c3306f8f9fea9ff3a8e74e0e8d350a8bba6bd3ee8bb30400674ab7
7
+ data.tar.gz: 4d73949ce7270c9c4201887c0e631c548d687c6ac7d63bffb4a55dd0c567fa41eafc43a77f96e2d30becb79270c19c4fa2c29361da873d048ead5e5263106bd2
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1089
1
+ 3.0.1093
@@ -149,6 +149,30 @@ module TencentCloud
149
149
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
150
150
  end
151
151
 
152
+ # 提供服务端控制机器人的功能
153
+
154
+ # @param request: Request instance for ControlAIConversation.
155
+ # @type request: :class:`Tencentcloud::ccc::V20200210::ControlAIConversationRequest`
156
+ # @rtype: :class:`Tencentcloud::ccc::V20200210::ControlAIConversationResponse`
157
+ def ControlAIConversation(request)
158
+ body = send_request('ControlAIConversation', request.serialize)
159
+ response = JSON.parse(body)
160
+ if response['Response'].key?('Error') == false
161
+ model = ControlAIConversationResponse.new
162
+ model.deserialize(response['Response'])
163
+ model
164
+ else
165
+ code = response['Response']['Error']['Code']
166
+ message = response['Response']['Error']['Message']
167
+ reqid = response['Response']['RequestId']
168
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
169
+ end
170
+ rescue TencentCloud::Common::TencentCloudSDKException => e
171
+ raise e
172
+ rescue StandardError => e
173
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
174
+ end
175
+
152
176
  # 用于调用AI模型发起外呼通话,仅限自有电话号码使用,目前开通高级版座席**限时**免费体验。
153
177
 
154
178
  # 发起通话前,请先确认您的AI模型是否兼容 OpenAI、Azure 或 Minimax 协议,并前往模型服务商网站获取相关鉴权信息。 具体功能说明请参考文档 [腾讯云联络中心AI通话平台](https://cloud.tencent.com/document/product/679/112100)。
@@ -355,8 +355,8 @@ module TencentCloud
355
355
 
356
356
  attr_accessor :User, :Message, :Timestamp, :Start, :End
357
357
  extend Gem::Deprecate
358
- deprecate :Timestamp, :none, 2025, 6
359
- deprecate :Timestamp=, :none, 2025, 6
358
+ deprecate :Timestamp, :none, 2025, 7
359
+ deprecate :Timestamp=, :none, 2025, 7
360
360
 
361
361
  def initialize(user=nil, message=nil, timestamp=nil, start=nil, _end=nil)
362
362
  @User = user
@@ -573,8 +573,8 @@ module TencentCloud
573
573
 
574
574
  attr_accessor :SdkAppId, :StaffEmail, :SkillGroupList, :StaffSkillGroupList
575
575
  extend Gem::Deprecate
576
- deprecate :SkillGroupList, :none, 2025, 6
577
- deprecate :SkillGroupList=, :none, 2025, 6
576
+ deprecate :SkillGroupList, :none, 2025, 7
577
+ deprecate :SkillGroupList=, :none, 2025, 7
578
578
 
579
579
  def initialize(sdkappid=nil, staffemail=nil, skillgrouplist=nil, staffskillgrouplist=nil)
580
580
  @SdkAppId = sdkappid
@@ -978,6 +978,55 @@ module TencentCloud
978
978
  end
979
979
  end
980
980
 
981
+ # ControlAIConversation请求参数结构体
982
+ class ControlAIConversationRequest < TencentCloud::Common::AbstractModel
983
+ # @param SessionId: 会话 ID
984
+ # @type SessionId: String
985
+ # @param SdkAppId: 应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc
986
+ # @type SdkAppId: Integer
987
+ # @param Command: 控制命令,目前支持命令如下:
988
+
989
+ # - ServerPushText,服务端发送文本给AI机器人,AI机器人会播报该文本
990
+ # @type Command: String
991
+ # @param ServerPushText: 服务端发送播报文本命令,当Command为ServerPushText时必填
992
+ # @type ServerPushText: :class:`Tencentcloud::Ccc.v20200210.models.ServerPushText`
993
+
994
+ attr_accessor :SessionId, :SdkAppId, :Command, :ServerPushText
995
+
996
+ def initialize(sessionid=nil, sdkappid=nil, command=nil, serverpushtext=nil)
997
+ @SessionId = sessionid
998
+ @SdkAppId = sdkappid
999
+ @Command = command
1000
+ @ServerPushText = serverpushtext
1001
+ end
1002
+
1003
+ def deserialize(params)
1004
+ @SessionId = params['SessionId']
1005
+ @SdkAppId = params['SdkAppId']
1006
+ @Command = params['Command']
1007
+ unless params['ServerPushText'].nil?
1008
+ @ServerPushText = ServerPushText.new
1009
+ @ServerPushText.deserialize(params['ServerPushText'])
1010
+ end
1011
+ end
1012
+ end
1013
+
1014
+ # ControlAIConversation返回参数结构体
1015
+ class ControlAIConversationResponse < TencentCloud::Common::AbstractModel
1016
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1017
+ # @type RequestId: String
1018
+
1019
+ attr_accessor :RequestId
1020
+
1021
+ def initialize(requestid=nil)
1022
+ @RequestId = requestid
1023
+ end
1024
+
1025
+ def deserialize(params)
1026
+ @RequestId = params['RequestId']
1027
+ end
1028
+ end
1029
+
981
1030
  # CreateAIAgentCall请求参数结构体
982
1031
  class CreateAIAgentCallRequest < TencentCloud::Common::AbstractModel
983
1032
  # @param SdkAppId: 应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc
@@ -999,8 +1048,8 @@ module TencentCloud
999
1048
 
1000
1049
  attr_accessor :SdkAppId, :AIAgentId, :Callee, :Callers, :PromptVariables, :Variables
1001
1050
  extend Gem::Deprecate
1002
- deprecate :PromptVariables, :none, 2025, 6
1003
- deprecate :PromptVariables=, :none, 2025, 6
1051
+ deprecate :PromptVariables, :none, 2025, 7
1052
+ deprecate :PromptVariables=, :none, 2025, 7
1004
1053
 
1005
1054
  def initialize(sdkappid=nil, aiagentid=nil, callee=nil, callers=nil, promptvariables=nil, variables=nil)
1006
1055
  @SdkAppId = sdkappid
@@ -1288,8 +1337,8 @@ module TencentCloud
1288
1337
 
1289
1338
  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
1290
1339
  extend Gem::Deprecate
1291
- deprecate :PromptVariables, :none, 2025, 6
1292
- deprecate :PromptVariables=, :none, 2025, 6
1340
+ deprecate :PromptVariables, :none, 2025, 7
1341
+ deprecate :PromptVariables=, :none, 2025, 7
1293
1342
 
1294
1343
  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)
1295
1344
  @SdkAppId = sdkappid
@@ -1699,8 +1748,8 @@ module TencentCloud
1699
1748
 
1700
1749
  attr_accessor :SdkAppId, :UserId, :Callee, :Caller, :Callers, :IsForceUseMobile, :Uui, :UUI
1701
1750
  extend Gem::Deprecate
1702
- deprecate :Uui, :none, 2025, 6
1703
- deprecate :Uui=, :none, 2025, 6
1751
+ deprecate :Uui, :none, 2025, 7
1752
+ deprecate :Uui=, :none, 2025, 7
1704
1753
 
1705
1754
  def initialize(sdkappid=nil, userid=nil, callee=nil, caller=nil, callers=nil, isforceusemobile=nil, uui=nil)
1706
1755
  @SdkAppId = sdkappid
@@ -3043,10 +3092,10 @@ module TencentCloud
3043
3092
 
3044
3093
  attr_accessor :SdkAppId, :InstanceId, :CdrId, :Limit, :Offset, :Order, :SessionId
3045
3094
  extend Gem::Deprecate
3046
- deprecate :InstanceId, :none, 2025, 6
3047
- deprecate :InstanceId=, :none, 2025, 6
3048
- deprecate :CdrId, :none, 2025, 6
3049
- deprecate :CdrId=, :none, 2025, 6
3095
+ deprecate :InstanceId, :none, 2025, 7
3096
+ deprecate :InstanceId=, :none, 2025, 7
3097
+ deprecate :CdrId, :none, 2025, 7
3098
+ deprecate :CdrId=, :none, 2025, 7
3050
3099
 
3051
3100
  def initialize(sdkappid=nil, instanceid=nil, cdrid=nil, limit=nil, offset=nil, order=nil, sessionid=nil)
3052
3101
  @SdkAppId = sdkappid
@@ -3372,8 +3421,8 @@ module TencentCloud
3372
3421
 
3373
3422
  attr_accessor :StartTimestamp, :EndTimestamp, :InstanceId, :SdkAppId, :Limit, :Offset, :Type
3374
3423
  extend Gem::Deprecate
3375
- deprecate :InstanceId, :none, 2025, 6
3376
- deprecate :InstanceId=, :none, 2025, 6
3424
+ deprecate :InstanceId, :none, 2025, 7
3425
+ deprecate :InstanceId=, :none, 2025, 7
3377
3426
 
3378
3427
  def initialize(starttimestamp=nil, endtimestamp=nil, instanceid=nil, sdkappid=nil, limit=nil, offset=nil, type=nil)
3379
3428
  @StartTimestamp = starttimestamp
@@ -3410,8 +3459,8 @@ module TencentCloud
3410
3459
 
3411
3460
  attr_accessor :TotalCount, :IMCdrs, :IMCdrList, :RequestId
3412
3461
  extend Gem::Deprecate
3413
- deprecate :IMCdrs, :none, 2025, 6
3414
- deprecate :IMCdrs=, :none, 2025, 6
3462
+ deprecate :IMCdrs, :none, 2025, 7
3463
+ deprecate :IMCdrs=, :none, 2025, 7
3415
3464
 
3416
3465
  def initialize(totalcount=nil, imcdrs=nil, imcdrlist=nil, requestid=nil)
3417
3466
  @TotalCount = totalcount
@@ -3903,8 +3952,8 @@ module TencentCloud
3903
3952
 
3904
3953
  attr_accessor :TotalCount, :TelCdrs, :TelCdrList, :RequestId
3905
3954
  extend Gem::Deprecate
3906
- deprecate :TelCdrs, :none, 2025, 6
3907
- deprecate :TelCdrs=, :none, 2025, 6
3955
+ deprecate :TelCdrs, :none, 2025, 7
3956
+ deprecate :TelCdrs=, :none, 2025, 7
3908
3957
 
3909
3958
  def initialize(totalcount=nil, telcdrs=nil, telcdrlist=nil, requestid=nil)
3910
3959
  @TotalCount = totalcount
@@ -4169,8 +4218,8 @@ module TencentCloud
4169
4218
 
4170
4219
  attr_accessor :TelCallOutCount, :TelCallInCount, :SeatUsedCount, :VoipCallInCount, :VOIPCallInCount, :AsrOfflineCount, :AsrRealtimeCount, :RequestId
4171
4220
  extend Gem::Deprecate
4172
- deprecate :VoipCallInCount, :none, 2025, 6
4173
- deprecate :VoipCallInCount=, :none, 2025, 6
4221
+ deprecate :VoipCallInCount, :none, 2025, 7
4222
+ deprecate :VoipCallInCount=, :none, 2025, 7
4174
4223
 
4175
4224
  def initialize(telcalloutcount=nil, telcallincount=nil, seatusedcount=nil, voipcallincount=nil, asrofflinecount=nil, asrrealtimecount=nil, requestid=nil)
4176
4225
  @TelCallOutCount = telcalloutcount
@@ -4218,8 +4267,8 @@ module TencentCloud
4218
4267
 
4219
4268
  attr_accessor :StartTimeStamp, :EndTimeStamp, :InstanceId, :Limit, :Offset, :SdkAppId, :PageSize, :PageNumber, :Phones, :SessionIds
4220
4269
  extend Gem::Deprecate
4221
- deprecate :InstanceId, :none, 2025, 6
4222
- deprecate :InstanceId=, :none, 2025, 6
4270
+ deprecate :InstanceId, :none, 2025, 7
4271
+ deprecate :InstanceId=, :none, 2025, 7
4223
4272
 
4224
4273
  def initialize(starttimestamp=nil, endtimestamp=nil, instanceid=nil, limit=nil, offset=nil, sdkappid=nil, pagesize=nil, pagenumber=nil, phones=nil, sessionids=nil)
4225
4274
  @StartTimeStamp = starttimestamp
@@ -4261,8 +4310,8 @@ module TencentCloud
4261
4310
 
4262
4311
  attr_accessor :TotalCount, :TelCdrs, :TelCdrList, :RequestId
4263
4312
  extend Gem::Deprecate
4264
- deprecate :TelCdrs, :none, 2025, 6
4265
- deprecate :TelCdrs=, :none, 2025, 6
4313
+ deprecate :TelCdrs, :none, 2025, 7
4314
+ deprecate :TelCdrs=, :none, 2025, 7
4266
4315
 
4267
4316
  def initialize(totalcount=nil, telcdrs=nil, telcdrlist=nil, requestid=nil)
4268
4317
  @TotalCount = totalcount
@@ -5046,10 +5095,12 @@ module TencentCloud
5046
5095
  # @type UseMobileAccept: Integer
5047
5096
  # @param ExtensionNumber: 座席分机号(1 到 8 打头,4 - 6 位)
5048
5097
  # @type ExtensionNumber: String
5098
+ # @param ForwardingConfig: 呼叫转移配置
5099
+ # @type ForwardingConfig: :class:`Tencentcloud::Ccc.v20200210.models.ForwardingConfig`
5049
5100
 
5050
- attr_accessor :SdkAppId, :Email, :Name, :Phone, :Nick, :StaffNo, :SkillGroupIds, :UseMobileCallOut, :UseMobileAccept, :ExtensionNumber
5101
+ attr_accessor :SdkAppId, :Email, :Name, :Phone, :Nick, :StaffNo, :SkillGroupIds, :UseMobileCallOut, :UseMobileAccept, :ExtensionNumber, :ForwardingConfig
5051
5102
 
5052
- def initialize(sdkappid=nil, email=nil, name=nil, phone=nil, nick=nil, staffno=nil, skillgroupids=nil, usemobilecallout=nil, usemobileaccept=nil, extensionnumber=nil)
5103
+ def initialize(sdkappid=nil, email=nil, name=nil, phone=nil, nick=nil, staffno=nil, skillgroupids=nil, usemobilecallout=nil, usemobileaccept=nil, extensionnumber=nil, forwardingconfig=nil)
5053
5104
  @SdkAppId = sdkappid
5054
5105
  @Email = email
5055
5106
  @Name = name
@@ -5060,6 +5111,7 @@ module TencentCloud
5060
5111
  @UseMobileCallOut = usemobilecallout
5061
5112
  @UseMobileAccept = usemobileaccept
5062
5113
  @ExtensionNumber = extensionnumber
5114
+ @ForwardingConfig = forwardingconfig
5063
5115
  end
5064
5116
 
5065
5117
  def deserialize(params)
@@ -5073,6 +5125,10 @@ module TencentCloud
5073
5125
  @UseMobileCallOut = params['UseMobileCallOut']
5074
5126
  @UseMobileAccept = params['UseMobileAccept']
5075
5127
  @ExtensionNumber = params['ExtensionNumber']
5128
+ unless params['ForwardingConfig'].nil?
5129
+ @ForwardingConfig = ForwardingConfig.new
5130
+ @ForwardingConfig.deserialize(params['ForwardingConfig'])
5131
+ end
5076
5132
  end
5077
5133
  end
5078
5134
 
@@ -5693,6 +5749,52 @@ module TencentCloud
5693
5749
  end
5694
5750
  end
5695
5751
 
5752
+ # 服务端控制AI对话机器人播报指定文本
5753
+ class ServerPushText < TencentCloud::Common::AbstractModel
5754
+ # @param Text: 服务端推送播报文本
5755
+ # @type Text: String
5756
+ # @param Interrupt: 是否允许该文本打断机器人说话
5757
+ # @type Interrupt: Boolean
5758
+ # @param StopAfterPlay: 播报完文本后,是否自动关闭对话任务
5759
+ # @type StopAfterPlay: Boolean
5760
+ # @param Audio: 服务端推送播报音频
5761
+ # 格式说明:音频必须为单声道,采样率必须跟对应TTS的采样率保持一致,编码为Base64字符串。
5762
+ # 输入规则:当提供Audio字段时,将不接受Text字段的输入。系统将直接播放Audio字段中的音频内容。
5763
+ # @type Audio: String
5764
+ # @param DropMode: 默认为0,仅在Interrupt为false时有效
5765
+ # - 0表示当前有交互发生时,会丢弃Interrupt为false的消息
5766
+ # - 1表示当前有交互发生时,不会丢弃Interrupt为false的消息,而是缓存下来,等待当前交互结束后,再去处理
5767
+
5768
+ # 注意:DropMode为1时,允许缓存多个消息,如果后续出现了打断,缓存的消息会被清空
5769
+ # @type DropMode: Integer
5770
+ # @param Priority: ServerPushText消息的优先级,0表示可被打断,1表示不会被打断。**目前仅支持传入0,如果需要传入1,请提工单联系我们添加权限。**
5771
+ # 注意:在接收到Priority=1的消息后,后续其他任何消息都会被忽略(包括Priority=1的消息),直到Priority=1的消息处理结束。该字段可与Interrupt、DropMode字段配合使用。
5772
+ # 例子:
5773
+ # - Priority=1、Interrupt=true,会打断现有交互,立刻播报,播报过程中不会被打断
5774
+ # - Priority=1、Interrupt=false、DropMode=1,会等待当前交互结束,再进行播报,播报过程中不会被打断
5775
+ # @type Priority: Integer
5776
+
5777
+ attr_accessor :Text, :Interrupt, :StopAfterPlay, :Audio, :DropMode, :Priority
5778
+
5779
+ def initialize(text=nil, interrupt=nil, stopafterplay=nil, audio=nil, dropmode=nil, priority=nil)
5780
+ @Text = text
5781
+ @Interrupt = interrupt
5782
+ @StopAfterPlay = stopafterplay
5783
+ @Audio = audio
5784
+ @DropMode = dropmode
5785
+ @Priority = priority
5786
+ end
5787
+
5788
+ def deserialize(params)
5789
+ @Text = params['Text']
5790
+ @Interrupt = params['Interrupt']
5791
+ @StopAfterPlay = params['StopAfterPlay']
5792
+ @Audio = params['Audio']
5793
+ @DropMode = params['DropMode']
5794
+ @Priority = params['Priority']
5795
+ end
5796
+ end
5797
+
5696
5798
  # 技能组信息
5697
5799
  class SkillGroupInfoItem < TencentCloud::Common::AbstractModel
5698
5800
  # @param SkillGroupId: 技能组ID
@@ -5826,10 +5928,10 @@ module TencentCloud
5826
5928
 
5827
5929
  attr_accessor :Name, :Mail, :Phone, :Nick, :StaffNumber, :RoleId, :RoleIdList, :RoleList, :SkillGroupList, :LastModifyTimestamp, :ExtensionNumber, :ForwardingConfig
5828
5930
  extend Gem::Deprecate
5829
- deprecate :RoleId, :none, 2025, 6
5830
- deprecate :RoleId=, :none, 2025, 6
5831
- deprecate :RoleIdList, :none, 2025, 6
5832
- deprecate :RoleIdList=, :none, 2025, 6
5931
+ deprecate :RoleId, :none, 2025, 7
5932
+ deprecate :RoleId=, :none, 2025, 7
5933
+ deprecate :RoleIdList, :none, 2025, 7
5934
+ deprecate :RoleIdList=, :none, 2025, 7
5833
5935
 
5834
5936
  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)
5835
5937
  @Name = name
@@ -6233,8 +6335,8 @@ module TencentCloud
6233
6335
 
6234
6336
  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
6235
6337
  extend Gem::Deprecate
6236
- deprecate :Uui, :none, 2025, 6
6237
- deprecate :Uui=, :none, 2025, 6
6338
+ deprecate :Uui, :none, 2025, 7
6339
+ deprecate :Uui=, :none, 2025, 7
6238
6340
 
6239
6341
  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)
6240
6342
  @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.1089
4
+ version: 3.0.1093
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-06-25 00:00:00.000000000 Z
11
+ date: 2025-07-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common