inappmessaging / io.karte.android.tracking / Action

Action

data class Action<T : DTO<T>> : DTO<Action<T>>

アクション情報を保持するデータクラスです。

Constructors

<init>

アクション情報を保持するデータクラスです。

Action(shortenId: String? = null, type: String? = null, content: T? = null)

Properties

content

var content: T?

shortenId

var shortenId: String?

type

var type: String?

Functions

load

fun load(jsonObject: JSONObject?): Action<T>