All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.org.hisp.dhis.rules.api.RuleEngineContext.kt Maven / Gradle / Ivy

package org.hisp.dhis.rules.api

import org.hisp.dhis.rules.models.Rule
import org.hisp.dhis.rules.models.RuleVariable

data class RuleEngineContext(
    val rules: List,
    val ruleVariables: List = emptyList(),
    val supplementaryData: Map> = emptyMap(),
    val constantsValues: Map = emptyMap()
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy