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? = values["content"]

    fun field(): String? = values["field"]

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy