class Google::Apis::HealthcareV1::AnalyzeEntitiesRequest

The request to analyze healthcare entities in a document.

Attributes

document_content[RW]

document_content is a document to be annotated. Corresponds to the JSON property `documentContent` @return [String]

licensed_vocabularies[RW]

A list of licensed vocabularies to use in the request, in addition to the default unlicensed vocabularies. Corresponds to the JSON property `licensedVocabularies` @return [Array<String>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/healthcare_v1/classes.rb, line 79
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/healthcare_v1/classes.rb, line 84
def update!(**args)
  @document_content = args[:document_content] if args.key?(:document_content)
  @licensed_vocabularies = args[:licensed_vocabularies] if args.key?(:licensed_vocabularies)
end