/** * @name QuestionnaireEnableOperator * @description The criteria by which a question is enabled. * @description exists | = | != | > | < | >= | <= * @see QuestionnaireEnableOperator * @version R4 * @author Claudia Alarcón Lazo */ export type QuestionnaireEnableOperatorType = 'exists' | '=' | '!=' | '>' | '<' | '>=' | '<=';