You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -30,19 +37,50 @@ export class Channel extends Base {
30
37
channelDescription: string
31
38
32
39
/**
33
-
* The stream title of the channel
40
+
* The channel's current stream details
41
+
* Note: If the channel is currently not live, this will show data of the most recent broadcast ot live, this will show data of the most recent broadcast ot live, this will show data of the most recent broadcast
34
42
*/
35
-
streamTitle: string
43
+
stream: {
44
+
/**
45
+
* The current directory category of the stream
46
+
*/
47
+
category: Category
36
48
37
-
/**
38
-
* The current directory category of the channel
39
-
*/
40
-
category: Category
49
+
/**
50
+
* Indicates if the stream is currently live
51
+
*/
52
+
isLive: boolean
53
+
54
+
/**
55
+
* Indicates if the stream is for mature audiences only
56
+
*/
57
+
isMature: boolean
58
+
59
+
/**
60
+
* The primary language of the stream
61
+
*/
62
+
language: string
63
+
64
+
/**
65
+
* The start time of the stream
66
+
*/
67
+
startTime: Date
68
+
69
+
/**
70
+
* The title of the stream
71
+
*/
72
+
streamTitle: string
73
+
74
+
/**
75
+
* The viewer count of the stream
76
+
*/
77
+
viewerCount: number
78
+
}
41
79
42
80
/**
43
-
* The stream key details of the channel
81
+
* The channel's private ingest details
44
82
*/
45
-
stream?: {
83
+
ingest?: {
46
84
/**
47
85
* The stream key of the channel
48
86
*/
@@ -55,16 +93,28 @@ export class Channel extends Base {
0 commit comments