Skip to main content

Type Alias: PriceOptions

PriceOptions = PriceType[]

Represents available price type options for selection.

The PriceOptions type provides a collection of different pricing strategies or tiers that can be selected in the configurator. These options might include different price lists like retail, wholesale, dealer, or cost pricing, with availability typically determined by user permissions and customer settings.

Price options enable flexible pricing displays for different audiences and business contexts, allowing the same product to be priced appropriately for various users.

Example

// Offering appropriate price options based on user type
const dealerPriceOptions: PriceOptions = [
{ label: "Retail Price", type: PriceTypeEnum.RRP },
{ label: "Dealer Cost", type: PriceTypeEnum.COST, defaultPriceType: true },
{ label: "Wholesale", type: PriceTypeEnum.SALE }
];

const customerPriceOptions: PriceOptions = [
{ label: "Retail Price", type: PriceTypeEnum.RRP, defaultPriceType: true }
];

// Display price selector with appropriate options
function renderPriceSelector(user) {
const options = user.isDealer ? dealerPriceOptions : customerPriceOptions;
return <PriceTypeSelector options={options} />;
}