Class: Google::Apis::HealthcareV1beta1::Annotation

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

An annotation record.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Annotation

Returns a new instance of Annotation.



154
155
156
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 154

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

Instance Attribute Details

#annotation_sourceGoogle::Apis::HealthcareV1beta1::AnnotationSource

AnnotationSource holds the source information of the annotation. Corresponds to the JSON property annotationSource



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

def annotation_source
  @annotation_source
end

#custom_dataHash<String,String>

Additional information for this annotation record, such as annotator and verifier information or study campaign. Corresponds to the JSON property customData

Returns:

  • (Hash<String,String>)


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

def custom_data
  @custom_data
end

#image_annotationGoogle::Apis::HealthcareV1beta1::ImageAnnotation

Image annotation. Corresponds to the JSON property imageAnnotation



135
136
137
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 135

def image_annotation
  @image_annotation
end

#nameString

Resource name of the Annotation, of the form projects/project_id/locations/ location_id/datasets/dataset_id/annotationStores/annotation_store_id/ annotations/annotation_id`. Corresponds to the JSON propertyname`

Returns:

  • (String)


142
143
144
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 142

def name
  @name
end

#resource_annotationGoogle::Apis::HealthcareV1beta1::ResourceAnnotation

Resource level annotation. Corresponds to the JSON property resourceAnnotation



147
148
149
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 147

def resource_annotation
  @resource_annotation
end

#text_annotationGoogle::Apis::HealthcareV1beta1::SensitiveTextAnnotation

A TextAnnotation specifies a text range that includes sensitive information. Corresponds to the JSON property textAnnotation



152
153
154
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 152

def text_annotation
  @text_annotation
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



159
160
161
162
163
164
165
166
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 159

def update!(**args)
  @annotation_source = args[:annotation_source] if args.key?(:annotation_source)
  @custom_data = args[:custom_data] if args.key?(:custom_data)
  @image_annotation = args[:image_annotation] if args.key?(:image_annotation)
  @name = args[:name] if args.key?(:name)
  @resource_annotation = args[:resource_annotation] if args.key?(:resource_annotation)
  @text_annotation = args[:text_annotation] if args.key?(:text_annotation)
end