Show / Hide Table of Contents

Class Features

All available features for sentiment, syntax, and semantic analysis. Setting each one to true will enable that specific analysis for the input.

Inheritance
System.Object
Features
Implements
Google.Apis.Requests.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.CloudNaturalLanguage.v1beta1.Data
Assembly: Google.Apis.CloudNaturalLanguage.v1beta1.dll
Syntax
public class Features : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

ExtractDocumentSentiment

Extract document-level sentiment.

Declaration
[JsonProperty("extractDocumentSentiment")]
public virtual bool? ExtractDocumentSentiment { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ExtractEntities

Extract entities.

Declaration
[JsonProperty("extractEntities")]
public virtual bool? ExtractEntities { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ExtractSyntax

Extract syntax information.

Declaration
[JsonProperty("extractSyntax")]
public virtual bool? ExtractSyntax { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top