Class: Google::Apis::LanguageV1beta2::Token

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/language_v1beta2/classes.rb,
lib/google/apis/language_v1beta2/representations.rb,
lib/google/apis/language_v1beta2/representations.rb

Overview

Represents the smallest syntactic building block of the text.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Token

Returns a new instance of Token.



1268
1269
1270
# File 'lib/google/apis/language_v1beta2/classes.rb', line 1268

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#dependency_edgeGoogle::Apis::LanguageV1beta2::DependencyEdge

Represents dependency parse tree information for a token. Corresponds to the JSON property dependencyEdge



1251
1252
1253
# File 'lib/google/apis/language_v1beta2/classes.rb', line 1251

def dependency_edge
  @dependency_edge
end

#lemmaString

Lemma of the token. Corresponds to the JSON property lemma

Returns:

  • (String)


1256
1257
1258
# File 'lib/google/apis/language_v1beta2/classes.rb', line 1256

def lemma
  @lemma
end

#part_of_speechGoogle::Apis::LanguageV1beta2::PartOfSpeech

Represents part of speech information for a token. Corresponds to the JSON property partOfSpeech



1261
1262
1263
# File 'lib/google/apis/language_v1beta2/classes.rb', line 1261

def part_of_speech
  @part_of_speech
end

#textGoogle::Apis::LanguageV1beta2::TextSpan

Represents a text span in the input document. Corresponds to the JSON property text



1266
1267
1268
# File 'lib/google/apis/language_v1beta2/classes.rb', line 1266

def text
  @text
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1273
1274
1275
1276
1277
1278
# File 'lib/google/apis/language_v1beta2/classes.rb', line 1273

def update!(**args)
  @dependency_edge = args[:dependency_edge] if args.key?(:dependency_edge)
  @lemma = args[:lemma] if args.key?(:lemma)
  @part_of_speech = args[:part_of_speech] if args.key?(:part_of_speech)
  @text = args[:text] if args.key?(:text)
end