Class: Google::Apis::LanguageV1::EntityMention

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



580
581
582
# File 'generated/google/apis/language_v1/classes.rb', line 580

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

Instance Attribute Details

#textGoogle::Apis::LanguageV1::TextSpan

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



573
574
575
# File 'generated/google/apis/language_v1/classes.rb', line 573

def text
  @text
end

#typeString

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

Returns:

  • (String)


578
579
580
# File 'generated/google/apis/language_v1/classes.rb', line 578

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



585
586
587
588
# File 'generated/google/apis/language_v1/classes.rb', line 585

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