tencentcloud-sdk-lcic 3.0.1017 → 3.0.1019

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: 7d648e1d7f49c9ef3e09dbe3b6f63faded5c33df
4
- data.tar.gz: e33ef3152ed317fa635a3eddb8db723c042d0289
3
+ metadata.gz: 8ec6b72faa536996e5e1afd5552d611d2c26367e
4
+ data.tar.gz: 67772143e6a27864771fe4a1e4921c10b2d7745a
5
5
  SHA512:
6
- metadata.gz: 78aacd1ee184f3e3bf3cf9a8306fdcdfb0418330137cd1bf346a517ea0bfeb87c3ab6b28f12d2c3159413ff7c5a6393ca072840b1184cc70f5117ba6aff23fe0
7
- data.tar.gz: a4f2ecae4b95fd8197839c80dc7201933d730753c77df176f70411d3b93dd4d310a43e8cd0f7b9b30e5cec1a9c757da2873105510191d413d2a316991bbeec1b
6
+ metadata.gz: 86ee8774769f9bcc4e0b248dee185167ede1c6e3b40f6a1b89fe22d9914ed1034c6f2beb75d22e1ae55231bd4303ca9be3885da6be6c88907ab000bae34b117b
7
+ data.tar.gz: 00dd724376c09271c058ddfaf15b69897b20f60fd4721c8de641dffd5f754bc3b7f2d54041d1ca36f7a1ac1430e3bb2c7dcedcc64fc4d12758c65a352b990a77
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1017
1
+ 3.0.1019
@@ -577,6 +577,30 @@ module TencentCloud
577
577
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
578
578
  end
579
579
 
580
+ # 删除白板板书截图
581
+
582
+ # @param request: Request instance for DeleteWhiteBoardSnapshot.
583
+ # @type request: :class:`Tencentcloud::lcic::V20220817::DeleteWhiteBoardSnapshotRequest`
584
+ # @rtype: :class:`Tencentcloud::lcic::V20220817::DeleteWhiteBoardSnapshotResponse`
585
+ def DeleteWhiteBoardSnapshot(request)
586
+ body = send_request('DeleteWhiteBoardSnapshot', request.serialize)
587
+ response = JSON.parse(body)
588
+ if response['Response'].key?('Error') == false
589
+ model = DeleteWhiteBoardSnapshotResponse.new
590
+ model.deserialize(response['Response'])
591
+ model
592
+ else
593
+ code = response['Response']['Error']['Code']
594
+ message = response['Response']['Error']['Message']
595
+ reqid = response['Response']['RequestId']
596
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
597
+ end
598
+ rescue TencentCloud::Common::TencentCloudSDKException => e
599
+ raise e
600
+ rescue StandardError => e
601
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
602
+ end
603
+
580
604
  # 获取房间答题详情
581
605
 
582
606
  # @param request: Request instance for DescribeAnswerList.
@@ -1107,6 +1131,30 @@ module TencentCloud
1107
1131
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1108
1132
  end
1109
1133
 
1134
+ # 查询白板板书截图
1135
+
1136
+ # @param request: Request instance for DescribeWhiteBoardSnapshot.
1137
+ # @type request: :class:`Tencentcloud::lcic::V20220817::DescribeWhiteBoardSnapshotRequest`
1138
+ # @rtype: :class:`Tencentcloud::lcic::V20220817::DescribeWhiteBoardSnapshotResponse`
1139
+ def DescribeWhiteBoardSnapshot(request)
1140
+ body = send_request('DescribeWhiteBoardSnapshot', request.serialize)
1141
+ response = JSON.parse(body)
1142
+ if response['Response'].key?('Error') == false
1143
+ model = DescribeWhiteBoardSnapshotResponse.new
1144
+ model.deserialize(response['Response'])
1145
+ model
1146
+ else
1147
+ code = response['Response']['Error']['Code']
1148
+ message = response['Response']['Error']['Message']
1149
+ reqid = response['Response']['RequestId']
1150
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1151
+ end
1152
+ rescue TencentCloud::Common::TencentCloudSDKException => e
1153
+ raise e
1154
+ rescue StandardError => e
1155
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1156
+ end
1157
+
1110
1158
  # 结束房间的直播
