CreateTaskResult

data class CreateTaskResult(val task: Task, val meta: JsonObject? = null) : ClientResult, ServerResult(source)

A response to a task-augmented request.

Constructors

Link copied to clipboard
constructor(task: Task, meta: JsonObject? = null)

Properties

Link copied to clipboard
@SerialName(value = "_meta")
open override val meta: JsonObject?

Optional metadata for this response.

Link copied to clipboard
val task: Task

The task data associated with the response.