/** * @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 BundleType * @version R4 * @author Roberto Araneda Espinoza */ export type BundleTypeType = 'document' | 'message' | 'transaction' | 'transaction-response' | 'batch' | 'batch-response' | 'history' | 'searchset' | 'collection';