Interface: X12RemitPerson
Decoded NM1 person - patient, subscriber, or corrected patient. The
idQualifier distinguishes member ID (MI), Social Security
(34 - rare, regulated), payer ID, etc. PHI surface: every field on
a person model carries PHI.
Example
import type { X12RemitPerson } from "@cosyte/x12";
declare const p: X12RemitPerson;
p.entityIdentifierCode; // "QC" patient / "IL" insured / "74" corrected patient
p.lastName; // verbatim
p.idQualifier; // "MI"
p.idCode; // "MEMBER123"
Properties
entityIdentifierCode
readonlyentityIdentifierCode:string
firstName
readonlyfirstName:string|undefined
idCode
readonlyidCode:string|undefined
idQualifier
readonlyidQualifier:string|undefined
lastName
readonlylastName:string|undefined
middleName
readonlymiddleName:string|undefined
suffix
readonlysuffix:string|undefined