CreateWishlistProps
Necessary props for creating the wishlist.
interface CreateWishlistProps {
is_public?: boolean;
items?: CreateWishlistItem[];
name: string;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
is_public | Optional | boolean | Whether the wishlist is available to the public. |
items | Optional | CreateWishlistItem[] | Array of wishlist items. |
name | Required | string | The title of the wishlist. |