/** * @name UDIEntryType * @description Codes to identify how UDI data was entered. * @description barcode | rfid | manual | card | self-reported | unknown * @see UDIEntryType * @version R4 * @author Claudia Alarcón Lazo */ export type UDIEntryTypeType = 'barcode' | 'rfid' | 'manual' | 'card' | 'self-reported' | 'unknown';