# GLAccountInput

Represents the request payload for creating a GL Account

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**allowManualJournalEntries** | **boolean** | &#x60;TRUE&#x60; if manual journal entries are allowed, &#x60;FALSE&#x60; otherwise. This is only available for Detail Accounts. | [optional] [default to undefined]
**currency** | [**Currency**](Currency.md) |  | [optional] [default to undefined]
**description** | **string** | The description of the general ledger account. | [optional] [default to undefined]
**glCode** | **string** | The general ledger code used to identify different account types. Also used for grouping and categorizing accounts. For example: an account code of \&#39;3201\&#39; is considered a subtype of \&#39;3200\&#39;. | [default to undefined]
**name** | **string** | The name of the general ledger account. | [default to undefined]
**stripTrailingZeros** | **boolean** | &#x60;TRUE&#x60; to strip trailing zeros, &#x60;FALSE&#x60; otherwise. Only available for Header Accounts. | [optional] [default to undefined]
**type** | **string** | The general ledger account type. | [default to undefined]
**usage** | **string** | &#x60;DETAIL&#x60; for general ledger accounts that log transactions, and &#x60;HEADER&#x60; for general ledger accounts used for reporting and organizational purposes. | [default to undefined]

## Example

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

const instance: GLAccountInput = {
    allowManualJournalEntries,
    currency,
    description,
    glCode,
    name,
    stripTrailingZeros,
    type,
    usage,
};
```

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