/** * @name ContactPointSystem * @description Telecommunications form for contact point. * @description phone | fax | email | pager | url | sms | other * @see ContactPointSystem * @version R4 * @author Roberto Araneda Espinoza */ export type ContactPointSystemType = 'phone' | 'fax' | 'email' | 'pager' | 'url' | 'sms' | 'other';