ShopItemStatusParameters
interface ShopItemStatusParameters
{
status: string;
priority: number;
label: TranslationText;
color: string;
}
Properties
Name | Type | Description |
---|---|---|
status | string | Status ID |
priority | number | Status 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. |
label | TranslationText | Status label in multiple languages |
color | string | color in hexadecimal format, e.g. #f5ad42 |
Description
Status parameters.