Sha256: df4948512db963228c6ba7712f5c547f0d568bc2b1d601998b5d2838a5d32fb8
Contents?: true
Size: 1.64 KB
Versions: 1
Compression:
Stored size: 1.64 KB
Contents
# Buildium::CreateGeneralLedgerAccountRequest ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **sub_type** | **String** | Describes the subtype of the general ledger account. | | | **is_cash_asset** | **Boolean** | Indicates if an account is a Cash Asset. Can only have a value if SubType is `CurrentAsset` | [optional] | | **name** | **String** | Name of the general ledger account. The name cannot exceed 50 characters and must be unique across all general ledger accounts. | | | **account_number** | **String** | General ledger account number. The account number cannot exceed 12 characters and must be unique across all general ledger accounts. | | | **description** | **String** | Description of the general ledger account. The description cannot exceed 250 characters. | [optional] | | **is_contra_account** | **Boolean** | Indicates whether the account is a contra account. Must be null if `IsCashAsset` field is set to true. | [optional] | | **cash_flow_classification** | **String** | Describes the cash flow classification for the general ledger account. Must be null if `IsCashAsset` field is set to true. | [optional] | | **parent_gl_account_id** | **Integer** | Unique identifier of the parent general ledger account. Indicates if this is a sub general ledger account. | [optional] | ## Example ```ruby require 'buildium-ruby' instance = Buildium::CreateGeneralLedgerAccountRequest.new( sub_type: null, is_cash_asset: null, name: null, account_number: null, description: null, is_contra_account: null, cash_flow_classification: null, parent_gl_account_id: null ) ```
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
buildium-ruby-3.1.0 | docs/CreateGeneralLedgerAccountRequest.md |