Skip to main content
Version: v0.0.3

Interface: PersonNameGroup

One of the three component groups of a PN value (PS3.5 §6.2.1.1): alphabetic, ideographic, or phonetic. Each holds the five ^-delimited components; missing components are the empty string (never undefined).

Example

import type { PersonNameGroup } from "@cosyte/dicom";
const g: PersonNameGroup = {
familyName: "Doe",
givenName: "Jane",
middleName: "",
namePrefix: "",
nameSuffix: "",
};

Properties

familyName

readonly familyName: string


givenName

readonly givenName: string


middleName

readonly middleName: string


namePrefix

readonly namePrefix: string


nameSuffix

readonly nameSuffix: string