tencentcloud-sdk-lcic 3.0.607 → 3.0.609

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 +18 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cc86486cc9ae2f3b4ec81a918e2081717573a67a
4
- data.tar.gz: 660b65123099a8eb0ee52fc04fdcc09cc586c8bf
3
+ metadata.gz: 22196b8c9a23500f199b901ed62a1f7e32e1f35d
4
+ data.tar.gz: e2c297acf5b5e0494fed76de0c31af1e91249aed
5
5
  SHA512:
6
- metadata.gz: f9adee00b2314b4ee60b2f815cfb210b06b04bbedf7161d9ff7cea653edc4f21431ad60e0cf040a8d2970874d3b1de15fb48c2cac80db0bec5d326a73fb5d6d7
7
- data.tar.gz: 5a617252222d9e260009dae8e4e9a84e006448ec836b44e02d77c8dc108ae48670b2af4ecfb138c58011ed295db54f485d89c2903adf188f9eba6d88dfa74021
6
+ metadata.gz: d756b95be2c25068f4c9d92a2bb98e328484831270f3209ddc5df5c814d56bc2a105b9dcf00461fa8d0ff7d92415c0e648f107799776c1f1fdd0fd442f4b2662
7
+ data.tar.gz: a5c19c8470178091c04e59bc2e4c908341bb8276a98a0af0e884b44fc0954a71eadef77df40ec5c5294b9a5fc5882d018c313ca3c842a3dbc4328495a4b09dd9
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.607
1
+ 3.0.609
@@ -2543,15 +2543,18 @@ module TencentCloud
2543
2543
  # @type Page: Integer
2544
2544
  # @param Limit: 默认是10条
2545
2545
  # @type Limit: Integer
2546
+ # @param Status: 课堂状态。默认展示所有课堂,0为未开始,1为正在上课,2为已结束,3为已过期
2547
+ # @type Status: Array
2546
2548
 
2547
- attr_accessor :SdkAppId, :StartTime, :EndTime, :Page, :Limit
2549
+ attr_accessor :SdkAppId, :StartTime, :EndTime, :Page, :Limit, :Status
2548
2550
 
2549
- def initialize(sdkappid=nil, starttime=nil, endtime=nil, page=nil, limit=nil)
2551
+ def initialize(sdkappid=nil, starttime=nil, endtime=nil, page=nil, limit=nil, status=nil)
2550
2552
  @SdkAppId = sdkappid
2551
2553
  @StartTime = starttime
2552
2554
  @EndTime = endtime
2553
2555
  @Page = page
2554
2556
  @Limit = limit
2557
+ @Status = status
2555
2558
  end
2556
2559
 
2557
2560
  def deserialize(params)
@@ -2560,6 +2563,7 @@ module TencentCloud
2560
2563
  @EndTime = params['EndTime']
2561
2564
  @Page = params['Page']
2562
2565
  @Limit = params['Limit']
2566
+ @Status = params['Status']
2563
2567
  end
2564
2568
  end
2565
2569
 
@@ -3478,10 +3482,16 @@ module TencentCloud
3478
3482
  # @param EnableDirectControl: 打开学生麦克风/摄像头的授权开关
3479
3483
  # 注意:此字段可能返回 null,表示取不到有效值。
3480
3484
  # @type EnableDirectControl: Integer
3485
+ # @param InteractionMode: 开启专注模式。 0 收看全部角色音视频(默认) 1 只看老师和助教
3486
+ # 注意:此字段可能返回 null,表示取不到有效值。
3487
+ # @type InteractionMode: Integer
3488
+ # @param VideoOrientation: 横竖屏。0:横屏开播(默认值); 1:竖屏开播,当前仅支持移动端的纯视频类型
3489
+ # 注意:此字段可能返回 null,表示取不到有效值。
3490
+ # @type VideoOrientation: Integer
3481
3491
 
3482
- attr_accessor :Name, :RoomId, :Status, :StartTime, :EndTime, :RealStartTime, :RealEndTime, :Resolution, :MaxRTCMember, :ReplayUrl, :RecordUrl, :MaxMicNumber, :EnableDirectControl
3492
+ attr_accessor :Name, :RoomId, :Status, :StartTime, :EndTime, :RealStartTime, :RealEndTime, :Resolution, :MaxRTCMember, :ReplayUrl, :RecordUrl, :MaxMicNumber, :EnableDirectControl, :InteractionMode, :VideoOrientation
3483
3493
 
3484
- 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)
3494
+ 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)
3485
3495
  @Name = name
3486
3496
  @RoomId = roomid
3487
3497
  @Status = status
@@ -3495,6 +3505,8 @@ module TencentCloud
3495
3505
  @RecordUrl = recordurl
3496
3506
  @MaxMicNumber = maxmicnumber
3497
3507
  @EnableDirectControl = enabledirectcontrol
3508
+ @InteractionMode = interactionmode
3509
+ @VideoOrientation = videoorientation
3498
3510
  end
3499
3511
 
3500
3512
  def deserialize(params)
@@ -3511,6 +3523,8 @@ module TencentCloud
3511
3523
  @RecordUrl = params['RecordUrl']
3512
3524
  @MaxMicNumber = params['MaxMicNumber']
3513
3525
  @EnableDirectControl = params['EnableDirectControl']
3526
+ @InteractionMode = params['InteractionMode']
3527
+ @VideoOrientation = params['VideoOrientation']
3514
3528
  end
3515
3529
  end
3516
3530
 
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.607
4
+ version: 3.0.609
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-06 00:00:00.000000000 Z
11
+ date: 2023-07-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common