-
Notifications
You must be signed in to change notification settings - Fork 1
products.Interface.ProductDetails
tgreyuk edited this page Mar 16, 2025
·
7 revisions
github-wiki-example / products / ProductDetails
Defined in: products.ts:43
Interface representing product details. Extends the basic Product interface to include more comprehensive attributes for detailed product management.
Property | Type | Description | Inherited from | Defined in |
---|---|---|---|---|
category
|
ProductCategory |
Category of the product as defined by the ProductCategory enum. This categorization helps in organizing products into sections or departments, facilitating easier product discovery and management. | - | products.ts:54 |
description
|
string |
Detailed textual description of the product. This provides potential buyers with more information about the product's features, usage, and benefits. | - | products.ts:48 |
name
|
string |
Name of the product. |
Product .name
|
products.ts:16 |
price
|
number |
Price of the product in the system's set currency. |
Product .price
|
products.ts:18 |
productId
|
string |
Unique identifier for the product. |
Product .productId
|
products.ts:14 |