DownloadableWishlistItem
A downloadable product wish list item.
type DownloadableWishlistItem = WishlistItemInterface & {
__typename?: 'DownloadableWishlistItem'; /** The date and time the item was added to the wish list. */
added_at: Scalars['String']['output']; /** Custom options selected for the wish list item. */
customizable_options: Array<Maybe<SelectedCustomizableOption>>; /** The description of the item. */
description?: Maybe<Scalars['String']['output']>; /** The unique ID for a `WishlistItemInterface` object. */
id: Scalars['ID']['output']; /** An array containing information about the selected links. */
links_v2?: Maybe<Array<Maybe<DownloadableProductLinks>>>; /** Product details of the wish list item. */
product?: Maybe<ProductInterface>; /** The quantity of this wish list item. */
quantity: Scalars['Float']['output']; /** An array containing information about the selected samples. */
samples?: Maybe<Array<Maybe<DownloadableProductSamples>>>;
};