Interface HistoryActionLabelCreate

An action representing a Label being created.

interface HistoryActionLabelCreate {
    action: "create";
    app_url: string;
    entity_type: string;
    id: number;
    name: string;
}

Properties

action: "create"

The action of the entity referenced.

app_url: string

The application URL of the Label.

2048

^https?://.+$

entity_type: string

The type of entity referenced.

id: number

The ID of the entity referenced.

int64

name: string

The name of the Label.