/**
 * @name LinkType
 * @description The type of link between this patient resource and another patient resource.
 * @description replaced-by | replaces | refer | seealso
 * @see <a href="https://hl7.org/fhir/R4/valueset-link-type.html">LinkType</a>
 * @version R4
 * @author Roberto Araneda Espinoza
 */
export type LinkTypeType = 'replaced-by' | 'replaces' | 'refer' | 'seealso';
