Show / Hide Table of Contents

Class CommentThreadSnippet

Basic details about a comment thread.

Inheritance
object
CommentThreadSnippet
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
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
bool?

ChannelId

The YouTube channel the comments in the thread refer to or the channel with the video the comments refer to. If neither video_id nor post_id is set the comments refer to the channel itself.

Declaration
[JsonProperty("channelId")]
public virtual string ChannelId { get; set; }
Property Value
Type Description
string

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
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
bool?

PostId

The ID of the post the comments refer to, if any.

Declaration
[JsonProperty("postId")]
public virtual string PostId { get; set; }
Property Value
Type Description
string

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
long?

VideoId

The ID of the video the comments refer to, if any.

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

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX