Interface HistoryActionLabelUpdate

An action representing a Label being updated.

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

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