ArcxpAnalytics

@JsonClass(generateAdapter = true)
data class ArcxpAnalytics(    @Json(name = "event") val event: ArcxpEventFields,     @Json(name = "time") val time: Long,     @Json(name = "source") val source: String,     @Json(name = "sourcetype") val sourcetype: String,     @Json(name = "index") val index: String)

This is @JsonClass(generateAdapter = true) data class sent per analytics event

Constructors

Link copied to clipboard
fun ArcxpAnalytics(    @Json(name = "event") event: ArcxpEventFields,     @Json(name = "time") time: Long,     @Json(name = "source") source: String,     @Json(name = "sourcetype") sourcetype: String,     @Json(name = "index") index: String)

Properties

Link copied to clipboard
val event: ArcxpEventFields

analytics event type

Link copied to clipboard
val index: String
Link copied to clipboard
val source: String
Link copied to clipboard
val sourcetype: String
Link copied to clipboard
val time: Long