Only Business Units of type Division can be have a store mode of FromParent. Changing the storeMode to FromParent empties the stores array on the BusinessUnit. This update action generates a BusinessUnitStoreModeChanged Message.

interface BusinessUnitSetStoreModeAction {
    action: "setStoreMode";
    storeMode: string;
    stores?: StoreResourceIdentifier[];
}

Properties

action: "setStoreMode"
storeMode: string

Set to Explicit to specify Stores for the Business Unit. Set to FromParent to inherit Stores from a parent.

Set the Stores the Business Unit is associated with. Can only be set if storeMode is Explicit.

Generated using TypeDoc