Class: Google::Apis::YoutubeV3::ChannelSectionSnippet
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::YoutubeV3::ChannelSectionSnippet
 
 
- 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
Basic details about a channel section, including title, style and position.
Instance Attribute Summary collapse
- 
  
    
      #channel_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID that YouTube uses to uniquely identify the channel that published the channel section.
 - 
  
    
      #default_language  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The language of the channel section's default title and description.
 - 
  
    
      #localized  ⇒ Google::Apis::YoutubeV3::ChannelSectionLocalization 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
ChannelSection localization setting Corresponds to the JSON property
localized. - 
  
    
      #position  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The position of the channel section in the channel.
 - 
  
    
      #style  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The style of the channel section.
 - 
  
    
      #title  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The channel section's title for multiple_playlists and multiple_channels.
 - 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of the channel section.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ChannelSectionSnippet 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ChannelSectionSnippet.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ChannelSectionSnippet
Returns a new instance of ChannelSectionSnippet
      1569 1570 1571  | 
    
      # File 'generated/google/apis/youtube_v3/classes.rb', line 1569 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#channel_id ⇒ String
The ID that YouTube uses to uniquely identify the channel that published the
channel section.
Corresponds to the JSON property channelId
      1537 1538 1539  | 
    
      # File 'generated/google/apis/youtube_v3/classes.rb', line 1537 def channel_id @channel_id end  | 
  
#default_language ⇒ String
The language of the channel section's default title and description.
Corresponds to the JSON property defaultLanguage
      1542 1543 1544  | 
    
      # File 'generated/google/apis/youtube_v3/classes.rb', line 1542 def default_language @default_language end  | 
  
#localized ⇒ Google::Apis::YoutubeV3::ChannelSectionLocalization
ChannelSection localization setting
Corresponds to the JSON property localized
      1547 1548 1549  | 
    
      # File 'generated/google/apis/youtube_v3/classes.rb', line 1547 def localized @localized end  | 
  
#position ⇒ Fixnum
The position of the channel section in the channel.
Corresponds to the JSON property position
      1552 1553 1554  | 
    
      # File 'generated/google/apis/youtube_v3/classes.rb', line 1552 def position @position end  | 
  
#style ⇒ String
The style of the channel section.
Corresponds to the JSON property style
      1557 1558 1559  | 
    
      # File 'generated/google/apis/youtube_v3/classes.rb', line 1557 def style @style end  | 
  
#title ⇒ String
The channel section's title for multiple_playlists and multiple_channels.
Corresponds to the JSON property title
      1562 1563 1564  | 
    
      # File 'generated/google/apis/youtube_v3/classes.rb', line 1562 def title @title end  | 
  
#type ⇒ String
The type of the channel section.
Corresponds to the JSON property type
      1567 1568 1569  | 
    
      # File 'generated/google/apis/youtube_v3/classes.rb', line 1567 def type @type end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1574 1575 1576 1577 1578 1579 1580 1581 1582  | 
    
      # File 'generated/google/apis/youtube_v3/classes.rb', line 1574 def update!(**args) @channel_id = args[:channel_id] if args.key?(:channel_id) @default_language = args[:default_language] if args.key?(:default_language) @localized = args[:localized] if args.key?(:localized) @position = args[:position] if args.key?(:position) @style = args[:style] if args.key?(:style) @title = args[:title] if args.key?(:title) @type = args[:type] if args.key?(:type) end  |