ScheduleActionSchedulingConfig

data class ScheduleActionSchedulingConfig(val executeAt: Timestamp? = null, val executeAfter: Timestamp? = null, val executeUntil: Timestamp? = null)

Configuration for when the action should be executed

Parameters

executeAt

Exact time to execute the action

executeAfter

Earliest time to execute the action (for randomized scheduling)

executeUntil

Latest time to execute the action (for randomized scheduling)

Constructors

Link copied to clipboard
constructor(executeAt: Timestamp? = null, executeAfter: Timestamp? = null, executeUntil: Timestamp? = null)

Properties

Link copied to clipboard

Earliest time to execute the action (for randomized scheduling)

Link copied to clipboard

Exact time to execute the action

Link copied to clipboard

Latest time to execute the action (for randomized scheduling)