OBJECT

FeaturedStream

FeaturedStream contains extra metadata for presenting a featured Stream.

link GraphQL Schema definition

1type FeaturedStream {
2
3# The featured stream's broadcaster.
4broadcaster: User
5
6# The featured channel.
7channel: Channel @deprecated( reason: "Use featuredStream.broadcaster instead." )
8
9# A markdown description of the stream, available when a stream is featured.
10description: String
11
12# An HTML description of the stream, available when a stream is featured.
13descriptionHTML: String @deprecated( reason: "Use featuredStream.description instead" )
14
15# A URL for a special thumbnail image, when this stream is featured.
16imageURL: String
17
18# Is this stream featured because it is scheduled?
19isScheduled: Boolean
20
21# Is this stream featured because it is sponsored?
22isSponsored: Boolean
23
24# A lower priority level means the stream is higher priority.
25priorityLevel: Int
26
27# The featured live steam.
28stream: Stream
29
30# When featured, the title of the stream.
31title: String
32
33}