Excerpt of the Order extracting the total and the taxed price.

interface OrderExcerpt {
    taxedPrice?: TaxedPrice;
    totalPrice: TypedMoney;
    version: number;
}

Properties

taxedPrice?: TaxedPrice

Taxed price of the Order.

totalPrice: TypedMoney

Total price of the Order.

version: number

Current version of the Order.