Interface MonetaryAmount

Represents a monetary amount, including currency and value information.

interface MonetaryAmount {
    currency: string;
    value: string;
}

Properties

Properties

currency: string

The currency of the monetary amount.

"USD"
value: string

The value of the monetary amount, could be a range.

"50,000 - 70,000"