API Docs / Schemas / DueDateConfigDto

DueDateConfigDto

Configuration for due date intervals on recurring tasks.
Specifies how long after the task start date the due date should be set.
Both IntervalValue and IntervalUnit are required.
Examples:

  • IntervalValue=2, IntervalUnit=Week → Due date is 2 weeks after task date
  • IntervalValue=30, IntervalUnit=Day → Due date is 30 days after task date
  • IntervalValue=1, IntervalUnit=Month → Due date is 1 month after task date

Properties

Name Type Description
intervalValueinteger

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

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

intervalUnitenum

Day Week Month Year

Day Week Month Year

JSON Example

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

Contained in Schemas