Alokai

CreateWishlistProps

Necessary props for creating the wishlist.

interface CreateWishlistProps {
	is_public?: boolean;
	items?: CreateWishlistItem[];
	name: string;
}

Properties

NameRequiredTypeDescription
is_publicOptionalbooleanWhether the wishlist is available to the public.
itemsOptionalCreateWishlistItem[]Array of wishlist items.
nameRequiredstringThe title of the wishlist.

On this page