Skip to main content

Interface: SimpleOption

Represents a selected configuration option in simplified format.

The SimpleOption interface provides a streamlined representation of a configuration option that has been selected for a product. It contains just the essential information needed to display the selection in summaries, reports, and user interfaces.

This lightweight format is ideal for scenarios where the full option data structure would be unnecessarily complex, such as in order summaries or configuration displays.

Properties

name

name: string

Name of the option block.

This property identifies which option category or block this selection belongs to (e.g., "Color", "Material", "Size"). Block names help organize options into logical groups and provide context for the selection.

Block names should be displayed alongside values to provide context for the options in summaries and reports.


src?

optional src: string

Path to option thumbnail image.

This optional property provides a relative path to an image that represents this option visually. This is particularly useful for visually-oriented options like colors, materials, or patterns.

When available, these images can enhance the presentation of selected options in summaries and configuration reviews.


value

value: string

Selected option value.

This property contains the specific option that was selected within the block (e.g., "Red", "Leather", "Large"). This is the actual configuration choice made by the user.

The value represents the display name of the option, not an internal code, making it suitable for direct presentation to users.