AdaptyInstallationDetails

data class AdaptyInstallationDetails(val installId: String?, val installTime: LocalDateTime, val appLaunchCount: Int, val payload: AdaptyInstallationDetails.Payload?)

Contains detailed information about the current app installation.

This data can be used for analytics, user acquisition tracking, and subscription event correlation.

Constructors

Link copied to clipboard
constructor(installId: String?, installTime: LocalDateTime, appLaunchCount: Int, payload: AdaptyInstallationDetails.Payload?)

Types

Link copied to clipboard
data class Payload(val jsonString: String, val dataMap: Map<String, Any>)

Represents additional structured data for an installation.

Properties

Link copied to clipboard

number of times the app has been launched.

Link copied to clipboard

unique identifier for the installation, if available.

Link copied to clipboard
val installTime: LocalDateTime

date and time when the app was first installed.

Link copied to clipboard

optional structured data related to installation events.