fhirtypes
Version:
18 lines (17 loc) • 586 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NoteTypeEnum = void 0;
/**
* @name NoteType
* @description The presentation types of notes.
* @description display | print | printoper
* @see <a href="https://hl7.org/fhir/R4/valueset-note-type.html">NoteType</a>
* @version R4
* @author Claudia Alarcón Lazo
*/
var NoteTypeEnum;
(function (NoteTypeEnum) {
NoteTypeEnum["DISPLAY"] = "display";
NoteTypeEnum["PRINT"] = "print";
NoteTypeEnum["PRINTOPER"] = "printoper";
})(NoteTypeEnum || (exports.NoteTypeEnum = NoteTypeEnum = {}));