Currency type and monetary value schema to demonstrate pricing information.

MoneyType

interface MoneyType {
    amount?: number;
    currencyCode?: string;
}

Properties

amount?: number

The monetary value.

MoneyType

currencyCode?: string

The currency code in ISO 4217 format.

MoneyType