# InvestorFund

Contains the details about an investor fund including fields like encoded key, guarantor type, amount and guarantor key

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**amount** | **number** | The amount used by the client for the guaranty | [default to undefined]
**assetName** | **string** | The name of a value the client guarantees with (populated when the guaranty type is ASSET) | [optional] [default to undefined]
**depositAccountKey** | **string** | The key of the deposit account used by the guarantor (populated when the guaranty type is GUARANTOR). It can be null. | [optional] [default to undefined]
**encodedKey** | **string** | The encoded key of the entity, generated, globally unique | [optional] [readonly] [default to undefined]
**guarantorKey** | **string** | The key of the client/group used as the guarantor. | [default to undefined]
**guarantorType** | **string** | Indicated the account holder type. | [default to undefined]
**id** | **string** | Investor fund unique identifier. All versions of an investor fund will have same id. | [optional] [default to undefined]
**interestCommission** | **number** | The constraint minimum value | [optional] [default to undefined]
**sharePercentage** | **number** | Percentage of loan shares this investor owns | [optional] [default to undefined]

## Example

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

const instance: InvestorFund = {
    amount,
    assetName,
    depositAccountKey,
    encodedKey,
    guarantorKey,
    guarantorType,
    id,
    interestCommission,
    sharePercentage,
};
```

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