Class: Google::Apis::YoutubeV3::ChannelSectionContentDetails

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/youtube_v3/classes.rb,
lib/google/apis/youtube_v3/representations.rb,
lib/google/apis/youtube_v3/representations.rb

Overview

Details about a channelsection, including playlists and channels.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ChannelSectionContentDetails

Returns a new instance of ChannelSectionContentDetails.



1554
1555
1556
# File 'lib/google/apis/youtube_v3/classes.rb', line 1554

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#channelsArray<String>

The channel ids for type multiple_channels. Corresponds to the JSON property channels

Returns:

  • (Array<String>)


1546
1547
1548
# File 'lib/google/apis/youtube_v3/classes.rb', line 1546

def channels
  @channels
end

#playlistsArray<String>

The playlist ids for type single_playlist and multiple_playlists. For singlePlaylist, only one playlistId is allowed. Corresponds to the JSON property playlists

Returns:

  • (Array<String>)


1552
1553
1554
# File 'lib/google/apis/youtube_v3/classes.rb', line 1552

def playlists
  @playlists
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1559
1560
1561
1562
# File 'lib/google/apis/youtube_v3/classes.rb', line 1559

def update!(**args)
  @channels = args[:channels] if args.key?(:channels)
  @playlists = args[:playlists] if args.key?(:playlists)
end