Class: Google::Apis::YoutubeV3::ChannelSection
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::YoutubeV3::ChannelSection
 
- 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
Instance Attribute Summary collapse
- 
  
    
      #content_details  ⇒ Google::Apis::YoutubeV3::ChannelSectionContentDetails 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Details about a channelsection, including playlists and channels. 
- 
  
    
      #etag  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Etag of this resource. 
- 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID that YouTube uses to uniquely identify the channel section. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
- 
  
    
      #localizations  ⇒ Hash<String,Google::Apis::YoutubeV3::ChannelSectionLocalization> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Localizations for different languages Corresponds to the JSON property localizations.
- 
  
    
      #snippet  ⇒ Google::Apis::YoutubeV3::ChannelSectionSnippet 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Basic details about a channel section, including title, style and position. 
- 
  
    
      #targeting  ⇒ Google::Apis::YoutubeV3::ChannelSectionTargeting 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    ChannelSection targeting setting. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ChannelSection 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ChannelSection. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ChannelSection
Returns a new instance of ChannelSection
| 1424 1425 1426 | # File 'generated/google/apis/youtube_v3/classes.rb', line 1424 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#content_details ⇒ Google::Apis::YoutubeV3::ChannelSectionContentDetails
Details about a channelsection, including playlists and channels.
Corresponds to the JSON property contentDetails
| 1391 1392 1393 | # File 'generated/google/apis/youtube_v3/classes.rb', line 1391 def content_details @content_details end | 
#etag ⇒ String
Etag of this resource.
Corresponds to the JSON property etag
| 1396 1397 1398 | # File 'generated/google/apis/youtube_v3/classes.rb', line 1396 def etag @etag end | 
#id ⇒ String
The ID that YouTube uses to uniquely identify the channel section.
Corresponds to the JSON property id
| 1401 1402 1403 | # File 'generated/google/apis/youtube_v3/classes.rb', line 1401 def id @id end | 
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "youtube#
channelSection".
Corresponds to the JSON property kind
| 1407 1408 1409 | # File 'generated/google/apis/youtube_v3/classes.rb', line 1407 def kind @kind end | 
#localizations ⇒ Hash<String,Google::Apis::YoutubeV3::ChannelSectionLocalization>
Localizations for different languages
Corresponds to the JSON property localizations
| 1412 1413 1414 | # File 'generated/google/apis/youtube_v3/classes.rb', line 1412 def localizations @localizations end | 
#snippet ⇒ Google::Apis::YoutubeV3::ChannelSectionSnippet
Basic details about a channel section, including title, style and position.
Corresponds to the JSON property snippet
| 1417 1418 1419 | # File 'generated/google/apis/youtube_v3/classes.rb', line 1417 def snippet @snippet end | 
#targeting ⇒ Google::Apis::YoutubeV3::ChannelSectionTargeting
ChannelSection targeting setting.
Corresponds to the JSON property targeting
| 1422 1423 1424 | # File 'generated/google/apis/youtube_v3/classes.rb', line 1422 def targeting @targeting end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1429 1430 1431 1432 1433 1434 1435 1436 1437 | # File 'generated/google/apis/youtube_v3/classes.rb', line 1429 def update!(**args) @content_details = args[:content_details] if args.key?(:content_details) @etag = args[:etag] if args.key?(:etag) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @localizations = args[:localizations] if args.key?(:localizations) @snippet = args[:snippet] if args.key?(:snippet) @targeting = args[:targeting] if args.key?(:targeting) end |