Skip to content

Latest commit

 

History

History
58 lines (52 loc) · 2.36 KB

File metadata and controls

58 lines (52 loc) · 2.36 KB

PrimaryConnectClient::Result

Properties

Name Type Description Notes
code CodedValue [optional]
related_group_id Array<String> ID to group separate result components [optional]
specimen Specimen [optional]
value String Value of the result component [optional]
value_type String Data type for the result value [optional]
completion_date_time Time Timestamp when the results were composed into a report and released (ISO-8601) [optional]
report ResultReport [optional]
units String Units of the result [optional]
notes Array<String> Notes about the result component/observation [optional]
abnormal_flag String Indication of whether the result was abnormal [optional]
status String Current status of the result [optional]
primary_results_interpreter Provider [optional]
producer Object [optional]
performer Provider [optional]
reference_range ResultReferenceRange [optional]
observation_method CodedValue [optional]
producer_order_id String Unique ID generated by resulting entity [optional]
finding_value CodedValue [optional]
resulting_device Device [optional]
procedure CodedValue [optional]
suppress Boolean Controls provider/patient notification. Default `false` which will notify. [optional]

Example

require 'primary_connect_client'

instance = PrimaryConnectClient::Result.new(
  code: null,
  related_group_id: null,
  specimen: null,
  value: negative,
  value_type: STRING,
  completion_date_time: 2021-07-10T12:35:45-07:00,
  report: null,
  units: null,
  notes: null,
  abnormal_flag: null,
  status: null,
  primary_results_interpreter: null,
  producer: null,
  performer: null,
  reference_range: null,
  observation_method: null,
  producer_order_id: 12345678,
  finding_value: null,
  resulting_device: null,
  procedure: null,
  suppress: null
)