Struct google_youtube3::PlaylistSnippet[][src]

pub struct PlaylistSnippet {
    pub description: Option<String>,
    pub title: Option<String>,
    pub channel_id: Option<String>,
    pub published_at: Option<String>,
    pub tags: Option<Vec<String>>,
    pub channel_title: Option<String>,
    pub default_language: Option<String>,
    pub localized: Option<PlaylistLocalization>,
    pub thumbnails: Option<ThumbnailDetails>,
}

Basic details about a playlist, including title, description and thumbnails.

This type is not used in any activity, and only used as part of another schema.

Fields

The playlist's description.

The playlist's title.

The ID that YouTube uses to uniquely identify the channel that published the playlist.

The date and time that the playlist was created. The value is specified in ISO 8601 (YYYY-MM-DDThh:mm:ss.sZ) format.

Keyword tags associated with the playlist.

The channel title of the channel that the video belongs to.

The language of the playlist's default title and description.

Localized title and description, read-only.

A map of thumbnail images associated with the playlist. For each object in the map, the key is the name of the thumbnail image, and the value is an object that contains other information about the thumbnail.

Trait Implementations

impl Default for PlaylistSnippet
[src]

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

impl Clone for PlaylistSnippet
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PlaylistSnippet
[src]

Formats the value using the given formatter. Read more

impl Part for PlaylistSnippet
[src]

Auto Trait Implementations