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-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.usageservice
import com.deque.axe.android.constants.Config
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 = Config.AXE_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
)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy