Show / Hide Table of Contents

Class SuggestCommentScoreResponse

The comment score suggestion response message.

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

Properties

ClientToken

Same token from the original SuggestCommentScoreRequest.

Declaration
[JsonProperty("clientToken")]
public virtual string ClientToken { get; set; }
Property Value
Type Description
System.String

DetectedLanguages

The list of languages detected from the comment text.

Declaration
[JsonProperty("detectedLanguages")]
public virtual IList<string> DetectedLanguages { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

ETag

The ETag of the item.

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

RequestedLanguages

The list of languages provided in the request.

Declaration
[JsonProperty("requestedLanguages")]
public virtual IList<string> RequestedLanguages { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Implements

IDirectResponseSchema
Back to top