commonMain.com.myunidays.segmenkt.integrations.Integration.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Segmenkt Show documentation
Show all versions of Segmenkt Show documentation
Kotlin Multiplatform Wrapper for Segment
The newest version!
package com.myunidays.segmenkt.integrations
interface Integration {
fun identify(identifyPayload: IdentifyPayload)
fun group(groupPayload: GroupPayload)
fun track(trackPayload: TrackPayload)
fun alias(aliasPayload: AliasPayload)
fun screen(screenPayload: ScreenPayload)
fun flush()
fun reset()
fun debug(debug: Boolean)
}