data class Action<T : DTO<T>> : DTO<Action<T>>
アクション情報を保持するデータクラスです。
<init> |
アクション情報を保持するデータクラスです。 Action(shortenId: String? = null, type: String? = null, content: T? = null) |
content |
var content: T? |
shortenId |
var shortenId: String? |
type |
var type: String? |
load |
fun load(jsonObject: JSONObject?): Action<T> |