Show / Hide Table of Contents

Class DependencyEdge

Represents dependency parse tree information for a token.

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

Properties

ETag

The ETag of the item.

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

HeadTokenIndex

Represents the head of this token in the dependency tree. This is the index of the token which has an arc going to this token. The index is the position of the token in the array of tokens returned by the API method. If this token is a root token, then the head_token_index is its own index.

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

Label

The parse label for the token.

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

Implements

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