@shortcut/client
    Preparing search index...

    Interface ChecklistItem

    interface ChecklistItem {
        completed?: boolean;
        completed_at?: string | null;
        created_at?: string;
        description?: string;
        entity_type?: "checklist-item";
        external_id?: string | null;
        id?: number;
        mentioned_members?: NestedMemberSlimList;
        mentioned_teams?: NestedTeamSlimList;
        position?: number;
        story?: StorySlim;
        updated_at?: string | null;
        uri?: string;
    }
    Index

    Properties

    completed?: boolean

    Boolean indicating whether the Checklist Item has been completed.

    completed_at?: string | null

    The time/date the Checklist Item was completed.

    date-time

    created_at?: string

    The time/date the Checklist Item was created.

    date-time

    description?: string

    The description of the Checklist Item.

    entity_type?: "checklist-item"

    The type of this entity.

    external_id?: string | null

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

    id?: number

    The unique ID of the Checklist Item.

    int64

    mentioned_members?: NestedMemberSlimList

    The Members who followers of the Doc.

    mentioned_teams?: NestedTeamSlimList

    A list of Teams that this Member belongs to.

    position?: number

    The Comment's position within the Story.

    int64

    Optionalstory

    story?: StorySlim

    The Story this Checklist Item belongs to.

    updated_at?: string | null

    The time/date the Checklist Item was updated.

    date-time

    uri?: string

    A resolvable URI for the entity that will return the full representation.

    2048

    ^https?://.+$