InAppThreadStatus

Enum class representing the different statuses of in-app thread.

Enum class representing the different statuses of the in-app thread.

EntriesValuesDescription
ACTIVEActiveIt indicates that the thread is considered active.
CLOSEDClosedIndicates that the thread is considered as closed.

Companion Functions

fromValue

Converts a string to the corresponding InAppThreadStatus.

Syntax: fun fromValue(value: String): InAppThreadStatus?

Return: The InAppThreadStatus corresponds to the given string value. null if no matching thread status is found.

Parameters

ParametersTypeDescription
valueStringThe string represents the thread status.