Show / Hide Table of Contents

Class AttributeParameters

Configurable parameters for attribute scoring.

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

Properties

ETag

The ETag of the item.

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

ScoreThreshold

Don't return scores for this attribute that are below this threshold. If unset, a default threshold will be applied. A FloatValue wrapper is used to distinguish between 0 vs. default/unset.

Declaration
[JsonProperty("scoreThreshold")]
public virtual float? ScoreThreshold { get; set; }
Property Value
Type Description
System.Nullable<System.Single>

ScoreType

What type of scores to return. If unset, defaults to probability scores.

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

Implements

IDirectResponseSchema
Back to top