dev.bpmcrafters.processengineapi.deploy.DeploymentInformation.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.deploy
import java.time.Instant
data class DeploymentInformation(
val deploymentKey: String,
val deploymentTime: Instant?,
val tenantId: String?
)