i_combine_results_rule_data
Module for ICombineResultsRuleData interface
!!! interfaces ICombineResultsRuleData
ICombineResultsRuleData (IRuleData, ABC)
Data for a combine Results Rule
Source code in api/i_combine_results_rule_data.py
class ICombineResultsRuleData(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 operation_type(self) -> str:
"""Property for the operation_type"""
@property
@abstractmethod
def ignore_nan(self) -> bool:
"""Property for the ignore_nan flag"""
ignore_nan: bool
property
readonly
Property for the ignore_nan flag
input_variable_names: List[str]
property
readonly
Name of the input variable
operation_type: str
property
readonly
Property for the operation_type