BatchResult
Represents the result of a batch operation where each request item has its own Result.
Generic form: BatchResult<TRequest, TData>
Properties
| Property | Type | Description |
|---|---|---|
| AllSucceeded | boolean | Indicates whether every item in the batch succeeded. |
| Items | BatchResultItem<TRequest, TData>[] | Per-request results returned by the batch operation. |
BatchResultItem Object
Generic form: BatchResultItem<TRequest, TData>
| Property | Type | Description |
|---|---|---|
| Request | TRequest | Original request item. |
| Result | Result<TData> | Result for the corresponding request item. Data contains the item payload when successful. |