Skip to main content
Version: v0.0.2

Variable: TA1_ACK_CODES

const TA1_ACK_CODES: object

TA1-04 interchange acknowledgment code (ASC X12 code list I13). Three values: A accepted, E accepted with errors, R rejected. Distinct from the 999 disposition (no M/W/X here - TA1 covers only the interchange envelope, not crypto failures of contained groups).

Type Declaration

A

readonly A: "A" = "A"

E

readonly E: "E" = "E"

R

readonly R: "R" = "R"

Example

import type { Ta1AckCode } from "@cosyte/x12";
const accept: Ta1AckCode = "A";