tencentcloud-sdk-lcic 3.0.1013 → 3.0.1014

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20220817/models.rb +30 -37
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b7da5db496db819969e5ba2bad5f69c7f692d1ae
4
- data.tar.gz: 19ddf4c635cb387df946ad656ab9b89bcf851e4c
3
+ metadata.gz: 56819f37b3f67881d15bb617143868d4450b7502
4
+ data.tar.gz: 70d5f1b14ea5b4bb2b4e215d451dc79e851c4b05
5
5
  SHA512:
6
- metadata.gz: 0284b8766701e746b0070748b5e031931a2644072baaac3d2aefa353cdf8130751aebaf5350b5df38a1a104d93d97963c2262b26cc2b2be4fb1f5c86cc5b1d92
7
- data.tar.gz: acd6baf7d77ac44eb87c8d4d878e0dc1b192f6352dc68a0321e520e1bec4bb368caf25ccff9f2cb0aa0d0bcfe87fb8aa700f6e3d26ad6fee5095179a61d3df1e
6
+ metadata.gz: 5cd2e88a7de02b0baa2b7a6962c81ba51f7b5c7d92435d08ff25fd6cfd3c98f23715ec70fdd9bc9f775f9ec28d50535f38ffc8231c8ce7085ac923aa387f9723
7
+ data.tar.gz: 4ea4e846721c7ef8a102def9641fa8841d6320aeaa7a34791e5c2627bc1586cebf691fcef954bebf1f520ae643aa91787c69b1e7923c8960ce601f002d93e40f
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1013
1
+ 3.0.1014
@@ -926,15 +926,17 @@ module TencentCloud
926
926
  # @type RecordLang: String
927
927
  # @param RecordStream: 录制类型 0 仅录制混流(默认) ;1 录制混流+单流,该模式下除混流录制基础上,分别录制老师、台上学生的音视频流,每路录制都会产生相应的录制费用 。示例:0
928
928
  # @type RecordStream: Integer
929
+ # @param WhiteBoardSnapshotMode: 板书截图生成类型。0 不生成板书;1 全量模式;2 单页去重模式
930
+ # @type WhiteBoardSnapshotMode: Integer
929
931
 
930
- attr_accessor :Name, :StartTime, :EndTime, :SdkAppId, :Resolution, :MaxMicNumber, :SubType, :TeacherId, :AutoMic, :TurnOffMic, :AudioQuality, :DisableRecord, :Assistants, :RTCAudienceNumber, :AudienceType, :RecordLayout, :GroupId, :EnableDirectControl, :InteractionMode, :VideoOrientation, :IsGradingRequiredPostClass, :RoomType, :EndDelayTime, :LiveType, :RecordLiveUrl, :EnableAutoStart, :RecordBackground, :RecordScene, :RecordLang, :RecordStream
932
+ attr_accessor :Name, :StartTime, :EndTime, :SdkAppId, :Resolution, :MaxMicNumber, :SubType, :TeacherId, :AutoMic, :TurnOffMic, :AudioQuality, :DisableRecord, :Assistants, :RTCAudienceNumber, :AudienceType, :RecordLayout, :GroupId, :EnableDirectControl, :InteractionMode, :VideoOrientation, :IsGradingRequiredPostClass, :RoomType, :EndDelayTime, :LiveType, :RecordLiveUrl, :EnableAutoStart, :RecordBackground, :RecordScene, :RecordLang, :RecordStream, :WhiteBoardSnapshotMode
931
933
  extend Gem::Deprecate
932
934
  deprecate :RTCAudienceNumber, :none, 2025, 3
933
935
  deprecate :RTCAudienceNumber=, :none, 2025, 3
934
936
  deprecate :RecordLang, :none, 2025, 3
935
937
  deprecate :RecordLang=, :none, 2025, 3
936
938
 
