@gradientedge/commercetools-utils
    Preparing search index...

    Interface TaxedItemPrice

    interface TaxedItemPrice {
        taxPortions: TaxPortion[];
        totalGross: CentPrecisionMoney;
        totalNet: CentPrecisionMoney;
        totalTax?: CentPrecisionMoney;
    }
    Index
    taxPortions: TaxPortion[]

    Taxable portions added to the total net price.

    Calculated from the [TaxRates](ctp:api:type:TaxRate).
    
    totalGross: CentPrecisionMoney

    Total gross amount of the Line Item or Custom Line Item.

    Total net amount of the Line Item or Custom Line Item.

    Total tax applicable for the Line Item or Custom Line Item. Automatically calculated as the difference between the totalGross and totalNet values.