Class: Google::Apis::YoutubeV3::ChannelTopicDetails
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::YoutubeV3::ChannelTopicDetails
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/youtube_v3/classes.rb,
 generated/google/apis/youtube_v3/representations.rb,
 generated/google/apis/youtube_v3/representations.rb
Overview
Freebase topic information related to the channel.
Instance Attribute Summary collapse
- 
  
    
      #topic_categories  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list of Wikipedia URLs that describe the channel's content. 
- 
  
    
      #topic_ids  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list of Freebase topic IDs associated with the channel. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ChannelTopicDetails 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ChannelTopicDetails. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ChannelTopicDetails
Returns a new instance of ChannelTopicDetails
| 1873 1874 1875 | # File 'generated/google/apis/youtube_v3/classes.rb', line 1873 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#topic_categories ⇒ Array<String>
A list of Wikipedia URLs that describe the channel's content.
Corresponds to the JSON property topicCategories
| 1865 1866 1867 | # File 'generated/google/apis/youtube_v3/classes.rb', line 1865 def topic_categories @topic_categories end | 
#topic_ids ⇒ Array<String>
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
| 1871 1872 1873 | # File 'generated/google/apis/youtube_v3/classes.rb', line 1871 def topic_ids @topic_ids end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1878 1879 1880 1881 | # File 'generated/google/apis/youtube_v3/classes.rb', line 1878 def update!(**args) @topic_categories = args[:topic_categories] if args.key?(:topic_categories) @topic_ids = args[:topic_ids] if args.key?(:topic_ids) end |