CronMetaData

@Serializable
data class CronMetaData(val name: String, val timestamp: Long = 0, val expression: String = "", val error: String = "") : NodeMetaData(source)

Payload for a CronTimer trigger node.

Constructors

Link copied to clipboard
constructor(name: String, timestamp: Long = 0, expression: String = "", error: String = "")

Properties

Link copied to clipboard
open override val error: String

Last known error message for this node, or empty string when healthy.

Link copied to clipboard

Quartz-style cron expression evaluated by the server scheduler.

Link copied to clipboard

Display name shown in the editor and on the node chip.

Link copied to clipboard

Epoch millis of the most recent fire — 0 if the trigger has not fired yet.