Show / Hide Table of Contents

Class Context

Context is typically something that a Comment is referencing or replying to (such as an article, or previous comment). Note: Populate only ONE OF the following fields. The oneof syntax cannot be used because that would require nesting entries inside another message and breaking backwards compatibility. The server will return an error if more than one of the following fields is present.

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

Properties

ArticleAndParentComment

Information about the source for which the original comment was made, and any parent comment info.

Declaration
[JsonProperty("articleAndParentComment")]
public virtual ArticleAndParentComment ArticleAndParentComment { get; set; }
Property Value
Type Description
ArticleAndParentComment

Entries

A list of messages. For example, a linear comments section or forum thread.

Declaration
[JsonProperty("entries")]
public virtual IList<TextEntry> Entries { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<TextEntry>

ETag

The ETag of the item.

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

Implements

IDirectResponseSchema
Back to top