Show / Hide Table of Contents

Class PlaylistItemContentDetails

Inheritance
System.Object
PlaylistItemContentDetails
Implements
IDirectResponseSchema
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 PlaylistItemContentDetails : IDirectResponseSchema

Properties

EndAt

The time, measured in seconds from the start of the video, when the video should stop playing. (The playlist owner can specify the times when the video should start and stop playing when the video is played in the context of the playlist.) By default, assume that the video.endTime is the end of the video.

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

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Note

A user-generated note for this item.

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

StartAt

The time, measured in seconds from the start of the video, when the video should start playing. (The playlist owner can specify the times when the video should start and stop playing when the video is played in the context of the playlist.) The default value is 0.

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

VideoId

The ID that YouTube uses to uniquely identify a video. To retrieve the video resource, set the id query parameter to this value in your API request.

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

VideoPublishedAt

The date and time that the video was published to YouTube. The value is specified in ISO 8601 format.

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

Implements

IDirectResponseSchema
Back to top