WishlistItem
Wishlist item model.
interface WishlistItem {
id?: number;
product_id: number;
variant_id?: number;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
id | Optional | number | The ID of the item. |
product_id | Required | number | The ID of the product. |
variant_id | Optional | number | The variant ID of the product. |