Skip to main content

ShopItemParameters

interface ShopItemParameters
{
id: string;
price: number;
available: number;
description: string;
unitType: PriceUnitType;
packageQuantity: number;
url: string;
currency: string;
status: string;
}

Properties

Parameters

NameTypeDescription
idstringUnique identifier for the shop item.
pricenumberThe price of the item.
availablenumberAvailability status: 1 = available, 0 = unavailable.
descriptionstringDetailed description of the item.
unitTypePriceUnitTypeUnit of measurement used for pricing.
packageQuantitynumberNumber of items contained in a package (applicable when UnitType is 'Packages').
urlstringURL link to the item.
currencystringCurrency code in which the price is expressed (e.g., 'PLN', 'USD').
statusstringProduct status identifier (e.g., 'AVAILABLE', 'OUT_OF_STOCK').

Description

The ShopItemParameters interface defines the structure for shop item data. It contains essential information about products including pricing, availability, and related attributes used throughout the shopping system.