# ExchangeRate

Model representation of an exchange rates.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**buyRate** | **number** | The buy exchange rate. | [optional] [readonly] [default to undefined]
**endDate** | **string** | The exchange rate applies starting with this date. | [optional] [readonly] [default to undefined]
**fromCurrencyCode** | **string** | Organisation currency code | [optional] [readonly] [default to undefined]
**sellRate** | **number** | The sell exchange rate. | [optional] [readonly] [default to undefined]
**startDate** | **string** | The exchange rate applies starting with this date. | [optional] [readonly] [default to undefined]
**toCurrencyCode** | **string** | Foreign currency code | [optional] [readonly] [default to undefined]
**userKey** | **string** | The key for the user that last modified the exchange rate. | [optional] [readonly] [default to undefined]

## Example

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

const instance: ExchangeRate = {
    buyRate,
    endDate,
    fromCurrencyCode,
    sellRate,
    startDate,
    toCurrencyCode,
    userKey,
};
```

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