tencentcloud-sdk-ccc 3.0.963 → 3.0.964
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20200210/models.rb +30 -26
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 95bc56f7b147ba48842508b4c1ab07049502e2a9
|
4
|
+
data.tar.gz: e8976a46fbb347b8b8ca2ef081a294753aaa757a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 05969316224be0660bc4446d4dbbc0480c5ff8f29f6e1d5c9b0b96509e5e90db2dd957d319e0ea577a1a1d31018a3e2a05f55a13ca99be68c8c29519aa5fac5e
|
7
|
+
data.tar.gz: b17c40e3c64f3604be45093f09cca6e71844b482da01fafef781c9e7ab4e37ab129b8fb481f742636e01d34d9814e7c63f32c79094b196918e83608ab280b683
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.964
|
data/lib/v20200210/models.rb
CHANGED
@@ -96,8 +96,8 @@ module TencentCloud
|
|
96
96
|
|
97
97
|
attr_accessor :User, :Message, :Timestamp, :Start, :End
|
98
98
|
extend Gem::Deprecate
|
99
|
-
deprecate :Timestamp, :none, 2024,
|
100
|
-
deprecate :Timestamp=, :none, 2024,
|
99
|
+
deprecate :Timestamp, :none, 2024, 12
|
100
|
+
deprecate :Timestamp=, :none, 2024, 12
|
101
101
|
|
102
102
|
def initialize(user=nil, message=nil, timestamp=nil, start=nil, _end=nil)
|
103
103
|
@User = user
|
@@ -271,8 +271,8 @@ module TencentCloud
|
|
271
271
|
|
272
272
|
attr_accessor :SdkAppId, :StaffEmail, :SkillGroupList, :StaffSkillGroupList
|
273
273
|
extend Gem::Deprecate
|
274
|
-
deprecate :SkillGroupList, :none, 2024,
|
275
|
-
deprecate :SkillGroupList=, :none, 2024,
|
274
|
+
deprecate :SkillGroupList, :none, 2024, 12
|
275
|
+
deprecate :SkillGroupList=, :none, 2024, 12
|
276
276
|
|
277
277
|
def initialize(sdkappid=nil, staffemail=nil, skillgrouplist=nil, staffskillgrouplist=nil)
|
278
278
|
@SdkAppId = sdkappid
|
@@ -783,6 +783,8 @@ module TencentCloud
|
|
783
783
|
# @type NotifyDuration: Integer
|
784
784
|
# @param NotifyMessage: 用户NotifyDuration没说话,AI提示的语句,默认是"抱歉,我没听清。您可以重复下吗?"
|
785
785
|
# @type NotifyMessage: String
|
786
|
+
# @param NotifyMaxCount: 最大触发AI提示音次数,默认为不限制
|
787
|
+
# @type NotifyMaxCount: Integer
|
786
788
|
# @param CustomTTSConfig: <p>和VoiceType字段需要选填一个,这里是使用自己自定义的TTS,VoiceType是系统内置的一些音色</p>
|
787
789
|
# <ul>
|
788
790
|
# <li>Tencent TTS<br>
|
@@ -864,9 +866,9 @@ module TencentCloud
|
|
864
866
|
# </div></div>
|
865
867
|
# @type CustomTTSConfig: String
|
866
868
|
|
867
|
-
attr_accessor :SdkAppId, :Callee, :SystemPrompt, :LLMType, :Model, :APIKey, :APIUrl, :VoiceType, :Callers, :WelcomeMessage, :WelcomeType, :MaxDuration, :Languages, :InterruptMode, :InterruptSpeechDuration, :EndFunctionEnable, :EndFunctionDesc, :NotifyDuration, :NotifyMessage, :CustomTTSConfig
|
869
|
+
attr_accessor :SdkAppId, :Callee, :SystemPrompt, :LLMType, :Model, :APIKey, :APIUrl, :VoiceType, :Callers, :WelcomeMessage, :WelcomeType, :MaxDuration, :Languages, :InterruptMode, :InterruptSpeechDuration, :EndFunctionEnable, :EndFunctionDesc, :NotifyDuration, :NotifyMessage, :NotifyMaxCount, :CustomTTSConfig
|
868
870
|
|
869
|
-
def initialize(sdkappid=nil, callee=nil, systemprompt=nil, llmtype=nil, model=nil, apikey=nil, apiurl=nil, voicetype=nil, callers=nil, welcomemessage=nil, welcometype=nil, maxduration=nil, languages=nil, interruptmode=nil, interruptspeechduration=nil, endfunctionenable=nil, endfunctiondesc=nil, notifyduration=nil, notifymessage=nil, customttsconfig=nil)
|
871
|
+
def initialize(sdkappid=nil, callee=nil, systemprompt=nil, llmtype=nil, model=nil, apikey=nil, apiurl=nil, voicetype=nil, callers=nil, welcomemessage=nil, welcometype=nil, maxduration=nil, languages=nil, interruptmode=nil, interruptspeechduration=nil, endfunctionenable=nil, endfunctiondesc=nil, notifyduration=nil, notifymessage=nil, notifymaxcount=nil, customttsconfig=nil)
|
870
872
|
@SdkAppId = sdkappid
|
871
873
|
@Callee = callee
|
872
874
|
@SystemPrompt = systemprompt
|
@@ -886,6 +888,7 @@ module TencentCloud
|
|
886
888
|
@EndFunctionDesc = endfunctiondesc
|
887
889
|
@NotifyDuration = notifyduration
|
888
890
|
@NotifyMessage = notifymessage
|
891
|
+
@NotifyMaxCount = notifymaxcount
|
889
892
|
@CustomTTSConfig = customttsconfig
|
890
893
|
end
|
891
894
|
|
@@ -909,6 +912,7 @@ module TencentCloud
|
|
909
912
|
@EndFunctionDesc = params['EndFunctionDesc']
|
910
913
|
@NotifyDuration = params['NotifyDuration']
|
911
914
|
@NotifyMessage = params['NotifyMessage']
|
915
|
+
@NotifyMaxCount = params['NotifyMaxCount']
|
912
916
|
@CustomTTSConfig = params['CustomTTSConfig']
|
913
917
|
end
|
914
918
|
end
|
@@ -1137,8 +1141,8 @@ module TencentCloud
|
|
1137
1141
|
|
1138
1142
|
attr_accessor :SdkAppId, :UserId, :Callee, :Caller, :Callers, :IsForceUseMobile, :Uui, :UUI
|
1139
1143
|
extend Gem::Deprecate
|
1140
|
-
deprecate :Uui, :none, 2024,
|
1141
|
-
deprecate :Uui=, :none, 2024,
|
1144
|
+
deprecate :Uui, :none, 2024, 12
|
1145
|
+
deprecate :Uui=, :none, 2024, 12
|
1142
1146
|
|
1143
1147
|
def initialize(sdkappid=nil, userid=nil, callee=nil, caller=nil, callers=nil, isforceusemobile=nil, uui=nil)
|
1144
1148
|
@SdkAppId = sdkappid
|
@@ -2235,10 +2239,10 @@ module TencentCloud
|
|
2235
2239
|
|
2236
2240
|
attr_accessor :SdkAppId, :InstanceId, :CdrId, :Limit, :Offset, :Order, :SessionId
|
2237
2241
|
extend Gem::Deprecate
|
2238
|
-
deprecate :InstanceId, :none, 2024,
|
2239
|
-
deprecate :InstanceId=, :none, 2024,
|
2240
|
-
deprecate :CdrId, :none, 2024,
|
2241
|
-
deprecate :CdrId=, :none, 2024,
|
2242
|
+
deprecate :InstanceId, :none, 2024, 12
|
2243
|
+
deprecate :InstanceId=, :none, 2024, 12
|
2244
|
+
deprecate :CdrId, :none, 2024, 12
|
2245
|
+
deprecate :CdrId=, :none, 2024, 12
|
2242
2246
|
|
2243
2247
|
def initialize(sdkappid=nil, instanceid=nil, cdrid=nil, limit=nil, offset=nil, order=nil, sessionid=nil)
|
2244
2248
|
@SdkAppId = sdkappid
|
@@ -2564,8 +2568,8 @@ module TencentCloud
|
|
2564
2568
|
|
2565
2569
|
attr_accessor :StartTimestamp, :EndTimestamp, :InstanceId, :SdkAppId, :Limit, :Offset, :Type
|
2566
2570
|
extend Gem::Deprecate
|
2567
|
-
deprecate :InstanceId, :none, 2024,
|
2568
|
-
deprecate :InstanceId=, :none, 2024,
|
2571
|
+
deprecate :InstanceId, :none, 2024, 12
|
2572
|
+
deprecate :InstanceId=, :none, 2024, 12
|
2569
2573
|
|
2570
2574
|
def initialize(starttimestamp=nil, endtimestamp=nil, instanceid=nil, sdkappid=nil, limit=nil, offset=nil, type=nil)
|
2571
2575
|
@StartTimestamp = starttimestamp
|
@@ -2602,8 +2606,8 @@ module TencentCloud
|
|
2602
2606
|
|
2603
2607
|
attr_accessor :TotalCount, :IMCdrs, :IMCdrList, :RequestId
|
2604
2608
|
extend Gem::Deprecate
|
2605
|
-
deprecate :IMCdrs, :none, 2024,
|
2606
|
-
deprecate :IMCdrs=, :none, 2024,
|
2609
|
+
deprecate :IMCdrs, :none, 2024, 12
|
2610
|
+
deprecate :IMCdrs=, :none, 2024, 12
|
2607
2611
|
|
2608
2612
|
def initialize(totalcount=nil, imcdrs=nil, imcdrlist=nil, requestid=nil)
|
2609
2613
|
@TotalCount = totalcount
|
@@ -3095,8 +3099,8 @@ module TencentCloud
|
|
3095
3099
|
|
3096
3100
|
attr_accessor :TotalCount, :TelCdrs, :TelCdrList, :RequestId
|
3097
3101
|
extend Gem::Deprecate
|
3098
|
-
deprecate :TelCdrs, :none, 2024,
|
3099
|
-
deprecate :TelCdrs=, :none, 2024,
|
3102
|
+
deprecate :TelCdrs, :none, 2024, 12
|
3103
|
+
deprecate :TelCdrs=, :none, 2024, 12
|
3100
3104
|
|
3101
3105
|
def initialize(totalcount=nil, telcdrs=nil, telcdrlist=nil, requestid=nil)
|
3102
3106
|
@TotalCount = totalcount
|
@@ -3361,8 +3365,8 @@ module TencentCloud
|
|
3361
3365
|
|
3362
3366
|
attr_accessor :TelCallOutCount, :TelCallInCount, :SeatUsedCount, :VoipCallInCount, :VOIPCallInCount, :AsrOfflineCount, :AsrRealtimeCount, :RequestId
|
3363
3367
|
extend Gem::Deprecate
|
3364
|
-
deprecate :VoipCallInCount, :none, 2024,
|
3365
|
-
deprecate :VoipCallInCount=, :none, 2024,
|
3368
|
+
deprecate :VoipCallInCount, :none, 2024, 12
|
3369
|
+
deprecate :VoipCallInCount=, :none, 2024, 12
|
3366
3370
|
|
3367
3371
|
def initialize(telcalloutcount=nil, telcallincount=nil, seatusedcount=nil, voipcallincount=nil, asrofflinecount=nil, asrrealtimecount=nil, requestid=nil)
|
3368
3372
|
@TelCallOutCount = telcalloutcount
|
@@ -3410,8 +3414,8 @@ module TencentCloud
|
|
3410
3414
|
|
3411
3415
|
attr_accessor :StartTimeStamp, :EndTimeStamp, :InstanceId, :Limit, :Offset, :SdkAppId, :PageSize, :PageNumber, :Phones, :SessionIds
|
3412
3416
|
extend Gem::Deprecate
|
3413
|
-
deprecate :InstanceId, :none, 2024,
|
3414
|
-
deprecate :InstanceId=, :none, 2024,
|
3417
|
+
deprecate :InstanceId, :none, 2024, 12
|
3418
|
+
deprecate :InstanceId=, :none, 2024, 12
|
3415
3419
|
|
3416
3420
|
def initialize(starttimestamp=nil, endtimestamp=nil, instanceid=nil, limit=nil, offset=nil, sdkappid=nil, pagesize=nil, pagenumber=nil, phones=nil, sessionids=nil)
|
3417
3421
|
@StartTimeStamp = starttimestamp
|
@@ -3453,8 +3457,8 @@ module TencentCloud
|
|
3453
3457
|
|
3454
3458
|
attr_accessor :TotalCount, :TelCdrs, :TelCdrList, :RequestId
|
3455
3459
|
extend Gem::Deprecate
|
3456
|
-
deprecate :TelCdrs, :none, 2024,
|
3457
|
-
deprecate :TelCdrs=, :none, 2024,
|
3460
|
+
deprecate :TelCdrs, :none, 2024, 12
|
3461
|
+
deprecate :TelCdrs=, :none, 2024, 12
|
3458
3462
|
|
3459
3463
|
def initialize(totalcount=nil, telcdrs=nil, telcdrlist=nil, requestid=nil)
|
3460
3464
|
@TotalCount = totalcount
|
@@ -5235,8 +5239,8 @@ module TencentCloud
|
|
5235
5239
|
|
5236
5240
|
attr_accessor :Caller, :Callee, :Time, :Direction, :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
|
5237
5241
|
extend Gem::Deprecate
|
5238
|
-
deprecate :Uui, :none, 2024,
|
5239
|
-
deprecate :Uui=, :none, 2024,
|
5242
|
+
deprecate :Uui, :none, 2024, 12
|
5243
|
+
deprecate :Uui=, :none, 2024, 12
|
5240
5244
|
|
5241
5245
|
def initialize(caller=nil, callee=nil, time=nil, direction=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)
|
5242
5246
|
@Caller = caller
|