Skip to main content

Class TaskListResponse

Paged response wrapper for listing tasks.

Assembly: Taskurai.dll
Declaration
public class TaskListResponse

Properties

Specversion

Spec version marker.

Declaration
public string Specversion { get; }

Error

Error body contract when the request failed.

Declaration
public ErrorResponse Error { get; }

ContinuationToken

Continuation token for paging. Omitted or null when there are no more results.

Declaration
public string ContinuationToken { get; }

TotalCount

Optional total count. Only returned when requested.

Declaration
public int? TotalCount { get; }

Data

Page of tasks.

Declaration
public IReadOnlyList<TaskResponse> Data { get; }