Wishlist
Wishlist model.
interface Wishlist {
customer_id: number;
id: number;
is_public: boolean;
items: WishlistItem[];
name: string;
token: string;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
customer_id | Required | number | The ID the customer to which the wishlist belongs. |
id | Required | number | Wishlist ID |
is_public | Required | boolean | Whether the wishlist is available to the public. |
items | Required | WishlistItem[] | Array of wishlist items. |
name | Required | string | The name of the wishlist. |
token | Required | string | The token of the wishlist. This is created internally within BigCommerce. The wishlist ID is to be used for external apps. Read-Only. |