Class: Google::Apis::HealthcareV1beta1::Feature

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



2717
2718
2719
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 2717

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)


2709
2710
2711
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 2709

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)


2715
2716
2717
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 2715

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2722
2723
2724
2725
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 2722

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