Class CommentThreadSnippet
Basic details about a comment thread.
Implements
Inherited Members
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 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 |
---|---|
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? |
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. No video_id implies a channel discussion comment.
Declaration
[JsonProperty("videoId")]
public virtual string VideoId { get; set; }
Property Value
Type | Description |
---|---|
string |