RecurringTaskItemDto
DTO for recurring task templates, exposing only codes and enums (never DB IDs).
Properties
| Name | Type | Description |
|---|---|---|
| code | string | |
| name | string | |
| description | string | |
| timeEstimate | number | |
| assignedUser | CodeAndNameDto | |
| billableService | CodeAndNameDto | |
| sortOrder | integer | |
| active | boolean | |
| taskStartConfig | TaskStartConfigDto | |
| recurrence | RecurrenceConfigDto | |
| dueDateConfig | DueDateConfigDto | |
| holidayAdjustment | enum | None Skip MoveBefore MoveAfter |
None Skip MoveBefore MoveAfter | ||
| assignmentType | enum | Unassigned SpecificUser ClientManager ClientServiceManager ClientPartner ClientAssociate |
Unassigned SpecificUser ClientManager ClientServiceManager ClientPartner ClientAssociate | ||
| workflow | CodeAndNameDto | |
| category | CodeAndNameDto | |
| clientAssociationType | enum | SpecificClients AllClients ClientsWithServices |
SpecificClients AllClients ClientsWithServices | ||
| vatReportingPeriod | enum | Monthly QuarterlyJanAprJulOct QuarterlyFebMayAugNov QuarterlyMarJunSepDec Annual |
Monthly QuarterlyJanAprJulOct QuarterlyFebMayAugNov QuarterlyMarJunSepDec Annual | ||
| nextRunDate | string | The next date this recurring task should be created (for display purposes) |
The next date this recurring task should be created (for display purposes) | ||
JSON Example
{
"code": "string",
"name": "string",
"description": "string",
"timeEstimate": 0,
"assignedUser": {
"code": "string",
"name": "string"
}
}