@shortcut/client
    Preparing search index...

    Interface HistoryActionTaskDelete

    An action representing a Task being deleted.

    interface HistoryActionTaskDelete {
        action: "delete";
        description: string;
        entity_type: string;
        id: number;
    }
    Index

    Properties

    action: "delete"

    The action of the entity referenced.

    description: string

    The description of the Task being deleted.

    entity_type: string

    The type of entity referenced.

    id: number

    The ID of the entity referenced.

    int64