937
- def initialize(name=nil, starttime=nil, endtime=nil, sdkappid=nil, resolution=nil, maxmicnumber=nil, subtype=nil, teacherid=nil, automic=nil, turnoffmic=nil, audioquality=nil, disablerecord=nil, assistants=nil, rtcaudiencenumber=nil, audiencetype=nil, recordlayout=nil, groupid=nil, enabledirectcontrol=nil, interactionmode=nil, videoorientation=nil, isgradingrequiredpostclass=nil, roomtype=nil, enddelaytime=nil, livetype=nil, recordliveurl=nil, enableautostart=nil, recordbackground=nil, recordscene=nil, recordlang=nil, recordstream=nil)
939
+ def initialize(name=nil, starttime=nil, endtime=nil, sdkappid=nil, resolution=nil, maxmicnumber=nil, subtype=nil, teacherid=nil, automic=nil, turnoffmic=nil, audioquality=nil, disablerecord=nil, assistants=nil, rtcaudiencenumber=nil, audiencetype=nil, recordlayout=nil, groupid=nil, enabledirectcontrol=nil, interactionmode=nil, videoorientation=nil, isgradingrequiredpostclass=nil, roomtype=nil, enddelaytime=nil, livetype=nil, recordliveurl=nil, enableautostart=nil, recordbackground=nil, recordscene=nil, recordlang=nil, recordstream=nil, whiteboardsnapshotmode=nil)
938
940
  @Name = name
939
941
  @StartTime = starttime
940
942
  @EndTime = endtime
@@ -965,6 +967,7 @@ module TencentCloud
965
967
  @RecordScene = recordscene
966
968
  @RecordLang = recordlang
967
969
  @RecordStream = recordstream
970
+ @WhiteBoardSnapshotMode = whiteboardsnapshotmode
968
971
  end
969
972
 
970
973
  def deserialize(params)
@@ -998,6 +1001,7 @@ module TencentCloud
998
1001
  @RecordScene = params['RecordScene']
999
1002
  @RecordLang = params['RecordLang']
1000
1003
  @RecordStream = params['RecordStream']
1004
+ @WhiteBoardSnapshotMode = params['WhiteBoardSnapshotMode']
1001
1005
  end
1002
1006
  end
1003
1007
 
@@ -2434,16 +2438,12 @@ module TencentCloud
2434
2438
  # 注:如果该配置取值为0,录制将从上课后开始,课堂结束后停止。
2435
2439
  # @type DisableRecord: Integer
2436
2440
  # @param Assistants: 助教UserId列表。
2437
- # 注意:此字段可能返回 null,表示取不到有效值。
2438
2441
  # @type Assistants: Array
2439
2442
  # @param RecordUrl: 录制地址(协议为https)。仅在房间结束后存在。
2440
- # 注意:此字段可能返回 null,表示取不到有效值。
2441
2443
  # @type RecordUrl: String
2442
2444
  # @param Status: 课堂状态。0为未开始,1为已开始,2为已结束,3为已过期。
2443
- # 注意:此字段可能返回 null,表示取不到有效值。
2444
2445
  # @type Status: Integer
2445
2446
  # @param GroupId: 房间绑定的群组ID
2446
- # 注意:此字段可能返回 null,表示取不到有效值。
2447
2447
  # @type GroupId: String
2448
2448
  # @param EnableDirectControl: 打开学生麦克风/摄像头的授权开关
2449
2449
  # @type EnableDirectControl: Integer
@@ -2480,12 +2480,14 @@ module TencentCloud
2480
2480
  # @type RecordStream: Integer
2481
2481
  # @param RecordLayout: 录制模板。房间子类型为视频+白板(SubType=videodoc)时默认为3,房间子类型为纯视频(SubType=video)时默认为0。录制模板枚举值参考:https://cloud.tencent.com/document/product/1639/89744
2482
2482
  # @type RecordLayout: Integer
2483
+ # @param WhiteBoardSnapshotMode: 板书截图生成类型。0 不生成板书;1 全量模式;2 单页去重模式
2484
+ # @type WhiteBoardSnapshotMode: Integer
2483
2485
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2484
2486
  # @type RequestId: String
2485
2487
 
