Show / Hide Table of Contents

Class CommentThreadSnippet

Basic details about a comment thread.

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

Properties

CanReply

Whether the current viewer of the thread can reply to it. This is viewer specific - other viewers may see a different value for this field.

Declaration
[JsonProperty("canReply")]
public virtual bool? CanReply { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ChannelId

The YouTube channel the comments in the thread refer to or the channel with the video the comments refer to. If video_id isn't set the comments refer to the channel itself.

Declaration
[JsonProperty("channelId")]
public virtual string ChannelId { 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

IsPublic

Whether the thread (and therefore all its comments) is visible to all YouTube users.

Declaration
[JsonProperty("isPublic")]
public virtual bool? IsPublic { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

TopLevelComment

The top level comment of this thread.

Declaration
[JsonProperty("topLevelComment")]
public virtual Comment TopLevelComment { get; set; }
Property Value
Type Description
Comment

TotalReplyCount

The total number of replies (not including the top level comment).

Declaration
[JsonProperty("totalReplyCount")]
public virtual long? TotalReplyCount { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

VideoId

The ID of the video the comments refer to, if any. No video_id implies a channel discussion comment.

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

Implements

IDirectResponseSchema
Back to top