ASAPPConversationStatus

data class ASAPPConversationStatus(val unreadMessages: Int, val isLiveChat: Boolean) : Parcelable

Represents the status of the current conversation.

Parameters

unreadMessages

The number of unread messages.

isLiveChat

true when the user is in a chat with an agent. false otherwise.

Constructors

Link copied to clipboard
constructor(unreadMessages: Int, isLiveChat: Boolean)

Properties

Link copied to clipboard
@SerializedName(value = "IsLiveChat")
val isLiveChat: Boolean
Link copied to clipboard
@SerializedName(value = "UnreadMessages")
val unreadMessages: Int

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)