interface ProductChangeNameAction {
    action: "changeName";
    name: LocalizedString;
    staged?: boolean;
}

Properties

Properties

action: "changeName"

Value to set. Must not be empty.

staged?: boolean

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

Generated using TypeDoc