DocumentActionResultDto
The outcome of a bulk action on a single document within a batch.
Properties
| Name | Type | Description |
|---|---|---|
| code | string | The document code, so the caller can match this result to the document it sent. |
The document code, so the caller can match this result to the document it sent. | ||
| success | boolean | Whether the action was applied to this document. |
Whether the action was applied to this document. | ||
| error | string | A message explaining why the action failed. Null when it succeeded. |
A message explaining why the action failed. Null when it succeeded. | ||
JSON Example
{
"code": "string",
"success": false,
"error": "string"
}