com.deque.networking.analytics.AmplitudeEvent.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of axe-devtools-android-core Show documentation
Show all versions of axe-devtools-android-core Show documentation
The Axe Devtools Android Core Library
The newest version!
package com.deque.networking.analytics
import com.deque.axe.android.constants.Config
data class AmplitudeEvent(
val user_id: String,
val event_type: String,
val session_id: Long,
val app_version: String = Config.AXE_VERSION,
val platform: String = AmplitudeEventConstant.PLATFORM_ANDROID,
val os_name: String? = null,
val os_version: String? = null,
val device_brand: String? = null,
val device_manufacturer: String? = null,
val device_model: String? = null,
val time: Long? = null,
val event_properties: AmplitudeEventProps? = null,
)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy