Struct google_youtube3::PlaylistItemSnippet [] [src]

pub struct PlaylistItemSnippet {
    pub channel_id: Option<String>,
    pub description: Option<String>,
    pub title: Option<String>,
    pub resource_id: Option<ResourceId>,
    pub playlist_id: Option<String>,
    pub published_at: Option<String>,
    pub channel_title: Option<String>,
    pub position: Option<u32>,
    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 ID that YouTube uses to uniquely identify the user that added the item to the playlist.

The item's description.

The item's title.

The id object contains information that can be used to uniquely identify the resource that is included in the playlist as the playlist item.

The ID that YouTube uses to uniquely identify the playlist that the playlist item is in.

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.

Channel title for the channel that the playlist item belongs to.

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.

A map of thumbnail images associated with the playlist item. 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 Debug for PlaylistItemSnippet
[src]

Formats the value using the given formatter.

impl Clone for PlaylistItemSnippet
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for PlaylistItemSnippet
[src]

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

impl Part for PlaylistItemSnippet
[src]