interface TaxedItemPrice {
    totalGross: CentPrecisionMoney;
    totalNet: CentPrecisionMoney;
    totalTax?: CentPrecisionMoney;
}

Properties

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.

Generated using TypeDoc