Action

data class Action<T : DTO<T>>(var shortenId: String? = null, var type: String? = null, var content: T? = null, var noAction: Boolean? = null, var reason: String? = null, var responseTimestamp: String? = null) : DTO<Action<T>>

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

Constructors

Link copied to clipboard
constructor(shortenId: String? = null, type: String? = null, content: T? = null, noAction: Boolean? = null, reason: String? = null, responseTimestamp: String? = null)

Properties

Link copied to clipboard
var content: T?

content フィールド

Link copied to clipboard

no_action フィールド

Link copied to clipboard

reason フィールド

Link copied to clipboard

response_timestamp フィールド

Link copied to clipboard

shorten_id フィールド

Link copied to clipboard
var type: String?

type フィールド

Functions

Link copied to clipboard
open override fun load(jsonObject: JSONObject?): Action<T>

Load from JSONObject to Object.