ShopItemParameters
interface ShopItemParameters
{
id: string;
price: number;
available: number;
description: string;
unitType: PriceUnitType;
packageQuantity: number;
url: string;
currency: string;
status: string;
}
Properties
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.