Alokai

Wishlist

Wishlist model.

interface Wishlist {
	customer_id: number;
	id: number;
	is_public: boolean;
	items: WishlistItem[];
	name: string;
	token: string;
}

Properties

NameRequiredTypeDescription
customer_idRequirednumberThe ID the customer to which the wishlist belongs.
idRequirednumberWishlist ID
is_publicRequiredbooleanWhether the wishlist is available to the public.
itemsRequiredWishlistItem[]Array of wishlist items.
nameRequiredstringThe name of the wishlist.
tokenRequiredstringThe token of the wishlist. This is created internally within BigCommerce. The wishlist ID is to be used for external apps. Read-Only.

Referenced Types

On this page