interface ProductSetSearchKeywordsAction {
    action: "setSearchKeywords";
    searchKeywords: SearchKeywords;
    staged?: boolean;
}

Properties

action: "setSearchKeywords"
searchKeywords: SearchKeywords

Value to set.

staged?: boolean

If true, only the staged searchKeywords is updated. If false, both the current and staged searchKeywords are updated.

Generated using TypeDoc