Class CommentThread
A comment thread represents information that applies to a top level comment and all its replies. It can also include the top level comment itself and some of the replies.
Inheritance
System.Object
CommentThread
Implements
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 CommentThread : IDirectResponseSchema
Properties
ETag
Etag of this resource.
Declaration
[JsonProperty("etag")]
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Id
The ID that YouTube uses to uniquely identify the comment thread.
Declaration
[JsonProperty("id")]
public virtual string Id { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Kind
Identifies what kind of resource this is. Value: the fixed string "youtube#commentThread".
Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Replies
The replies object contains a limited number of replies (if any) to the top level comment found in the snippet.
Declaration
[JsonProperty("replies")]
public virtual CommentThreadReplies Replies { get; set; }
Property Value
Type | Description |
---|---|
CommentThreadReplies |
Snippet
The snippet object contains basic details about the comment thread and also the top level comment.
Declaration
[JsonProperty("snippet")]
public virtual CommentThreadSnippet Snippet { get; set; }
Property Value
Type | Description |
---|---|
CommentThreadSnippet |