All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.deque.networking.analytics.AmplitudeEvent.kt Maven / Gradle / Ivy

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