@shortcut/client
    Preparing search index...

    Interface HistoryActionLabelUpdate

    An action representing a Label being updated.

    interface HistoryActionLabelUpdate {
        action: "update";
        entity_type: string;
        id: number;
    }
    Index

    Properties

    Properties

    action: "update"

    The action of the entity referenced.

    entity_type: string

    The type of entity referenced.

    id: number

    The ID of the entity referenced.

    int64