Skip to content

i_formula_rule_data

Module for IFormulaRuleData interface

!!! interfaces IFormulaRuleData

IFormulaRuleData (IRuleData, ABC)

Data for a combine Results Rule

Source code in api/i_formula_rule_data.py
class IFormulaRuleData(IRuleData, ABC):
    """Data for a combine Results Rule"""

    @property
    @abstractmethod
    def input_variable_names(self) -> List[str]:
        """Name of the input variable"""

    @property
    @abstractmethod
    def formula(self) -> str:
        """Property for the formula"""

formula: str property readonly

Property for the formula

input_variable_names: List[str] property readonly

Name of the input variable