/**
 * @name ContactPointSystem
 * @description Telecommunications form for contact point.
 * @description phone | fax | email | pager | url | sms | other
 * @see <a href="https://hl7.org/fhir/R4/valueset-contact-point-system.html">ContactPointSystem</a>
 * @version R4
 * @author Roberto Araneda Espinoza
 */
export type ContactPointSystemType = 'phone' | 'fax' | 'email' | 'pager' | 'url' | 'sms' | 'other';
