Show / Hide Table of Contents

Class AttributeScores

This holds score values for a single attribute. It contains both per-span scores as well as an overall summary score..

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

Properties

ETag

The ETag of the item.

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

SpanScores

Per-span scores.

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

SummaryScore

Overall score for comment as a whole.

Declaration
[JsonProperty("summaryScore")]
public virtual Score SummaryScore { get; set; }
Property Value
Type Description
Score

Implements

IDirectResponseSchema
Back to top