Updates all meta attributes at the same time.

interface ProductTailoringSetMetaAttributesAction {
    action: "setMetaAttributes";
    metaDescription?: LocalizedString;
    metaKeywords?: LocalizedString;
    metaTitle?: LocalizedString;
    staged?: boolean;
}

Properties

action: "setMetaAttributes"
metaDescription?: LocalizedString

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

metaKeywords?: LocalizedString

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

metaTitle?: LocalizedString

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

staged?: boolean

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