TaskImportRowResultDto
The outcome of importing a single task CSV row
Properties
| Name | Type | Description |
|---|---|---|
| rowId | string | The RowId from the import selection |
The RowId from the import selection | ||
| name | string | The task name from the row |
The task name from the row | ||
| action | string | What the import did with the row: "Create", "Update" or "Skip" |
What the import did with the row: "Create", "Update" or "Skip" | ||
| success | boolean | Whether the row imported successfully |
Whether the row imported successfully | ||
| taskCode | string | The code of the created or updated task |
The code of the created or updated task | ||
| error | string | Why the row failed, when Success is false |
Why the row failed, when Success is false | ||
JSON Example
{
"rowId": "string",
"name": "string",
"action": "string",
"success": false,
"taskCode": "string"
}