Class Playlist
A playlist resource represents a YouTube playlist. A playlist is a collection of videos that can be viewed sequentially and shared with other users. A playlist can contain up to 200 videos, and YouTube does not limit the number of playlists that each user creates. By default, playlists are publicly visible to other users, but playlists can be public or private. YouTube also 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.
Implements
Inherited Members
Namespace: Google.Apis.YouTube.v3.Data
Assembly: Google.Apis.YouTube.v3.dll
Syntax
public class Playlist : IDirectResponseSchema
Properties
ContentDetails
The contentDetails object contains information like video count.
Declaration
[JsonProperty("contentDetails")]
public virtual PlaylistContentDetails ContentDetails { get; set; }
Property Value
Type | Description |
---|---|
PlaylistContentDetails |
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.
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#playlist".
Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type | Description |
---|---|
string |
Localizations
Localizations for different languages
Declaration
[JsonProperty("localizations")]
public virtual IDictionary<string, PlaylistLocalization> Localizations { get; set; }
Property Value
Type | Description |
---|---|
IDictionary<string, PlaylistLocalization> |
Player
The player object contains information that you would use to play the playlist in an embedded player.
Declaration
[JsonProperty("player")]
public virtual PlaylistPlayer Player { get; set; }
Property Value
Type | Description |
---|---|
PlaylistPlayer |
Snippet
The snippet object contains basic details about the playlist, such as its title and description.
Declaration
[JsonProperty("snippet")]
public virtual PlaylistSnippet Snippet { get; set; }
Property Value
Type | Description |
---|---|
PlaylistSnippet |
Status
The status object contains status information for the playlist.
Declaration
[JsonProperty("status")]
public virtual PlaylistStatus Status { get; set; }
Property Value
Type | Description |
---|---|
PlaylistStatus |