Interface IShipmentCalculatedAmount

This interface is intended to be used internally by EPiServer. We do not support any backward compatibility on this.

Represents the calculated amount from calculators for a shipment.

Namespace: EPiServer.Commerce.Order.Internal
Assembly: Mediachase.Commerce.dll
Version: 12.17.2
Syntax
public interface IShipmentCalculatedAmount

Properties

IsShippingCostUpToDate

Gets the flag indicating whether the ShippingCost is up-to-date.

Declaration
bool IsShippingCostUpToDate { get; set; }
Property Value
Type Description
System.Boolean

IsShippingTaxUpToDate

Gets the flag indicating whether the ShippingTax is up-to-date.

Declaration
bool IsShippingTaxUpToDate { get; set; }
Property Value
Type Description
System.Boolean

ShippingCost

Gets or sets the shipping cost.

Declaration
decimal ShippingCost { get; set; }
Property Value
Type Description
System.Decimal

ShippingTax

Gets or sets the shipping tax.

Declaration
decimal ShippingTax { get; set; }
Property Value
Type Description
System.Decimal

Extension Methods