Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.31 KB

catalog-item-modifier-list-info.md

File metadata and controls

31 lines (22 loc) · 1.31 KB

Catalog Item Modifier List Info

Options to control the properties of a CatalogModifierList applied to a CatalogItem instance.

Structure

CatalogItemModifierListInfo

Fields

Name Type Tags Description
modifierListId string Required The ID of the CatalogModifierList controlled by this CatalogModifierListInfo.
Constraints: Minimum Length: 1
modifierOverrides CatalogModifierOverride[] | undefined Optional A set of CatalogModifierOverride objects that override whether a given CatalogModifier is enabled by default.
minSelectedModifiers number | undefined Optional If 0 or larger, the smallest number of CatalogModifiers that must be selected from this CatalogModifierList.
maxSelectedModifiers number | undefined Optional If 0 or larger, the largest number of CatalogModifiers that can be selected from this CatalogModifierList.
enabled boolean | undefined Optional If true, enable this CatalogModifierList. The default value is true.

Example (as JSON)

{
  "modifier_list_id": "modifier_list_id6",
  "modifier_overrides": null,
  "min_selected_modifiers": null,
  "max_selected_modifiers": null,
  "enabled": null
}