Definition when a schedule should be executed.
name | data type | constraints | description |
---|---|---|---|
type | ScheduleType | Get the schedule type. | |
startTimestamp | number | required int | Get the start timestamp. |
endTimestamp | number | required int | Get the end timestamp. |
interval | ScheduleInterval | Get the interval definition. | |
follow | ScheduleFollow | Get the followup definition. |
Example
{ "type" : "followup", "startTimestamp" : 12345, "endTimestamp" : 12345, "interval" : { "value" : 12345, "unit" : "hour" }, "follow" : { "scheduleId" : [ 12345, 12345 ], "onlyAfterSuccess" : true } }