Packages

An Elixir library for working with HL7 v2.x healthcare data

Retired package: Release invalid - Bug introduced which would prevent get_part/2, get_parts/2, and replace_parts/3 to from working with binaries under specific conditons

Current section

Files

Jump to
elixir_hl7 lib hl7 invalid_header.ex
Raw

lib/hl7/invalid_header.ex

defmodule HL7.InvalidHeader do
@moduledoc """
Contains information concerning any failed attempt to parse an HL7 MSH segment.
"""
@type t :: %HL7.InvalidHeader{
raw: nil | String.t(),
reason: nil | atom()
}
defstruct raw: nil,
reason: nil
end