PriceUnitType
Overview
The PriceUnitType
enum defines the various units of measurement that can be used for pricing products or services in the system. This standardization ensures consistent pricing representation across the application.
Enum Values
enum PriceUnitType
{
Unknown = "Unknown"; // Default value when the price unit type is not specified
Pieces = "Pieces"; // Individual countable items (e.g., individual products)
Area = "Area"; // Measurement in area units (e.g., square meters, square feet)
Length = "Length"; // Measurement in length units (e.g., meters, feet)
Packages = "Packages"; // Bundled sets of items sold as a single unit
}
Usage
The PriceUnitType
enum is used throughout the API to specify how prices are calculated and displayed for products and services. The appropriate unit type should be selected based on the nature of the item being priced.