Try your search with a different keyword or use * as a wildcard.
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
}