interface ProductSetDescriptionAction {
    action: "setDescription";
    description?: LocalizedString;
    staged?: boolean;
}

Properties

action: "setDescription"
description?: LocalizedString

Value to set. If empty, any existing value will be removed.

staged?: boolean

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

Generated using TypeDoc