Class: Google::Apis::LanguageV1beta1::EntityMention

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/language_v1beta1/classes.rb,
generated/google/apis/language_v1beta1/representations.rb,
generated/google/apis/language_v1beta1/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

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ EntityMention

Returns a new instance of EntityMention.



207
208
209
# File 'generated/google/apis/language_v1beta1/classes.rb', line 207

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

Instance Attribute Details

#textGoogle::Apis::LanguageV1beta1::TextSpan

Represents an output piece of text. Corresponds to the JSON property text



205
206
207
# File 'generated/google/apis/language_v1beta1/classes.rb', line 205

def text
  @text
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



212
213
214
# File 'generated/google/apis/language_v1beta1/classes.rb', line 212

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