2486
- attr_accessor :Name, :StartTime, :EndTime, :TeacherId, :SdkAppId, :AudienceType, :Resolution, :MaxMicNumber, :AutoMic, :AudioQuality, :SubType, :DisableRecord, :Assistants, :RecordUrl, :Status, :GroupId, :EnableDirectControl, :InteractionMode, :VideoOrientation, :IsGradingRequiredPostClass, :RoomType, :VideoDuration, :EndDelayTime, :LiveType, :RecordLiveUrl, :EnableAutoStart, :RecordBackground, :RTMPStreamingURL, :RecordScene, :RecordLang, :RecordStream, :RecordLayout, :RequestId
2488
+ attr_accessor :Name, :StartTime, :EndTime, :TeacherId, :SdkAppId, :AudienceType, :Resolution, :MaxMicNumber, :AutoMic, :AudioQuality, :SubType, :DisableRecord, :Assistants, :RecordUrl, :Status, :GroupId, :EnableDirectControl, :InteractionMode, :VideoOrientation, :IsGradingRequiredPostClass, :RoomType, :VideoDuration, :EndDelayTime, :LiveType, :RecordLiveUrl, :EnableAutoStart, :RecordBackground, :RTMPStreamingURL, :RecordScene, :RecordLang, :RecordStream, :RecordLayout, :WhiteBoardSnapshotMode, :RequestId
2487
2489
 
2488
- def initialize(name=nil, starttime=nil, endtime=nil, teacherid=nil, sdkappid=nil, audiencetype=nil, resolution=nil, maxmicnumber=nil, automic=nil, audioquality=nil, subtype=nil, disablerecord=nil, assistants=nil, recordurl=nil, status=nil, groupid=nil, enabledirectcontrol=nil, interactionmode=nil, videoorientation=nil, isgradingrequiredpostclass=nil, roomtype=nil, videoduration=nil, enddelaytime=nil, livetype=nil, recordliveurl=nil, enableautostart=nil, recordbackground=nil, rtmpstreamingurl=nil, recordscene=nil, recordlang=nil, recordstream=nil, recordlayout=nil, requestid=nil)
2490
+ def initialize(name=nil, starttime=nil, endtime=nil, teacherid=nil, sdkappid=nil, audiencetype=nil, resolution=nil, maxmicnumber=nil, automic=nil, audioquality=nil, subtype=nil, disablerecord=nil, assistants=nil, recordurl=nil, status=nil, groupid=nil, enabledirectcontrol=nil, interactionmode=nil, videoorientation=nil, isgradingrequiredpostclass=nil, roomtype=nil, videoduration=nil, enddelaytime=nil, livetype=nil, recordliveurl=nil, enableautostart=nil, recordbackground=nil, rtmpstreamingurl=nil, recordscene=nil, recordlang=nil, recordstream=nil, recordlayout=nil, whiteboardsnapshotmode=nil, requestid=nil)
2489
2491
  @Name = name
2490
2492
  @StartTime = starttime
2491
2493
  @EndTime = endtime
@@ -2518,6 +2520,7 @@ module TencentCloud
2518
2520
  @RecordLang = recordlang
2519
2521
  @RecordStream = recordstream
2520
2522
  @RecordLayout = recordlayout
2523
+ @WhiteBoardSnapshotMode = whiteboardsnapshotmode
2521
2524
  @RequestId = requestid
2522
2525
  end
2523
2526
 
@@ -2554,6 +2557,7 @@ module TencentCloud
2554
2557
  @RecordLang = params['RecordLang']
2555
2558
  @RecordStream = params['RecordStream']
2556
2559
  @RecordLayout = params['RecordLayout']
2560
+ @WhiteBoardSnapshotMode = params['WhiteBoardSnapshotMode']
2557
2561
  @RequestId = params['RequestId']
2558
2562
  end
2559
2563
  end
@@ -3969,13 +3973,15 @@ module TencentCloud
3969
3973
  # @type RecordScene: String
3970
3974
  # @param RecordLang: 录制自定义语言,仅recordlayout=9的时候此参数有效
3971
3975
  # @type RecordLang: String
3976
+ # @param WhiteBoardSnapshotMode: 板书截图生成类型。0 不生成板书;1 全量模式;2 单页去重模式
3977
+ # @type WhiteBoardSnapshotMode: Integer
3972
3978
 
