> Agent-readable docs index: /llms.txt. Download /docs.zip to grep all markdown files locally.

---
title: "Price"
description: "Represents pricing information. It allows for easy calculation, conversion, and display of prices for various products and services throughout the application, ensuring a seamless and accurate user experience."
---

## Fields

***

<ParamField path="value" type="Int!" required>
  An integer representing the amount of money the product or service costs. The value is multiplied by 100 to avoid floating-point errors, which can cause inaccuracies when working with decimals. For example, if the price is $10.99, the value will be stored as 1099.
</ParamField>

<ParamField path="currency" type={<a href="/api-reference/currency">Currency!</a>} required>
  A `Currency` value indicating the currency in which the price is denominated. This is typically represented by a standardized three-letter currency code, such as USD for United States Dollars or EUR for Euros.
</ParamField>

<ParamField path="displayValue" type="String!" required>
  A formatted string that represents the price in a human-readable format, including the currency symbol and appropriate decimal places. For example, if the price is $10.99 in US Dollars, the displayValue will be $10.99.
</ParamField>

***


---

*Powered by [holocron.so](https://holocron.so)*
