Class: Google::Apis::HealthcareV1::LinkedEntity

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/healthcare_v1/classes.rb,
lib/google/apis/healthcare_v1/representations.rb,
lib/google/apis/healthcare_v1/representations.rb
more...

Overview

EntityMentions can be linked to multiple entities using a LinkedEntity message lets us add other fields, e.g. confidence.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ LinkedEntity

Returns a new instance of LinkedEntity.

[View source]

3854
3855
3856
# File 'lib/google/apis/healthcare_v1/classes.rb', line 3854

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

Instance Attribute Details

#entity_idString

entity_id is a concept unique identifier. These are prefixed by a string that identifies the entity coding system, followed by the unique identifier within that system. For example, "UMLS/C0000970". This also supports ad hoc entities, which are formed by normalizing entity mention content. Corresponds to the JSON property entityId

Returns:

  • (String)

3852
3853
3854
# File 'lib/google/apis/healthcare_v1/classes.rb', line 3852

def entity_id
  @entity_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

3859
3860
3861
# File 'lib/google/apis/healthcare_v1/classes.rb', line 3859

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