# CreditArrangement

Represents a credit arrangement.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**amount** | **number** | The maximum credit amount the client can be exposed to. | [default to undefined]
**approvedDate** | **string** | The date when the credit arrangement was approved. | [optional] [readonly] [default to undefined]
**availableCreditAmount** | **number** | The available amount of the credit arrangement. | [optional] [readonly] [default to undefined]
**closedDate** | **string** | The date when the credit arrangement was closed. | [optional] [readonly] [default to undefined]
**consumedCreditAmount** | **number** | The consumed amount of the credit arrangement, which is calculated as the difference between the amount and available amount. | [optional] [readonly] [default to undefined]
**creationDate** | **string** | The date when the credit arrangement was created. | [optional] [readonly] [default to undefined]
**currency** | [**Currency**](Currency.md) |  | [optional] [default to undefined]
**encodedKey** | **string** | The encoded key of the credit arrangement, it is auto generated, and unique. | [optional] [readonly] [default to undefined]
**expireDate** | **string** | The date when the credit arrangement expires. | [default to undefined]
**exposureLimitType** | **string** | The type of exposure limit calculation method used for the credit arrangement. | [optional] [default to undefined]
**holderKey** | **string** | The encoded key of the credit arrangement holder (individual client or group). | [default to undefined]
**holderType** | **string** | Indicated the account holder type. | [default to undefined]
**id** | **string** | The ID of credit arrangement, can be generated and customized, and must be unique. | [optional] [default to undefined]
**lastModifiedDate** | **string** | The last date when the credit arrangement was modified. | [optional] [readonly] [default to undefined]
**notes** | **string** | The notes or description of the credit arrangement. | [optional] [default to undefined]
**startDate** | **string** | The start date from which the credit arrangement became active. | [default to undefined]
**state** | **string** | The state of the credit arrangement. | [optional] [readonly] [default to undefined]
**subState** | **string** | The substate of credit arrangement. | [optional] [readonly] [default to undefined]

## Example

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

const instance: CreditArrangement = {
    amount,
    approvedDate,
    availableCreditAmount,
    closedDate,
    consumedCreditAmount,
    creationDate,
    currency,
    encodedKey,
    expireDate,
    exposureLimitType,
    holderKey,
    holderType,
    id,
    lastModifiedDate,
    notes,
    startDate,
    state,
    subState,
};
```

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