class Google::Apis::HealthcareV1::Dataset
A message representing a health dataset. A health dataset represents a collection of healthcare data pertaining to one or more patients. This may include multiple modalities of healthcare data, such as electronic medical records or medical imaging data.
Attributes
Resource name of the dataset, of the form `projects/`project_id`/locations/` location_id`/datasets/`dataset_id“. Corresponds to the JSON property `name` @return [String]
The default timezone used by this dataset. Must be a either a valid IANA time zone name such as “America/New_York” or empty, which defaults to UTC. This is used for parsing times in resources, such as HL7 messages, where no explicit timezone is specified. Corresponds to the JSON property `timeZone` @return [String]
Public Class Methods
# File lib/google/apis/healthcare_v1/classes.rb, line 788 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/healthcare_v1/classes.rb, line 793 def update!(**args) @name = args[:name] if args.key?(:name) @time_zone = args[:time_zone] if args.key?(:time_zone) end