@shortcut/client
    Preparing search index...

    Interface Comment

    interface Comment {
        app_url?: string | null;
        author?: MemberSlim;
        created_at?: string;
        deleted?: boolean;
        entity_type?: "comment";
        external_id?: string | null;
        id?: number | null;
        mentioned_members?: NestedMemberSlimList;
        mentioned_teams?: NestedTeamSlimList;
        parent_comment?: CommentSlim | null;
        position?: number;
        reactions?: NestedReactionSlimList;
        story?: StorySlim;
        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.

    created_at?: string

    The time/date the Comment was created.

    date-time

    deleted?: boolean

    True if the comment has been deleted.

    entity_type?: "comment"

    The type of this entity.

    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?: CommentSlim | null
    position?: number

    The Comment's position within the Story.

    int64

    A list of Reactions to this Comment.

    Optionalstory

    story?: StorySlim

    The Story this Checklist Item belongs to.

    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?://.+$