API Docs / Schemas / DeadlineConfigDto

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
intervalValueinteger

The numeric value for the deadline interval. Must be a positive integer.
Combined with IntervalUnit to determine the deadline offset from the task start date.

The numeric value for the deadline interval. Must be a positive integer.
Combined with IntervalUnit to determine the deadline offset from the task start date.

intervalUnitenum

Day Week Month Year

Day Week Month Year

JSON Example

{
  "intervalValue": 0,
  "intervalUnit": "Day"
}

Contained in Schemas