Struct google_youtube3::Playlist [] [src]

pub struct Playlist {
    pub status: Option<PlaylistStatus>,
    pub kind: Option<String>,
    pub content_details: Option<PlaylistContentDetails>,
    pub snippet: Option<PlaylistSnippet>,
    pub player: Option<PlaylistPlayer>,
    pub etag: Option<String>,
    pub id: Option<String>,
    pub localizations: Option<HashMap<String, PlaylistLocalization>>,
}

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.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

The status object contains status information for the playlist.

Identifies what kind of resource this is. Value: the fixed string "youtube#playlist".

The contentDetails object contains information like video count.

The snippet object contains basic details about the playlist, such as its title and description.

The player object contains information that you would use to play the playlist in an embedded player.

Etag of this resource.

The ID that YouTube uses to uniquely identify the playlist.

Localizations for different languages

Trait Implementations

impl Default for Playlist
[src]

[src]

Returns the "default value" for a type. Read more

impl Clone for Playlist
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Playlist
[src]

[src]

Formats the value using the given formatter.

impl RequestValue for Playlist
[src]

impl Resource for Playlist
[src]

impl ResponseResult for Playlist
[src]

impl ToParts for Playlist
[src]

[src]

Return a comma separated list of members that are currently set, i.e. for which self.member.is_some(). The produced string is suitable for use as a parts list that indicates the parts you are sending, and/or the parts you want to see in the server response.