UNPKG

fhirtypes

Version:
10 lines (9 loc) 545 B
/** * @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 */ export type BundleTypeType = 'document' | 'message' | 'transaction' | 'transaction-response' | 'batch' | 'batch-response' | 'history' | 'searchset' | 'collection';