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
readonlyfamilyName:string
givenName
readonlygivenName:string
middleName
readonlymiddleName:string
namePrefix
readonlynamePrefix:string
nameSuffix
readonlynameSuffix:string