Class: Google::Apis::HealthcareV1::AnalyzeEntitiesRequest
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1::AnalyzeEntitiesRequest
- 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
The request to analyze healthcare entities in a document.
Instance Attribute Summary collapse
-
#alternative_output_format ⇒ String
Optional.
-
#document_content ⇒ String
document_content is a document to be annotated.
-
#licensed_vocabularies ⇒ Array<String>
A list of licensed vocabularies to use in the request, in addition to the default unlicensed vocabularies.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AnalyzeEntitiesRequest
constructor
A new instance of AnalyzeEntitiesRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AnalyzeEntitiesRequest
Returns a new instance of AnalyzeEntitiesRequest.
85 86 87 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 85 def initialize(**args) update!(**args) end |
Instance Attribute Details
#alternative_output_format ⇒ String
Optional. Alternative output format to be generated based on the results of
analysis.
Corresponds to the JSON property alternativeOutputFormat
72 73 74 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 72 def alternative_output_format @alternative_output_format end |
#document_content ⇒ String
document_content is a document to be annotated.
Corresponds to the JSON property documentContent
77 78 79 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 77 def document_content @document_content end |
#licensed_vocabularies ⇒ Array<String>
A list of licensed vocabularies to use in the request, in addition to the
default unlicensed vocabularies.
Corresponds to the JSON property licensedVocabularies
83 84 85 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 83 def licensed_vocabularies @licensed_vocabularies end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
90 91 92 93 94 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 90 def update!(**args) @alternative_output_format = args[:alternative_output_format] if args.key?(:alternative_output_format) @document_content = args[:document_content] if args.key?(:document_content) @licensed_vocabularies = args[:licensed_vocabularies] if args.key?(:licensed_vocabularies) end |