Class: Google::Apis::HealthcareV1::Feature

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

Overview

A feature of an entity mention.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Feature

Returns a new instance of Feature.



1596
1597
1598
# File 'lib/google/apis/healthcare_v1/classes.rb', line 1596

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

Instance Attribute Details

#confidenceFloat

The model's confidence in this feature annotation. A number between 0 and 1. Corresponds to the JSON property confidence

Returns:

  • (Float)


1588
1589
1590
# File 'lib/google/apis/healthcare_v1/classes.rb', line 1588

def confidence
  @confidence
end

#valueString

The value of this feature annotation. Its range depends on the type of the feature. Corresponds to the JSON property value

Returns:

  • (String)


1594
1595
1596
# File 'lib/google/apis/healthcare_v1/classes.rb', line 1594

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1601
1602
1603
1604
# File 'lib/google/apis/healthcare_v1/classes.rb', line 1601

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