Skip to main content

BatchResult

Represents the result of a batch operation where each request item has its own Result.

Generic form: BatchResult<TRequest, TData>

Properties

PropertyTypeDescription
AllSucceededbooleanIndicates whether every item in the batch succeeded.
ItemsBatchResultItem<TRequest, TData>[]Per-request results returned by the batch operation.

BatchResultItem Object

Generic form: BatchResultItem<TRequest, TData>

PropertyTypeDescription
RequestTRequestOriginal request item.
ResultResult<TData>Result for the corresponding request item. Data contains the item payload when successful.