1111
1159
 
1112
1160
  # @param request: Request instance for EndRoom.
@@ -1409,6 +1409,38 @@ module TencentCloud
1409
1409
  end
1410
1410
  end
1411
1411
 
1412
+ # DeleteWhiteBoardSnapshot请求参数结构体
1413
+ class DeleteWhiteBoardSnapshotRequest < TencentCloud::Common::AbstractModel
1414
+ # @param RoomId: 房间ID
1415
+ # @type RoomId: Integer
1416
+
1417
+ attr_accessor :RoomId
1418
+
1419
+ def initialize(roomid=nil)
1420
+ @RoomId = roomid
1421
+ end
1422
+
1423
+ def deserialize(params)
1424
+ @RoomId = params['RoomId']
1425
+ end
1426
+ end
1427
+
1428
+ # DeleteWhiteBoardSnapshot返回参数结构体
1429
+ class DeleteWhiteBoardSnapshotResponse < TencentCloud::Common::AbstractModel
1430
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1431
+ # @type RequestId: String
1432
+
1433
+ attr_accessor :RequestId
1434
+
1435
+ def initialize(requestid=nil)
1436
+ @RequestId = requestid
1437
+ end
1438
+
1439
+ def deserialize(params)
1440
+ @RequestId = params['RequestId']
1441
+ end
1442
+ end
1443
+
1412
1444
  # DescribeAnswerList请求参数结构体
1413
1445
  class DescribeAnswerListRequest < TencentCloud::Common::AbstractModel
1414
1446
  # @param QuestionId: 问题ID
@@ -2863,6 +2895,54 @@ module TencentCloud
2863
2895
  end
2864
2896
  end
2865
2897
 
2898
+ # DescribeWhiteBoardSnapshot请求参数结构体
2899
+ class DescribeWhiteBoardSnapshotRequest < TencentCloud::Common::AbstractModel
2900
+ # @param RoomId: 房间ID
2901
+ # @type RoomId: Integer
2902
+
2903
+ attr_accessor :RoomId
2904
+
2905
+ def initialize(roomid=nil)
2906
+ @RoomId = roomid
2907
+ end
2908
+
2909
+ def deserialize(params)
2910
+ @RoomId = params['RoomId']
2911
+ end
2912
+ end
2913
+
2914
+ # DescribeWhiteBoardSnapshot返回参数结构体
2915
+ class DescribeWhiteBoardSnapshotResponse < TencentCloud::Common::AbstractModel
2916
+ # @param WhiteBoardSnapshotMode: 板书截图生成类型。0 不生成板书;1 全量模式;2 单页去重模式
2917
+ # @type WhiteBoardSnapshotMode: Integer
2918
+ # @param Status: 板书任务状态,0:未开始,1:进行中,2:失败,3:成功,4:已删除
2919
+ # @type Status: Integer
2920
+ # @param Result: 板书截图链接
2921
+ # @type Result: Array
2922
+ # @param Total: 总数
2923
+ # @type Total: Integer
2924
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2925
+ # @type RequestId: String
2926
+
2927
+ attr_accessor :WhiteBoardSnapshotMode, :Status, :Result, :Total, :RequestId
2928
+
2929
+ def initialize(whiteboardsnapshotmode=nil, status=nil, result=nil, total=nil, requestid=nil)
2930
+ @WhiteBoardSnapshotMode = whiteboardsnapshotmode
2931
+ @Status = status
2932
+ @Result = result
2933
+ @Total = total
2934
+ @RequestId = requestid
2935
+ end
2936
+
2937
+ def deserialize(params)
2938
+ @WhiteBoardSnapshotMode = params['WhiteBoardSnapshotMode']
2939
+ @Status = params['Status']
2940
+ @Result = params['Result']
2941
+ @Total = params['Total']
2942
+ @RequestId = params['RequestId']
2943
+ end
2944
+ end
2945
+
2866
2946
  # 文档信息
2867
2947
  class DocumentInfo < TencentCloud::Common::AbstractModel
2868
2948
  # @param DocumentId: 文档Id
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-lcic
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1017
4
+ version: 3.0.1019
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-03-12 00:00:00.000000000 Z
11
+ date: 2025-03-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common