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
| 891 892 893 | # File 'generated/google/apis/language_v1beta2/classes.rb', line 891 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
| 874 875 876 | # File 'generated/google/apis/language_v1beta2/classes.rb', line 874 def dependency_edge @dependency_edge end | 
#lemma ⇒ String
Lemma of the token.
Corresponds to the JSON property lemma
| 879 880 881 | # File 'generated/google/apis/language_v1beta2/classes.rb', line 879 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
| 884 885 886 | # File 'generated/google/apis/language_v1beta2/classes.rb', line 884 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
| 889 890 891 | # File 'generated/google/apis/language_v1beta2/classes.rb', line 889 def text @text end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 896 897 898 899 900 901 | # File 'generated/google/apis/language_v1beta2/classes.rb', line 896 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 |