# BulkDepositAccountUpdateError

Represents an error for a failed deposit account update in a bulk operation.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**accountKey** | **string** | The account key that failed to update | [default to undefined]
**errorCode** | **number** | The error code. | [optional] [default to undefined]
**errorReason** | **string** | The error reason | [default to undefined]
**errorSource** | **string** | Additional details about the error | [optional] [default to undefined]

## Example

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

const instance: BulkDepositAccountUpdateError = {
    accountKey,
    errorCode,
    errorReason,
    errorSource,
};
```

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