Skip to main content

ShopItemStatusParameters

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

Properties

NameTypeDescription
statusstringStatus ID
prioritynumberStatus priority. The higher it is, the more important it is. It must be an integer. Each status must have a unique priority. The status of the entire store object is equal to the most important status among the status of the subobjects. For example, if one of the cabinet elements (handle) is UNAVAILABLE, the entire cabinet will have a status of UNAVAILABLE.
labelTranslationTextStatus label in multiple languages
colorstringcolor in hexadecimal format, e.g. #f5ad42

Description

Status parameters.