tencentcloud-sdk-ccc 3.0.384 → 3.0.385

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: ead5fe5f2873afc5f5e1f003d30144e4dacb808e
4
- data.tar.gz: 859efa4ea669ae1ce4bafae33ed80eff43d14bad
3
+ metadata.gz: 6f72dd89175ab14789992d0db77bf3d4524793ee
4
+ data.tar.gz: a02b5b8b29d3af5cc6bc1e0ffe9dc82bab54955d
5
5
  SHA512:
6
- metadata.gz: 7cbc4e778115ddb9a357f56049b57a1a0f7bf68cd408078d210c51dc28243e2cfe38fc2dea3ee2bcb684a426e3592f27677bbc97f9267980c737f1e22505432e
7
- data.tar.gz: 9418bd14f97398e050297f938ce55fa7047a051ed631a3cfe884de5b112c38b0910b4cd71e191189a1019d6f7e853dfb7464f12393dbf95dd02c76896e01bf75
6
+ metadata.gz: 4dc1578a6fb72d82ba6bff214565459b7c2f0b31374cafd4ed5ef8c2183cbca0aa33cc95c096e3c26d899c1521203988e7cd4b90c0b1ed0d19bd347bc4f70d84
7
+ data.tar.gz: 8c86baedf7e5b4c63f8141020152415ab29f431b40fbae3a38e7bb7e738acf12cba525b431a6a8eafe4befe5c4d8b3b1420ae65d220f26574b14dbe3ee75cb7a
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.384
1
+ 3.0.385
@@ -413,32 +413,6 @@ module TencentCloud
413
413
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
414
414
  end
415
415
 
416
- # 废弃接口下架
417
-
418
- # 获取坐席用户列表(废弃)
419
-
420
- # @param request: Request instance for DescribeSeatUserList.
421
- # @type request: :class:`Tencentcloud::ccc::V20200210::DescribeSeatUserListRequest`
422
- # @rtype: :class:`Tencentcloud::ccc::V20200210::DescribeSeatUserListResponse`
423
- def DescribeSeatUserList(request)
424
- body = send_request('DescribeSeatUserList', request.serialize)
425
- response = JSON.parse(body)
426
- if response['Response'].key?('Error') == false
427
- model = DescribeSeatUserListResponse.new
428
- model.deserialize(response['Response'])
429
- model
430
- else
431
- code = response['Response']['Error']['Code']
432
- message = response['Response']['Error']['Message']
433
- reqid = response['Response']['RequestId']
434
- raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
435
- end
436
- rescue TencentCloud::Common::TencentCloudSDKException => e
437
- raise e
438
- rescue StandardError => e
439
- raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
440
- end
441
-
442
416
  # 获取技能组信息列表
443
417
 
444
418
  # @param request: Request instance for DescribeSkillGroupInfoList.
@@ -1129,61 +1129,6 @@ module TencentCloud
1129
1129
  end
1130
1130
  end
1131
1131
 
