Interface HistoryActionTaskUpdate

An action representing a Task being updated.

interface HistoryActionTaskUpdate {
    action: "update";
    changes: HistoryChangesTask;
    complete?: boolean;
    description: string;
    entity_type: string;
    id: number;
    story_id: number;
}

Properties

action: "update"

The action of the entity referenced.

The changes that have occurred as a result of the action.

complete?: boolean

Whether or not the Task is complete.

description: string

The description of the Task.

entity_type: string

The type of entity referenced.

id: number

The ID of the entity referenced.

int64

story_id: number

The Story ID that contains the Task.

int64