3973
- attr_accessor :RoomId, :SdkAppId, :StartTime, :EndTime, :TeacherId, :Name, :Resolution, :MaxMicNumber, :AutoMic, :AudioQuality, :SubType, :DisableRecord, :Assistants, :GroupId, :EnableDirectControl, :InteractionMode, :VideoOrientation, :IsGradingRequiredPostClass, :RoomType, :RecordLayout, :EndDelayTime, :LiveType, :RecordLiveUrl, :EnableAutoStart, :RecordScene, :RecordLang
3979
+ attr_accessor :RoomId, :SdkAppId, :StartTime, :EndTime, :TeacherId, :Name, :Resolution, :MaxMicNumber, :AutoMic, :AudioQuality, :SubType, :DisableRecord, :Assistants, :GroupId, :EnableDirectControl, :InteractionMode, :VideoOrientation, :IsGradingRequiredPostClass, :RoomType, :RecordLayout, :EndDelayTime, :LiveType, :RecordLiveUrl, :EnableAutoStart, :RecordScene, :RecordLang, :WhiteBoardSnapshotMode
3974
3980
  extend Gem::Deprecate
3975
3981
  deprecate :RecordLang, :none, 2025, 3
3976
3982
  deprecate :RecordLang=, :none, 2025, 3
3977
3983
 
3978
- def initialize(roomid=nil, sdkappid=nil, starttime=nil, endtime=nil, teacherid=nil, name=nil, resolution=nil, maxmicnumber=nil, automic=nil, audioquality=nil, subtype=nil, disablerecord=nil, assistants=nil, groupid=nil, enabledirectcontrol=nil, interactionmode=nil, videoorientation=nil, isgradingrequiredpostclass=nil, roomtype=nil, recordlayout=nil, enddelaytime=nil, livetype=nil, recordliveurl=nil, enableautostart=nil, recordscene=nil, recordlang=nil)
3984
+ def initialize(roomid=nil, sdkappid=nil, starttime=nil, endtime=nil, teacherid=nil, name=nil, resolution=nil, maxmicnumber=nil, automic=nil, audioquality=nil, subtype=nil, disablerecord=nil, assistants=nil, groupid=nil, enabledirectcontrol=nil, interactionmode=nil, videoorientation=nil, isgradingrequiredpostclass=nil, roomtype=nil, recordlayout=nil, enddelaytime=nil, livetype=nil, recordliveurl=nil, enableautostart=nil, recordscene=nil, recordlang=nil, whiteboardsnapshotmode=nil)
3979
3985
  @RoomId = roomid
3980
3986
  @SdkAppId = sdkappid
3981
3987
  @StartTime = starttime
@@ -4002,6 +4008,7 @@ module TencentCloud
4002
4008
  @EnableAutoStart = enableautostart
4003
4009
  @RecordScene = recordscene
4004
4010
  @RecordLang = recordlang
4011
+ @WhiteBoardSnapshotMode = whiteboardsnapshotmode
4005
4012
  end
4006
4013
 
4007
4014
  def deserialize(params)
@@ -4031,6 +4038,7 @@ module TencentCloud
4031
4038
  @EnableAutoStart = params['EnableAutoStart']
4032
4039
  @RecordScene = params['RecordScene']
4033
4040
  @RecordLang = params['RecordLang']
4041
+ @WhiteBoardSnapshotMode = params['WhiteBoardSnapshotMode']
4034
4042
  end
4035
4043
  end
4036
4044
 
@@ -4313,15 +4321,17 @@ module TencentCloud
4313
4321
  # @type RecordLang: String
4314
4322
  # @param RecordStream: 录制类型 0 仅录制混流(默认) ;1 录制混流+单流,该模式下除混流录制基础上,分别录制老师、台上学生的音视频流,每路录制都会产生相应的录制费用 。示例:0
4315
4323
  # @type RecordStream: Integer
4324
+ # @param WhiteBoardSnapshotMode: 板书截图生成类型。0 不生成板书;1 全量模式;2 单页去重模式
4325
+ # @type WhiteBoardSnapshotMode: Integer
4316
4326
 
