ShopItemParameters
interface ShopItemParameters
{
id: string;
price: number;
available: number;
description: string;
unitType: PriceUnitType;
packageQuantity: number;
url: string;
currency: string;
status: string;
}
Properties
Name | Type | Description |
---|---|---|
id | string | Shop item ID |
price | number | Price |
available | number | 1 = available, 0 = unavailable |
description | string | Item description |
unitType | PriceUnitType | Value that is counted in the price list |
packageQuantity | number | Number of items in a package (for UnitType = 'Packages') |
url | string | link |
currency | string | for example 'pln' |
status | string | Product status ID, e.g. AVAILABLE |
Description
Shop item parameters.