Class PlaylistItem
A playlistItem resource identifies another resource, such as a video, that is included in a playlist. In addition, the playlistItem resource contains details about the included resource that pertain specifically to how that resource is used in that playlist. YouTube uses playlists to identify special collections of videos for a channel, such as: - uploaded videos - favorite videos - positively rated (liked) videos - watch history - watch later To be more specific, these lists are associated with a channel, which is a collection of a person, group, or company's videos, playlists, and other YouTube information. You can retrieve the playlist IDs for each of these lists from the channel resource for a given channel. You can then use the playlistItems.list method to retrieve any of those lists. You can also add or remove items from those lists by calling the playlistItems.insert and playlistItems.delete methods. For example, if a user gives a positive rating to a video, you would insert that video into the liked videos playlist for that user's channel.
Implements
Inherited Members
Namespace: Google.Apis.YouTube.v3.Data
Assembly: Google.Apis.YouTube.v3.dll
Syntax
public class PlaylistItem : IDirectResponseSchema
Properties
ContentDetails
The contentDetails object is included in the resource if the included item is a YouTube video. The object contains additional information about the video.
Declaration
[JsonProperty("contentDetails")]
public virtual PlaylistItemContentDetails ContentDetails { get; set; }
Property Value
Type | Description |
---|---|
PlaylistItemContentDetails |
ETag
Etag of this resource.
Declaration
[JsonProperty("etag")]
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Id
The ID that YouTube uses to uniquely identify the playlist item.
Declaration
[JsonProperty("id")]
public virtual string Id { get; set; }
Property Value
Type | Description |
---|---|
string |
Kind
Identifies what kind of resource this is. Value: the fixed string "youtube#playlistItem".
Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type | Description |
---|---|
string |
Snippet
The snippet object contains basic details about the playlist item, such as its title and position in the playlist.
Declaration
[JsonProperty("snippet")]
public virtual PlaylistItemSnippet Snippet { get; set; }
Property Value
Type | Description |
---|---|
PlaylistItemSnippet |
Status
The status object contains information about the playlist item's privacy status.
Declaration
[JsonProperty("status")]
public virtual PlaylistItemStatus Status { get; set; }
Property Value
Type | Description |
---|---|
PlaylistItemStatus |