# TransactionChannel

Represents a transaction channel.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**attributes** | [**TransactionChannelAttributes**](TransactionChannelAttributes.md) |  | [optional] [default to undefined]
**availableForAll** | **boolean** | &#x60;TRUE&#x60; if the transaction channel is available for all users, &#x60;FALSE&#x60; otherwise. | [optional] [default to undefined]
**customFields** | [**Array&lt;CustomFieldMeta&gt;**](CustomFieldMeta.md) | The custom field definition available for the transaction channel. | [optional] [default to undefined]
**depositConstraints** | [**Constraint**](Constraint.md) |  | [default to undefined]
**encodedKey** | **string** | The encoded key of the entity, generated, globally unique | [optional] [readonly] [default to undefined]
**glAccount** | **string** | The general ledger (GL) account associated with the transaction channel. | [optional] [default to undefined]
**id** | **string** | The ID of the transaction channel. | [default to undefined]
**isDefault** | **boolean** | &#x60;TRUE&#x60; if the transaction channel is set as the default, &#x60;FALSE&#x60; otherwise. | [optional] [readonly] [default to undefined]
**loanConstraints** | [**Constraint**](Constraint.md) |  | [default to undefined]
**name** | **string** | The name of the transaction channel. | [default to undefined]
**state** | **string** | The state of the transaction channel. | [optional] [default to undefined]
**usageRights** | **Array&lt;string&gt;** | The usage rights that describe the transaction channel. | [optional] [default to undefined]

## Example

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

const instance: TransactionChannel = {
    attributes,
    availableForAll,
    customFields,
    depositConstraints,
    encodedKey,
    glAccount,
    id,
    isDefault,
    loanConstraints,
    name,
    state,
    usageRights,
};
```

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