PixelType

sealed class PixelType

Inheritors

Types

Link copied to clipboard
data object Count : Pixel.PixelType

Pixel is a every-occurrence pixel. Sent every time fire() is invoked.

Link copied to clipboard
data class Daily(val tag: String? = null) : Pixel.PixelType

Pixel is a first-in-day pixel. Subsequent attempts to fire such pixel on a given calendar day (UTC) will be ignored. By default, the pixel name will be used to avoid resending the pixel again, you can override this by adding your own tag instead.

Link copied to clipboard
data class Unique(val tag: String? = null) : Pixel.PixelType

Pixel is a once-ever pixel. Subsequent attempts to fire such pixel will be ignored. By default, the pixel name will be used to avoid resending the pixel again, you can override this by adding your own tag instead.