interface SerializedDeleteSegmentAction {
    _objectType: "segment";
    _subActions?: SerializedAction[];
    action: "DELETE";
    actions?: SerializedAction;
    attributes: { id: number };
    name?: string;
}

Hierarchy (View Summary)

Properties

_objectType: "segment"
_subActions?: SerializedAction[]
action: "DELETE"
attributes: { id: number }
name?: string