tencentcloud-sdk-nodejs-lcic 4.1.203 → 4.1.240
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.
package/package.json
CHANGED
|
@@ -2135,11 +2135,11 @@ export interface FaceMsgContent {
|
|
|
2135
2135
|
*/
|
|
2136
2136
|
export interface SetAppCustomContentRequest {
|
|
2137
2137
|
/**
|
|
2138
|
-
*
|
|
2138
|
+
* <p>自定义内容。</p>
|
|
2139
2139
|
*/
|
|
2140
2140
|
CustomContent: Array<AppCustomContent>;
|
|
2141
2141
|
/**
|
|
2142
|
-
*
|
|
2142
|
+
* <p>应用ID。</p>
|
|
2143
2143
|
*/
|
|
2144
2144
|
SdkAppId: number;
|
|
2145
2145
|
}
|
|
@@ -2670,33 +2670,37 @@ export interface DescribeSdkAppIdUsersResponse {
|
|
|
2670
2670
|
*/
|
|
2671
2671
|
export interface EventDataInfo {
|
|
2672
2672
|
/**
|
|
2673
|
-
*
|
|
2673
|
+
* <p>事件发生的房间号。</p>
|
|
2674
2674
|
*/
|
|
2675
2675
|
RoomId?: number;
|
|
2676
2676
|
/**
|
|
2677
|
-
*
|
|
2677
|
+
* <p>事件发生的用户。</p>
|
|
2678
2678
|
*/
|
|
2679
2679
|
UserId?: string;
|
|
2680
2680
|
/**
|
|
2681
|
-
*
|
|
2681
|
+
* <p>用户设备类型。0: Unknown; 1: Windows; 2: macOS; 3: Android; 4: iOS; 5: Web; 6: Mobile webpage; 7: Weixin Mini Program.</p>
|
|
2682
2682
|
*/
|
|
2683
2683
|
Device?: number;
|
|
2684
2684
|
/**
|
|
2685
|
-
*
|
|
2685
|
+
* <p>录制时长。单位:秒</p>
|
|
2686
2686
|
*/
|
|
2687
2687
|
Duration?: number;
|
|
2688
2688
|
/**
|
|
2689
|
-
*
|
|
2689
|
+
* <p>录制文件大小</p>
|
|
2690
2690
|
*/
|
|
2691
2691
|
RecordSize?: number;
|
|
2692
2692
|
/**
|
|
2693
|
-
*
|
|
2693
|
+
* <p>录制url</p>
|
|
2694
2694
|
*/
|
|
2695
2695
|
RecordUrl?: string;
|
|
2696
2696
|
/**
|
|
2697
|
-
* MemberQuit事件,对应Reason(0:主动退出 1:被踢 2:永久被踢 4:失去心跳下线 5
|
|
2697
|
+
* <p>MemberQuit事件,对应Reason(0:主动退出 1:被踢 2:永久被踢 4:失去心跳下线 5:房间结束,成员自动退出)</p>
|
|
2698
2698
|
*/
|
|
2699
2699
|
Reason?: number;
|
|
2700
|
+
/**
|
|
2701
|
+
* <p>角色</p><p>枚举值:</p><ul><li>0: 学生</li><li>1: 老师</li><li>2: 助教</li><li>3: 巡课/督导</li></ul>
|
|
2702
|
+
*/
|
|
2703
|
+
Role?: number;
|
|
2700
2704
|
}
|
|
2701
2705
|
/**
|
|
2702
2706
|
* DescribeAnswerList返回参数结构体
|