Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

PackingType.cs

namespace Nop.Plugin.Shipping.UPS.Domain;

/// 
/// Represents packing type
/// 
public enum PackingType
{
    /// 
    /// Pack by dimensions
    /// 
    PackByDimensions = 0,

    /// 
    /// Pack by one item per package
    /// 
    PackByOneItemPerPackage = 1,

    /// 
    /// Pack by volume
    /// 
    PackByVolume = 2
}