# PostGLJournalEntriesDTO

Represents the information to create general ledger journal entries.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**branchId** | **string** | The ID of the assigned branch for the journal entries. | [optional] [default to undefined]
**credits** | [**Array&lt;GLAccountAmount&gt;**](GLAccountAmount.md) | The list of general ledger accounts to be credited with corresponding amounts. | [optional] [default to undefined]
**date** | **string** | The date and time when the general ledger journal entries were recorded, also known as the booking date. | [default to undefined]
**debits** | [**Array&lt;GLAccountAmount&gt;**](GLAccountAmount.md) | The list of general ledger accounts to be debited with corresponding amounts. | [optional] [default to undefined]
**notes** | **string** | The notes entered when the journal entry was posted. | [optional] [default to undefined]
**transactionId** | **string** | A non-unique trasanction ID. This will be autogenerated if an ID is not provided. | [optional] [default to undefined]

## Example

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

const instance: PostGLJournalEntriesDTO = {
    branchId,
    credits,
    date,
    debits,
    notes,
    transactionId,
};
```

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