DocumentMoveResultDto
The outcome of moving a single document within a batch move.
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 document was moved. |
Whether the document was moved. | ||
| error | string | A message explaining why the move failed. Null when it succeeded. |
A message explaining why the move failed. Null when it succeeded. | ||
JSON Example
{
"code": "string",
"success": false,
"error": "string"
}