class Google::Apis::YoutubeV3::VideoTopicDetails
Freebase topic information related to the video.
Attributes
Similar to topic_id, except that these topics are merely relevant to the video. These are topics that may be mentioned in, or appear in the video. You can retrieve information about each topic using Freebase Topic API. Corresponds to the JSON property `relevantTopicIds` @return [Array<String>]
A list of Wikipedia URLs that provide a high-level description of the video's content. Corresponds to the JSON property `topicCategories` @return [Array<String>]
A list of Freebase topic IDs that are centrally associated with the video. These are topics that are centrally featured in the video, and it can be said that the video is mainly about each of these. You can retrieve information about each topic using the < a href=“wiki.freebase.com/wiki/Topic_API”> Freebase Topic API. Corresponds to the JSON property `topicIds` @return [Array<String>]
Public Class Methods
# File lib/google/apis/youtube_v3/classes.rb, line 8688 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/youtube_v3/classes.rb, line 8693 def update!(**args) @relevant_topic_ids = args[:relevant_topic_ids] if args.key?(:relevant_topic_ids) @topic_categories = args[:topic_categories] if args.key?(:topic_categories) @topic_ids = args[:topic_ids] if args.key?(:topic_ids) end