Struct google_youtube3::api::PlaylistItemSnippet
source · pub struct PlaylistItemSnippet {
pub channel_id: Option<String>,
pub channel_title: Option<String>,
pub description: Option<String>,
pub playlist_id: Option<String>,
pub position: Option<u32>,
pub published_at: Option<DateTime<Utc>>,
pub resource_id: Option<ResourceId>,
pub thumbnails: Option<ThumbnailDetails>,
pub title: Option<String>,
pub video_owner_channel_id: Option<String>,
pub video_owner_channel_title: Option<String>,
}
Expand description
Basic details about a playlist, including title, description and thumbnails. Basic details of a YouTube Playlist item provided by the author. Next ID: 15
This type is not used in any activity, and only used as part of another schema.
Fields§
§channel_id: Option<String>
The ID that YouTube uses to uniquely identify the user that added the item to the playlist.
channel_title: Option<String>
Channel title for the channel that the playlist item belongs to.
description: Option<String>
The item’s description.
playlist_id: Option<String>
The ID that YouTube uses to uniquely identify thGe playlist that the playlist item is in.
position: Option<u32>
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.
published_at: Option<DateTime<Utc>>
The date and time that the item was added to the playlist.
resource_id: Option<ResourceId>
The id object contains information that can be used to uniquely identify the resource that is included in the playlist as the playlist item.
thumbnails: Option<ThumbnailDetails>
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.
title: Option<String>
The item’s title.
video_owner_channel_id: Option<String>
Channel id for the channel this video belongs to.
video_owner_channel_title: Option<String>
Channel title for the channel this video belongs to.
Trait Implementations§
source§impl Clone for PlaylistItemSnippet
impl Clone for PlaylistItemSnippet
source§fn clone(&self) -> PlaylistItemSnippet
fn clone(&self) -> PlaylistItemSnippet
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more