interface TaxedPrice {
    taxPortions: TaxPortion[];
    totalGross: Money;
    totalNet: Money;
}

Properties

taxPortions: TaxPortion[]

Maps to TaxedPrice.taxPortions.

totalGross: Money

Maps to TaxedPrice.totalGross.

totalNet: Money

Maps to TaxedPrice.totalNet.