interface Task {
    assignedTo?: string;
    blogPostId?: string;
    body?: TaskBodySingle;
    completedAt?: string;
    completedBy?: string;
    createdAt?: string;
    createdBy?: string;
    dueAt?: string;
    id?: string;
    localId?: string;
    pageId?: string;
    spaceId?: string;
    status?: "complete" | "incomplete";
    updatedAt?: string;
}

Hierarchy

  • Record<string, unknown>
    • Task

Properties

assignedTo?: string

Account ID of the user to whom this task is assigned.

blogPostId?: string

ID of the blog post the task is in.

Contains fields for each representation type requested.

completedAt?: string

Date and time when the task was completed. In format "YYYY-MM-DDTHH:mm:ss.sssZ".

completedBy?: string

Account ID of the user who completed this task.

createdAt?: string

Date and time when the task was created. In format "YYYY-MM-DDTHH:mm:ss.sssZ".

createdBy?: string

Account ID of the user who created this task.

dueAt?: string

Date and time when the task is due. In format "YYYY-MM-DDTHH:mm:ss.sssZ".

id?: string

ID of the task.

localId?: string

Local ID of the task. This ID is local to the corresponding page or blog post.

pageId?: string

ID of the page the task is in.

spaceId?: string

ID of the space the task is in.

status?: "complete" | "incomplete"

Status of the task.

updatedAt?: string

Date and time when the task was updated. In format "YYYY-MM-DDTHH:mm:ss.sssZ".