Action

data class Action(    val type: Action.Type,     val text: String?,     val data: JsonObject?,     val playServiceId: String?,     val token: String?,     val postDelayInMilliseconds: Long?)

Constructors

Link copied to clipboard
fun Action(    type: Action.Type,     text: String?,     data: JsonObject?,     playServiceId: String?,     token: String?,     postDelayInMilliseconds: Long?)

Types

Link copied to clipboard
enum Type : Enum<Action.Type>

Functions

Link copied to clipboard
fun toJsonObject(): JsonObject

Properties

Link copied to clipboard
@SerializedName(value = "data")
val data: JsonObject?
Link copied to clipboard
@SerializedName(value = "playServiceId")
val playServiceId: String?
Link copied to clipboard
@SerializedName(value = "postDelayInMilliseconds")
val postDelayInMilliseconds: Long?
Link copied to clipboard
@SerializedName(value = "text")
val text: String?
Link copied to clipboard
@SerializedName(value = "token")
val token: String?
Link copied to clipboard
@SerializedName(value = "type")
val type: Action.Type