@shortcut/client
    Preparing search index...

    Interface CommentSlim

    interface CommentSlim {
        app_url: string | null;
        deleted: boolean;
        entity_type: "comment:slim";
        id: number | null;
        text: string | null;
        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?://.+$

    deleted: boolean

    True if the comment has been deleted.

    entity_type: "comment:slim"

    The type of this entity.

    id: number | null

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

    int64

    text: string | null

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

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