Enumeration: CodeGroupScope
Defines how pricing codes are grouped and calculated within product configurations.
The CodeGroupScope enum determines the calculation method used when processing multiple price codes within a group. This affects how final prices are derived from component or option pricing codes.
Example
// Using minimum pricing from a group of codes
const pricingStrategy = {
scope: CodeGroupScope.MIN,
codes: ["BASE-001", "OPT-A", "OPT-B"]
};
// When combining multiple price code groups
const productPricing = {
codeGroups: [
{ scope: CodeGroupScope.ALL, codes: ["BASE-*"] },
{ scope: CodeGroupScope.MIN, codes: ["FINISH-*"] }
]
};
Enumeration Members
ALL
ALL:
"ALL"
Processes all codes in the group individually. Combines the full set of pricing codes without optimization.
AVERAGE
AVERAGE:
"AVERAGE"
Calculates the average price of all codes in the group. Useful for balanced pricing across variations.
MAX
MAX:
"MAX"
Uses the maximum price found among the group's codes. Useful for premium pricing strategies.
MIN
MIN:
"MIN"
Uses the minimum price found among the group's codes. Useful for promotional or "best price" scenarios.