mirror of
https://github.com/LukeHagar/speakeasy-playground.git
synced 2025-12-09 12:47:46 +00:00
13 lines
5.4 KiB
Markdown
13 lines
5.4 KiB
Markdown
# ConversionAmount
|
|
|
|
Invoice Item's amount after currency conversion took place.
|
|
|
|
|
|
## Fields
|
|
|
|
| Field | Type | Required | Description | Example |
|
|
| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
| `rate` | *Optional[str]* | :heavy_minus_sign: | Currency conversion rate, relative to USD, that was used to calculate the converted amount. | 0.89 |
|
|
| `time` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_minus_sign: | Date and time the currency conversion took place. | |
|
|
| `amount` | *Optional[str]* | :heavy_minus_sign: | The money amount after currency conversion. | 4.91 |
|
|
| `currency` | *Optional[str]* | :heavy_minus_sign: | The currency that 'amount' is in. The official ISO 4217 currency codes are used, e.g. "USD" or "EUR".<br/><a href="http://www.xe.com/iso4217.php" target="blank">ISO 4217 Standard</a>. | USD | |