Represents an edit to an entity within a suggestion.

interface SuggestionEntityEdit {
    actionType: SuggestibleActionType;
    objectId: null | string | number;
    objectType: ObjectType;
}

Properties

The type of action suggested for the entity.

objectId: null | string | number

The ID of the object being edited, or null if not specified.

objectType: ObjectType

The type of the object being edited.