module Roqua::Healthy::A19

Public Class Methods

fetch(patient_id) click to toggle source

Fetches a patient record given a `patient_id` and returns a hash containing the interesting information that was returned from an upstream `ADR^A19` response.

@param patient_id [String] the patient identifier @return [Hash] the patient details.

# File lib/roqua/healthy/a19.rb, line 11
def self.fetch(patient_id)
  Client.new.fetch_a19(patient_id)
end