TaskFocusConfigDto
Response DTO for a user's task focus panel configuration
Properties
| Name | Type | Description |
|---|---|---|
| code | string | Unique identifier within the tenant |
Unique identifier within the tenant | ||
| items | array of TaskFocusConfigItemDto | The saved task filter items displayed in the focus panel |
The saved task filter items displayed in the focus panel | ||
| createdDate | string | When the config was created |
When the config was created | ||
| updatedDate | string | When the config was last updated |
When the config was last updated | ||
JSON Example
{
"code": "string",
"items": [
{
"savedTaskFilter": "...",
"label": "...",
"sortOrder": "...",
"color": "..."
}
],
"createdDate": "2024-01-01T00:00:00Z",
"updatedDate": "2024-01-01T00:00:00Z"
}