Class: Google::Apis::YoutubeV3::PlaylistItemSnippet

Inherits:
Object
  • Object
show all
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 playlist, including title, description and thumbnails.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ PlaylistItemSnippet

Returns a new instance of PlaylistItemSnippet.



5692
5693
5694
# File 'generated/google/apis/youtube_v3/classes.rb', line 5692

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

Instance Attribute Details

#channel_idString

The ID that YouTube uses to uniquely identify the user that added the item to the playlist. Corresponds to the JSON property channelId

Returns:

  • (String)


5646
5647
5648
# File 'generated/google/apis/youtube_v3/classes.rb', line 5646

def channel_id
  @channel_id
end

#channel_titleString

Channel title for the channel that the playlist item belongs to. Corresponds to the JSON property channelTitle

Returns:

  • (String)


5651
5652
5653
# File 'generated/google/apis/youtube_v3/classes.rb', line 5651

def channel_title
  @channel_title
end

#descriptionString

The item's description. Corresponds to the JSON property description

Returns:

  • (String)


5656
5657
5658
# File 'generated/google/apis/youtube_v3/classes.rb', line 5656

def description
  @description
end

#playlist_idString

The ID that YouTube uses to uniquely identify the playlist that the playlist item is in. Corresponds to the JSON property playlistId

Returns:

  • (String)


5662
5663
5664
# File 'generated/google/apis/youtube_v3/classes.rb', line 5662

def playlist_id
  @playlist_id
end

#positionFixnum

The order in which the item appears in the playlist. The value uses a zero- based index, so the first item has a position of 0, the second item has a position of 1, and so forth. Corresponds to the JSON property position

Returns:

  • (Fixnum)


5669
5670
5671
# File 'generated/google/apis/youtube_v3/classes.rb', line 5669

def position
  @position
end

#published_atDateTime

The date and time that the item was added to the playlist. The value is specified in ISO 8601 (YYYY-MM-DDThh:mm:ss.sZ) format. Corresponds to the JSON property publishedAt

Returns:

  • (DateTime)


5675
5676
5677
# File 'generated/google/apis/youtube_v3/classes.rb', line 5675

def published_at
  @published_at
end

#resource_idGoogle::Apis::YoutubeV3::ResourceId

A resource id is a generic reference that points to another YouTube resource. Corresponds to the JSON property resourceId



5680
5681
5682
# File 'generated/google/apis/youtube_v3/classes.rb', line 5680

def resource_id
  @resource_id
end

#thumbnailsGoogle::Apis::YoutubeV3::ThumbnailDetails

Internal representation of thumbnails for a YouTube resource. Corresponds to the JSON property thumbnails



5685
5686
5687
# File 'generated/google/apis/youtube_v3/classes.rb', line 5685

def thumbnails
  @thumbnails
end

#titleString

The item's title. Corresponds to the JSON property title

Returns:

  • (String)


5690
5691
5692
# File 'generated/google/apis/youtube_v3/classes.rb', line 5690

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
# File 'generated/google/apis/youtube_v3/classes.rb', line 5697

def update!(**args)
  @channel_id = args[:channel_id] if args.key?(:channel_id)
  @channel_title = args[:channel_title] if args.key?(:channel_title)
  @description = args[:description] if args.key?(:description)
  @playlist_id = args[:playlist_id] if args.key?(:playlist_id)
  @position = args[:position] if args.key?(:position)
  @published_at = args[:published_at] if args.key?(:published_at)
  @resource_id = args[:resource_id] if args.key?(:resource_id)
  @thumbnails = args[:thumbnails] if args.key?(:thumbnails)
  @title = args[:title] if args.key?(:title)
end