ExternalFileMoveResultDto
The outcome of moving a single file within a batch move.
Properties
| Name | Type | Description |
|---|---|---|
| externalFileId | string | The identifier the caller sent, so it can match this result to the file. |
The identifier the caller sent, so it can match this result to the file. | ||
| newExternalFileId | string | The identifier after the move. Differs from the original only on platforms that identify |
The identifier after the move. Differs from the original only on platforms that identify | ||
| success | boolean | Whether the file was moved. |
Whether the file was moved. | ||
| error | string | Why the move failed. Null when it succeeded. |
Why the move failed. Null when it succeeded. | ||
JSON Example
{
"externalFileId": "string",
"newExternalFileId": "string",
"success": false,
"error": "string"
}