1132
- # DescribeSeatUserList请求参数结构体
1133
- class DescribeSeatUserListRequest < TencentCloud::Common::AbstractModel
1134
- # @param InstanceId: 实例ID
1135
- # @type InstanceId: Integer
1136
- # @param Offset: 偏移量
1137
- # @type Offset: Integer
1138
- # @param Limit: 返回数量
1139
- # @type Limit: Integer
1140
-
1141
- attr_accessor :InstanceId, :Offset, :Limit
1142
-
1143
- def initialize(instanceid=nil, offset=nil, limit=nil)
1144
- @InstanceId = instanceid
1145
- @Offset = offset
1146
- @Limit = limit
1147
- end
1148
-
1149
- def deserialize(params)
1150
- @InstanceId = params['InstanceId']
1151
- @Offset = params['Offset']
1152
- @Limit = params['Limit']
1153
- end
1154
- end
1155
-
1156
- # DescribeSeatUserList返回参数结构体
1157
- class DescribeSeatUserListResponse < TencentCloud::Common::AbstractModel
1158
- # @param TotalCount: 此实例的坐席用户总数
1159
- # @type TotalCount: Integer
1160
- # @param SeatUsers: 坐席用户信息列表
1161
- # @type SeatUsers: Array
1162
- # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1163
- # @type RequestId: String
1164
-
1165
- attr_accessor :TotalCount, :SeatUsers, :RequestId
1166
-
1167
- def initialize(totalcount=nil, seatusers=nil, requestid=nil)
1168
- @TotalCount = totalcount
1169
- @SeatUsers = seatusers
1170
- @RequestId = requestid
1171
- end
1172
-
1173
- def deserialize(params)
1174
- @TotalCount = params['TotalCount']
1175
- unless params['SeatUsers'].nil?
1176
- @SeatUsers = []
1177
- params['SeatUsers'].each do |i|
1178
- seatuserinfo_tmp = SeatUserInfo.new
1179
- seatuserinfo_tmp.deserialize(i)
1180
- @SeatUsers << seatuserinfo_tmp
1181
- end
1182
- end
1183
- @RequestId = params['RequestId']
1184
- end
1185
- end
1186
-
1187
1132
  # DescribeSkillGroupInfoList请求参数结构体
1188
1133
  class DescribeSkillGroupInfoListRequest < TencentCloud::Common::AbstractModel
1189
1134
  # @param SdkAppId: 应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc
@@ -1196,15 +1141,18 @@ module TencentCloud
1196
1141
  # @type SkillGroupId: Integer
1197
1142
  # @param ModifiedTime: 查询修改时间大于等于ModifiedTime的技能组时使用
1198
1143
  # @type ModifiedTime: Integer
1144
+ # @param SkillGroupName: 技能组名称
1145
+ # @type SkillGroupName: String
1199
1146
 
1200
- attr_accessor :SdkAppId, :PageSize, :PageNumber, :SkillGroupId, :ModifiedTime
1147
+ attr_accessor :SdkAppId, :PageSize, :PageNumber, :SkillGroupId, :ModifiedTime, :SkillGroupName
1201
1148
 
1202
- def initialize(sdkappid=nil, pagesize=nil, pagenumber=nil, skillgroupid=nil, modifiedtime=nil)
1149
+ def initialize(sdkappid=nil, pagesize=nil, pagenumber=nil, skillgroupid=nil, modifiedtime=nil, skillgroupname=nil)
1203
1150
  @SdkAppId = sdkappid
1204
1151
  @PageSize = pagesize
1205
1152
  @PageNumber = pagenumber
1206
1153
  @SkillGroupId = skillgroupid
1207
1154
  @ModifiedTime = modifiedtime
1155
+ @SkillGroupName = skillgroupname
1208
1156
  end
1209
1157
 
1210
1158
  def deserialize(params)
@@ -1213,6 +1161,7 @@ module TencentCloud
1213
1161
  @PageNumber = params['PageNumber']
1214
1162
  @SkillGroupId = params['SkillGroupId']
1215
1163
  @ModifiedTime = params['ModifiedTime']
1164
+ @SkillGroupName = params['SkillGroupName']
1216
1165
  end
1217
1166
  end
1218
1167
 
@@ -1709,16 +1658,22 @@ module TencentCloud
1709
1658
  # @type Nick: String
1710
1659
  # @param SkillGroupIds: 绑定技能组ID列表
1711
1660
  # @type SkillGroupIds: Array
1661
+ # @param UseMobileCallOut: 是否开启手机外呼开关
1662
+ # @type UseMobileCallOut: Boolean
1663
+ # @param UseMobileAccept: 手机接听模式 0 - 关闭 | 1 - 仅离线 | 2 - 始终
1664
+ # @type UseMobileAccept: Integer
1712
1665
 
1713
- attr_accessor :SdkAppId, :Email, :Name, :Phone, :Nick, :SkillGroupIds
1666
+ attr_accessor :SdkAppId, :Email, :Name, :Phone, :Nick, :SkillGroupIds, :UseMobileCallOut, :UseMobileAccept
1714
1667
 
