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

commonMain.org.hisp.dhis.rules.models.RuleAction.kt Maven / Gradle / Ivy

package org.hisp.dhis.rules.models

data class RuleAction(
    val data: String?,
    val type: String,
    val values: Map = emptyMap()
){
    fun content():String? {
        return values["content"]
    }

    fun field():String? {
        return values["field"]
    }

    fun attributeType():String? {
        return values["attributeType"]
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy