Price

@Serializable(with = PriceSerializer::class)
open class Price

Represents a non-negative monetary price value.

This should match the currency used for prices in your analytics. Must be USD, unless another currency has been agreed on with Granify. All prices used in a single API call (i.e. Granify functions) must use a singular currency.

Constructors

Link copied to clipboard
constructor(amount: Double, currency: Currency = Currency.USD)

Properties

Link copied to clipboard

The magnitude of the price.

Link copied to clipboard

The currency associated with the amount.

Functions

Link copied to clipboard
open override fun toString(): String

Returns a string representation of the price.