4317
- attr_accessor :Name, :StartTime, :EndTime, :Resolution, :MaxMicNumber, :SubType, :TeacherId, :AutoMic, :TurnOffMic, :AudioQuality, :DisableRecord, :Assistants, :RTCAudienceNumber, :AudienceType, :RecordLayout, :GroupId, :EnableDirectControl, :InteractionMode, :VideoOrientation, :IsGradingRequiredPostClass, :RoomType, :EndDelayTime, :LiveType, :RecordLiveUrl, :EnableAutoStart, :RecordBackground, :RecordScene, :RecordLang, :RecordStream
4327
+ attr_accessor :Name, :StartTime, :EndTime, :Resolution, :MaxMicNumber, :SubType, :TeacherId, :AutoMic, :TurnOffMic, :AudioQuality, :DisableRecord, :Assistants, :RTCAudienceNumber, :AudienceType, :RecordLayout, :GroupId, :EnableDirectControl, :InteractionMode, :VideoOrientation, :IsGradingRequiredPostClass, :RoomType, :EndDelayTime, :LiveType, :RecordLiveUrl, :EnableAutoStart, :RecordBackground, :RecordScene, :RecordLang, :RecordStream, :WhiteBoardSnapshotMode
4318
4328
  extend Gem::Deprecate
4319
4329
  deprecate :RTCAudienceNumber, :none, 2025, 3
4320
4330
  deprecate :RTCAudienceNumber=, :none, 2025, 3
4321
4331
  deprecate :RecordLang, :none, 2025, 3
4322
4332
  deprecate :RecordLang=, :none, 2025, 3
4323
4333
 
4324
- def initialize(name=nil, starttime=nil, endtime=nil, resolution=nil, maxmicnumber=nil, subtype=nil, teacherid=nil, automic=nil, turnoffmic=nil, audioquality=nil, disablerecord=nil, assistants=nil, rtcaudiencenumber=nil, audiencetype=nil, recordlayout=nil, groupid=nil, enabledirectcontrol=nil, interactionmode=nil, videoorientation=nil, isgradingrequiredpostclass=nil, roomtype=nil, enddelaytime=nil, livetype=nil, recordliveurl=nil, enableautostart=nil, recordbackground=nil, recordscene=nil, recordlang=nil, recordstream=nil)
4334
+ def initialize(name=nil, starttime=nil, endtime=nil, resolution=nil, maxmicnumber=nil, subtype=nil, teacherid=nil, automic=nil, turnoffmic=nil, audioquality=nil, disablerecord=nil, assistants=nil, rtcaudiencenumber=nil, audiencetype=nil, recordlayout=nil, groupid=nil, enabledirectcontrol=nil, interactionmode=nil, videoorientation=nil, isgradingrequiredpostclass=nil, roomtype=nil, enddelaytime=nil, livetype=nil, recordliveurl=nil, enableautostart=nil, recordbackground=nil, recordscene=nil, recordlang=nil, recordstream=nil, whiteboardsnapshotmode=nil)
4325
4335
  @Name = name
4326
4336
  @StartTime = starttime
4327
4337
  @EndTime = endtime
@@ -4351,6 +4361,7 @@ module TencentCloud
4351
4361
  @RecordScene = recordscene
4352
4362
  @RecordLang = recordlang
4353
4363
  @RecordStream = recordstream
4364
+ @WhiteBoardSnapshotMode = whiteboardsnapshotmode
4354
4365
  end
4355
4366
 
4356
4367
  def deserialize(params)
@@ -4383,90 +4394,70 @@ module TencentCloud
4383
4394
  @RecordScene = params['RecordScene']
4384
4395
  @RecordLang = params['RecordLang']
4385
4396
  @RecordStream = params['RecordStream']
4397
+ @WhiteBoardSnapshotMode = params['WhiteBoardSnapshotMode']
4386
4398
  end
4387
4399
  end
4388
4400
 
4389
4401
  # 房间列表
4390
4402
  class RoomItem < TencentCloud::Common::AbstractModel
4391
4403
  # @param Name: 名称
4392
- # 注意:此字段可能返回 null,表示取不到有效值。
4393
4404
  # @type Name: String
4394
4405
  # @param RoomId: 房间ID
4395
- # 注意:此字段可能返回 null,表示取不到有效值。
4396
4406
  # @type RoomId: Integer
4397
4407
  # @param Status: 房间状态。0 未开始 ;1进行中 ;2 已结束;3已过期
4398
- # 注意:此字段可能返回 null,表示取不到有效值。
4399
4408
  # @type Status: Integer
4400
4409
  # @param StartTime: 开始时间
4401
- # 注意:此字段可能返回 null,表示取不到有效值。
4402
4410
  # @type StartTime: Integer
4403
4411
  # @param EndTime: 结束时间
