tencentcloud-sdk-lcic 3.0.622 → 3.0.623
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/v20220817/models.rb +20 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a36e72a3187987805a45a7874d15940e02b2fdc4
|
|
4
|
+
data.tar.gz: fdf25f41b14cb940fa163cf4575dfd9ae9f15451
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 34d5685e99b0fea7d16a4f5fc5693ae07fd2c9551c62c88c25de3980e76f9aeb90918d12ef0bdabdb96de3830a7b2b9b7d0f0a6f996cda12773020ebbe1ff600
|
|
7
|
+
data.tar.gz: b2b3ebaa141717e214554a14a833dd2459735234a4b1ff6d1e462f18dcd7328719baef5b087af6f3afcfe3b94fef51d0daab67de88ada5ac4ed5e3826d5f8632
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.623
|
data/lib/v20220817/models.rb
CHANGED
|
@@ -2447,6 +2447,14 @@ module TencentCloud
|
|
|
2447
2447
|
# MemberJoin:成员加入
|
|
2448
2448
|
# MemberQuit:成员退出
|
|
2449
2449
|
# RecordFinish:录制结束
|
|
2450
|
+
# CameraOn: 摄像头打开
|
|
2451
|
+
# CameraOff: 摄像头关闭
|
|
2452
|
+
# MicOn: 麦克风打开
|
|
2453
|
+
# MicOff: 麦克风关闭
|
|
2454
|
+
# ScreenOn: 屏幕共享打开
|
|
2455
|
+
# ScreenOff: 屏幕共享关闭
|
|
2456
|
+
# VisibleOn: 页面可见
|
|
2457
|
+
# VisibleOff: 页面不可见
|
|
2450
2458
|
# @type Keyword: String
|
|
2451
2459
|
|
|
2452
2460
|
attr_accessor :RoomId, :SdkAppId, :Page, :Limit, :Keyword
|
|
@@ -3528,10 +3536,16 @@ module TencentCloud
|
|
|
3528
3536
|
# @param VideoOrientation: 横竖屏。0:横屏开播(默认值); 1:竖屏开播,当前仅支持移动端的纯视频类型
|
|
3529
3537
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
3530
3538
|
# @type VideoOrientation: Integer
|
|
3539
|
+
# @param IsGradingRequiredPostClass: 开启课后评分。 0:不开启(默认) 1:开启
|
|
3540
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
3541
|
+
# @type IsGradingRequiredPostClass: Integer
|
|
3542
|
+
# @param RoomType: 房间类型。0:小班课(默认值);1:大班课;2:1V1(后续扩展)
|
|
3543
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
3544
|
+
# @type RoomType: Integer
|
|
3531
3545
|
|
|
3532
|
-
attr_accessor :Name, :RoomId, :Status, :StartTime, :EndTime, :RealStartTime, :RealEndTime, :Resolution, :MaxRTCMember, :ReplayUrl, :RecordUrl, :MaxMicNumber, :EnableDirectControl, :InteractionMode, :VideoOrientation
|
|
3546
|
+
attr_accessor :Name, :RoomId, :Status, :StartTime, :EndTime, :RealStartTime, :RealEndTime, :Resolution, :MaxRTCMember, :ReplayUrl, :RecordUrl, :MaxMicNumber, :EnableDirectControl, :InteractionMode, :VideoOrientation, :IsGradingRequiredPostClass, :RoomType
|
|
3533
3547
|
|
|
3534
|
-
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)
|
|
3548
|
+
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)
|
|
3535
3549
|
@Name = name
|
|
3536
3550
|
@RoomId = roomid
|
|
3537
3551
|
@Status = status
|
|
@@ -3547,6 +3561,8 @@ module TencentCloud
|
|
|
3547
3561
|
@EnableDirectControl = enabledirectcontrol
|
|
3548
3562
|
@InteractionMode = interactionmode
|
|
3549
3563
|
@VideoOrientation = videoorientation
|
|
3564
|
+
@IsGradingRequiredPostClass = isgradingrequiredpostclass
|
|
3565
|
+
@RoomType = roomtype
|
|
3550
3566
|
end
|
|
3551
3567
|
|
|
3552
3568
|
def deserialize(params)
|
|
@@ -3565,6 +3581,8 @@ module TencentCloud
|
|
|
3565
3581
|
@EnableDirectControl = params['EnableDirectControl']
|
|
3566
3582
|
@InteractionMode = params['InteractionMode']
|
|
3567
3583
|
@VideoOrientation = params['VideoOrientation']
|
|
3584
|
+
@IsGradingRequiredPostClass = params['IsGradingRequiredPostClass']
|
|
3585
|
+
@RoomType = params['RoomType']
|
|
3568
3586
|
end
|
|
3569
3587
|
end
|
|
3570
3588
|
|
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.
|
|
4
|
+
version: 3.0.623
|
|
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-
|
|
11
|
+
date: 2023-07-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|