dev.bpmcrafters.processengineapi.task.TaskInformation.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of process-engine-api Show documentation
Show all versions of process-engine-api Show documentation
Java API for engine-independent process functionality.
package dev.bpmcrafters.processengineapi.task
/**
* Represents task information.
* @since 0.0.1
*/
data class TaskInformation(
/**
* Reference to the instance.
*/
val taskId: String,
/**
* Additional metadata about the task.
*/
val meta: Map
)