ReceivedKeyedAppState

@AutoValue
abstract class ReceivedKeyedAppState


A keyed app state received from an app. This contains all of the information added by the app to the KeyedAppState as well as the packageName and timestamp added when the state was received.

Summary

Public functions

java-static ReceivedKeyedAppState.ReceivedKeyedAppStateBuilder

Create a ReceivedKeyedAppStateBuilder.

abstract String?

See getData

abstract String

See getKey

abstract String?

See getMessage

abstract String

The name of the package which submitted the states.

abstract Int

See getSeverity

abstract Long

The unix timestamp, in milliseconds, when the states were received.

Public functions

getData

Added in 1.0.0
abstract fun getData(): String?

See getData

getKey

Added in 1.0.0
abstract fun getKey(): String

See getKey

getMessage

Added in 1.0.0
abstract fun getMessage(): String?

See getMessage

getPackageName

Added in 1.0.0
abstract fun getPackageName(): String

The name of the package which submitted the states.

This is automatically set to the correct value by the receiver; it is NOT self-reported by the app sending the feedback.

getSeverity

Added in 1.0.0
abstract fun getSeverity(): Int

See getSeverity

getTimestamp

Added in 1.0.0
abstract fun getTimestamp(): Long

The unix timestamp, in milliseconds, when the states were received.

This is automatically set to the correct value by the receiver; it is NOT self-reported by the app sending the feedback.