# BulkProcessingError

Holds information about the error encountered processing an item in bulk

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**errorCode** | **number** | Numeric value associated to the error reason | [optional] [default to undefined]
**errorReason** | **string** | Error reason | [optional] [default to undefined]
**errorSource** | **string** | Details about the error | [optional] [default to undefined]
**externalId** | **string** | Optional field populated only when request payload contains an externalId | [optional] [default to undefined]
**indexInRequest** | **number** | The index of the entity/item from bulk request that failed on processing | [optional] [default to undefined]

## Example

```typescript
import { BulkProcessingError } from './api';

const instance: BulkProcessingError = {
    errorCode,
    errorReason,
    errorSource,
    externalId,
    indexInRequest,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
