A quantity based on unit of measure.

Amount

interface Amount {
    unitOfMeasure: "Eaches";
    value: string;
}

Properties

Properties

unitOfMeasure: "Eaches"

The unit of measure for the amount.

Amount

value: string

A decimal number with no loss of precision. Useful when precision loss is unacceptable, as with currencies. Follows RFC7159 for number representation.

Amount