EcommerceUserEntity

data class EcommerceUserEntity @JvmOverloads constructor(var id: String, var isGuest: Boolean? = null, var email: String? = null)

Add ecommerce User details. It is designed to help in modeling guest/non-guest account activity. Entity schema: iglu:com.snowplowanalytics.snowplow.ecommerce/user/jsonschema/1-0-0

Constructors

Link copied to clipboard
constructor(id: String, isGuest: Boolean? = null, email: String? = null)

Properties

Link copied to clipboard

The user's email address.

Link copied to clipboard
var id: String

The user ID.

Link copied to clipboard

Whether or not the user is a guest.