InAppMessageStatus

Enum class represents the status of an in-app message.

Enum class represents the status of an in-app message.

EntriesValueDescription
NONE-1It indicates that the status is not set.
NOT_SENT0It indicates that the message has not been sent.
SENT1It indicates that the message has been sent.
DELIVERED2It indicates that the message has been delivered.
READ3It indicates that the message has been read.
CLICKED4It indicates that the message has been clicked.

Companion Functions

fromValue

Converts an integer to the corresponding InAppMessageStatus.

Syntax: fun fromValue(value: Int): InAppMessageStatus

Parameters

ParametersTypeDescription
valueIntThe integer represents the message status.

Return The InAppMessageStatus corresponding to the given integer value. InAppMessageStatus.NONE if no corresponding status is found.