DeviceLocaleResult

data class DeviceLocaleResult(val country: String, val countryDisplay: String, val language: String, val languageDisplay: String, val display: String, val skippedAttributes: Map<String, String> = emptyMap())

Success payload for MoEAnalyticsHelper.trackDeviceLocale(...).

Delivered when at least one of the locale attributes is tracked successfully. Any locale attribute that could not be tracked is reported in skippedAttributes.

Author

Gowtham KK

Since

10.0.0

Constructors

Link copied to clipboard
constructor(country: String, countryDisplay: String, language: String, languageDisplay: String, display: String, skippedAttributes: Map<String, String> = emptyMap())

Properties

Link copied to clipboard

The ISO country code of the device locale.

Link copied to clipboard

The human-readable display name of the country.

Link copied to clipboard

The full human-readable display name of the device locale.

Link copied to clipboard

The ISO language code of the device locale.

Link copied to clipboard

The human-readable display name of the language.

Link copied to clipboard

The locale attributes that failed to track, keyed by attribute name with the reason it was skipped as the value. Empty when every locale attribute was tracked successfully.