# GLAccountAmount

Represents the general ledger account and amount used in a journal entry record.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**amount** | **number** | The amount which was debited or credited. | [optional] [default to undefined]
**glAccount** | **string** | Represents the general ledger account code of the the general ledger account that was debited or credited. | [optional] [default to undefined]

## Example

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

const instance: GLAccountAmount = {
    amount,
    glAccount,
};
```

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