# FinApiAccess.BankConnection

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **Number** | Bank connection identifier | 
**name** | **String** | Custom name for the bank connection. You can set this field with the 'Edit a bank connection' service, as well as during the initial import of the bank connection. Maximum length is 64. | [optional] 
**type** | **String** | Bank connection type | 
**updateStatus** | **String** | Current status of data download (account balances and transactions/securities). The POST /bankConnections/import and POST /bankConnections/<id>/update services will set this flag to IN_PROGRESS before they return. Once the import or update has finished, the status will be changed to READY. | 
**categorizationStatus** | **String** | Current status of transactions categorization. The asynchronous download process that is triggered by a call of the POST /bankConnections/import and POST /bankConnections/<id>/update services (and also by finAPI's auto update, if enabled) will set this flag to PENDING once the download has finished and a categorization is scheduled for the imported transactions. A separate categorization thread will then start to categorize the transactions (during this process, the status is IN_PROGRESS). When categorization has finished, the status will be (re-)set to READY. Note that the current categorization status should only be queried after the download has finished, i.e. once the download status has switched from IN_PROGRESS to READY. | 
**interfaces** | [**[BankConnectionInterface]**](BankConnectionInterface.md) | Set of interfaces that are connected for this bank connection. | [optional] 
**accountIds** | **[Number]** |  | 
**owners** | [**[BankConnectionOwner]**](BankConnectionOwner.md) | Information about the owner(s) of the bank connection | [optional] 
**bank** | [**Bank**](Bank.md) | Bank that this connection belongs to | 


<a name="TypeEnum"></a>
## Enum: TypeEnum


* `ONLINE` (value: `"ONLINE"`)

* `DEMO` (value: `"DEMO"`)




<a name="UpdateStatusEnum"></a>
## Enum: UpdateStatusEnum


* `IN_PROGRESS` (value: `"IN_PROGRESS"`)

* `READY` (value: `"READY"`)




<a name="CategorizationStatusEnum"></a>
## Enum: CategorizationStatusEnum


* `IN_PROGRESS` (value: `"IN_PROGRESS"`)

* `PENDING` (value: `"PENDING"`)

* `READY` (value: `"READY"`)




