Skip to main content
Version: v0.0.2

Interface: X12RemitRemark

Decoded remark segment (LQ at claim or service level). system is the LQ-01 industry code system ("HE" healthcare remark codes / RARC, "RX" reject-reason, etc.); code is the verbatim value; description comes from the bundled RARC snapshot for HE codes, undefined otherwise. Unknown HE codes also emit X12_UNKNOWN_RARC.

Example

import type { X12RemitRemark } from "@cosyte/x12";
declare const r: X12RemitRemark;
r.system; // "HE"
r.code; // "N4"
r.description; // "Missing/incomplete/invalid prior insurance carrier(s) EOB."

Properties

code

readonly code: string


description

readonly description: string | undefined


system

readonly system: string