OBJECT
FeaturedVideo
DEPRECATED: do not use, it is subject to change. FeaturedVideo contains extra metadata for presenting a featured video.
link GraphQL Schema definition
1 type FeaturedVideo { 2 3 # An markdown description of the video, available when a video is featured. 4 : String! 5 6 # A URL for a special thumbnail image, when this video is featured. 7 : String! 8 9 # Is this video featured because it is scheduled? 10 : Boolean! 11 12 # Is this video featured because it is sponsored? 13 : Boolean! 14 15 # A lower priority level means the stream is higher priority. 16 : Int! 17 18 # When featured, the title of the video. 19 : String! 20 21 # The featured video. 22 : Video 23 24 }