Class: Google::Apis::LanguageV1beta2::EntityMention

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 a mention for an entity in the text. Currently, proper noun mentions are supported.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ EntityMention

Returns a new instance of EntityMention.



861
862
863
# File 'lib/google/apis/language_v1beta2/classes.rb', line 861

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

Instance Attribute Details

#sentimentGoogle::Apis::LanguageV1beta2::Sentiment

Represents the feeling associated with the entire text or entities in the text. Next ID: 6 Corresponds to the JSON property sentiment



849
850
851
# File 'lib/google/apis/language_v1beta2/classes.rb', line 849

def sentiment
  @sentiment
end

#textGoogle::Apis::LanguageV1beta2::TextSpan

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



854
855
856
# File 'lib/google/apis/language_v1beta2/classes.rb', line 854

def text
  @text
end

#typeString

The type of the entity mention. Corresponds to the JSON property type

Returns:

  • (String)


859
860
861
# File 'lib/google/apis/language_v1beta2/classes.rb', line 859

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



866
867
868
869
870
# File 'lib/google/apis/language_v1beta2/classes.rb', line 866

def update!(**args)
  @sentiment = args[:sentiment] if args.key?(:sentiment)
  @text = args[:text] if args.key?(:text)
  @type = args[:type] if args.key?(:type)
end