customer-android-kotlin

//core/com.kustomer.core.models.chat/KusTypingStatus

KusTypingStatus

[androidJvm]
@JsonClass(generateAdapter = false)

enum KusTypingStatus : Enum<KusTypingStatus>

Entries

   
USER_TYPING_STARTED [androidJvm]
@Json(name = "user-typing")
USER_TYPING_STARTED
USER_AI_ASSISTANT_TYPING_STARTED [androidJvm]
@Json(name = "ai-assistant-user-typing")
USER_AI_ASSISTANT_TYPING_STARTED
USER_TYPING_ENDED [androidJvm]
@Json(name = "user-typing-ended")
USER_TYPING_ENDED
CUST_TYPING_STARTED [androidJvm]
@Json(name = "customer-typing")
CUST_TYPING_STARTED
CUST_TYPING_ENDED [androidJvm]
@Json(name = "customer-typing-ended")
CUST_TYPING_ENDED
TYPING_UNKNOWN [androidJvm]
TYPING_UNKNOWN

Properties

Name Summary
entries [androidJvm]
val entries: EnumEntries<KusTypingStatus>
Returns a representation of an immutable list of all enum entries, in the order they’re declared.

Functions

Name Summary
valueOf [androidJvm]
fun valueOf(value: String): KusTypingStatus
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
values [androidJvm]
fun values(): Array<KusTypingStatus>
Returns an array containing the constants of this enum type, in the order they’re declared.