4404
- # 注意:此字段可能返回 null,表示取不到有效值。
4405
4412
  # @type EndTime: Integer
4406
4413
  # @param RealStartTime: 实际开始时间
4407
- # 注意:此字段可能返回 null,表示取不到有效值。
4408
4414
  # @type RealStartTime: Integer
4409
4415
  # @param RealEndTime: 实际结束时间
4410
- # 注意:此字段可能返回 null,表示取不到有效值。
4411
4416
  # @type RealEndTime: Integer
4412
4417
  # @param Resolution: 头像区域,摄像头视频画面的分辨率。可以有如下取值:
4413
4418
  # 1 标清
4414
4419
  # 2 高清
4415
4420
  # 3 全高清
4416
- # 注意:此字段可能返回 null,表示取不到有效值。
4417
4421
  # @type Resolution: Integer
4418
4422
  # @param MaxRTCMember: 最大允许连麦人数。已废弃,使用字段 MaxMicNumber
4419
- # 注意:此字段可能返回 null,表示取不到有效值。
4420
4423
  # @type MaxRTCMember: Integer
4421
4424
  # @param ReplayUrl: 房间录制地址。已废弃,使用新字段 RecordUrl
4422
- # 注意:此字段可能返回 null,表示取不到有效值。
4423
4425
  # @type ReplayUrl: String
4424
4426
  # @param RecordUrl: 录制地址(协议为https)。仅在房间结束后存在。
4425
- # 注意:此字段可能返回 null,表示取不到有效值。
4426
4427
  # @type RecordUrl: String
4427
4428
  # @param MaxMicNumber: 课堂同时最大可与老师进行连麦互动的人数,该参数支持正式上课/开播前调用修改房间修改。小班课取值范围[0,16],大班课取值范围[0,1],当取值为0时表示当前课堂/直播,不支持连麦互动。
4428
- # 注意:此字段可能返回 null,表示取不到有效值。
4429
4429
  # @type MaxMicNumber: Integer
4430
4430
  # @param EnableDirectControl: 打开学生麦克风/摄像头的授权开关
4431
- # 注意:此字段可能返回 null,表示取不到有效值。
4432
4431
  # @type EnableDirectControl: Integer
4433
4432
  # @param InteractionMode: 开启专注模式。 0 收看全部角色音视频(默认) 1 只看老师和助教
4434
- # 注意:此字段可能返回 null,表示取不到有效值。
4435
4433
  # @type InteractionMode: Integer
4436
4434
  # @param VideoOrientation: 横竖屏。0:横屏开播(默认值); 1:竖屏开播,当前仅支持移动端的纯视频类型
4437
- # 注意:此字段可能返回 null,表示取不到有效值。
4438
4435
  # @type VideoOrientation: Integer
4439
4436
  # @param IsGradingRequiredPostClass: 开启课后评分。 0:不开启(默认) 1:开启
4440
- # 注意:此字段可能返回 null,表示取不到有效值。
4441
4437
  # @type IsGradingRequiredPostClass: Integer
4442
4438
  # @param RoomType: 房间类型。0:小班课(默认值);1:大班课;2:1V1(后续扩展)
4443
4439
  # 注:大班课的布局(layout)只有三分屏
4444
- # 注意:此字段可能返回 null,表示取不到有效值。
4445
4440
  # @type RoomType: Integer
4446
4441
  # @param EndDelayTime: 拖堂时间:单位分钟,0为不限制(默认值), -1为不能拖堂,大于0为拖堂的时间,最大值120分钟
4447
- # 注意:此字段可能返回 null,表示取不到有效值。
4448
4442
  # @type EndDelayTime: Integer
4449
4443
  # @param LiveType: 直播类型:0 常规(默认)1 伪直播
4450
- # 注意:此字段可能返回 null,表示取不到有效值。
4451
4444
  # @type LiveType: Integer
4452
4445
  # @param RecordLiveUrl: 伪直播回放链接
4453
- # 注意:此字段可能返回 null,表示取不到有效值。
4454
4446
  # @type RecordLiveUrl: String
4455
4447
  # @param EnableAutoStart: 是否自动开始上课:0 不自动上课(默认) 1 自动上课 live_type=1的时候有效
4456
- # 注意:此字段可能返回 null,表示取不到有效值。
4457
4448
  # @type EnableAutoStart: Integer
