Skip to content

i_response_curve_rule_data

Module for IResponseCurveRuleData interface

!!! interfaces IResponseCurveRuleData

IResponseCurveRuleData (IRuleData, ABC)

Data for a response curve rule

Source code in api/i_response_curve_rule_data.py
class IResponseCurveRuleData(IRuleData, ABC):
    """Data for a response curve rule"""

    @property
    @abstractmethod
    def input_variable(self) -> str:
        """Property for the input variable"""

    @property
    @abstractmethod
    def input_values(self) -> List[float]:
        """Property for the input values"""

    @property
    @abstractmethod
    def output_values(self) -> List[float]:
        """Property for the output values"""

input_values: List[float] property readonly

Property for the input values

input_variable: str property readonly

Property for the input variable

output_values: List[float] property readonly

Property for the output values