interface SerializedUpdateSegmentAction {
    _objectType: "segment";
    _subActions?: SerializedAction[];
    action: "UPDATE";
    actions?: SerializedAction;
    attributes: Partial<RawSegment>;
    name?: string;
}

Hierarchy (View Summary)

Properties

_objectType: "segment"
_subActions?: SerializedAction[]
action: "UPDATE"
attributes: Partial<RawSegment>
name?: string