Skip to main content
Version: v0.0.3

Variable: ACK_CONDITIONS

const ACK_CONDITIONS: object

HL7 Table 0155: Accept/application acknowledgment conditions (MSH-15 / MSH-16): AL Always · NE Never · ER Error/reject conditions only · SU Successful completion only. Exposed read-only for adapters that surface the inbound sender's stated acknowledgment expectations.

Type Declaration

AL

readonly AL: "AL" = "AL"

ER

readonly ER: "ER" = "ER"

NE

readonly NE: "NE" = "NE"

SU

readonly SU: "SU" = "SU"

Example

import { ACK_CONDITIONS } from "@cosyte/hl7";
ACK_CONDITIONS.AL; // "AL" (Always)