trackItemRelinquished

abstract suspend fun trackItemRelinquished(    productId: String,     item: CartItem,     url: String,     referrer: String? = ""): SystemaResult<<ERROR CLASS>>

Track Item Relinquished event. Triggered when a "tracked" item is removed from the cart.

Return

HTTP response from tracker for Item Relinquished event.

Parameters

productId

Product ID of the item that was removed from the cart.

items

List of CartItems that were removed from the cart.

url

URL of the page/view while items were removed from the cart - in Mobile, a simulated string.


abstract fun trackItemRelinquished(    productId: String,     item: CartItem,     url: String,     referrer: String? = "",     result: (SystemaResult<<ERROR CLASS>>) -> Unit)