track Item Relinquished
abstract suspend fun trackItemRelinquished(productId: String, item: CartItem, url: String, referrer: String? = ""): SystemaResult<HttpResponse>
Content copied to clipboard
Track Item Relinquished event. Triggered when a "tracked" item is removed from the cart.
Return
HTTP response from tracker for Item Relinquished event.
Parameters
product Id
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<HttpResponse>) -> Unit)
Content copied to clipboard