InAppThreadStatus
Enum class representing the different statuses of in-app thread.
Enum class representing the different statuses of the in-app thread.
Entries | Values | Description |
---|---|---|
ACTIVE | Active | It indicates that the thread is considered active. |
CLOSED | Closed | Indicates 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
Parameters | Type | Description |
---|---|---|
value | String | The string represents the thread status. |
Updated 8 days ago