Skip to main content

ShopItemStatusParameters

interface ShopItemStatusParameters
{
status: string;
priority: number;
label: TranslationText;
color: string;
}

Properties

Parameters

NameTypeDescription
statusstringUnique status identifier
prioritynumberStatus priority level (integer value). Higher values indicate greater importance. Each status must have a unique priority. The overall status of a store object is determined by the highest priority status among its subcomponents. For example, if a cabinet handle has an UNAVAILABLE status, the entire cabinet will be marked as UNAVAILABLE.
labelTranslationTextLocalized status labels in multiple languages
colorstringStatus color in hexadecimal format (e.g., #f5ad42)

Description

This interface defines the configuration parameters for item status definitions in the shop system.