# AccountBalances

Account balances presented to inquirer such as card processor

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**accountId** | **string** | The unique account identifier | [optional] [default to undefined]
**availableBalance** | **number** | The available balance of a deposit or credit account | [optional] [default to undefined]
**cardType** | **string** | The card type either DEBIT or CREDIT | [optional] [default to undefined]
**creditLimit** | **number** | The overdraft limit of a deposit account or the loan amount in case of a credit account | [optional] [default to undefined]
**currencyCode** | **string** | Currency code used for the account | [optional] [default to undefined]
**totalBalance** | **number** | The current balance of a deposit account or principal balance of a revolving credit | [optional] [default to undefined]

## Example

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

const instance: AccountBalances = {
    accountId,
    availableBalance,
    cardType,
    creditLimit,
    currencyCode,
    totalBalance,
};
```

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