OBJECT

FeaturedVideo

DEPRECATED: do not use, it is subject to change. FeaturedVideo contains extra metadata for presenting a featured video.

link GraphQL Schema definition

1type FeaturedVideo {
2
3# An markdown description of the video, available when a video is featured.
4description: String!
5
6# A URL for a special thumbnail image, when this video is featured.
7imageURL: String!
8
9# Is this video featured because it is scheduled?
10isScheduled: Boolean!
11
12# Is this video featured because it is sponsored?
13isSponsored: Boolean!
14
15# A lower priority level means the stream is higher priority.
16priorityLevel: Int!
17
18# When featured, the title of the video.
19title: String!
20
21# The featured video.
22video: Video
23
24}