CustomMessage

data class CustomMessage(val value: String, val increment: Increment?) : Parcelable

Represents a custom message.

Constructors

Link copied to clipboard
constructor(value: String, increment: Increment?)

Properties

Link copied to clipboard
@SerializedName(value = "incr")
val increment: Increment?

Increment the counter with the specified key and value.

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

The value of the custom message.

Functions

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