DeadlineConfigDto
Configuration for deadline intervals on recurring tasks.
Specifies how long after the task start date the deadline should be set.
Both IntervalValue and IntervalUnit are required.
Examples:
- IntervalValue=2, IntervalUnit=Week → Deadline is 2 weeks after task date
- IntervalValue=30, IntervalUnit=Day → Deadline is 30 days after task date
- IntervalValue=1, IntervalUnit=Month → Deadline is 1 month after task date
Properties
| Name | Type | Description |
|---|---|---|
| intervalValue | integer | The numeric value for the deadline interval. Must be a positive integer. |
The numeric value for the deadline interval. Must be a positive integer. | ||
| intervalUnit | enum | Day Week Month Year |
Day Week Month Year | ||
JSON Example
{
"intervalValue": 0,
"intervalUnit": "Day"
}