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

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

Constructor Details

#initialize(**args) ⇒ EntityMention

Returns a new instance of EntityMention.



416
417
418
# File 'lib/google/apis/language_v1beta1/classes.rb', line 416

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



409
410
411
# File 'lib/google/apis/language_v1beta1/classes.rb', line 409

def text
  @text
end

#typeString

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

Returns:

  • (String)


414
415
416
# File 'lib/google/apis/language_v1beta1/classes.rb', line 414

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



421
422
423
424
# File 'lib/google/apis/language_v1beta1/classes.rb', line 421

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