com.deque.networking.usageservice.UsageServiceEventV2Data.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-analytics Show documentation
Show all versions of axe-devtools-android-analytics Show documentation
The Axe Devtools Android Analytics Library
The newest version!
package com.deque.networking.usageservice
import com.deque.networking.analytics.AXE_DEVTOOLS_BUILD_VERSION
data class UsageServiceEventV2Data(
val event: String,
val dateTime: Long,
val distinctId: String,
val version: String = UsageService.EVENT_V2,
val productName: String = UsageService.AXE_DEVTOOLS_MOBILE,
val productComponent: String = UsageService.ANDROID,
val productComponentVersion: String = AXE_DEVTOOLS_BUILD_VERSION,
val userId: String?,
val keycloakId: String? = null,
val organization: String? = null,
val department: String? = null,
val application: String? = null,
val devInstance: Boolean? = null,
val sessionId: String? = null,
val userStatus: String? = null,
val userJobRole: String? = null,
val loggedIn: Boolean? = null,
val applicationProperties: Map? = null
)