ActionResult

sealed class ActionResult(val value: ActionValue = ActionValue(), val status: ActionResult.Status)(source)

Stores the results of running an com.urbanairship.actions.Action.

Inheritors

Constructors

Link copied to clipboard
protected constructor(value: ActionValue = ActionValue(), status: ActionResult.Status)

Types

Link copied to clipboard
object Companion
Link copied to clipboard
class Empty @JvmOverloads constructor(status: ActionResult.Status = Status.COMPLETED) : ActionResult
Link copied to clipboard
class Error @JvmOverloads constructor(val exception: Exception, status: ActionResult.Status = Status.EXECUTION_ERROR) : ActionResult
Link copied to clipboard
Link copied to clipboard
class Value @JvmOverloads constructor(result: ActionValue, status: ActionResult.Status = Status.COMPLETED) : ActionResult

Properties

Link copied to clipboard
Link copied to clipboard