Amount of units shipped for items sold by weight at a shipment level.

TotalWeight

interface TotalWeight {
    amount: string;
    unitOfMeasure: TotalWeightUnitOfMeasureEnum;
}

Properties

amount: string

A decimal number with no loss of precision. Useful when precision loss is unacceptable, as with currencies. Follows RFC7159 for number representation.
Pattern : ^-?(0|([1-9]\\d*))(\\.\\d+)?([eE][+-]?\\d+)?$.

TotalWeight

This field represents weight unit of measure of items that are ordered by cases and supporting priced by weight.

TotalWeight