Show / Hide Table of Contents

Class ChannelContentDetails.RelatedPlaylistsData

Inheritance
System.Object
ChannelContentDetails.RelatedPlaylistsData
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.YouTube.v3.Data
Assembly: Google.Apis.YouTube.v3.dll
Syntax
public class RelatedPlaylistsData

Properties

Favorites

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.

Declaration
[JsonProperty("favorites")]
public virtual string Favorites { get; set; }
Property Value
Type Description
System.String

Likes

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.

Declaration
[JsonProperty("likes")]
public virtual string Likes { get; set; }
Property Value
Type Description
System.String

Uploads

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.

Declaration
[JsonProperty("uploads")]
public virtual string Uploads { get; set; }
Property Value
Type Description
System.String

WatchHistory

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.

Declaration
[JsonProperty("watchHistory")]
public virtual string WatchHistory { get; set; }
Property Value
Type Description
System.String

WatchLater

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.

Declaration
[JsonProperty("watchLater")]
public virtual string WatchLater { get; set; }
Property Value
Type Description
System.String
Back to top