Show / Hide Table of Contents

Class ArticleAndParentComment

A type of context specific to a comment left on a single-threaded comment message board, where comments are either a top level comment or the child of a top level comment.

Inheritance
System.Object
ArticleAndParentComment
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.CommentAnalyzer.v1alpha1.Data
Assembly: Google.Apis.CommentAnalyzer.v1alpha1.dll
Syntax
public class ArticleAndParentComment : IDirectResponseSchema

Properties

Article

The source content about which the comment was made (article text, article summary, video transcript, etc).

Declaration
[JsonProperty("article")]
public virtual TextEntry Article { get; set; }
Property Value
Type Description
TextEntry

ETag

The ETag of the item.

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

ParentComment

Refers to text that is a direct parent of the source comment, such as in a one-deep threaded message board. This field will only be present for comments that are replies to other comments and will not be populated for direct comments on the article_text.

Declaration
[JsonProperty("parentComment")]
public virtual TextEntry ParentComment { get; set; }
Property Value
Type Description
TextEntry

Implements

IDirectResponseSchema
Back to top