CartEntity

data class CartEntity @JvmOverloads constructor(var totalValue: Number, var currency: String, var cartId: String? = null)

Provided to certain Ecommerce events. The Cart properties will be sent with the event as a Cart entity. Entity schema: iglu:com.snowplowanalytics.snowplow.ecommerce/cart/jsonschema/1-0-0

Constructors

Link copied to clipboard
constructor(totalValue: Number, currency: String, cartId: String? = null)

Properties

Link copied to clipboard

The unique ID representing this cart.

Link copied to clipboard

The currency used for this cart (ISO 4217).

Link copied to clipboard

The total value of the cart after this interaction.