fhirtypes
Version:
23 lines (22 loc) • 1.14 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RelatedArtifactTypeEnum = void 0;
/**
* @name RelatedArtifactType
* @description The type of relationship to the related artifact.
* @description documentation | justification | citation | predecessor | successor | derived-from | depends-on | composed-of
* @see <a href="https://hl7.org/fhir/R4/valueset-related-artifact-type.html">RelatedArtifactType</a>
* @version R4
* @author Claudia Alarcón Lazo
*/
var RelatedArtifactTypeEnum;
(function (RelatedArtifactTypeEnum) {
RelatedArtifactTypeEnum["DOCUMENTATION"] = "documentation";
RelatedArtifactTypeEnum["JUSTIFICATION"] = "justification";
RelatedArtifactTypeEnum["CITATION"] = "citation";
RelatedArtifactTypeEnum["PREDECESSOR"] = "predecessor";
RelatedArtifactTypeEnum["SUCCESSOR"] = "successor";
RelatedArtifactTypeEnum["DERIVED_FROM"] = "derived-from";
RelatedArtifactTypeEnum["DEPENDS_ON"] = "depends-on";
RelatedArtifactTypeEnum["COMPOSED_OF"] = "composed-of";
})(RelatedArtifactTypeEnum || (exports.RelatedArtifactTypeEnum = RelatedArtifactTypeEnum = {}));