UNPKG

fhirtypes

Version:
22 lines (21 loc) 904 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ContactPointSystemEnum = void 0; /** * @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 */ var ContactPointSystemEnum; (function (ContactPointSystemEnum) { ContactPointSystemEnum["PHONE"] = "phone"; ContactPointSystemEnum["FAX"] = "fax"; ContactPointSystemEnum["EMAIL"] = "email"; ContactPointSystemEnum["PAGER"] = "pager"; ContactPointSystemEnum["URL"] = "url"; ContactPointSystemEnum["SMS"] = "sms"; ContactPointSystemEnum["OTHER"] = "other"; })(ContactPointSystemEnum || (exports.ContactPointSystemEnum = ContactPointSystemEnum = {}));