# Asset

Asset, holds information about a client asset entry.

## 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) | [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 security, auto generated, unique. | [optional] [readonly] [default to undefined]
**guarantorKey** | **string** | The key of the client/group used as the guarantor. | [optional] [default to undefined]
**guarantorType** | **string** | Indicated the account holder type. | [optional] [default to undefined]
**originalAmount** | **number** | The original amount used by the client for a collateral asset | [optional] [default to undefined]
**originalCurrency** | [**Currency**](Currency.md) |  | [optional] [default to undefined]

## Example

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

const instance: Asset = {
    amount,
    assetName,
    depositAccountKey,
    encodedKey,
    guarantorKey,
    guarantorType,
    originalAmount,
    originalCurrency,
};
```

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