@shortcut/client
    Preparing search index...

    Interface ThreadedComment

    Comments associated with Epic Discussions.

    interface ThreadedComment {
        app_url: string;
        author_id: string;
        comments: ThreadedComment[];
        created_at: string;
        deleted: boolean;
        entity_type: string;
        external_id?: null | string;
        group_mention_ids: string[];
        id: number;
        member_mention_ids: string[];
        mention_ids: string[];
        text: string;
        updated_at: string;
    }
    Index

    Properties

    app_url: string

    The Shortcut application url for the Comment.

    author_id: string

    The unique ID of the Member that authored the Comment.

    uuid

    comments: ThreadedComment[]

    A nested array of threaded comments.

    created_at: string

    The time/date the Comment was created.

    date-time

    deleted: boolean

    True/false boolean indicating whether the Comment is deleted.

    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 Comment has been imported from another tool, the ID in the other tool can be indicated here.

    group_mention_ids: string[]

    An array of Group IDs that have been mentioned in this Comment.

    id: number

    The unique ID of the Comment.

    int64

    member_mention_ids: string[]

    An array of Member IDs that have been mentioned in this Comment.

    mention_ids: string[]

    Deprecated: use member_mention_ids.

    text: string

    The text of the Comment.

    updated_at: string

    The time/date the Comment was updated.

    date-time