Quote
Represents a currency exchange quote, including details like exchange rate, provider, and fees related to the exchange.
Last updated
Represents a currency exchange quote, including details like exchange rate, provider, and fees related to the exchange.
Last updated
The Quote model represents the details of a currency exchange during a transaction. It includes the exchange rate, the provider facilitating the exchange, and any fees associated with the conversion. This model ensures that users are provided with accurate and up-to-date information about the cost and rate of currency exchanges within transactions.
id
string
Unique identifier for the exchange quote.
product
string
Currency pair being exchanged (e.g., USD:EUR
).
status
string
Status of the quote (e.g., CREATED
, PENDING
, COMPLETED
).
exchangeRate
string
Exchange rate provided for the transaction.
fee
string
Fee charged by the provider for executing the quote.
executable
boolean
Whether the quote is executable (i.e., ready for the transaction to proceed).
provider
string
Provider responsible for offering the exchange quote.
createdAt
string
Timestamp when the quote was created.
updatedAt
string
Timestamp when the quote was last updated.