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

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

package org.hisp.dhis.rules.models

import kotlinx.datetime.Instant
import kotlinx.datetime.LocalDate

data class RuleEvent(
    val event: String,
    val programStage: String,
    val programStageName: String,
    val status: RuleEventStatus,
    val eventDate: Instant,
    val dueDate: LocalDate?,
    val completedDate: LocalDate?,
    val organisationUnit: String,
    val organisationUnitCode: String?,
    val dataValues: List
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy