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.



236
237
238
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 236

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



206
207
208
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 206

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>)


212
213
214
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 212

def custom_data
  @custom_data
end

#image_annotationGoogle::Apis::HealthcareV1beta1::ImageAnnotation

Image annotation. Corresponds to the JSON property imageAnnotation



217
218
219
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 217

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)


224
225
226
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 224

def name
  @name
end

#resource_annotationGoogle::Apis::HealthcareV1beta1::ResourceAnnotation

Resource level annotation. Corresponds to the JSON property resourceAnnotation



229
230
231
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 229

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



234
235
236
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 234

def text_annotation
  @text_annotation
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



241
242
243
244
245
246
247
248
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 241

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