Skip to main content
Version: v0.0.2

Interface: X12AuthDate

A DTP date / date-range attached to a review item. qualifier is DTP-01 (e.g. 435 admission, 472 service); value is DTP-03 in the DTP-02 format (D8 CCYYMMDD / RD8 range).

Example

import type { X12AuthDate } from "@cosyte/x12";
declare const d: X12AuthDate;
d.qualifier; // "472"
d.formatQualifier; // "D8"
d.value; // "20260601"

Properties

formatQualifier

readonly formatQualifier: string


qualifier

readonly qualifier: string


value

readonly value: string