4458
4449
  # @param RecordBackground: 录制文件背景图片,支持png、jpg、jpeg、bmp格式,暂不支持透明通道
4459
- # 注意:此字段可能返回 null,表示取不到有效值。
4460
4450
  # @type RecordBackground: String
4461
4451
  # @param RecordScene: 录制自定义场景,仅recordlayout=9的时候此参数有效,数据内容为用户自定义场景参数,数据格式为json键值对方式,其中键值对的value为string类型。
4462
- # 注意:此字段可能返回 null,表示取不到有效值。
4463
4452
  # @type RecordScene: String
4464
4453
  # @param RecordLang: 录制自定义语言,仅recordlayout=9的时候此参数有效
4465
4454
  # @type RecordLang: String
4455
+ # @param WhiteBoardSnapshotMode: 板书截图生成类型。0 不生成板书;1 全量模式;2 单页去重模式
4456
+ # @type WhiteBoardSnapshotMode: Integer
4466
4457
 
4467
- attr_accessor :Name, :RoomId, :Status, :StartTime, :EndTime, :RealStartTime, :RealEndTime, :Resolution, :MaxRTCMember, :ReplayUrl, :RecordUrl, :MaxMicNumber, :EnableDirectControl, :InteractionMode, :VideoOrientation, :IsGradingRequiredPostClass, :RoomType, :EndDelayTime, :LiveType, :RecordLiveUrl, :EnableAutoStart, :RecordBackground, :RecordScene, :RecordLang
4458
+ attr_accessor :Name, :RoomId, :Status, :StartTime, :EndTime, :RealStartTime, :RealEndTime, :Resolution, :MaxRTCMember, :ReplayUrl, :RecordUrl, :MaxMicNumber, :EnableDirectControl, :InteractionMode, :VideoOrientation, :IsGradingRequiredPostClass, :RoomType, :EndDelayTime, :LiveType, :RecordLiveUrl, :EnableAutoStart, :RecordBackground, :RecordScene, :RecordLang, :WhiteBoardSnapshotMode
4468
4459
 
4469
- def initialize(name=nil, roomid=nil, status=nil, starttime=nil, endtime=nil, realstarttime=nil, realendtime=nil, resolution=nil, maxrtcmember=nil, replayurl=nil, recordurl=nil, maxmicnumber=nil, enabledirectcontrol=nil, interactionmode=nil, videoorientation=nil, isgradingrequiredpostclass=nil, roomtype=nil, enddelaytime=nil, livetype=nil, recordliveurl=nil, enableautostart=nil, recordbackground=nil, recordscene=nil, recordlang=nil)
4460
+ def initialize(name=nil, roomid=nil, status=nil, starttime=nil, endtime=nil, realstarttime=nil, realendtime=nil, resolution=nil, maxrtcmember=nil, replayurl=nil, recordurl=nil, maxmicnumber=nil, enabledirectcontrol=nil, interactionmode=nil, videoorientation=nil, isgradingrequiredpostclass=nil, roomtype=nil, enddelaytime=nil, livetype=nil, recordliveurl=nil, enableautostart=nil, recordbackground=nil, recordscene=nil, recordlang=nil, whiteboardsnapshotmode=nil)
4470
4461
  @Name = name
4471
4462
  @RoomId = roomid
4472
4463
  @Status = status
@@ -4491,6 +4482,7 @@ module TencentCloud
4491
4482
  @RecordBackground = recordbackground
4492
4483
  @RecordScene = recordscene
4493
4484
  @RecordLang = recordlang
4485
+ @WhiteBoardSnapshotMode = whiteboardsnapshotmode
4494
4486
  end
4495
4487
 
4496
4488
  def deserialize(params)
@@ -4518,6 +4510,7 @@ module TencentCloud
4518
4510
  @RecordBackground = params['RecordBackground']
4519
4511
  @RecordScene = params['RecordScene']
4520
4512
  @RecordLang = params['RecordLang']
4513
+ @WhiteBoardSnapshotMode = params['WhiteBoardSnapshotMode']
4521
4514
  end
4522
4515
  end
4523
4516
 
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.1013
4
+ version: 3.0.1014
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-07 00:00:00.000000000 Z
11
+ date: 2025-03-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common