# AccountingReportAmounts

Represents information about the accounting report amounts.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**closingBalance** | **number** | The closing balance amount of the general ledger account. | [optional] [default to undefined]
**credits** | **number** | The credit amount of the general ledger account. | [optional] [default to undefined]
**debits** | **number** | The debit amount of the general ledger account. | [optional] [default to undefined]
**netChange** | **number** | The net change amount of the general ledger account. | [optional] [default to undefined]
**openingBalance** | **number** | The opening balance amount of the general ledger account. | [optional] [default to undefined]

## Example

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

const instance: AccountingReportAmounts = {
    closingBalance,
    credits,
    debits,
    netChange,
    openingBalance,
};
```

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