Skip to main content
Version: v0.0.2

Interface: X12RemitReference

Decoded REF segment - additional identifier (Tax ID, payer ID, supplemental). qualifier is the X12 reference-identification qualifier ("2U" payer ID, "TJ" Tax ID, "EV" participant receiver, "D9" claim number, …); value is the verbatim ID. Used on payer / payee loops and on per-claim contexts.

Example

import type { X12RemitReference } from "@cosyte/x12";
declare const r: X12RemitReference;
r.qualifier; // "TJ"
r.value; // "123456789"

Properties

description

readonly description: string | undefined


qualifier

readonly qualifier: string


value

readonly value: string