@shortcut/client
    Preparing search index...

    Interface Task

    A Task on a Story.

    interface Task {
        complete: boolean;
        completed_at?: null | string;
        created_at: string;
        description: string;
        entity_type: string;
        external_id?: null | string;
        global_id: string;
        group_mention_ids: string[];
        id: number;
        member_mention_ids: string[];
        mention_ids: string[];
        owner_ids: string[];
        position: number;
        story_id: number;
        updated_at?: null | string;
    }
    Index

    Properties

    complete: boolean

    True/false boolean indicating whether the Task has been completed.

    completed_at?: null | string

    The time/date the Task was completed.

    date-time

    created_at: string

    The time/date the Task was created.

    date-time

    description: string

    Full text of the Task.

    entity_type: string

    A string description of this resource.

    external_id?: null | string

    This field can be set to another unique ID. In the case that the Task has been imported from another tool, the ID in the other tool can be indicated here.

    global_id: string
    group_mention_ids: string[]

    An array of UUIDs of Groups mentioned in this Task.

    id: number

    The unique ID of the Task.

    int64

    member_mention_ids: string[]

    An array of UUIDs of Members mentioned in this Task.

    mention_ids: string[]

    Deprecated: use member_mention_ids.

    owner_ids: string[]

    An array of UUIDs of the Owners of this Task.

    position: number

    The number corresponding to the Task's position within a list of Tasks on a Story.

    int64

    story_id

    story_id: number

    The unique identifier of the parent Story.

    int64

    updated_at?: null | string

    The time/date the Task was updated.

    date-time