class Google::Apis::YoutubeV3::ChannelTopicDetails
Freebase topic information related to the channel.
Attributes
topic_categories[RW]
A list of Wikipedia URLs that describe the channel's content. Corresponds to the JSON property `topicCategories` @return [Array<String>]
topic_ids[RW]
A list of Freebase topic IDs associated with the channel. You can retrieve information about each topic using the Freebase Topic API. Corresponds to the JSON property `topicIds` @return [Array<String>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/youtube_v3/classes.rb, line 1950 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/youtube_v3/classes.rb, line 1955 def update!(**args) @topic_categories = args[:topic_categories] if args.key?(:topic_categories) @topic_ids = args[:topic_ids] if args.key?(:topic_ids) end