TextMessage

data class TextMessage(val text: String, val filtered: Boolean) : Parcelable

Represents a text message.

Constructors

Link copied to clipboard
constructor(text: String, filtered: Boolean)

Properties

Link copied to clipboard
@SerializedName(value = "filtered")
val filtered: Boolean

Indicates if the message has been filtered.

Link copied to clipboard
@SerializedName(value = "text")
val text: String

Text content of the message.

Functions

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