Webiant Logo Webiant Logo
  1. No results found.

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

CustomValueDisplayLocation.cs

namespace Nop.Services.Orders;

/// 
/// Represent the display location of custom value enum
/// 
public enum CustomValueDisplayLocation
{
    /// 
    /// Billing Address related custom values
    /// 
    BillingAddress,

    /// 
    /// Shipping Address related custom values
    /// 
    ShippingAddress,

    /// 
    /// For values associated with Payment i.e. Receipt number or Invoice Number
    /// 
    Payment,

    /// 
    /// For values associated with Shipping i.e. Pickup Point
    /// 
    Shipping
}