pub struct ChannelContentDetailsRelatedPlaylists {
pub favorites: Option<String>,
pub likes: Option<String>,
pub uploads: Option<String>,
pub watch_history: Option<String>,
pub watch_later: Option<String>,
}
Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§favorites: Option<String>
The ID of the playlist that contains the channel“s favorite videos. Use the playlistItems.insert and playlistItems.delete to add or remove items from that list.
likes: Option<String>
The ID of the playlist that contains the channel“s liked videos. Use the playlistItems.insert and playlistItems.delete to add or remove items from that list.
uploads: Option<String>
The ID of the playlist that contains the channel“s uploaded videos. Use the videos.insert method to upload new videos and the videos.delete method to delete previously uploaded videos.
watch_history: Option<String>
The ID of the playlist that contains the channel“s watch history. Use the playlistItems.insert and playlistItems.delete to add or remove items from that list.
watch_later: Option<String>
The ID of the playlist that contains the channel“s watch later playlist. Use the playlistItems.insert and playlistItems.delete to add or remove items from that list.
Trait Implementations§
source§impl Clone for ChannelContentDetailsRelatedPlaylists
impl Clone for ChannelContentDetailsRelatedPlaylists
source§fn clone(&self) -> ChannelContentDetailsRelatedPlaylists
fn clone(&self) -> ChannelContentDetailsRelatedPlaylists
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more