1715
- def initialize(sdkappid=nil, email=nil, name=nil, phone=nil, nick=nil, skillgroupids=nil)
1668
+ def initialize(sdkappid=nil, email=nil, name=nil, phone=nil, nick=nil, skillgroupids=nil, usemobilecallout=nil, usemobileaccept=nil)
1716
1669
  @SdkAppId = sdkappid
1717
1670
  @Email = email
1718
1671
  @Name = name
1719
1672
  @Phone = phone
1720
1673
  @Nick = nick
1721
1674
  @SkillGroupIds = skillgroupids
1675
+ @UseMobileCallOut = usemobilecallout
1676
+ @UseMobileAccept = usemobileaccept
1722
1677
  end
1723
1678
 
1724
1679
  def deserialize(params)
@@ -1728,6 +1683,8 @@ module TencentCloud
1728
1683
  @Phone = params['Phone']
1729
1684
  @Nick = params['Nick']
1730
1685
  @SkillGroupIds = params['SkillGroupIds']
1686
+ @UseMobileCallOut = params['UseMobileCallOut']
1687
+ @UseMobileAccept = params['UseMobileAccept']
1731
1688
  end
1732
1689
  end
1733
1690
 
@@ -2339,10 +2296,14 @@ module TencentCloud
2339
2296
  # @type ReserveRest: Boolean
2340
2297
  # @param ReserveNotReady: 是否预约示忙
2341
2298
  # @type ReserveNotReady: Boolean
2299
+ # @param UseMobileAccept: 手机接听模式: 0 - 关闭 | 1 - 仅离线 | 2- 始终
2300
+ # @type UseMobileAccept: Integer
2301
+ # @param UseMobileCallOut: 手机外呼开关
2302
+ # @type UseMobileCallOut: Boolean
2342
2303
 
2343
- attr_accessor :Email, :Status, :StatusExtra, :OnlineDuration, :FreeDuration, :BusyDuration, :NotReadyDuration, :RestDuration, :AfterCallWorkDuration, :Reason, :ReserveRest, :ReserveNotReady
2304
+ attr_accessor :Email, :Status, :StatusExtra, :OnlineDuration, :FreeDuration, :BusyDuration, :NotReadyDuration, :RestDuration, :AfterCallWorkDuration, :Reason, :ReserveRest, :ReserveNotReady, :UseMobileAccept, :UseMobileCallOut
2344
2305
 
2345
- def initialize(email=nil, status=nil, statusextra=nil, onlineduration=nil, freeduration=nil, busyduration=nil, notreadyduration=nil, restduration=nil, aftercallworkduration=nil, reason=nil, reserverest=nil, reservenotready=nil)
2306
+ def initialize(email=nil, status=nil, statusextra=nil, onlineduration=nil, freeduration=nil, busyduration=nil, notreadyduration=nil, restduration=nil, aftercallworkduration=nil, reason=nil, reserverest=nil, reservenotready=nil, usemobileaccept=nil, usemobilecallout=nil)
2346
2307
  @Email = email
2347
2308
  @Status = status
2348
2309
  @StatusExtra = statusextra
@@ -2355,6 +2316,8 @@ module TencentCloud
2355
2316
  @Reason = reason
2356
2317
  @ReserveRest = reserverest
2357
2318
  @ReserveNotReady = reservenotready
2319
+ @UseMobileAccept = usemobileaccept
2320
+ @UseMobileCallOut = usemobilecallout
2358
2321
  end
2359
2322
 
2360
2323
  def deserialize(params)
@@ -2373,6 +2336,8 @@ module TencentCloud
2373
2336
  @Reason = params['Reason']
2374
2337
  @ReserveRest = params['ReserveRest']
2375
2338
  @ReserveNotReady = params['ReserveNotReady']
2339
+ @UseMobileAccept = params['UseMobileAccept']
2340
+ @UseMobileCallOut = params['UseMobileCallOut']
2376
2341
  end
2377
2342
  end
2378
2343
 
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.384
4
+ version: 3.0.385
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-08-10 00:00:00.000000000 Z
11
+ date: 2022-08-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common