trackWishlistAcquired

abstract suspend fun trackWishlistAcquired(    productId: String,     items: List<WishlistItem>,     url: String,     referrer: String? = ""): SystemaResult<<ERROR CLASS>>

Track Wishlist Acquired event. Triggered when a an item makes its way into the wishlist.

Return

HTTP response from tracker for Wishlist Acquired event.

Parameters

productId

Product ID of the item that was added to the wishlist.

items

List of items that were added to the wishlist.

url

URL of the page/view while items were added to the wishlist - in Mobile, a simulated string.


abstract fun trackWishlistAcquired(    productId: String,     items: List<WishlistItem>,     url: String,     referrer: String? = "",     result: (SystemaResult<<ERROR CLASS>>) -> Unit)