i_classification_rule_data
Module for IClassificationRuleData interface
!!! interfaces IClassificationRuleData
IClassificationRuleData (IRuleData, ABC)
Data for a combine Results Rule
Source code in api/i_classification_rule_data.py
class IClassificationRuleData(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 criteria_table(self) -> Dict[str, List]:
"""Property for the formula"""
criteria_table: Dict[str, List]
property
readonly
Property for the formula
input_variable_names: List[str]
property
readonly
Name of the input variable