# AccountingRate

Represents the conversion rate used in accounting to convert amounts from one currency to organisation currency

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**encodedKey** | **string** | The encoded key of the accounting rate, auto generated, unique | [optional] [readonly] [default to undefined]
**endDate** | **string** | Rate validity end date | [optional] [default to undefined]
**fromCurrencyCode** | **string** | Organisation currency code | [optional] [default to undefined]
**rate** | **number** | Value of rate to be used for accounting conversions | [optional] [default to undefined]
**startDate** | **string** | Rate validity start date | [optional] [default to undefined]
**toCurrencyCode** | **string** | Foreign currency code | [optional] [default to undefined]

## Example

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

const instance: AccountingRate = {
    encodedKey,
    endDate,
    fromCurrencyCode,
    rate,
    startDate,
    toCurrencyCode,
};
```

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