/** * @name AccountStatus * @description Indicates whether the account is available to be used. * @description active | inactive | entered-in-error | on-hold | unknown * @see AccountStatus * @version R4 * @author Roberto Araneda Espinoza */ export type AccountStatusType = 'active' | 'inactive' | 'entered-in-error' | 'on-hold' | 'unknown';