/** * @name AuditEventAction * @description Indicator for type of action performed during the event that generated the event. * @description C | R | U | D | E * @see AuditEventAction * @version R4 * @author Roberto Araneda Espinoza */ export type AuditEventActionType = 'C' | 'R' | 'U' | 'D' | 'E';