fhirtypes
Version:
24 lines (23 loc) • 1.05 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BundleTypeEnum = void 0;
/**
* @name BundleType
* @description Indicates the purpose of this bundle - how it is intended to be used.
* @description document | message | transaction | transaction-response | batch | batch-response | history | searchset | collection.
* @see <a href="https://hl7.org/fhir/R4/valueset-bundle-type.html">BundleType</a>
* @version R4
* @author Roberto Araneda Espinoza
*/
var BundleTypeEnum;
(function (BundleTypeEnum) {
BundleTypeEnum["DOCUMENT"] = "document";
BundleTypeEnum["MESSAGE"] = "message";
BundleTypeEnum["TRANSACTION"] = "transaction";
BundleTypeEnum["TRANSACTION_RESPONSE"] = "transaction-response";
BundleTypeEnum["BATCH"] = "batch";
BundleTypeEnum["BATCH_RESPONSE"] = "batch-response";
BundleTypeEnum["HISTORY"] = "history";
BundleTypeEnum["SEARCHSET"] = "searchset";
BundleTypeEnum["COLLECTION"] = "collection";
})(BundleTypeEnum || (exports.BundleTypeEnum = BundleTypeEnum = {}));