tencentcloud-sdk-lcic 3.0.622 → 3.0.624
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20220817/models.rb +26 -4
- 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: d1ca056bab14c33231464be5163d752bbab64a41
|
4
|
+
data.tar.gz: f64360e503b0d53dd66b8eff81b305983f2e3408
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9ee3e658a3e9421c1c2c5496eca185556eb31f854ca0696838ddc5259246bc1c6caff45ebdf6b40f84e24f9b47c2596d67894785befa2ad1df42c5bab8b8edc0
|
7
|
+
data.tar.gz: a4a425cc5e899536eedae1799dc549af8aad1b62d11b8eed227ca5c15c966437b7eed1dae546eeaa913d9b7524cb0c8b907ebcbc3bdbd1642ed9ae57612b7535
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.624
|
data/lib/v20220817/models.rb
CHANGED
@@ -1895,6 +1895,8 @@ module TencentCloud
|
|
1895
1895
|
# @type TeacherId: String
|
1896
1896
|
# @param SdkAppId: 低代码互动课堂的SdkAppId。
|
1897
1897
|
# @type SdkAppId: Integer
|
1898
|
+
# @param AudienceType: 观看类型。互动观看 (默认)
|
1899
|
+
# @type AudienceType: Integer
|
1898
1900
|
# @param Resolution: 分辨率。可以有如下取值:
|
1899
1901
|
# 1 标清
|
1900
1902
|
# 2 高清
|
@@ -1946,14 +1948,15 @@ module TencentCloud
|
|
1946
1948
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1947
1949
|
# @type RequestId: String
|
1948
1950
|
|
1949
|
-
attr_accessor :Name, :StartTime, :EndTime, :TeacherId, :SdkAppId, :Resolution, :MaxMicNumber, :AutoMic, :AudioQuality, :SubType, :DisableRecord, :Assistants, :RecordUrl, :Status, :GroupId, :EnableDirectControl, :InteractionMode, :VideoOrientation, :IsGradingRequiredPostClass, :RoomType, :RequestId
|
1951
|
+
attr_accessor :Name, :StartTime, :EndTime, :TeacherId, :SdkAppId, :AudienceType, :Resolution, :MaxMicNumber, :AutoMic, :AudioQuality, :SubType, :DisableRecord, :Assistants, :RecordUrl, :Status, :GroupId, :EnableDirectControl, :InteractionMode, :VideoOrientation, :IsGradingRequiredPostClass, :RoomType, :RequestId
|
1950
1952
|
|
1951
|
-
def initialize(name=nil, starttime=nil, endtime=nil, teacherid=nil, sdkappid=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, requestid=nil)
|
1953
|
+
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, requestid=nil)
|
1952
1954
|
@Name = name
|
1953
1955
|
@StartTime = starttime
|
1954
1956
|
@EndTime = endtime
|
1955
1957
|
@TeacherId = teacherid
|
1956
1958
|
@SdkAppId = sdkappid
|
1959
|
+
@AudienceType = audiencetype
|
1957
1960
|
@Resolution = resolution
|
1958
1961
|
@MaxMicNumber = maxmicnumber
|
1959
1962
|
@AutoMic = automic
|
@@ -1978,6 +1981,7 @@ module TencentCloud
|
|
1978
1981
|
@EndTime = params['EndTime']
|
1979
1982
|
@TeacherId = params['TeacherId']
|
1980
1983
|
@SdkAppId = params['SdkAppId']
|
1984
|
+
@AudienceType = params['AudienceType']
|
1981
1985
|
@Resolution = params['Resolution']
|
1982
1986
|
@MaxMicNumber = params['MaxMicNumber']
|
1983
1987
|
@AutoMic = params['AutoMic']
|
@@ -2447,6 +2451,14 @@ module TencentCloud
|
|
2447
2451
|
# MemberJoin:成员加入
|
2448
2452
|
# MemberQuit:成员退出
|
2449
2453
|
# RecordFinish:录制结束
|
2454
|
+
# CameraOn: 摄像头打开
|
2455
|
+
# CameraOff: 摄像头关闭
|
2456
|
+
# MicOn: 麦克风打开
|
2457
|
+
# MicOff: 麦克风关闭
|
2458
|
+
# ScreenOn: 屏幕共享打开
|
2459
|
+
# ScreenOff: 屏幕共享关闭
|
2460
|
+
# VisibleOn: 页面可见
|
2461
|
+
# VisibleOff: 页面不可见
|
2450
2462
|
# @type Keyword: String
|
2451
2463
|
|
2452
2464
|
attr_accessor :RoomId, :SdkAppId, :Page, :Limit, :Keyword
|
@@ -3528,10 +3540,16 @@ module TencentCloud
|
|
3528
3540
|
# @param VideoOrientation: 横竖屏。0:横屏开播(默认值); 1:竖屏开播,当前仅支持移动端的纯视频类型
|
3529
3541
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3530
3542
|
# @type VideoOrientation: Integer
|
3543
|
+
# @param IsGradingRequiredPostClass: 开启课后评分。 0:不开启(默认) 1:开启
|
3544
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3545
|
+
# @type IsGradingRequiredPostClass: Integer
|
3546
|
+
# @param RoomType: 房间类型。0:小班课(默认值);1:大班课;2:1V1(后续扩展)
|
3547
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3548
|
+
# @type RoomType: Integer
|
3531
3549
|
|
3532
|
-
attr_accessor :Name, :RoomId, :Status, :StartTime, :EndTime, :RealStartTime, :RealEndTime, :Resolution, :MaxRTCMember, :ReplayUrl, :RecordUrl, :MaxMicNumber, :EnableDirectControl, :InteractionMode, :VideoOrientation
|
3550
|
+
attr_accessor :Name, :RoomId, :Status, :StartTime, :EndTime, :RealStartTime, :RealEndTime, :Resolution, :MaxRTCMember, :ReplayUrl, :RecordUrl, :MaxMicNumber, :EnableDirectControl, :InteractionMode, :VideoOrientation, :IsGradingRequiredPostClass, :RoomType
|
3533
3551
|
|
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)
|
3552
|
+
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
3553
|
@Name = name
|
3536
3554
|
@RoomId = roomid
|
3537
3555
|
@Status = status
|
@@ -3547,6 +3565,8 @@ module TencentCloud
|
|
3547
3565
|
@EnableDirectControl = enabledirectcontrol
|
3548
3566
|
@InteractionMode = interactionmode
|
3549
3567
|
@VideoOrientation = videoorientation
|
3568
|
+
@IsGradingRequiredPostClass = isgradingrequiredpostclass
|
3569
|
+
@RoomType = roomtype
|
3550
3570
|
end
|
3551
3571
|
|
3552
3572
|
def deserialize(params)
|
@@ -3565,6 +3585,8 @@ module TencentCloud
|
|
3565
3585
|
@EnableDirectControl = params['EnableDirectControl']
|
3566
3586
|
@InteractionMode = params['InteractionMode']
|
3567
3587
|
@VideoOrientation = params['VideoOrientation']
|
3588
|
+
@IsGradingRequiredPostClass = params['IsGradingRequiredPostClass']
|
3589
|
+
@RoomType = params['RoomType']
|
3568
3590
|
end
|
3569
3591
|
end
|
3570
3592
|
|
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.624
|
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-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|