@shortcut/client
    Preparing search index...

    Interface ThreadedComment

    The entity for this response.

    interface ThreadedComment {
        app_url?: string | null;
        author?: MemberSlim;
        comments?: NestedThreadedCommentSlimList;
        created_at?: string;
        deleted?: boolean;
        entity_type?: "threaded-comment";
        epic?: EpicSlim;
        external_id?: string | null;
        id?: number | null;
        mentioned_members?: NestedMemberSlimList;
        mentioned_teams?: NestedTeamSlimList;
        parent_comment?: ThreadedCommentSlim | null;
        text?: string | null;
        updated_at?: string;
        uri?: string | null;
    }
    Index

    Properties

    app_url?: string | null

    The Shortcut application url for the Comment. Will be null if the comment is deleted.

    2048

    ^https?://.+$

    author?: MemberSlim

    The Member who created the Doc.

    The Comments on the Epic.

    created_at?: string

    The time/date the Comment was created.

    date-time

    deleted?: boolean

    Whether the Comment has been deleted.

    entity_type?: "threaded-comment"

    The type of this entity.

    epic?: EpicSlim

    The Epic the story belongs to.

    external_id?: string | null

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

    id?: number | null

    The unique ID of the Comment. Will be null if the comment is deleted.

    int64

    mentioned_members?: NestedMemberSlimList

    The Members who followers of the Doc.

    mentioned_teams?: NestedTeamSlimList

    A list of Teams that this Member belongs to.

    parent_comment?: ThreadedCommentSlim | null
    text?: string | null

    The text of the Comment. Will be null if the comment is deleted.

    updated_at?: string

    The time/date the Comment was last updated.

    date-time

    uri?: string | null

    A resolvable URI for the entity that will return the full representation. Will be null if the comment is deleted.

    2048

    ^https?://.+$