Class: Google::Apis::LanguageV1beta2::Token
- Inherits:
-
Object
- Object
- Google::Apis::LanguageV1beta2::Token
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/language_v1beta2/classes.rb,
generated/google/apis/language_v1beta2/representations.rb,
generated/google/apis/language_v1beta2/representations.rb
Overview
Represents the smallest syntactic building block of the text.
Instance Attribute Summary collapse
-
#dependency_edge ⇒ Google::Apis::LanguageV1beta2::DependencyEdge
Represents dependency parse tree information for a token.
-
#lemma ⇒ String
Lemma of the token.
-
#part_of_speech ⇒ Google::Apis::LanguageV1beta2::PartOfSpeech
Represents part of speech information for a token.
-
#text ⇒ Google::Apis::LanguageV1beta2::TextSpan
Represents an output piece of text.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Token
constructor
A new instance of Token.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Token
Returns a new instance of Token
900 901 902 |
# File 'generated/google/apis/language_v1beta2/classes.rb', line 900 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dependency_edge ⇒ Google::Apis::LanguageV1beta2::DependencyEdge
Represents dependency parse tree information for a token.
Corresponds to the JSON property dependencyEdge
883 884 885 |
# File 'generated/google/apis/language_v1beta2/classes.rb', line 883 def dependency_edge @dependency_edge end |
#lemma ⇒ String
Lemma of the token.
Corresponds to the JSON property lemma
888 889 890 |
# File 'generated/google/apis/language_v1beta2/classes.rb', line 888 def lemma @lemma end |
#part_of_speech ⇒ Google::Apis::LanguageV1beta2::PartOfSpeech
Represents part of speech information for a token.
Corresponds to the JSON property partOfSpeech
893 894 895 |
# File 'generated/google/apis/language_v1beta2/classes.rb', line 893 def part_of_speech @part_of_speech end |
#text ⇒ Google::Apis::LanguageV1beta2::TextSpan
Represents an output piece of text.
Corresponds to the JSON property text
898 899 900 |
# File 'generated/google/apis/language_v1beta2/classes.rb', line 898 def text @text end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
905 906 907 908 909 910 |
# File 'generated/google/apis/language_v1beta2/classes.rb', line 905 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 |