Show / Hide Table of Contents

Class SpanScore

This is a single score for a given span of text.

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

Properties

Begin

"begin" and "end" describe the span of the original text that the attribute score applies to. The values are the UTF-16 codepoint range. "end" is exclusive. For example, with the text "Hi there", the begin/end pair (0,2) describes the text "Hi".

If "begin" and "end" are unset, the score applies to the full text.

Declaration
[JsonProperty("begin")]
public virtual int? Begin { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

End

Declaration
[JsonProperty("end")]
public virtual int? End { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

ETag

The ETag of the item.

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

Score

The score value.

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

Implements

IDirectResponseSchema
Back to top