Class: Google::Apis::HealthcareV1::AnalyzeEntitiesRequest

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

The request to analyze healthcare entities in a document.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AnalyzeEntitiesRequest

Returns a new instance of AnalyzeEntitiesRequest.

[View source]

132
133
134
# File 'lib/google/apis/healthcare_v1/classes.rb', line 132

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

Instance Attribute Details

#alternative_output_formatString

Optional. Alternative output format to be generated based on the results of analysis. Corresponds to the JSON property alternativeOutputFormat

Returns:

  • (String)

119
120
121
# File 'lib/google/apis/healthcare_v1/classes.rb', line 119

def alternative_output_format
  @alternative_output_format
end

#document_contentString

document_content is a document to be annotated. Corresponds to the JSON property documentContent

Returns:

  • (String)

124
125
126
# File 'lib/google/apis/healthcare_v1/classes.rb', line 124

def document_content
  @document_content
end

#licensed_vocabulariesArray<String>

A list of licensed vocabularies to use in the request, in addition to the default unlicensed vocabularies. Corresponds to the JSON property licensedVocabularies

Returns:

  • (Array<String>)

130
131
132
# File 'lib/google/apis/healthcare_v1/classes.rb', line 130

def licensed_vocabularies
  @licensed_vocabularies
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

137
138
139
140
141
# File 'lib/google/apis/healthcare_v1/classes.rb', line 137

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