Type Alias Startdef

The start definition for a workflow, including optional schedule configuration.

{
* schedule: {
* recurrence: "RRULE:FREQ=DAILY;INTERVAL=1",
* startDateTime: "2025-08-31T23:22:27Z"
* }
* }
type Startdef = {
    schedule: tasks.Schedule;
    stateName?: string;
}
Index

Properties

Properties

schedule: tasks.Schedule
stateName?: string