ListTasksResult

data class ListTasksResult(val tasks: List<Task>, val nextCursor: String? = null, val meta: JsonObject? = null) : ClientResult, ServerResult, PaginatedResult(source)

The response to a tasks/list request.

Constructors

Link copied to clipboard
constructor(tasks: List<Task>, nextCursor: String? = null, 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
open override val nextCursor: String?

An opaque token representing the pagination position after the last returned result. If present, there may be more results available.

Link copied to clipboard

The list of tasks.